From 2f90a8781fc87246a80e0e14b3563db7c2b92ef0 Mon Sep 17 00:00:00 2001 From: chradek <51000525+chradek@users.noreply.github.com> Date: Fri, 25 Jun 2021 10:24:23 -0700 Subject: [PATCH 01/49] [event-hubs] migrate samples to v2 (#15053) Followed the steps at https://github.com/Azure/azure-sdk-for-js/wiki/Samples-v2-Migration-Guide /cc @willmtemple Note: I moved browserSamples and expressSamples into the generated v5 samples folder since dev-tool doesn't work with those. --- sdk/eventhub/event-hubs/migrationguide.md | 26 +-- sdk/eventhub/event-hubs/package.json | 26 ++- sdk/eventhub/event-hubs/sample.env | 8 +- .../README.md | 10 +- .../index.html | 0 .../package.json | 0 .../src/configuration.js | 0 .../src/index.js | 0 .../src/receiveEvents.js | 0 .../src/sendEvents.js | 0 .../iothubConnectionString.ts | 29 +-- .../src => samples-dev}/receiveEvents.ts | 20 +- .../src => samples-dev}/sendEvents.ts | 12 +- .../src => samples-dev}/useWithIotHub.ts | 7 +- .../event-hubs/samples-dev/usingAadAuth.ts | 58 +++++ .../src => samples-dev}/websockets.ts | 18 +- .../src => samples-express}/README.md | 10 +- .../package.json | 0 .../src/asyncBatchingProducer.ts | 0 .../src/index.ts | 0 .../tsconfig.json | 0 .../event-hubs/samples/javascript/README.md | 78 ------- .../samples/javascript/usingAadAuth.js | 62 ------ sdk/eventhub/event-hubs/samples/tsconfig.json | 9 - .../event-hubs/samples/typescript/README.md | 84 ------- .../samples/typescript/src/usingAadAuth.ts | 60 ----- .../event-hubs/samples/v5/browser/README.md | 90 ++++++++ .../event-hubs/samples/v5/browser/index.html | 79 +++++++ .../{javascript => v5/browser}/package.json | 25 +-- .../samples/v5/browser/src/configuration.js | 31 +++ .../samples/v5/browser/src/index.js | 20 ++ .../samples/v5/browser/src/receiveEvents.js | 67 ++++++ .../samples/v5/browser/src/sendEvents.js | 96 ++++++++ .../event-hubs/samples/v5/express/README.md | 54 +++++ .../{typescript => v5/express}/package.json | 27 ++- .../v5/express/src/asyncBatchingProducer.ts | 210 ++++++++++++++++++ .../samples/v5/express/src/index.ts | 55 +++++ .../express}/tsconfig.json | 1 - .../samples/v5/javascript/README.md | 73 ++++++ .../javascript/iothubConnectionString.js | 42 ++-- .../samples/v5/javascript/package.json | 35 +++ .../{ => v5}/javascript/receiveEvents.js | 21 +- .../samples/{ => v5}/javascript/sample.env | 6 +- .../samples/{ => v5}/javascript/sendEvents.js | 15 +- .../{ => v5}/javascript/useWithIotHub.js | 12 +- .../samples/v5/javascript/usingAadAuth.js | 56 +++++ .../samples/{ => v5}/javascript/websockets.js | 28 +-- .../samples/v5/typescript/README.md | 86 +++++++ .../samples/v5/typescript/package.json | 43 ++++ .../samples/{ => v5}/typescript/sample.env | 6 +- .../typescript/src/iothubConnectionString.ts | 165 ++++++++++++++ .../v5/typescript/src/receiveEvents.ts | 56 +++++ .../samples/v5/typescript/src/sendEvents.ts | 109 +++++++++ .../v5/typescript/src/useWithIotHub.ts | 33 +++ .../samples/v5/typescript/src/usingAadAuth.ts | 56 +++++ .../samples/v5/typescript/src/websockets.ts | 54 +++++ .../samples/v5/typescript/tsconfig.json | 17 ++ sdk/eventhub/event-hubs/tsconfig.json | 7 +- 58 files changed, 1713 insertions(+), 479 deletions(-) rename sdk/eventhub/event-hubs/{samples/browserSample => samples-browser}/README.md (93%) rename sdk/eventhub/event-hubs/{samples/browserSample => samples-browser}/index.html (100%) rename sdk/eventhub/event-hubs/{samples/browserSample => samples-browser}/package.json (100%) rename sdk/eventhub/event-hubs/{samples/browserSample => samples-browser}/src/configuration.js (100%) rename sdk/eventhub/event-hubs/{samples/browserSample => samples-browser}/src/index.js (100%) rename sdk/eventhub/event-hubs/{samples/browserSample => samples-browser}/src/receiveEvents.js (100%) rename sdk/eventhub/event-hubs/{samples/browserSample => samples-browser}/src/sendEvents.js (100%) rename sdk/eventhub/event-hubs/{samples/typescript/src => samples-dev}/iothubConnectionString.ts (89%) rename sdk/eventhub/event-hubs/{samples/typescript/src => samples-dev}/receiveEvents.ts (69%) rename sdk/eventhub/event-hubs/{samples/typescript/src => samples-dev}/sendEvents.ts (89%) rename sdk/eventhub/event-hubs/{samples/typescript/src => samples-dev}/useWithIotHub.ts (91%) create mode 100644 sdk/eventhub/event-hubs/samples-dev/usingAadAuth.ts rename sdk/eventhub/event-hubs/{samples/typescript/src => samples-dev}/websockets.ts (69%) rename sdk/eventhub/event-hubs/{samples/expressSample/src => samples-express}/README.md (73%) rename sdk/eventhub/event-hubs/{samples/expressSample => samples-express}/package.json (100%) rename sdk/eventhub/event-hubs/{samples/expressSample => samples-express}/src/asyncBatchingProducer.ts (100%) rename sdk/eventhub/event-hubs/{samples/expressSample => samples-express}/src/index.ts (100%) rename sdk/eventhub/event-hubs/{samples/typescript => samples-express}/tsconfig.json (100%) delete mode 100644 sdk/eventhub/event-hubs/samples/javascript/README.md delete mode 100644 sdk/eventhub/event-hubs/samples/javascript/usingAadAuth.js delete mode 100644 sdk/eventhub/event-hubs/samples/tsconfig.json delete mode 100644 sdk/eventhub/event-hubs/samples/typescript/README.md delete mode 100644 sdk/eventhub/event-hubs/samples/typescript/src/usingAadAuth.ts create mode 100644 sdk/eventhub/event-hubs/samples/v5/browser/README.md create mode 100644 sdk/eventhub/event-hubs/samples/v5/browser/index.html rename sdk/eventhub/event-hubs/samples/{javascript => v5/browser}/package.json (62%) create mode 100644 sdk/eventhub/event-hubs/samples/v5/browser/src/configuration.js create mode 100644 sdk/eventhub/event-hubs/samples/v5/browser/src/index.js create mode 100644 sdk/eventhub/event-hubs/samples/v5/browser/src/receiveEvents.js create mode 100644 sdk/eventhub/event-hubs/samples/v5/browser/src/sendEvents.js create mode 100644 sdk/eventhub/event-hubs/samples/v5/express/README.md rename sdk/eventhub/event-hubs/samples/{typescript => v5/express}/package.json (59%) create mode 100644 sdk/eventhub/event-hubs/samples/v5/express/src/asyncBatchingProducer.ts create mode 100644 sdk/eventhub/event-hubs/samples/v5/express/src/index.ts rename sdk/eventhub/event-hubs/samples/{expressSample => v5/express}/tsconfig.json (99%) create mode 100644 sdk/eventhub/event-hubs/samples/v5/javascript/README.md rename sdk/eventhub/event-hubs/samples/{ => v5}/javascript/iothubConnectionString.js (83%) create mode 100644 sdk/eventhub/event-hubs/samples/v5/javascript/package.json rename sdk/eventhub/event-hubs/samples/{ => v5}/javascript/receiveEvents.js (67%) rename sdk/eventhub/event-hubs/samples/{ => v5}/javascript/sample.env (68%) rename sdk/eventhub/event-hubs/samples/{ => v5}/javascript/sendEvents.js (89%) rename sdk/eventhub/event-hubs/samples/{ => v5}/javascript/useWithIotHub.js (86%) create mode 100644 sdk/eventhub/event-hubs/samples/v5/javascript/usingAadAuth.js rename sdk/eventhub/event-hubs/samples/{ => v5}/javascript/websockets.js (62%) create mode 100644 sdk/eventhub/event-hubs/samples/v5/typescript/README.md create mode 100644 sdk/eventhub/event-hubs/samples/v5/typescript/package.json rename sdk/eventhub/event-hubs/samples/{ => v5}/typescript/sample.env (68%) create mode 100644 sdk/eventhub/event-hubs/samples/v5/typescript/src/iothubConnectionString.ts create mode 100644 sdk/eventhub/event-hubs/samples/v5/typescript/src/receiveEvents.ts create mode 100644 sdk/eventhub/event-hubs/samples/v5/typescript/src/sendEvents.ts create mode 100644 sdk/eventhub/event-hubs/samples/v5/typescript/src/useWithIotHub.ts create mode 100644 sdk/eventhub/event-hubs/samples/v5/typescript/src/usingAadAuth.ts create mode 100644 sdk/eventhub/event-hubs/samples/v5/typescript/src/websockets.ts create mode 100644 sdk/eventhub/event-hubs/samples/v5/typescript/tsconfig.json diff --git a/sdk/eventhub/event-hubs/migrationguide.md b/sdk/eventhub/event-hubs/migrationguide.md index f75dd77f61e0..5753c822306d 100644 --- a/sdk/eventhub/event-hubs/migrationguide.md +++ b/sdk/eventhub/event-hubs/migrationguide.md @@ -67,11 +67,11 @@ allowing the `EventHubConsumerClient` to be the single point of entry for receiv ### Client constructors -| In v2 | Equivalent in v5 | Sample | -| ------------------------------------------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `EventHubClient.createFromConnectionString()` | `new EventHubProducerClient()` or `new EventHubConsumerClient()` | [receiveEvents](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/event-hubs/samples/typescript/src/receiveEvents.ts), [sendEvents](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/event-hubs/samples/typescript/src/sendEvents.ts) | -| `EventHubClient.createFromAadTokenCredentials()` | `new EventHubProducerClient()` or `new EventHubConsumerClient()` | [usingAadAuth](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/event-hubs/samples/typescript/src/usingAadAuth.ts) | -| `EventProcessorHost.createFromConnectionString()` | `new EventHubConsumerClient(..., checkpointStore)` | [receiveEventsUsingCheckpointStore](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v1/typescript/src/receiveEventsUsingCheckpointStore.ts) | +| In v2 | Equivalent in v5 | Sample | +| ------------------------------------------------- | ---------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `EventHubClient.createFromConnectionString()` | `new EventHubProducerClient()` or `new EventHubConsumerClient()` | [receiveEvents](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/event-hubs/samples/v5/typescript/src/receiveEvents.ts), [sendEvents](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/event-hubs/samples/v5/typescript/src/sendEvents.ts) | +| `EventHubClient.createFromAadTokenCredentials()` | `new EventHubProducerClient()` or `new EventHubConsumerClient()` | [usingAadAuth](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/event-hubs/samples/v5/typescript/src/usingAadAuth.ts) | +| `EventProcessorHost.createFromConnectionString()` | `new EventHubConsumerClient(..., checkpointStore)` | [receiveEventsUsingCheckpointStore](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v1/typescript/src/receiveEventsUsingCheckpointStore.ts) | Other noteworthy changes: @@ -87,9 +87,9 @@ This and the need to support improvements to the algorithm used for managing par ### Sending events -| In v2 | Equivalent in v5 | Sample | -| ---------------------------------- | ---------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -| `EventHubClient.sendBatch(events)` | `EventHubProducerClient.sendBatch(eventBatch)` | [sendEvents](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/event-hubs/samples/typescript/src/sendEvents.ts) | +| In v2 | Equivalent in v5 | Sample | +| ---------------------------------- | ---------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | +| `EventHubClient.sendBatch(events)` | `EventHubProducerClient.sendBatch(eventBatch)` | [sendEvents](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/event-hubs/samples/v5/typescript/src/sendEvents.ts) | Other noteworthy changes: @@ -174,9 +174,9 @@ if (batch.count > 0) { ### Receiving events -| In v2 | Equivalent in v5 | Sample | -| -------------------------------------------------------------- | ------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------- | -| `EventHubClient.receive()` and `EventHubClient.receiveBatch()` | `EventHubConsumerClient.subscribe()` | [receiveEvents](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/event-hubs/samples/typescript/src/receiveEvents.ts) | +| In v2 | Equivalent in v5 | Sample | +| -------------------------------------------------------------- | ------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------- | +| `EventHubClient.receive()` and `EventHubClient.receiveBatch()` | `EventHubConsumerClient.subscribe()` | [receiveEvents](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/event-hubs/samples/v5/typescript/src/receiveEvents.ts) | Other noteworthy changes: @@ -226,7 +226,7 @@ const subscription = eventHubConsumerClient.subscribe( await subscription.close(); ``` -See [`receiveEvents.ts`](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/event-hubs/samples/typescript/src/receiveEvents.ts) +See [`receiveEvents.ts`](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/event-hubs/samples/v5/typescript/src/receiveEvents.ts) for a sample program demonstrating this. #### Migrating from `EventProcessorHost` to `EventHubConsumerClient` for receiving events @@ -333,7 +333,7 @@ what order, making checkpointing difficult to do correctly. In V5 the model has been simplified so new events are not delivered until the previous batch has been consumed by your event handler. You can see a sample -demonstrating this [here](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/event-hubs/samples/typescript/src/receiveEvents.ts) +demonstrating this [here](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/event-hubs/samples/v5/typescript/src/receiveEvents.ts) ### Creating EventPosition diff --git a/sdk/eventhub/event-hubs/package.json b/sdk/eventhub/event-hubs/package.json index 8fb3d86eeb5e..3b030aa4ad98 100644 --- a/sdk/eventhub/event-hubs/package.json +++ b/sdk/eventhub/event-hubs/package.json @@ -46,17 +46,17 @@ "audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit", "build:browser": "tsc -p . && cross-env ONLY_BROWSER=true rollup -c 2>&1", "build:node": "tsc -p . && cross-env ONLY_NODE=true rollup -c 2>&1", - "build:samples": "dev-tool samples prep && cd dist-samples && tsc", + "build:samples": "echo Obsolete.", "build:test:browser": "tsc -p . && cross-env ONLY_BROWSER=true rollup -c rollup.test.config.js 2>&1", "build:test:node": "tsc -p . && cross-env ONLY_NODE=true rollup -c rollup.test.config.js 2>&1", "build:test": "tsc -p . && rollup -c rollup.test.config.js 2>&1", "build:types": "downlevel-dts types/latest types/3.1", "build": "tsc -p . && rollup -c 2>&1 && api-extractor run --local && npm run build:types", - "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "clean": "rimraf dist dist-* types *.tgz *.log", - "execute:samples": "npm run build:samples && echo Skipped.", + "execute:samples": "dev-tool samples run samples-dev", "extract-api": "tsc -p . && api-extractor run --local", - "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"", + "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "integration-test:browser": "karma start --single-run", "integration-test:node": "nyc mocha -r esm --require source-map-support/register --reporter ../../../common/tools/mocha-multi-reporter.js --timeout 1200000 --full-trace \"dist-esm/test/internal/*.spec.js\" \"dist-esm/test/public/*.spec.js\" \"dist-esm/test/public/**/*.spec.js\" \"dist-esm/test/internal/**/*.spec.js\"", "integration-test": "npm run integration-test:node && npm run integration-test:browser", @@ -82,11 +82,27 @@ ] }, "//sampleConfiguration": { + "extraFiles": { + "./samples-browser": [ + "browser" + ], + "./samples-express": [ + "express" + ] + }, "skip": [ "iothubConnectionString.js", "useWithIotHub.js", "usingAadAuth.js" - ] + ], + "productName": "Azure Event Hubs", + "productSlugs": [ + "azure", + "azure-event-hubs" + ], + "requiredResources": { + "Azure Event Hub": "https://docs.microsoft.com/azure/event-hubs/event-hubs-create" + } }, "dependencies": { "@azure/abort-controller": "^1.0.0", diff --git a/sdk/eventhub/event-hubs/sample.env b/sdk/eventhub/event-hubs/sample.env index 43d461158845..5468713a3295 100644 --- a/sdk/eventhub/event-hubs/sample.env +++ b/sdk/eventhub/event-hubs/sample.env @@ -1,10 +1,9 @@ -# Used in most samples +# Used in most samples. Retrieve these values from an Event Hub in the Azure Portal. EVENTHUB_CONNECTION_STRING= EVENTHUB_NAME= -EVENTHUB_FQDN=.servicebus.windows.net CONSUMER_GROUP_NAME= -# Used in the useWithIotHub.ts sample +# Used in the useWithIotHub sample. Retrieve this value from an IoT Hub's built-in endpoints in the Azure Portal. IOTHUB_EH_COMPATIBLE_CONNECTION_STRING= # Used to authenticate using Azure AD as a service principal for role-based authentication @@ -14,4 +13,5 @@ IOTHUB_EH_COMPATIBLE_CONNECTION_STRING= # https://docs.microsoft.com/javascript/api/@azure/identity/environmentcredential AZURE_CLIENT_ID= AZURE_TENANT_ID= -AZURE_CLIENT_SECRET= \ No newline at end of file +AZURE_CLIENT_SECRET= +EVENTHUB_FQDN=.servicebus.windows.net \ No newline at end of file diff --git a/sdk/eventhub/event-hubs/samples/browserSample/README.md b/sdk/eventhub/event-hubs/samples-browser/README.md similarity index 93% rename from sdk/eventhub/event-hubs/samples/browserSample/README.md rename to sdk/eventhub/event-hubs/samples-browser/README.md index e61d02413b68..e37554524b8e 100644 --- a/sdk/eventhub/event-hubs/samples/browserSample/README.md +++ b/sdk/eventhub/event-hubs/samples-browser/README.md @@ -77,11 +77,11 @@ as the redirect URI you added to your app registration. If you're following alon Take a look at our [API Documentation][apiref] for more information about the APIs that are available in the clients. -[sendevents]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/samples/browserSample/src/sendEvents.js -[receiveevents]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/samples/browserSample/src/receiveEvents.js -[configuration]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/samples/browserSample/src/configuration.js -[app]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/samples/browserSample/src/index.js -[htmlpage]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/samples/browserSample/index.html +[sendevents]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/samples/v5/browser/src/sendEvents.js +[receiveevents]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/samples/v5/browser/src/receiveEvents.js +[configuration]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/samples/v5/browser/src/configuration.js +[app]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/samples/v5/browser/src/index.js +[htmlpage]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/samples/v5/browser/index.html [apiref]: https://docs.microsoft.com/javascript/api/@azure/event-hubs [azhubacct]: https://docs.microsoft.com/azure/event-hubs/event-hubs-node-get-started-send [aziothub]: https://docs.microsoft.com/azure/iot-hub/iot-hub-node-node-module-twin-getstarted diff --git a/sdk/eventhub/event-hubs/samples/browserSample/index.html b/sdk/eventhub/event-hubs/samples-browser/index.html similarity index 100% rename from sdk/eventhub/event-hubs/samples/browserSample/index.html rename to sdk/eventhub/event-hubs/samples-browser/index.html diff --git a/sdk/eventhub/event-hubs/samples/browserSample/package.json b/sdk/eventhub/event-hubs/samples-browser/package.json similarity index 100% rename from sdk/eventhub/event-hubs/samples/browserSample/package.json rename to sdk/eventhub/event-hubs/samples-browser/package.json diff --git a/sdk/eventhub/event-hubs/samples/browserSample/src/configuration.js b/sdk/eventhub/event-hubs/samples-browser/src/configuration.js similarity index 100% rename from sdk/eventhub/event-hubs/samples/browserSample/src/configuration.js rename to sdk/eventhub/event-hubs/samples-browser/src/configuration.js diff --git a/sdk/eventhub/event-hubs/samples/browserSample/src/index.js b/sdk/eventhub/event-hubs/samples-browser/src/index.js similarity index 100% rename from sdk/eventhub/event-hubs/samples/browserSample/src/index.js rename to sdk/eventhub/event-hubs/samples-browser/src/index.js diff --git a/sdk/eventhub/event-hubs/samples/browserSample/src/receiveEvents.js b/sdk/eventhub/event-hubs/samples-browser/src/receiveEvents.js similarity index 100% rename from sdk/eventhub/event-hubs/samples/browserSample/src/receiveEvents.js rename to sdk/eventhub/event-hubs/samples-browser/src/receiveEvents.js diff --git a/sdk/eventhub/event-hubs/samples/browserSample/src/sendEvents.js b/sdk/eventhub/event-hubs/samples-browser/src/sendEvents.js similarity index 100% rename from sdk/eventhub/event-hubs/samples/browserSample/src/sendEvents.js rename to sdk/eventhub/event-hubs/samples-browser/src/sendEvents.js diff --git a/sdk/eventhub/event-hubs/samples/typescript/src/iothubConnectionString.ts b/sdk/eventhub/event-hubs/samples-dev/iothubConnectionString.ts similarity index 89% rename from sdk/eventhub/event-hubs/samples/typescript/src/iothubConnectionString.ts rename to sdk/eventhub/event-hubs/samples-dev/iothubConnectionString.ts index 9acdac9fce99..65de46db56df 100644 --- a/sdk/eventhub/event-hubs/samples/typescript/src/iothubConnectionString.ts +++ b/sdk/eventhub/event-hubs/samples-dev/iothubConnectionString.ts @@ -1,26 +1,21 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT Licence. -/* - This sample demonstrates how to convert an Iot Hub connection string to - an Event Hubs connection string that points to the built-in messaging endpoint. - - The Event Hubs connection string is then used with the EventHubConsumerClient to - receive events. +/** + * @summary Demonstrates how to convert an IoT Hub connection string to an Event Hubs connection string that points to the built-in messaging endpoint. + */ - More information about the built-in messaging endpoint can be found at: - https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-devguide-messages-read-builtin -*/ +/* + * The Event Hubs connection string is then used with the EventHubConsumerClient to receive events. + * + * More information about the built-in messaging endpoint can be found at: + * https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-devguide-messages-read-builtin + */ import * as crypto from "crypto"; import { Buffer } from "buffer"; -import { - AmqpError, - Connection, - ReceiverEvents, - isAmqpError as rheaIsAmqpError, - parseConnectionString -} from "rhea-promise"; +import { AmqpError, Connection, ReceiverEvents, parseConnectionString } from "rhea-promise"; +import rheaPromise from "rhea-promise"; import { EventHubConsumerClient, earliestEventPosition } from "@azure/event-hubs"; // Load the .env file if it exists @@ -32,7 +27,7 @@ dotenv.config(); * @param err - An unknown error. */ function isAmqpError(err: any): err is AmqpError { - return rheaIsAmqpError(err); + return rheaPromise.isAmqpError(err); } const consumerGroup = process.env["CONSUMER_GROUP_NAME"] || ""; diff --git a/sdk/eventhub/event-hubs/samples/typescript/src/receiveEvents.ts b/sdk/eventhub/event-hubs/samples-dev/receiveEvents.ts similarity index 69% rename from sdk/eventhub/event-hubs/samples/typescript/src/receiveEvents.ts rename to sdk/eventhub/event-hubs/samples-dev/receiveEvents.ts index 21c29531d866..db5f8743d4ad 100644 --- a/sdk/eventhub/event-hubs/samples/typescript/src/receiveEvents.ts +++ b/sdk/eventhub/event-hubs/samples-dev/receiveEvents.ts @@ -1,21 +1,11 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT Licence. -/* - This sample demonstrates how to use the EventHubConsumerClient to process events from all partitions - of a consumer group in an Event Hubs instance. - - If your Event Hub instance doesn't have any events, then please run "sendEvents.ts" sample - to populate it before running this sample. - - For an example that uses checkpointing, see the sample in the eventhubs-checkpointstore-blob package - on GitHub at the following link: - - https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/eventhubs-checkpointstore-blob/samples/typescript/src/receiveEventsUsingCheckpointStore.ts - - Note: If you are using version 2.1.0 or lower of @azure/event-hubs library, then please use the samples at - https://github.com/Azure/azure-sdk-for-js/tree/%40azure/event-hubs_2.1.0/sdk/eventhub/event-hubs/samples instead. -*/ +/** + * @summary Demonstrates how to use the EventHubConsumerClient to process events from all partitions of a consumer group in an Event Hub. + * + * @azsdk-weight 50 + */ import { EventHubConsumerClient, earliestEventPosition } from "@azure/event-hubs"; diff --git a/sdk/eventhub/event-hubs/samples/typescript/src/sendEvents.ts b/sdk/eventhub/event-hubs/samples-dev/sendEvents.ts similarity index 89% rename from sdk/eventhub/event-hubs/samples/typescript/src/sendEvents.ts rename to sdk/eventhub/event-hubs/samples-dev/sendEvents.ts index 1c5adabe690c..ee81e93f31d2 100644 --- a/sdk/eventhub/event-hubs/samples/typescript/src/sendEvents.ts +++ b/sdk/eventhub/event-hubs/samples-dev/sendEvents.ts @@ -1,13 +1,11 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT Licence. -/* - This sample demonstrates how the send() function can be used to send events to Event Hubs. - See https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-about to learn about Event Hubs. - - Note: If you are using version 2.1.0 or lower of @azure/event-hubs library, then please use the samples at - https://github.com/Azure/azure-sdk-for-js/tree/%40azure/event-hubs_2.1.0/sdk/eventhub/event-hubs/samples instead. -*/ +/** + * @summary Demonstrates how to send events to an Event Hub. + * + * @azsdk-weight 60 + */ import { EventHubProducerClient } from "@azure/event-hubs"; diff --git a/sdk/eventhub/event-hubs/samples/typescript/src/useWithIotHub.ts b/sdk/eventhub/event-hubs/samples-dev/useWithIotHub.ts similarity index 91% rename from sdk/eventhub/event-hubs/samples/typescript/src/useWithIotHub.ts rename to sdk/eventhub/event-hubs/samples-dev/useWithIotHub.ts index 803068ed1dc9..08dcfccc77d1 100644 --- a/sdk/eventhub/event-hubs/samples/typescript/src/useWithIotHub.ts +++ b/sdk/eventhub/event-hubs/samples-dev/useWithIotHub.ts @@ -1,9 +1,10 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT Licence. -/* - This sample demonstrates how to use the EventHubClient with an IotHub instance -*/ +/** + * @summary Demonstrates how to use the EventHubConsumerClient to receive messages from an IoT Hub. + */ + import { EventHubConsumerClient } from "@azure/event-hubs"; // Load the .env file if it exists diff --git a/sdk/eventhub/event-hubs/samples-dev/usingAadAuth.ts b/sdk/eventhub/event-hubs/samples-dev/usingAadAuth.ts new file mode 100644 index 000000000000..f2ab90e896ff --- /dev/null +++ b/sdk/eventhub/event-hubs/samples-dev/usingAadAuth.ts @@ -0,0 +1,58 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT Licence. + +/** + * @summary Demonstrates how to instantiate EventHubsClient using AAD token credentials obtained from using service principal secrets. + * + * @azsdk-weight 40 + */ + +/* + * Setup : + * Register a new application in AAD and assign the "Azure Event Hubs Data Owner" role to it + * - See https://docs.microsoft.com/en-us/azure/active-directory/develop/quickstart-register-app + * to register a new application in the Azure Active Directory. + * - Note down the CLIENT_ID and TENANT_ID from the above step. + * - In the "Certificates & Secrets" tab, create a secret and note that down. + * - In the Azure portal, go to your Even Hubs resource and click on the Access control (IAM) + * tab. Here, assign the "Azure Event Hubs Data Owner" role to the registered application. + * - For more information on Event Hubs RBAC setup, learn more at https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-role-based-access-control) + * + */ + +import { EventHubConsumerClient } from "@azure/event-hubs"; +import { DefaultAzureCredential } from "@azure/identity"; + +// Load the .env file if it exists +import * as dotenv from "dotenv"; +dotenv.config(); + +// Define Event Hubs Endpoint and related entity name here here +const eventHubsFullyQualifiedName = process.env["EVENTHUB_FQDN"] || ""; // .servicebus.windows.net +const eventHubName = process.env["EVENTHUB_NAME"] || ""; +const consumerGroup = process.env["CONSUMER_GROUP_NAME"] || ""; + +// Define AZURE_TENANT_ID, AZURE_CLIENT_ID and AZURE_CLIENT_SECRET of your AAD application in your environment + +export async function main(): Promise { + console.log(`Running usingAadAuth sample`); + + const credential = new DefaultAzureCredential(); + const client = new EventHubConsumerClient( + consumerGroup, + eventHubsFullyQualifiedName, + eventHubName, + credential + ); + /* + Refer to other samples, and place your code here + to send/receive events + */ + await client.close(); + + console.log(`Exiting usingAadAuth sample`); +} + +main().catch((error) => { + console.error("Error running sample:", error); +}); diff --git a/sdk/eventhub/event-hubs/samples/typescript/src/websockets.ts b/sdk/eventhub/event-hubs/samples-dev/websockets.ts similarity index 69% rename from sdk/eventhub/event-hubs/samples/typescript/src/websockets.ts rename to sdk/eventhub/event-hubs/samples-dev/websockets.ts index ac0a53d88d77..1e69950146f9 100644 --- a/sdk/eventhub/event-hubs/samples/typescript/src/websockets.ts +++ b/sdk/eventhub/event-hubs/samples-dev/websockets.ts @@ -1,18 +1,14 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT Licence. -/* - This sample demonstrates how to use WebSockets enable Event Hubs to work over an HTTP proxy and - in environments where the standard AMQP port 5671 is blocked. For the latter case, ignore proxy - related configurations in this sample. - - This sample uses 2 external libraries - - The `ws` library to provide a WebSocket implementation to the Event Hubs library. - - The `https-proxy-agent` to enable the `ws` library to work with a proxy server. +/** + * @summary Demonstrates how to connect to Azure Event Hubs over websockets to work over an HTTP proxy. + */ - Note: If you are using version 2.1.0 or lower of @azure/event-hubs library, then please use the samples at - https://github.com/Azure/azure-sdk-for-js/tree/%40azure/event-hubs_2.1.0/sdk/eventhub/event-hubs/samples instead. -*/ +/* + * In environments where the standard AMQP port 5671 is blocked and you don't want to connect through a proxy, + * ignore proxy related configurations in this sample. + */ import WebSocket from "ws"; const url = require("url"); diff --git a/sdk/eventhub/event-hubs/samples/expressSample/src/README.md b/sdk/eventhub/event-hubs/samples-express/README.md similarity index 73% rename from sdk/eventhub/event-hubs/samples/expressSample/src/README.md rename to sdk/eventhub/event-hubs/samples-express/README.md index 9c2840f9954b..be5e68b8ec86 100644 --- a/sdk/eventhub/event-hubs/samples/expressSample/src/README.md +++ b/sdk/eventhub/event-hubs/samples-express/README.md @@ -3,10 +3,10 @@ This sample programs show how to use the JavaScript client libraries for Azure Event Hubs to send events in the node express framework. One scenario is building an HTTP-based service that accepts events as part of an HTTP request, then transforms and sends those events into a downstream Event Hub. -| **File Name** | **Description** | -| --------------------------------- | ------------------------------------------------------------------------------------------------------------------------------ | +| **File Name** | **Description** | +| ----------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------ | | [asyncBatchingProducer.ts][eventproducer] | Demonstrates how the send() function can be used to send events to an Event Hub instance. Support batch send and time trigger. | -| [index.ts][index] | Express Http server entry point. Receive http payload and use AsyncBatchingProducer to ingest payload to eventHub. | +| [index.ts][index] | Express Http server entry point. Receive http payload and use AsyncBatchingProducer to ingest payload to eventHub. | ## Prerequisites @@ -49,6 +49,6 @@ curl --header "Content-Type: application/json" \ Take a look at our [API Documentation][apiref] for more information about the APIs that are available in the clients. -[eventproducer]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/samples/expressSample/src/asyncBatchingProducer.ts -[index]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/samples/expressSample/src/index.ts +[eventproducer]: https://github.com/Azure/azure-sdk-for-js/tree/main//sdk/eventhub/event-hubs/samples/v5/express/src/asyncBatchingProducer.ts +[index]: https://github.com/Azure/azure-sdk-for-js/tree/main//sdk/eventhub/event-hubs/samples/v5/express/src/index.ts [apiref]: https://docs.microsoft.com/javascript/api/@azure/event-hubs diff --git a/sdk/eventhub/event-hubs/samples/expressSample/package.json b/sdk/eventhub/event-hubs/samples-express/package.json similarity index 100% rename from sdk/eventhub/event-hubs/samples/expressSample/package.json rename to sdk/eventhub/event-hubs/samples-express/package.json diff --git a/sdk/eventhub/event-hubs/samples/expressSample/src/asyncBatchingProducer.ts b/sdk/eventhub/event-hubs/samples-express/src/asyncBatchingProducer.ts similarity index 100% rename from sdk/eventhub/event-hubs/samples/expressSample/src/asyncBatchingProducer.ts rename to sdk/eventhub/event-hubs/samples-express/src/asyncBatchingProducer.ts diff --git a/sdk/eventhub/event-hubs/samples/expressSample/src/index.ts b/sdk/eventhub/event-hubs/samples-express/src/index.ts similarity index 100% rename from sdk/eventhub/event-hubs/samples/expressSample/src/index.ts rename to sdk/eventhub/event-hubs/samples-express/src/index.ts diff --git a/sdk/eventhub/event-hubs/samples/typescript/tsconfig.json b/sdk/eventhub/event-hubs/samples-express/tsconfig.json similarity index 100% rename from sdk/eventhub/event-hubs/samples/typescript/tsconfig.json rename to sdk/eventhub/event-hubs/samples-express/tsconfig.json diff --git a/sdk/eventhub/event-hubs/samples/javascript/README.md b/sdk/eventhub/event-hubs/samples/javascript/README.md deleted file mode 100644 index 3f7852236241..000000000000 --- a/sdk/eventhub/event-hubs/samples/javascript/README.md +++ /dev/null @@ -1,78 +0,0 @@ ---- -page_type: sample -languages: - - javascript -products: - - azure - - azure-event-hubs -urlFragment: event-hubs-javascript ---- - -# Azure Event Hubs client library samples for JavaScript - -These sample programs show how to use the JavaScript client libraries for Azure Event Hubs in some common scenarios. - -| **File Name** | **Description** | -| --------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [sendEvents.js][sendevents] | demonstrates how the send() function can be used to send events to Event Hubs | -| [useWithIotHub.js][usewithiothub] | demonstrates how to use the `EventHubClient` with an `IotHub` instance | -| [websockets.js][websockets] | demonstrates how to use WebSockets enable Event Hubs to work over an HTTP proxy and in environments where the standard AMQP port 5671 is blocked (see the sample for more information) | -| [usingAadAuth.js][usingaadauth] | demonstrates how to instantiate EventHubsClient using AAD token credentials obtained from using Service Principal Secrets | -| [receiveEvents.js][receiveevents] | demonstrates how to use the EventHubConsumerClient to process events from all partitions of a consumer group in an Event Hubs instance. | - -**Note**: `EventHubConsumerClient` supports checkpointing using the `@azure/eventhubs-checkpointstore-blob` and `@azure/storage-blob` packages. For an example that demonstrates how to use this functionality, see the [receiveEventsUsingCheckpointStore][checkpointing] sample in the `@azure/eventhubs-checkpointstore-blob` repository. - -## Prerequisites - -The samples are compatible with Node.js >= 8.0.0. - -You need [an Azure subscription][freesub] and [an Azure Event Hub resource][azhubacct] to run these sample programs. The IOT Hub sample additionally requires an [IOT Hub resource][aziothub]. Samples retrieve credentials to access the event hub from environment variables. Alternatively, edit the source code to include the appropriate credentials. See each individual sample for details on which environment variables/credentials it requires to function. - -Adapting the samples to run in the browser requires some additional consideration. For details, please see the [package README][package]. - -## Setup - -To run the samples using the published version of the package: - -1. Install the dependencies using `npm`: - -```bash -npm install -``` - -2. Compile the samples - -```bash -npm run build -``` - -3. Edit the file `sample.env`, adding the correct credentials to access the Azure service and run the samples. Then rename the file from `sample.env` to just `.env`. The sample programs will read this file automatically. - -4. Run whichever samples you like (note that some samples may require additional setup, see the table above): - -```bash -node dist/sendEvents.js -``` - -Alternatively, run a single sample with the correct environment variables set (step 3 is not required if you do this), for example (cross-platform): - -```bash -npx cross-env EVENTHUB_NAME="" EVENTHUB_CONNECTION_STRING="" node dist/sendEvents.js -``` - -## Next Steps - -Take a look at our [API Documentation][apiref] for more information about the APIs that are available in the clients. - -[sendevents]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/samples/javascript/sendEvents.js -[usewithiothub]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/samples/javascript/useWithIotHub.js -[websockets]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/samples/javascript/websockets.js -[usingaadauth]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/samples/javascript/usingAadAuth.js -[receiveevents]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/samples/javascript/receiveEvents.js -[apiref]: https://docs.microsoft.com/javascript/api/@azure/event-hubs -[checkpointing]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v1/javascript/receiveEventsUsingCheckpointStore.js -[azhubacct]: https://docs.microsoft.com/azure/event-hubs/event-hubs-node-get-started-send -[aziothub]: https://docs.microsoft.com/azure/iot-hub/iot-hub-node-node-module-twin-getstarted -[freesub]: https://azure.microsoft.com/free/ -[package]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/README.md -[typescript]: https://www.typescriptlang.org/docs/home.html diff --git a/sdk/eventhub/event-hubs/samples/javascript/usingAadAuth.js b/sdk/eventhub/event-hubs/samples/javascript/usingAadAuth.js deleted file mode 100644 index 532256742443..000000000000 --- a/sdk/eventhub/event-hubs/samples/javascript/usingAadAuth.js +++ /dev/null @@ -1,62 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT Licence. - -/* - This sample demonstrates how to instantiate EventHubsClient using AAD token credentials - obtained from using Service Principal Secrets. - - Setup : - Please ensure that your Azure Event Hubs resource is in US East, US East 2, or West Europe - region. AAD Role Based Access Control is not supported in other regions yet. - - Register a new application in AAD and assign the "Azure Event Hubs Data Owner" role to it - - See https://docs.microsoft.com/en-us/azure/active-directory/develop/quickstart-register-app - to register a new application in the Azure Active Directory. - - Note down the CLIENT_ID and TENANT_ID from the above step. - - In the "Certificates & Secrets" tab, create a secret and note that down. - - In the Azure portal, go to your Even Hubs resource and click on the Access control (IAM) - tab. Here, assign the "Azure Event Hubs Data Owner" role to the registered application. - - For more information on Event Hubs RBAC setup, learn more at - https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-role-based-access-control) - - Note: If you are using version 2.1.0 or lower of @azure/event-hubs library, then please use the samples at - https://github.com/Azure/azure-sdk-for-js/tree/%40azure/event-hubs_2.1.0/sdk/eventhub/event-hubs/samples instead. -*/ - -const { EventHubConsumerClient } = require("@azure/event-hubs"); -const { DefaultAzureCredential } = require("@azure/identity"); - -// Load the .env file if it exists -require("dotenv").config(); - -// Define Event Hubs Endpoint and related entity name here here -const eventHubsFullyQualifiedName = process.env["EVENTHUB_FQDN"] || ""; // .servicebus.windows.net -const eventHubName = process.env["EVENTHUB_NAME"] || ""; -const consumerGroup = process.env["CONSUMER_GROUP_NAME"] || ""; - -// Define AZURE_TENANT_ID, AZURE_CLIENT_ID and AZURE_CLIENT_SECRET of your AAD application in your environment - -async function main() { - console.log(`Running usingAadAuth sample`); - - const credential = new DefaultAzureCredential(); - const client = new EventHubConsumerClient( - consumerGroup, - eventHubsFullyQualifiedName, - eventHubName, - credential - ); - - /* - Refer to other samples, and place your code here - to send/receive events - */ - - await client.close(); - - console.log(`Exiting usingAadAuth sample`); -} - -main().catch((error) => { - console.error("Error running sample:", error); -}); diff --git a/sdk/eventhub/event-hubs/samples/tsconfig.json b/sdk/eventhub/event-hubs/samples/tsconfig.json deleted file mode 100644 index 1d8abe1f8fc1..000000000000 --- a/sdk/eventhub/event-hubs/samples/tsconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "extends": "../tsconfig.json", - "compilerOptions": { - "module": "commonjs", - "outDir": "typescript/dist" - }, - "include": ["typescript/src/**.ts"], - "exclude": ["typescript/*.json", "**/node_modules/", "../node_modules", "../types"] -} diff --git a/sdk/eventhub/event-hubs/samples/typescript/README.md b/sdk/eventhub/event-hubs/samples/typescript/README.md deleted file mode 100644 index f167367a1639..000000000000 --- a/sdk/eventhub/event-hubs/samples/typescript/README.md +++ /dev/null @@ -1,84 +0,0 @@ ---- -page_type: sample -languages: - - typescript -products: - - azure - - azure-event-hubs -urlFragment: event-hubs-typescript ---- - -# Azure Event Hubs client library samples for TypeScript - -These sample programs show how to use the TypeScript client libraries for Azure Event Hubs in some common scenarios. - -| **File Name** | **Description** | -| --------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [sendEvents.ts][sendevents] | demonstrates how the send() function can be used to send events to Event Hubs | -| [useWithIotHub.ts][usewithiothub] | demonstrates how to use the `EventHubClient` with an `IotHub` instance | -| [websockets.ts][websockets] | demonstrates how to use WebSockets enable Event Hubs to work over an HTTP proxy and in environments where the standard AMQP port 5671 is blocked (see the sample for more information) | -| [usingAadAuth.ts][usingaadauth] | demonstrates how to instantiate EventHubsClient using AAD token credentials obtained from using Service Principal Secrets | -| [receiveEvents.ts][receiveevents] | demonstrates how to use the EventHubConsumerClient to process events from all partitions of a consumer group in an Event Hubs instance. | - -**Note**: `EventHubConsumerClient` supports checkpointing using the `@azure/eventhubs-checkpointstore-blob` and `@azure/storage-blob` packages. For an example that demonstrates how to use this functionality, see the [receiveEventsUsingCheckpointStore][checkpointing] sample in the `@azure/eventhubs-checkpointstore-blob` repository. - -## Prerequisites - -The samples are compatible with Node.js >= 8.0.0, except for the samples that use the async `for await` syntax, which require a Node.js >= 10.0.0. - -Before running the samples in Node, they must be compiled to JavaScript using the TypeScript compiler. For more information on TypeScript, see the [TypeScript documentation][typescript]. Install the TypeScript compiler using - -```bash -npm install -g typescript -``` - -You need [an Azure subscription][freesub] and [an Azure Event Hub resource][azhubacct] to run these sample programs. The IOT Hub sample additionally requires an [IOT Hub resource][aziothub]. Samples retrieve credentials to access the event hub from environment variables. Alternatively, edit the source code to include the appropriate credentials. See each individual sample for details on which environment variables/credentials it requires to function. - -Adapting the samples to run in the browser requires some additional consideration. For details, please see the [package README][package]. - -## Setup - -To run the samples using the published version of the package: - -1. Install the dependencies using `npm`: - -```bash -npm install -``` - -2. Compile the samples - -```bash -npm run build -``` - -3. Edit the file `sample.env`, adding the correct credentials to access the Azure service and run the samples. Then rename the file from `sample.env` to just `.env`. The sample programs will read this file automatically. - -4. Run whichever samples you like (note that some samples may require additional setup, see the table above): - -```bash -node dist/sendEvents.js -``` - -Alternatively, run a single sample with the correct environment variables set (step 3 is not required if you do this), for example (cross-platform): - -```bash -npx cross-env EVENTHUB_NAME="" EVENTHUB_CONNECTION_STRING="" node dist/sendEvents.js -``` - -## Next Steps - -Take a look at our [API Documentation][apiref] for more information about the APIs that are available in the clients. - -[sendevents]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/samples/typescript/src/sendEvents.ts -[usewithiothub]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/samples/typescript/src/useWithIotHub.ts -[websockets]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/samples/typescript/src/websockets.ts -[usingaadauth]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/samples/typescript/src/usingAadAuth.ts -[receiveevents]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/samples/typescript/src/receiveEvents.ts -[apiref]: https://docs.microsoft.com/javascript/api/@azure/event-hubs -[checkpointing]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/eventhubs-checkpointstore-blob/samples/v1/typescript/src/receiveEventsUsingCheckpointStore.ts -[azhubacct]: https://docs.microsoft.com/azure/event-hubs/event-hubs-node-get-started-send -[aziothub]: https://docs.microsoft.com/azure/iot-hub/iot-hub-node-node-module-twin-getstarted -[freesub]: https://azure.microsoft.com/free/ -[package]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/README.md -[typescript]: https://www.typescriptlang.org/docs/home.html diff --git a/sdk/eventhub/event-hubs/samples/typescript/src/usingAadAuth.ts b/sdk/eventhub/event-hubs/samples/typescript/src/usingAadAuth.ts deleted file mode 100644 index 856efc49d4cf..000000000000 --- a/sdk/eventhub/event-hubs/samples/typescript/src/usingAadAuth.ts +++ /dev/null @@ -1,60 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT Licence. - -/* - This sample demonstrates how to instantiate EventHubsClient using AAD token credentials - obtained from using Service Principal Secrets. - - Setup : - Please ensure that your Azure Event Hubs resource is in US East, US East 2, or West Europe - region. AAD Role Based Access Control is not supported in other regions yet. - - Register a new application in AAD and assign the "Azure Event Hubs Data Owner" role to it - - See https://docs.microsoft.com/en-us/azure/active-directory/develop/quickstart-register-app - to register a new application in the Azure Active Directory. - - Note down the CLIENT_ID and TENANT_ID from the above step. - - In the "Certificates & Secrets" tab, create a secret and note that down. - - In the Azure portal, go to your Even Hubs resource and click on the Access control (IAM) - tab. Here, assign the "Azure Event Hubs Data Owner" role to the registered application. - - For more information on Event Hubs RBAC setup, learn more at - https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-role-based-access-control) - - Note: If you are using version 2.1.0 or lower of @azure/event-hubs library, then please use the samples at - https://github.com/Azure/azure-sdk-for-js/tree/%40azure/event-hubs_2.1.0/sdk/eventhub/event-hubs/samples instead. -*/ -import { EventHubConsumerClient } from "@azure/event-hubs"; -import { DefaultAzureCredential } from "@azure/identity"; - -// Load the .env file if it exists -import * as dotenv from "dotenv"; -dotenv.config(); - -// Define Event Hubs Endpoint and related entity name here here -const eventHubsFullyQualifiedName = process.env["EVENTHUB_FQDN"] || ""; // .servicebus.windows.net -const eventHubName = process.env["EVENTHUB_NAME"] || ""; -const consumerGroup = process.env["CONSUMER_GROUP_NAME"] || ""; - -// Define AZURE_TENANT_ID, AZURE_CLIENT_ID and AZURE_CLIENT_SECRET of your AAD application in your environment - -export async function main(): Promise { - console.log(`Running usingAadAuth sample`); - - const credential = new DefaultAzureCredential(); - const client = new EventHubConsumerClient( - consumerGroup, - eventHubsFullyQualifiedName, - eventHubName, - credential - ); - /* - Refer to other samples, and place your code here - to send/receive events - */ - await client.close(); - - console.log(`Exiting usingAadAuth sample`); -} - -main().catch((error) => { - console.error("Error running sample:", error); -}); diff --git a/sdk/eventhub/event-hubs/samples/v5/browser/README.md b/sdk/eventhub/event-hubs/samples/v5/browser/README.md new file mode 100644 index 000000000000..e37554524b8e --- /dev/null +++ b/sdk/eventhub/event-hubs/samples/v5/browser/README.md @@ -0,0 +1,90 @@ +--- +page_type: sample +languages: + - javascript +products: + - azure + - azure-event-hubs +urlFragment: event-hubs-javascript-browser +--- + +# Azure Event Hubs client library browser samples for JavaScript + +This sample programs show how to use the JavaScript client libraries for Azure Event Hubs to send and receive events in the browser while authenticating with Azure Active Directory. + +| **File Name** | **Description** | +| --------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | +| [sendEvents.js][sendevents] | Demonstrates how the send() function can be used to send events to an Event Hub instance. | +| [receiveEvents.js][receiveevents] | Demonstrates how to use the EventHubConsumerClient to process events from all partitions of a consumer group in an Event Hubs instance. | +| [configuration.js][configuration] | Contains the configuration needed to authenticate and connect to an Event Hub instance. | +| [index.js][app] | Hooks up the send and receive samples to their respective buttons in the web application. | +| [index.html][htmlpage] | The web page that loads and runs the samples. Use a local web service to test by running `npm start` after building the app. | + +## Prerequisites + +The samples are compatible with Node.js >= 8.0.0 and run in browsers that support async/await (e.g. Edge, Firefox, Chrome.) + +You need [an Azure subscription][freesub] and [an Azure Event Hub resource][azhubacct] to run these sample programs. +Samples retrieve credentials using the [InteractiveBrowserCredential][browsercred] from `@azure/identity`. +You can set the Event Hubs and authentication properties you'll need to run the sample in the [configuration.js][configuration] file. + +Register a new application in AAD and assign the "Azure Event Hubs Data Owner" role to it. + +- See https://docs.microsoft.com/azure/active-directory/develop/quickstart-register-app + to register a new application in the Azure Active Directory. +- Note down the client id and tenant id from the above step. + You will need to set these in the [configuration.js][configuration] file. + +Ensure your app registration has been configured properly to allow the [implicit grant flow][implicitgrantflow] +and allow both `Access tokens` and `ID tokens` to be issued by the authorization endpoint. +Also add a `redirect URI` that points to where you'll be hosting your application. +For running the sample locally, you can set this to `http://localhost:8080`. +In your app registration, you will also need to add a permission for the `Microsoft.EventHubs` app. +When adding permission for `Microsoft.EventHubs`, the type should be `delegated permissions` and the permission should be `user_impersonation`. + +## Setup + +To run the samples using the published version of the package: + +1. Install the dependencies using `npm`: + +```bash +npm install +``` + +2. Create a bundle JavaScript file that can be ran in the browser: + +```bash +npm run build +``` + +3. Serve the web page on http://localhost:8080: + +```bash +npm start +``` + +4. Navigate to the web page by visiting http://localhost:8080 in a browser. + +## Troubleshooting + +### Authentication error: AADSTS50011 + +If you receive error `AADSTS50011` with the message `The reply URL specified in the request does not match the reply URLs configured for the application`, make sure that you're accessing the sample using the same URI +as the redirect URI you added to your app registration. If you're following along with the sample, this should be `http://localhost:8080`. + +## Next Steps + +Take a look at our [API Documentation][apiref] for more information about the APIs that are available in the clients. + +[sendevents]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/samples/v5/browser/src/sendEvents.js +[receiveevents]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/samples/v5/browser/src/receiveEvents.js +[configuration]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/samples/v5/browser/src/configuration.js +[app]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/samples/v5/browser/src/index.js +[htmlpage]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/samples/v5/browser/index.html +[apiref]: https://docs.microsoft.com/javascript/api/@azure/event-hubs +[azhubacct]: https://docs.microsoft.com/azure/event-hubs/event-hubs-node-get-started-send +[aziothub]: https://docs.microsoft.com/azure/iot-hub/iot-hub-node-node-module-twin-getstarted +[freesub]: https://azure.microsoft.com/free/ +[browsercred]: https://github.com/Azure/azure-sdk-for-js/blob/main/documentation/using-azure-identity.md#interactivebrowsercredential +[implicitgrantflow]: https://docs.microsoft.com/azure/active-directory/develop/v2-oauth2-implicit-grant-flow diff --git a/sdk/eventhub/event-hubs/samples/v5/browser/index.html b/sdk/eventhub/event-hubs/samples/v5/browser/index.html new file mode 100644 index 000000000000..6bee5b189da3 --- /dev/null +++ b/sdk/eventhub/event-hubs/samples/v5/browser/index.html @@ -0,0 +1,79 @@ + + + + + Azure Event Hubs Sample + + + + +

Event Hubs Sample

+
+ This sample uses the + + InteractiveBrowserCredential + + to authenticate. +
    +
  • Click "Send" to send an event to your Event Hub.
  • +
  • Click "Receive" to begin receiving events from your Event Hub.
  • +
+
+
+ + +
+ +
+ +
+ +
+
+
+ +
+ +
+
+ + + diff --git a/sdk/eventhub/event-hubs/samples/javascript/package.json b/sdk/eventhub/event-hubs/samples/v5/browser/package.json similarity index 62% rename from sdk/eventhub/event-hubs/samples/javascript/package.json rename to sdk/eventhub/event-hubs/samples/v5/browser/package.json index d8ba73b23959..25a1940699d8 100644 --- a/sdk/eventhub/event-hubs/samples/javascript/package.json +++ b/sdk/eventhub/event-hubs/samples/v5/browser/package.json @@ -1,11 +1,15 @@ { - "name": "azure-event-hubs-samples-js", + "name": "azure-event-hubs-samples-browser", "private": true, "version": "0.1.0", "description": "Azure Event Hubs client library samples for JavaScript", "engine": { "node": ">=8.0.0" }, + "scripts": { + "build": "webpack-cli ./src/index.js -o ./dist/app.js", + "start": "http-server ./" + }, "repository": { "type": "git", "url": "git+https://github.com/Azure/azure-sdk-for-js.git" @@ -13,8 +17,7 @@ "keywords": [ "Azure", "Event Hubs", - "Checkpoint Store", - "Node.js", + "Browser", "JavaScript" ], "author": "Microsoft Corporation", @@ -25,17 +28,13 @@ "homepage": "https://github.com/Azure/azure-sdk-for-js#readme", "sideEffects": false, "dependencies": { - "@azure/core-amqp": "latest", - "@azure/event-hubs": "latest", - "@types/dotenv": "^8.2.0", - "@types/ws": "^6.0.4", - "dotenv": "^8.2.0", - "https-proxy-agent": "^5.0.0", - "rhea-promise": "^1.0.0", - "tslib": "^1.9.3", - "ws": "^7.2.0" + "@azure/event-hubs": "^5.0.0", + "@azure/identity": "^1.0.2" }, "devDependencies": { - "rimraf": "^3.0.0" + "http-server": "^0.12.1", + "rimraf": "^3.0.0", + "webpack": "^4.41.5", + "webpack-cli": "^3.3.10" } } diff --git a/sdk/eventhub/event-hubs/samples/v5/browser/src/configuration.js b/sdk/eventhub/event-hubs/samples/v5/browser/src/configuration.js new file mode 100644 index 000000000000..a18793a43937 --- /dev/null +++ b/sdk/eventhub/event-hubs/samples/v5/browser/src/configuration.js @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT Licence. + +/** + * This file contains the configuration settings needed to authenticate and connect + * to an Event Hub. + * + * These settings will be used both when sending and receiving events. + */ +module.exports = { + /** + * The full namespace likely similar to `.servicebus.windows.net`. + */ + fullyQualifiedNamespace: "namespace.servicebus.windows.net", + /** + * The name of the specific Event Hub to use when sending and receiving events. + */ + eventHubName: "event-hub-name", + /** + * The name of the consumer group from which you want to process events. + */ + consumerGroup: "consumer-group", + /** + * The Client (Application) id from the app registration you created. + */ + appClientId: "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", + /** + * The Tenant (Directory) id from the app registration you created. + */ + appTenantId: "11111111-2222-3333-4444-555555555555" +}; diff --git a/sdk/eventhub/event-hubs/samples/v5/browser/src/index.js b/sdk/eventhub/event-hubs/samples/v5/browser/src/index.js new file mode 100644 index 000000000000..18f598a6e224 --- /dev/null +++ b/sdk/eventhub/event-hubs/samples/v5/browser/src/index.js @@ -0,0 +1,20 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT Licence. + +/** + * This file hooks up the "Send" and "Receive" buttons on the web page to the + * "sendEvents.js" and "receiveEvents.js" samples. + */ +const { send } = require("./sendEvents"); +const { receive } = require("./receiveEvents"); + +const sendElement = document.getElementById("send"); +const receiveElement = document.getElementById("receive"); + +sendElement.addEventListener("click", () => { + send(); +}); + +receiveElement.addEventListener("click", () => { + receive(); +}); diff --git a/sdk/eventhub/event-hubs/samples/v5/browser/src/receiveEvents.js b/sdk/eventhub/event-hubs/samples/v5/browser/src/receiveEvents.js new file mode 100644 index 000000000000..a61d3b41cfc0 --- /dev/null +++ b/sdk/eventhub/event-hubs/samples/v5/browser/src/receiveEvents.js @@ -0,0 +1,67 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT Licence. + +/* + This sample demonstrates how to use the EventHubConsumerClient to process events from all partitions + of a consumer group in an Event Hubs instance. + + To start receiving events, click the "Receive" button from the web page. + + If your Event Hub instance doesn't have any events, you can run the "sendEvents.js" sample from + the web page by clicking the "Send" button. +*/ + +const { EventHubConsumerClient } = require("@azure/event-hubs"); +const { InteractiveBrowserCredential } = require("@azure/identity"); +const { + appClientId, + appTenantId, + consumerGroup, + eventHubName, + fullyQualifiedNamespace +} = require("./configuration"); + +const contentContainer = document.getElementById("receiveContent"); +function outputLog(text) { + const currentContent = contentContainer.value; + contentContainer.value = `${currentContent}${text}\n`; +} + +async function receive() { + const credential = new InteractiveBrowserCredential({ + tenantId: appTenantId, + clientId: appClientId + }); + + const consumerClient = new EventHubConsumerClient( + consumerGroup, + fullyQualifiedNamespace, + eventHubName, + credential + ); + const partitionIds = await consumerClient.getPartitionIds(); + outputLog(`Preparing to read events from partitions: ${partitionIds.join(", ")}`); + + consumerClient.subscribe( + { + // The callback where you add your code to process incoming events + processEvents: async (events, context) => { + for (const event of events) { + outputLog( + `Received event: '${event.body}' from partition: '${context.partitionId}' and consumer group: '${context.consumerGroup}'` + ); + } + }, + processError: async (err) => { + outputLog(`Error : ${err}`); + } + }, + { + maxWaitTimeInSeconds: 5 + } + ); +} + +module.exports = { + receive +}; diff --git a/sdk/eventhub/event-hubs/samples/v5/browser/src/sendEvents.js b/sdk/eventhub/event-hubs/samples/v5/browser/src/sendEvents.js new file mode 100644 index 000000000000..ff1294c12868 --- /dev/null +++ b/sdk/eventhub/event-hubs/samples/v5/browser/src/sendEvents.js @@ -0,0 +1,96 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT Licence. + +/* + This sample demonstrates how the send() function can be used to send events to Event Hubs. + See https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-about to learn about Event Hubs. +*/ + +const { EventHubProducerClient } = require("@azure/event-hubs"); +const { InteractiveBrowserCredential } = require("@azure/identity"); +const { + appClientId, + appTenantId, + eventHubName, + fullyQualifiedNamespace +} = require("./configuration"); + +const contentContainer = document.getElementById("sendContent"); +function outputLog(text) { + const currentContent = contentContainer.value; + contentContainer.value = `${currentContent}${text}\n`; +} + +async function send() { + const credential = new InteractiveBrowserCredential({ + tenantId: appTenantId, + clientId: appClientId + }); + + const producer = new EventHubProducerClient(fullyQualifiedNamespace, eventHubName, credential); + + const eventsToSend = ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10"]; + try { + // By not specifying a partition ID or a partition key we allow the server to choose + // which partition will accept this message. + // + // This pattern works well if the consumers of your events do not have any particular + // requirements about the ordering of batches against other batches or if you don't care + // which messages are assigned to which partition. + // + // If you would like more control you can pass either a `partitionKey` or a `partitionId` + // into the createBatch() `options` parameter which will allow you full control over the + // destination. + const batchOptions = {}; + let batch = await producer.createBatch(batchOptions); + outputLog(`Created a batch.`); + let numEventsSent = 0; + // add events to our batch + let i = 0; + while (i < eventsToSend.length) { + // messages can fail to be added to the batch if they exceed the maximum size configured for + // the EventHub. + const isAdded = batch.tryAdd({ body: eventsToSend[i] }); + if (isAdded) { + outputLog(`Added event "${i}" to the batch.`); + ++i; + continue; + } else { + outputLog(`Failed to add event "${i}" to the batch.`); + } + if (batch.count === 0) { + // If we can't add it and the batch is empty that means the message we're trying to send + // is too large, even when it would be the _only_ message in the batch. + // + // At this point you'll need to decide if you're okay with skipping this message entirely + // or find some way to shrink it. + outputLog(`Message was too large and can't be sent until it's made smaller. Skipping...`); + ++i; + continue; + } + // otherwise this just signals a good spot to send our batch + outputLog(`Batch is full - sending ${batch.count} messages as a single batch.`); + await producer.sendBatch(batch); + numEventsSent += batch.count; + // and create a new one to house the next set of messages + batch = await producer.createBatch(batchOptions); + } + // send any remaining messages, if any. + if (batch.count > 0) { + outputLog(`Sending remaining ${batch.count} messages as a single batch.`); + await producer.sendBatch(batch); + numEventsSent += batch.count; + } + outputLog(`Sent ${numEventsSent} events`); + if (numEventsSent !== eventsToSend.length) { + throw new Error(`Not all messages were sent (${numEventsSent}/${eventsToSend.length})`); + } + } catch (err) { + outputLog("Error when creating & sending a batch of events: ", err); + } + await producer.close(); +} + +module.exports = { + send +}; diff --git a/sdk/eventhub/event-hubs/samples/v5/express/README.md b/sdk/eventhub/event-hubs/samples/v5/express/README.md new file mode 100644 index 000000000000..be5e68b8ec86 --- /dev/null +++ b/sdk/eventhub/event-hubs/samples/v5/express/README.md @@ -0,0 +1,54 @@ +# Azure Event Hubs client library express samples for Typescript + +This sample programs show how to use the JavaScript client libraries for Azure Event Hubs to send events in the node express framework. +One scenario is building an HTTP-based service that accepts events as part of an HTTP request, then transforms and sends those events into a downstream Event Hub. + +| **File Name** | **Description** | +| ----------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------ | +| [asyncBatchingProducer.ts][eventproducer] | Demonstrates how the send() function can be used to send events to an Event Hub instance. Support batch send and time trigger. | +| [index.ts][index] | Express Http server entry point. Receive http payload and use AsyncBatchingProducer to ingest payload to eventHub. | + +## Prerequisites + +The samples are compatible with Node.js >= 8.0.0 and run in express. + +You need [an Azure subscription][freesub] and [an Azure Event Hub resource][azhubacct] to run these sample programs. + +## Setup + +To run the samples using the published version of the package: + +1. Install the dependencies using `npm`: + +```bash +npm install +``` + +2. Compile the sample to JavaScript by running the following command: + +```bash +npm run build +``` + +3. Start the node service on http://localhost:8080: + +```bash +npm start +``` + +4. Call local http server + +```bash +curl --header "Content-Type: application/json" \ + --request POST \ + --data '{"hello":"world"}' \ + http://localhost:8080/ingest +``` + +## Next Steps + +Take a look at our [API Documentation][apiref] for more information about the APIs that are available in the clients. + +[eventproducer]: https://github.com/Azure/azure-sdk-for-js/tree/main//sdk/eventhub/event-hubs/samples/v5/express/src/asyncBatchingProducer.ts +[index]: https://github.com/Azure/azure-sdk-for-js/tree/main//sdk/eventhub/event-hubs/samples/v5/express/src/index.ts +[apiref]: https://docs.microsoft.com/javascript/api/@azure/event-hubs diff --git a/sdk/eventhub/event-hubs/samples/typescript/package.json b/sdk/eventhub/event-hubs/samples/v5/express/package.json similarity index 59% rename from sdk/eventhub/event-hubs/samples/typescript/package.json rename to sdk/eventhub/event-hubs/samples/v5/express/package.json index e507d0f01f23..97b788346f5c 100644 --- a/sdk/eventhub/event-hubs/samples/typescript/package.json +++ b/sdk/eventhub/event-hubs/samples/v5/express/package.json @@ -1,14 +1,15 @@ { - "name": "azure-event-hubs-samples-ts", + "name": "azure-event-hubs-samples-express", "private": true, - "version": "0.1.0", - "description": "Azure Event Hubs client library samples for TypeScript", + "version": "1.0.0", + "description": "Azure Event Hubs client library samples with Express", "engine": { "node": ">=8.0.0" }, "scripts": { "build": "tsc", - "prebuild": "rimraf dist/" + "prebuild": "rimraf dist/", + "start": "node ./dist/index.js" }, "repository": { "type": "git", @@ -17,9 +18,9 @@ "keywords": [ "Azure", "Event Hubs", - "Checkpoint Store", "Node.js", - "TypeScript" + "TypeScript", + "Express" ], "author": "Microsoft Corporation", "license": "MIT", @@ -29,16 +30,14 @@ "homepage": "https://github.com/Azure/azure-sdk-for-js#readme", "sideEffects": false, "dependencies": { - "@azure/core-amqp": "latest", - "@azure/event-hubs": "latest", - "@types/ws": "^6.0.4", - "dotenv": "^8.2.0", - "https-proxy-agent": "^5.0.0", - "rhea-promise": "^1.0.0", - "tslib": "^1.9.3", - "ws": "^7.2.0" + "@azure/event-hubs": "^5.3.0", + "body-parser": "^1.19.0", + "express": "^4.17.1", + "uuid": "^8.3.1" }, "devDependencies": { + "@types/body-parser": "^1.19.0", + "@types/express": "^4.17.9", "@types/node": "^12.12.17", "rimraf": "^3.0.0", "typescript": "^3.7.2" diff --git a/sdk/eventhub/event-hubs/samples/v5/express/src/asyncBatchingProducer.ts b/sdk/eventhub/event-hubs/samples/v5/express/src/asyncBatchingProducer.ts new file mode 100644 index 000000000000..0689ecb96a57 --- /dev/null +++ b/sdk/eventhub/event-hubs/samples/v5/express/src/asyncBatchingProducer.ts @@ -0,0 +1,210 @@ +/** + Copyright (c) Microsoft Corporation. + Licensed under the MIT Licence. + + This sample demonstrates a strategy for creating and sending + batches of events to Event Hubs. + + The AsyncBatchingProducer optimizes for creating the fewest + number of batches possible while sending events. + It supports setting thresholds for both the maximum number of + events allowed per batch, and the maximum amount of time + between sending batches. +*/ + +import { AbortController, AbortError, AbortSignalLike } from "@azure/abort-controller"; +import { EventData, EventDataBatch, EventHubProducerClient } from "@azure/event-hubs"; + +export interface AsyncBatchingProducerOptions { + producer: EventHubProducerClient; + maxWaitTimeInSeconds: number; + maxBatchSize?: number; +} + +export class AsyncBatchingProducer { + private _abortController = new AbortController(); + private _lastBatchCreationTime: number = 0; + private _eventQueue: AwaitableQueue = new AwaitableQueue(); + private _maxBatchSize: number; + private _maxWaitTimeInMs: number; + private _producer: EventHubProducerClient; + + constructor(options: AsyncBatchingProducerOptions) { + this._maxBatchSize = options.maxBatchSize ?? Infinity; + this._maxWaitTimeInMs = options.maxWaitTimeInSeconds * 1000; + this._producer = options.producer; + } + + /** + * Queues up the eventData so it can be sent to Event Hubs. + */ + public send(eventData: EventData) { + this._eventQueue.push(eventData); + } + + /** + * Stops the `AsyncBatchingProducer` from sending anymore events to Event Hubs. + */ + public stop() { + this._abortController.abort(); + return this._producer.close(); + } + + /** + * Starts sending events to Event Hubs in the order they were received via `send()` calls. + * This method will run continuously until `stop()` is called. + */ + async start() { + const abortSignal = this._abortController.signal; + let batch = await this._createBatch(); + let futureEvent = this._eventQueue.shift(); + while (!abortSignal.aborted) { + try { + const timeSinceLastBatchCreation = Date.now() - this._lastBatchCreationTime; + // If there aren't any events in the batch, wait the maximum amount of time for an event. + const maximumTimeToWaitForEvent = batch.count + ? Math.max(this._maxWaitTimeInMs - timeSinceLastBatchCreation, 0) + : this._maxWaitTimeInMs; + + // Wait for either the next event, or for the allotted time to pass. + const event = await Promise.race([ + futureEvent, + wait(maximumTimeToWaitForEvent, abortSignal) + ]); + + if (!event) { + // We didn't receive an event within the allotted time. + // Send the existing batch if it has events in it. + if (batch.count) { + await this._producer.sendBatch(batch, { abortSignal }); + batch = await this._createBatch(); + } + continue; + } else { + // We received an event, so get a promise for the next one. + futureEvent = this._eventQueue.shift(); + } + + // Attempt to add the event to the existing batch. + const didAdd = batch.tryAdd(event); + + // If the event was added to the batch and we're now + // at the max batch size, send the batch. + if (didAdd && batch.count >= this._maxBatchSize) { + await this._producer.sendBatch(batch, { abortSignal }); + batch = await this._createBatch(); + } else if (!didAdd && batch.count) { + // If the event wasn't able to be added and the current + // batch isn't empty, attempt to send the current batch + // and add the event to a new batch. + await this._producer.sendBatch(batch, { abortSignal }); + batch = await this._createBatch(); + // If the event still can't be added to an empty batch, just ignore it. + batch.tryAdd(event); + } + } catch (err) { + // Ignore `AbortError` since that gets thrown when `stop()` is called. + if (err.name !== "AbortError") { + console.error(`Encountered error: ${err}`); + } + } + } + } + + /** + * Helper method that sets the lastBatchCreationTime and returns a new batch. + */ + private _createBatch(): Promise { + this._lastBatchCreationTime = Date.now(); + return this._producer.createBatch(); + } +} + +/** + * This function returns a promise that resolves after the specified amount of time. + * It also supports cancellation via passing in an `abortSignal`. + * @param timeInMs - The amount of time in milliseconds the function should wait before resolving. + * @param abortSignal - Used to support rejecting the promise immediately. + */ +function wait(timeInMs: number, abortSignal: AbortSignalLike): Promise { + return new Promise((resolve, reject) => { + // Cancel quickly if the provided abortSignal has already been aborted. + if (abortSignal.aborted) { + return reject(new AbortError("The operation was cancelled.")); + } + // Create an abort event listener that rejects the promise with an AbortError. + // It also clears the existing setTimeout and removes itself from the abortSignal. + const abortListener = () => { + clearTimeout(tid); + reject(new AbortError("This operation was cancelled.")); + abortSignal.removeEventListener("abort", abortListener); + }; + // Create the timer that will resolve the promise. + // It also ensures that abort event listener is removed from the abortSignal. + const tid = setTimeout(() => { + abortSignal.removeEventListener("abort", abortListener); + resolve(); + }, timeInMs); + // Add an abort listener so that the promise can be rejected if the user cancels their operation. + abortSignal.addEventListener("abort", abortListener); + }); +} + +/** + * `AwaitableQueue` stores items in the order that they are received. + * + * This differs from ordinary Queues in that `shift` returns a Promise for a value. + * This allows a consumer of the queue to request an item that the queue does not yet have. + */ +class AwaitableQueue { + private readonly _items: T[]; + + private _nextItemResolve?: (item: T) => void; + private _nextItemPromise?: Promise; + + constructor(items?: T[]) { + this._items = items ?? []; + } + + public size(): number { + return this._items.length; + } + + /** + * Returns a Promise that will resolve with the first item in the queue. + */ + public shift(): Promise { + if (this._nextItemPromise) { + return this._nextItemPromise; + } + + const item = this._items.shift(); + if (typeof item !== "undefined") { + return Promise.resolve(item); + } + + this._nextItemPromise = new Promise((resolve) => (this._nextItemResolve = resolve)); + + return this._nextItemPromise; + } + + /** + * Appends new item to the queue. + */ + public push(item: T): void { + if (!this._resolveNextItem(item)) { + this._items.push(item); + } + } + + private _resolveNextItem(item: T) { + if (!this._nextItemResolve) { + return false; + } + const resolve = this._nextItemResolve; + this._nextItemResolve = undefined; + this._nextItemPromise = undefined; + resolve(item); + return true; + } +} diff --git a/sdk/eventhub/event-hubs/samples/v5/express/src/index.ts b/sdk/eventhub/event-hubs/samples/v5/express/src/index.ts new file mode 100644 index 000000000000..5902e3701af1 --- /dev/null +++ b/sdk/eventhub/event-hubs/samples/v5/express/src/index.ts @@ -0,0 +1,55 @@ +/* + Copyright (c) Microsoft Corporation. + Licensed under the MIT Licence. + + This sample demonstrates how to send events to Event Hubs + from an express service. The service will take the HTTP body of + any request sent to `POST /ingest` and transform it before sending + it to Event Hubs. + + As events are handed to the `AsyncBatchingProducer` via the `send()` call, + the producer will ensure that events are sent in the same batch so long as: + 1. The batch has enough space for additional events. + 2. the maxBatchSize is not exceeded by adding an event. + 3. The elapsed time since the last batch was sent does not exceed the maxWaitTimeInSeconds. + Once any of these conditions are met, a new batch is created and the cycle continues. +*/ + +import { v4 as uuid } from "uuid"; +import { AsyncBatchingProducer } from "./asyncBatchingProducer"; +import bodyParser from "body-parser"; +import express from "express"; +import { EventHubProducerClient } from "@azure/event-hubs"; +const app = express(); + +const eventHubConnectionString = "my connection string"; +const eventHubName = "my event hub name"; +const maxBatchSendSize = 20; +const maxWaitTimeInSeconds = 10; +const eventProducer = new AsyncBatchingProducer({ + producer: new EventHubProducerClient(eventHubConnectionString, eventHubName), + maxWaitTimeInSeconds: maxWaitTimeInSeconds, + maxBatchSize: maxBatchSendSize +}); +const port = 8080; + +app.use(bodyParser.urlencoded({ extended: false })); +app.use(bodyParser.json()); +// respond with requestId +app.post("/ingest", async (req, res) => { + const requestId = uuid(); + await eventProducer.send({ + properties: { + request_id: requestId + }, + body: req.body + }); + res.send(`ingested event. requestId: ${requestId}`); +}); + +// Enable sending events to an Event Hub based on the maxWaitTimeInSeconds and maxBatchSize. +eventProducer.start(); + +app.listen(port, () => { + console.log(`Example app listening at http://localhost:${port}`); +}); diff --git a/sdk/eventhub/event-hubs/samples/expressSample/tsconfig.json b/sdk/eventhub/event-hubs/samples/v5/express/tsconfig.json similarity index 99% rename from sdk/eventhub/event-hubs/samples/expressSample/tsconfig.json rename to sdk/eventhub/event-hubs/samples/v5/express/tsconfig.json index a3ef806cfb5e..a6e49e6c1884 100644 --- a/sdk/eventhub/event-hubs/samples/expressSample/tsconfig.json +++ b/sdk/eventhub/event-hubs/samples/v5/express/tsconfig.json @@ -12,4 +12,3 @@ "include": ["src/**.ts"], "exclude": ["node_modules"] } - diff --git a/sdk/eventhub/event-hubs/samples/v5/javascript/README.md b/sdk/eventhub/event-hubs/samples/v5/javascript/README.md new file mode 100644 index 000000000000..e231efd49ea2 --- /dev/null +++ b/sdk/eventhub/event-hubs/samples/v5/javascript/README.md @@ -0,0 +1,73 @@ +--- +page_type: sample +languages: + - javascript +products: + - azure + - azure-event-hubs +urlFragment: event-hubs-javascript +--- + +# Azure Event Hubs client library samples for JavaScript + +These sample programs show how to use the JavaScript client libraries for Azure Event Hubs in some common scenarios. + +| **File Name** | **Description** | +| --------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | +| [sendEvents.js][sendevents] | Demonstrates how to send events to an Event Hub. | +| [receiveEvents.js][receiveevents] | Demonstrates how to use the EventHubConsumerClient to process events from all partitions of a consumer group in an Event Hub. | +| [usingAadAuth.js][usingaadauth] | Demonstrates how to instantiate EventHubsClient using AAD token credentials obtained from using service principal secrets. | +| [iothubConnectionString.js][iothubconnectionstring] | Demonstrates how to convert an IoT Hub connection string to an Event Hubs connection string that points to the built-in messaging endpoint. | +| [useWithIotHub.js][usewithiothub] | Demonstrates how to use the EventHubConsumerClient to receive messages from an IoT Hub. | +| [websockets.js][websockets] | Demonstrates how to connect to Azure Event Hubs over websockets to work over an HTTP proxy. | + +## Prerequisites + +The sample programs are compatible with Node.js >=12.0.0. + +You need [an Azure subscription][freesub] and the following Azure resources to run these sample programs: + +- [Azure Event Hub][createinstance_azureeventhub] + +Samples retrieve credentials to access the service endpoint from environment variables. Alternatively, edit the source code to include the appropriate credentials. See each individual sample for details on which environment variables/credentials it requires to function. + +Adapting the samples to run in the browser may require some additional consideration. For details, please see the [package README][package]. + +## Setup + +To run the samples using the published version of the package: + +1. Install the dependencies using `npm`: + +```bash +npm install +``` + +2. Edit the file `sample.env`, adding the correct credentials to access the Azure service and run the samples. Then rename the file from `sample.env` to just `.env`. The sample programs will read this file automatically. + +3. Run whichever samples you like (note that some samples may require additional setup, see the table above): + +```bash +node sendEvents.js +``` + +Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): + +```bash +npx cross-env EVENTHUB_CONNECTION_STRING="" EVENTHUB_NAME="" node sendEvents.js +``` + +## Next Steps + +Take a look at our [API Documentation][apiref] for more information about the APIs that are available in the clients. + +[sendevents]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/event-hubs/samples/v5/javascript/sendEvents.js +[receiveevents]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/event-hubs/samples/v5/javascript/receiveEvents.js +[usingaadauth]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/event-hubs/samples/v5/javascript/usingAadAuth.js +[iothubconnectionstring]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/event-hubs/samples/v5/javascript/iothubConnectionString.js +[usewithiothub]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/event-hubs/samples/v5/javascript/useWithIotHub.js +[websockets]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/event-hubs/samples/v5/javascript/websockets.js +[apiref]: https://docs.microsoft.com/javascript/api/@azure/event-hubs +[freesub]: https://azure.microsoft.com/free/ +[createinstance_azureeventhub]: https://docs.microsoft.com/azure/event-hubs/event-hubs-create +[package]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/README.md diff --git a/sdk/eventhub/event-hubs/samples/javascript/iothubConnectionString.js b/sdk/eventhub/event-hubs/samples/v5/javascript/iothubConnectionString.js similarity index 83% rename from sdk/eventhub/event-hubs/samples/javascript/iothubConnectionString.js rename to sdk/eventhub/event-hubs/samples/v5/javascript/iothubConnectionString.js index 75b98d8aec01..5fd640de83fe 100644 --- a/sdk/eventhub/event-hubs/samples/javascript/iothubConnectionString.js +++ b/sdk/eventhub/event-hubs/samples/v5/javascript/iothubConnectionString.js @@ -1,26 +1,35 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT Licence. -/* - This sample demonstrates how to convert an Iot Hub connection string to - an Event Hubs connection string that points to the built-in messaging endpoint. - - The Event Hubs connection string is then used with the EventHubConsumerClient to - receive events. +/** + * @summary Demonstrates how to convert an IoT Hub connection string to an Event Hubs connection string that points to the built-in messaging endpoint. + */ - More information about the built-in messaging endpoint can be found at: - https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-devguide-messages-read-builtin -*/ +/* + * The Event Hubs connection string is then used with the EventHubConsumerClient to receive events. + * + * More information about the built-in messaging endpoint can be found at: + * https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-devguide-messages-read-builtin + */ const crypto = require("crypto"); -const Buffer = require("buffer").Buffer; -const { Connection, ReceiverEvents, isAmqpError, parseConnectionString } = require("rhea-promise"); +const { Buffer } = require("buffer"); +const { Connection, ReceiverEvents, parseConnectionString } = require("rhea-promise"); +const rheaPromise = require("rhea-promise"); const { EventHubConsumerClient, earliestEventPosition } = require("@azure/event-hubs"); // Load the .env file if it exists const dotenv = require("dotenv"); dotenv.config(); +/** + * Type guard for AmqpError. + * @param err - An unknown error. + */ +function isAmqpError(err) { + return rheaPromise.isAmqpError(err); +} + const consumerGroup = process.env["CONSUMER_GROUP_NAME"] || ""; // This code is modified from https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-devguide-security#security-tokens. @@ -41,9 +50,9 @@ function generateSasToken(resourceUri, signingKey, policyName, expiresInMins) { /** * Converts an IotHub Connection string into an Event Hubs-compatible connection string. - * @param {string} connectionString An IotHub connection string in the format: + * @param connectionString - An IotHub connection string in the format: * `"HostName=.azure-devices.net;SharedAccessKeyName=;SharedAccessKey="` - * @returns {Promise} An Event Hubs-compatible connection string in the format: + * @returns An Event Hubs-compatible connection string in the format: * `"Endpoint=sb://;EntityPath=;SharedAccessKeyName=;SharedAccessKey="` */ async function convertIotHubToEventHubsConnectionString(connectionString) { @@ -71,7 +80,8 @@ async function convertIotHubToEventHubsConnectionString(connectionString) { SharedAccessKeyName, 5 // token expires in 5 minutes ); - const connectionOptions = { + + const connection = new Connection({ transport: "tls", host: HostName, hostname: HostName, @@ -79,9 +89,7 @@ async function convertIotHubToEventHubsConnectionString(connectionString) { port: 5671, reconnect: false, password: token - }; - - const connection = new Connection(connectionOptions); + }); await connection.open(); // Create the receiver that will trigger a redirect error. diff --git a/sdk/eventhub/event-hubs/samples/v5/javascript/package.json b/sdk/eventhub/event-hubs/samples/v5/javascript/package.json new file mode 100644 index 000000000000..2f728ecfecaa --- /dev/null +++ b/sdk/eventhub/event-hubs/samples/v5/javascript/package.json @@ -0,0 +1,35 @@ +{ + "name": "azure-event-hubs-samples-js", + "private": true, + "version": "1.0.0", + "description": "Azure Event Hubs client library samples for JavaScript", + "engines": { + "node": ">=12.0.0" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/Azure/azure-sdk-for-js.git", + "directory": "sdk/eventhub/event-hubs" + }, + "keywords": [ + "azure", + "cloud", + "event hubs", + "events", + "Azure" + ], + "author": "Microsoft Corporation", + "license": "MIT", + "bugs": { + "url": "https://github.com/Azure/azure-sdk-for-js/issues" + }, + "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs", + "dependencies": { + "@azure/event-hubs": "latest", + "dotenv": "latest", + "rhea-promise": "^2.0.0", + "@azure/identity": "2.0.0-beta.4", + "ws": "^7.1.1", + "https-proxy-agent": "^5.0.0" + } +} diff --git a/sdk/eventhub/event-hubs/samples/javascript/receiveEvents.js b/sdk/eventhub/event-hubs/samples/v5/javascript/receiveEvents.js similarity index 67% rename from sdk/eventhub/event-hubs/samples/javascript/receiveEvents.js rename to sdk/eventhub/event-hubs/samples/v5/javascript/receiveEvents.js index a2f992c8709c..99b8ace3e512 100644 --- a/sdk/eventhub/event-hubs/samples/javascript/receiveEvents.js +++ b/sdk/eventhub/event-hubs/samples/v5/javascript/receiveEvents.js @@ -1,26 +1,15 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT Licence. -/* - This sample demonstrates how to use the EventHubConsumerClient to process events from all partitions - of a consumer group in an Event Hubs instance. - - If your Event Hub instance doesn't have any events, then please run "sendEvents.ts" sample - to populate it before running this sample. - - For an example that uses checkpointing, see the sample in the eventhubs-checkpointstore-blob package - on GitHub at the following link: - - https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/eventhubs-checkpointstore-blob/samples/javascript/receiveEventsUsingCheckpointStore.js - - Note: If you are using version 2.1.0 or lower of @azure/event-hubs library, then please use the samples at - https://github.com/Azure/azure-sdk-for-js/tree/%40azure/event-hubs_2.1.0/sdk/eventhub/event-hubs/samples instead. -*/ +/** + * @summary Demonstrates how to use the EventHubConsumerClient to process events from all partitions of a consumer group in an Event Hub. + */ const { EventHubConsumerClient, earliestEventPosition } = require("@azure/event-hubs"); // Load the .env file if it exists -require("dotenv").config(); +const dotenv = require("dotenv"); +dotenv.config(); const connectionString = process.env["EVENTHUB_CONNECTION_STRING"] || ""; const eventHubName = process.env["EVENTHUB_NAME"] || ""; diff --git a/sdk/eventhub/event-hubs/samples/javascript/sample.env b/sdk/eventhub/event-hubs/samples/v5/javascript/sample.env similarity index 68% rename from sdk/eventhub/event-hubs/samples/javascript/sample.env rename to sdk/eventhub/event-hubs/samples/v5/javascript/sample.env index 1bb8603fe5b7..5468713a3295 100644 --- a/sdk/eventhub/event-hubs/samples/javascript/sample.env +++ b/sdk/eventhub/event-hubs/samples/v5/javascript/sample.env @@ -1,10 +1,9 @@ -# Used in most samples +# Used in most samples. Retrieve these values from an Event Hub in the Azure Portal. EVENTHUB_CONNECTION_STRING= EVENTHUB_NAME= -EVENTHUB_FQDN=.servicebus.windows.net CONSUMER_GROUP_NAME= -# Used in the useWithIotHub.ts sample +# Used in the useWithIotHub sample. Retrieve this value from an IoT Hub's built-in endpoints in the Azure Portal. IOTHUB_EH_COMPATIBLE_CONNECTION_STRING= # Used to authenticate using Azure AD as a service principal for role-based authentication @@ -15,3 +14,4 @@ IOTHUB_EH_COMPATIBLE_CONNECTION_STRING= AZURE_CLIENT_ID= AZURE_TENANT_ID= AZURE_CLIENT_SECRET= +EVENTHUB_FQDN=.servicebus.windows.net \ No newline at end of file diff --git a/sdk/eventhub/event-hubs/samples/javascript/sendEvents.js b/sdk/eventhub/event-hubs/samples/v5/javascript/sendEvents.js similarity index 89% rename from sdk/eventhub/event-hubs/samples/javascript/sendEvents.js rename to sdk/eventhub/event-hubs/samples/v5/javascript/sendEvents.js index ae23b6872c96..e269d23f23ce 100644 --- a/sdk/eventhub/event-hubs/samples/javascript/sendEvents.js +++ b/sdk/eventhub/event-hubs/samples/v5/javascript/sendEvents.js @@ -1,18 +1,15 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT Licence. -/* - This sample demonstrates how the send() function can be used to send events to Event Hubs. - See https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-about to learn about Event Hubs. - - Note: If you are using version 2.1.0 or lower of @azure/event-hubs library, then please use the samples at - https://github.com/Azure/azure-sdk-for-js/tree/%40azure/event-hubs_2.1.0/sdk/eventhub/event-hubs/samples instead. -*/ +/** + * @summary Demonstrates how to send events to an Event Hub. + */ const { EventHubProducerClient } = require("@azure/event-hubs"); // Load the .env file if it exists -require("dotenv").config(); +const dotenv = require("dotenv"); +dotenv.config(); // Define connection string and related Event Hubs entity name here const connectionString = process.env["EVENTHUB_CONNECTION_STRING"] || ""; @@ -55,6 +52,7 @@ async function main() { // add events to our batch let i = 0; + while (i < eventsToSend.length) { // messages can fail to be added to the batch if they exceed the maximum size configured for // the EventHub. @@ -103,7 +101,6 @@ async function main() { } await producer.close(); - console.log(`Exiting sendEvents sample`); } diff --git a/sdk/eventhub/event-hubs/samples/javascript/useWithIotHub.js b/sdk/eventhub/event-hubs/samples/v5/javascript/useWithIotHub.js similarity index 86% rename from sdk/eventhub/event-hubs/samples/javascript/useWithIotHub.js rename to sdk/eventhub/event-hubs/samples/v5/javascript/useWithIotHub.js index e5947c256ca6..97a0f0a74362 100644 --- a/sdk/eventhub/event-hubs/samples/javascript/useWithIotHub.js +++ b/sdk/eventhub/event-hubs/samples/v5/javascript/useWithIotHub.js @@ -1,14 +1,15 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT Licence. -/* - This sample demonstrates how to use the EventHubClient with an IotHub instance -*/ +/** + * @summary Demonstrates how to use the EventHubConsumerClient to receive messages from an IoT Hub. + */ const { EventHubConsumerClient } = require("@azure/event-hubs"); // Load the .env file if it exists -require("dotenv").config(); +const dotenv = require("dotenv"); +dotenv.config(); // Define IoT Hub Event Hubs-compatible connection string here. // To find the correct connection string to use, visit: @@ -18,14 +19,11 @@ const consumerGroup = process.env["CONSUMER_GROUP_NAME"] || ""; async function main() { console.log(`Running useWithIotHub sample`); - const client = new EventHubConsumerClient(consumerGroup, connectionString); - /* Refer to other samples, and place your code here to receive events using the above client. Please note that send operations are not supported when this client is used against an IotHub instance */ - await client.close(); console.log(`Exiting useWithIotHub sample`); } diff --git a/sdk/eventhub/event-hubs/samples/v5/javascript/usingAadAuth.js b/sdk/eventhub/event-hubs/samples/v5/javascript/usingAadAuth.js new file mode 100644 index 000000000000..c753dcd475b6 --- /dev/null +++ b/sdk/eventhub/event-hubs/samples/v5/javascript/usingAadAuth.js @@ -0,0 +1,56 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT Licence. + +/** + * @summary Demonstrates how to instantiate EventHubsClient using AAD token credentials obtained from using service principal secrets. + */ + +/* + * Setup : + * Register a new application in AAD and assign the "Azure Event Hubs Data Owner" role to it + * - See https://docs.microsoft.com/en-us/azure/active-directory/develop/quickstart-register-app + * to register a new application in the Azure Active Directory. + * - Note down the CLIENT_ID and TENANT_ID from the above step. + * - In the "Certificates & Secrets" tab, create a secret and note that down. + * - In the Azure portal, go to your Even Hubs resource and click on the Access control (IAM) + * tab. Here, assign the "Azure Event Hubs Data Owner" role to the registered application. + * - For more information on Event Hubs RBAC setup, learn more at https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-role-based-access-control) + * + */ + +const { EventHubConsumerClient } = require("@azure/event-hubs"); +const { DefaultAzureCredential } = require("@azure/identity"); + +// Load the .env file if it exists +const dotenv = require("dotenv"); +dotenv.config(); + +// Define Event Hubs Endpoint and related entity name here here +const eventHubsFullyQualifiedName = process.env["EVENTHUB_FQDN"] || ""; // .servicebus.windows.net +const eventHubName = process.env["EVENTHUB_NAME"] || ""; +const consumerGroup = process.env["CONSUMER_GROUP_NAME"] || ""; + +// Define AZURE_TENANT_ID, AZURE_CLIENT_ID and AZURE_CLIENT_SECRET of your AAD application in your environment + +async function main() { + console.log(`Running usingAadAuth sample`); + + const credential = new DefaultAzureCredential(); + const client = new EventHubConsumerClient( + consumerGroup, + eventHubsFullyQualifiedName, + eventHubName, + credential + ); + /* + Refer to other samples, and place your code here + to send/receive events + */ + await client.close(); + + console.log(`Exiting usingAadAuth sample`); +} + +main().catch((error) => { + console.error("Error running sample:", error); +}); diff --git a/sdk/eventhub/event-hubs/samples/javascript/websockets.js b/sdk/eventhub/event-hubs/samples/v5/javascript/websockets.js similarity index 62% rename from sdk/eventhub/event-hubs/samples/javascript/websockets.js rename to sdk/eventhub/event-hubs/samples/v5/javascript/websockets.js index 8e9399236491..32a24af1290e 100644 --- a/sdk/eventhub/event-hubs/samples/javascript/websockets.js +++ b/sdk/eventhub/event-hubs/samples/v5/javascript/websockets.js @@ -1,27 +1,24 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT Licence. -/* - This sample demonstrates how to use WebSockets enable Event Hubs to work over an HTTP proxy and - in environments where the standard AMQP port 5671 is blocked. For the latter case, ignore proxy - related configurations in this sample. - - This sample uses 2 external libraries - - The `ws` library to provide a WebSocket implementation to the Event Hubs library. - - The `https-proxy-agent` to enable the `ws` library to work with a proxy server. +/** + * @summary Demonstrates how to connect to Azure Event Hubs over websockets to work over an HTTP proxy. + */ - Note: If you are using version 2.1.0 or lower of @azure/event-hubs library, then please use the samples at - https://github.com/Azure/azure-sdk-for-js/tree/%40azure/event-hubs_2.1.0/sdk/eventhub/event-hubs/samples instead. -*/ +/* + * In environments where the standard AMQP port 5671 is blocked and you don't want to connect through a proxy, + * ignore proxy related configurations in this sample. + */ const WebSocket = require("ws"); const url = require("url"); -const httpsProxyAgent = require("https-proxy-agent"); +const { HttpsProxyAgent } = require("https-proxy-agent"); const { EventHubConsumerClient } = require("@azure/event-hubs"); // Load the .env file if it exists -require("dotenv").config(); +const dotenv = require("dotenv"); +dotenv.config(); // Define connection string and related Event Hubs entity name here const connectionString = process.env["EVENTHUB_CONNECTION_STRING"] || ""; @@ -33,7 +30,7 @@ const consumerGroup = process.env["CONSUMER_GROUP_NAME"] || ""; // Skip this section if you are not behind a proxy server const urlParts = url.parse("http://localhost:3128"); urlParts.auth = "username:password"; // Skip this if proxy server does not need authentication. -const proxyAgent = new httpsProxyAgent(urlParts); +const proxyAgent = new HttpsProxyAgent(urlParts); async function main() { console.log(`Running websockets sample`); @@ -44,12 +41,11 @@ async function main() { webSocketConstructorOptions: { agent: proxyAgent } } }); - /* Refer to other samples, and place your code here to send/receive events */ - await client.close(); + console.log(`Exiting websockets sample`); } diff --git a/sdk/eventhub/event-hubs/samples/v5/typescript/README.md b/sdk/eventhub/event-hubs/samples/v5/typescript/README.md new file mode 100644 index 000000000000..5ef84e59494a --- /dev/null +++ b/sdk/eventhub/event-hubs/samples/v5/typescript/README.md @@ -0,0 +1,86 @@ +--- +page_type: sample +languages: + - typescript +products: + - azure + - azure-event-hubs +urlFragment: event-hubs-typescript +--- + +# Azure Event Hubs client library samples for TypeScript + +These sample programs show how to use the TypeScript client libraries for Azure Event Hubs in some common scenarios. + +| **File Name** | **Description** | +| --------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | +| [sendEvents.ts][sendevents] | Demonstrates how to send events to an Event Hub. | +| [receiveEvents.ts][receiveevents] | Demonstrates how to use the EventHubConsumerClient to process events from all partitions of a consumer group in an Event Hub. | +| [usingAadAuth.ts][usingaadauth] | Demonstrates how to instantiate EventHubsClient using AAD token credentials obtained from using service principal secrets. | +| [iothubConnectionString.ts][iothubconnectionstring] | Demonstrates how to convert an IoT Hub connection string to an Event Hubs connection string that points to the built-in messaging endpoint. | +| [useWithIotHub.ts][usewithiothub] | Demonstrates how to use the EventHubConsumerClient to receive messages from an IoT Hub. | +| [websockets.ts][websockets] | Demonstrates how to connect to Azure Event Hubs over websockets to work over an HTTP proxy. | + +## Prerequisites + +The sample programs are compatible with Node.js >=12.0.0. + +Before running the samples in Node, they must be compiled to JavaScript using the TypeScript compiler. For more information on TypeScript, see the [TypeScript documentation][typescript]. Install the TypeScript compiler using: + +```bash +npm install -g typescript +``` + +You need [an Azure subscription][freesub] and the following Azure resources to run these sample programs: + +- [Azure Event Hub][createinstance_azureeventhub] + +Samples retrieve credentials to access the service endpoint from environment variables. Alternatively, edit the source code to include the appropriate credentials. See each individual sample for details on which environment variables/credentials it requires to function. + +Adapting the samples to run in the browser may require some additional consideration. For details, please see the [package README][package]. + +## Setup + +To run the samples using the published version of the package: + +1. Install the dependencies using `npm`: + +```bash +npm install +``` + +2. Compile the samples: + +```bash +npm run build +``` + +3. Edit the file `sample.env`, adding the correct credentials to access the Azure service and run the samples. Then rename the file from `sample.env` to just `.env`. The sample programs will read this file automatically. + +4. Run whichever samples you like (note that some samples may require additional setup, see the table above): + +```bash +node dist/sendEvents.js +``` + +Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): + +```bash +npx cross-env EVENTHUB_CONNECTION_STRING="" EVENTHUB_NAME="" node dist/sendEvents.js +``` + +## Next Steps + +Take a look at our [API Documentation][apiref] for more information about the APIs that are available in the clients. + +[sendevents]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/event-hubs/samples/v5/typescript/src/sendEvents.ts +[receiveevents]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/event-hubs/samples/v5/typescript/src/receiveEvents.ts +[usingaadauth]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/event-hubs/samples/v5/typescript/src/usingAadAuth.ts +[iothubconnectionstring]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/event-hubs/samples/v5/typescript/src/iothubConnectionString.ts +[usewithiothub]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/event-hubs/samples/v5/typescript/src/useWithIotHub.ts +[websockets]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/eventhub/event-hubs/samples/v5/typescript/src/websockets.ts +[apiref]: https://docs.microsoft.com/javascript/api/@azure/event-hubs +[freesub]: https://azure.microsoft.com/free/ +[createinstance_azureeventhub]: https://docs.microsoft.com/azure/event-hubs/event-hubs-create +[package]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs/README.md +[typescript]: https://www.typescriptlang.org/docs/home.html diff --git a/sdk/eventhub/event-hubs/samples/v5/typescript/package.json b/sdk/eventhub/event-hubs/samples/v5/typescript/package.json new file mode 100644 index 000000000000..2a258535bf31 --- /dev/null +++ b/sdk/eventhub/event-hubs/samples/v5/typescript/package.json @@ -0,0 +1,43 @@ +{ + "name": "azure-event-hubs-samples-ts", + "private": true, + "version": "1.0.0", + "description": "Azure Event Hubs client library samples for TypeScript", + "engines": { + "node": ">=12.0.0" + }, + "scripts": { + "build": "tsc", + "prebuild": "rimraf dist/" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/Azure/azure-sdk-for-js.git", + "directory": "sdk/eventhub/event-hubs" + }, + "keywords": [ + "azure", + "cloud", + "event hubs", + "events", + "Azure" + ], + "author": "Microsoft Corporation", + "license": "MIT", + "bugs": { + "url": "https://github.com/Azure/azure-sdk-for-js/issues" + }, + "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/eventhub/event-hubs", + "dependencies": { + "@azure/event-hubs": "latest", + "dotenv": "latest", + "rhea-promise": "^2.0.0", + "@azure/identity": "2.0.0-beta.4", + "ws": "^7.1.1", + "https-proxy-agent": "^5.0.0" + }, + "devDependencies": { + "typescript": "~4.2.0", + "rimraf": "latest" + } +} diff --git a/sdk/eventhub/event-hubs/samples/typescript/sample.env b/sdk/eventhub/event-hubs/samples/v5/typescript/sample.env similarity index 68% rename from sdk/eventhub/event-hubs/samples/typescript/sample.env rename to sdk/eventhub/event-hubs/samples/v5/typescript/sample.env index 1bb8603fe5b7..5468713a3295 100644 --- a/sdk/eventhub/event-hubs/samples/typescript/sample.env +++ b/sdk/eventhub/event-hubs/samples/v5/typescript/sample.env @@ -1,10 +1,9 @@ -# Used in most samples +# Used in most samples. Retrieve these values from an Event Hub in the Azure Portal. EVENTHUB_CONNECTION_STRING= EVENTHUB_NAME= -EVENTHUB_FQDN=.servicebus.windows.net CONSUMER_GROUP_NAME= -# Used in the useWithIotHub.ts sample +# Used in the useWithIotHub sample. Retrieve this value from an IoT Hub's built-in endpoints in the Azure Portal. IOTHUB_EH_COMPATIBLE_CONNECTION_STRING= # Used to authenticate using Azure AD as a service principal for role-based authentication @@ -15,3 +14,4 @@ IOTHUB_EH_COMPATIBLE_CONNECTION_STRING= AZURE_CLIENT_ID= AZURE_TENANT_ID= AZURE_CLIENT_SECRET= +EVENTHUB_FQDN=.servicebus.windows.net \ No newline at end of file diff --git a/sdk/eventhub/event-hubs/samples/v5/typescript/src/iothubConnectionString.ts b/sdk/eventhub/event-hubs/samples/v5/typescript/src/iothubConnectionString.ts new file mode 100644 index 000000000000..65de46db56df --- /dev/null +++ b/sdk/eventhub/event-hubs/samples/v5/typescript/src/iothubConnectionString.ts @@ -0,0 +1,165 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT Licence. + +/** + * @summary Demonstrates how to convert an IoT Hub connection string to an Event Hubs connection string that points to the built-in messaging endpoint. + */ + +/* + * The Event Hubs connection string is then used with the EventHubConsumerClient to receive events. + * + * More information about the built-in messaging endpoint can be found at: + * https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-devguide-messages-read-builtin + */ + +import * as crypto from "crypto"; +import { Buffer } from "buffer"; +import { AmqpError, Connection, ReceiverEvents, parseConnectionString } from "rhea-promise"; +import rheaPromise from "rhea-promise"; +import { EventHubConsumerClient, earliestEventPosition } from "@azure/event-hubs"; + +// Load the .env file if it exists +import * as dotenv from "dotenv"; +dotenv.config(); + +/** + * Type guard for AmqpError. + * @param err - An unknown error. + */ +function isAmqpError(err: any): err is AmqpError { + return rheaPromise.isAmqpError(err); +} + +const consumerGroup = process.env["CONSUMER_GROUP_NAME"] || ""; + +// This code is modified from https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-devguide-security#security-tokens. +function generateSasToken( + resourceUri: string, + signingKey: string, + policyName: string, + expiresInMins: number +): string { + resourceUri = encodeURIComponent(resourceUri); + + const expiresInSeconds = Math.ceil(Date.now() / 1000 + expiresInMins * 60); + const toSign = resourceUri + "\n" + expiresInSeconds; + + // Use the crypto module to create the hmac. + const hmac = crypto.createHmac("sha256", Buffer.from(signingKey, "base64")); + hmac.update(toSign); + const base64UriEncoded = encodeURIComponent(hmac.digest("base64")); + + // Construct authorization string. + return `SharedAccessSignature sr=${resourceUri}&sig=${base64UriEncoded}&se=${expiresInSeconds}&skn=${policyName}`; +} + +/** + * Converts an IotHub Connection string into an Event Hubs-compatible connection string. + * @param connectionString - An IotHub connection string in the format: + * `"HostName=.azure-devices.net;SharedAccessKeyName=;SharedAccessKey="` + * @returns An Event Hubs-compatible connection string in the format: + * `"Endpoint=sb://;EntityPath=;SharedAccessKeyName=;SharedAccessKey="` + */ +async function convertIotHubToEventHubsConnectionString(connectionString: string): Promise { + const { HostName, SharedAccessKeyName, SharedAccessKey } = parseConnectionString<{ + HostName: string; + SharedAccessKeyName: string; + SharedAccessKey: string; + }>(connectionString); + + // Verify that the required info is in the connection string. + if (!HostName || !SharedAccessKey || !SharedAccessKeyName) { + throw new Error(`Invalid IotHub connection string.`); + } + + //Extract the IotHub name from the hostname. + const [iotHubName] = HostName.split("."); + + if (!iotHubName) { + throw new Error(`Unable to extract the IotHub name from the connection string.`); + } + + // Generate a token to authenticate to the service. + // The code for generateSasToken can be found at https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-devguide-security#security-tokens + const token = generateSasToken( + `${HostName}/messages/events`, + SharedAccessKey, + SharedAccessKeyName, + 5 // token expires in 5 minutes + ); + + const connection = new Connection({ + transport: "tls", + host: HostName, + hostname: HostName, + username: `${SharedAccessKeyName}@sas.root.${iotHubName}`, + port: 5671, + reconnect: false, + password: token + }); + await connection.open(); + + // Create the receiver that will trigger a redirect error. + const receiver = await connection.createReceiver({ + source: { address: `amqps://${HostName}/messages/events/$management` } + }); + + return new Promise((resolve, reject) => { + receiver.on(ReceiverEvents.receiverError, (context) => { + const error = context.receiver && context.receiver.error; + if (isAmqpError(error) && error.condition === "amqp:link:redirect") { + const hostname = error.info && error.info.hostname; + if (!hostname) { + reject(error); + } else { + resolve( + `Endpoint=sb://${hostname}/;EntityPath=${iotHubName};SharedAccessKeyName=${SharedAccessKeyName};SharedAccessKey=${SharedAccessKey}` + ); + } + } else { + reject(error); + } + connection.close().catch(() => { + /* ignore error */ + }); + }); + }); +} + +export async function main() { + console.log(`Running iothubConnectionString sample`); + + const eventHubsConnectionString = await convertIotHubToEventHubsConnectionString( + "HostName=.azure-devices.net;SharedAccessKeyName=;SharedAccessKey=" + ); + + const consumerClient = new EventHubConsumerClient(consumerGroup, eventHubsConnectionString); + + const subscription = consumerClient.subscribe( + { + // The callback where you add your code to process incoming events + processEvents: async (events, context) => { + for (const event of events) { + console.log( + `Received event: '${event.body}' from partition: '${context.partitionId}' and consumer group: '${context.consumerGroup}'` + ); + } + }, + processError: async (err, context) => { + console.log(`Error on partition "${context.partitionId}" : ${err}`); + } + }, + { startPosition: earliestEventPosition } + ); + + // Wait for a bit before cleaning up the sample + setTimeout(async () => { + await subscription.close(); + await consumerClient.close(); + console.log(`Exiting iothubConnectionString sample`); + }, 30 * 1000); +} + +main().catch((error) => { + console.error("Error running sample:", error); +}); diff --git a/sdk/eventhub/event-hubs/samples/v5/typescript/src/receiveEvents.ts b/sdk/eventhub/event-hubs/samples/v5/typescript/src/receiveEvents.ts new file mode 100644 index 000000000000..3347d5dbc9d7 --- /dev/null +++ b/sdk/eventhub/event-hubs/samples/v5/typescript/src/receiveEvents.ts @@ -0,0 +1,56 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT Licence. + +/** + * @summary Demonstrates how to use the EventHubConsumerClient to process events from all partitions of a consumer group in an Event Hub. + */ + +import { EventHubConsumerClient, earliestEventPosition } from "@azure/event-hubs"; + +// Load the .env file if it exists +import * as dotenv from "dotenv"; +dotenv.config(); + +const connectionString = process.env["EVENTHUB_CONNECTION_STRING"] || ""; +const eventHubName = process.env["EVENTHUB_NAME"] || ""; +const consumerGroup = process.env["CONSUMER_GROUP_NAME"] || ""; + +export async function main() { + console.log(`Running receiveEvents sample`); + + const consumerClient = new EventHubConsumerClient(consumerGroup, connectionString, eventHubName); + + const subscription = consumerClient.subscribe( + { + // The callback where you add your code to process incoming events + processEvents: async (events, context) => { + // Note: It is possible for `events` to be an empty array. + // This can happen if there were no new events to receive + // in the `maxWaitTimeInSeconds`, which is defaulted to + // 60 seconds. + // The `maxWaitTimeInSeconds` can be changed by setting + // it in the `options` passed to `subscribe()`. + for (const event of events) { + console.log( + `Received event: '${event.body}' from partition: '${context.partitionId}' and consumer group: '${context.consumerGroup}'` + ); + } + }, + processError: async (err, context) => { + console.log(`Error on partition "${context.partitionId}": ${err}`); + } + }, + { startPosition: earliestEventPosition } + ); + + // Wait for a bit before cleaning up the sample + setTimeout(async () => { + await subscription.close(); + await consumerClient.close(); + console.log(`Exiting receiveEvents sample`); + }, 30 * 1000); +} + +main().catch((error) => { + console.error("Error running sample:", error); +}); diff --git a/sdk/eventhub/event-hubs/samples/v5/typescript/src/sendEvents.ts b/sdk/eventhub/event-hubs/samples/v5/typescript/src/sendEvents.ts new file mode 100644 index 000000000000..9553a2c8dfd5 --- /dev/null +++ b/sdk/eventhub/event-hubs/samples/v5/typescript/src/sendEvents.ts @@ -0,0 +1,109 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT Licence. + +/** + * @summary Demonstrates how to send events to an Event Hub. + */ + +import { EventHubProducerClient } from "@azure/event-hubs"; + +// Load the .env file if it exists +import * as dotenv from "dotenv"; +dotenv.config(); + +// Define connection string and related Event Hubs entity name here +const connectionString = process.env["EVENTHUB_CONNECTION_STRING"] || ""; +const eventHubName = process.env["EVENTHUB_NAME"] || ""; + +export async function main(): Promise { + console.log(`Running sendEvents sample`); + + const producer = new EventHubProducerClient(connectionString, eventHubName); + + console.log("Creating and sending a batch of events..."); + + const eventsToSend = ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10"]; + + try { + // By not specifying a partition ID or a partition key we allow the server to choose + // which partition will accept this message. + // + // This pattern works well if the consumers of your events do not have any particular + // requirements about the ordering of batches against other batches or if you don't care + // which messages are assigned to which partition. + // + // If you would like more control you can pass either a `partitionKey` or a `partitionId` + // into the createBatch() `options` parameter which will allow you full control over the + // destination. + const batchOptions = { + // The maxSizeInBytes lets you manually control the size of the batch. + // if this is not set we will get the maximum batch size from Event Hubs. + // + // For this sample you can change the batch size to see how different parts + // of the sample handle batching. In production we recommend using the default + // and not specifying a maximum size. + // + // maxSizeInBytes: 200 + }; + + let batch = await producer.createBatch(batchOptions); + + let numEventsSent = 0; + + // add events to our batch + let i = 0; + + while (i < eventsToSend.length) { + // messages can fail to be added to the batch if they exceed the maximum size configured for + // the EventHub. + const isAdded = batch.tryAdd({ body: eventsToSend[i] }); + + if (isAdded) { + console.log(`Added eventsToSend[${i}] to the batch`); + ++i; + continue; + } + + if (batch.count === 0) { + // If we can't add it and the batch is empty that means the message we're trying to send + // is too large, even when it would be the _only_ message in the batch. + // + // At this point you'll need to decide if you're okay with skipping this message entirely + // or find some way to shrink it. + console.log(`Message was too large and can't be sent until it's made smaller. Skipping...`); + ++i; + continue; + } + + // otherwise this just signals a good spot to send our batch + console.log(`Batch is full - sending ${batch.count} messages as a single batch.`); + await producer.sendBatch(batch); + numEventsSent += batch.count; + + // and create a new one to house the next set of messages + batch = await producer.createBatch(batchOptions); + } + + // send any remaining messages, if any. + if (batch.count > 0) { + console.log(`Sending remaining ${batch.count} messages as a single batch.`); + await producer.sendBatch(batch); + numEventsSent += batch.count; + } + + console.log(`Sent ${numEventsSent} events`); + + if (numEventsSent !== eventsToSend.length) { + throw new Error(`Not all messages were sent (${numEventsSent}/${eventsToSend.length})`); + } + } catch (err) { + console.log("Error when creating & sending a batch of events: ", err); + } + + await producer.close(); + console.log(`Exiting sendEvents sample`); +} + +main().catch((error) => { + console.error("Error running sample:", error); +}); diff --git a/sdk/eventhub/event-hubs/samples/v5/typescript/src/useWithIotHub.ts b/sdk/eventhub/event-hubs/samples/v5/typescript/src/useWithIotHub.ts new file mode 100644 index 000000000000..08dcfccc77d1 --- /dev/null +++ b/sdk/eventhub/event-hubs/samples/v5/typescript/src/useWithIotHub.ts @@ -0,0 +1,33 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT Licence. + +/** + * @summary Demonstrates how to use the EventHubConsumerClient to receive messages from an IoT Hub. + */ + +import { EventHubConsumerClient } from "@azure/event-hubs"; + +// Load the .env file if it exists +import * as dotenv from "dotenv"; +dotenv.config(); + +// Define IoT Hub Event Hubs-compatible connection string here. +// To find the correct connection string to use, visit: +// https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-devguide-messages-read-builtin +const connectionString = process.env["IOTHUB_EH_COMPATIBLE_CONNECTION_STRING"] || ""; +const consumerGroup = process.env["CONSUMER_GROUP_NAME"] || ""; + +export async function main(): Promise { + console.log(`Running useWithIotHub sample`); + const client = new EventHubConsumerClient(consumerGroup, connectionString); + /* + Refer to other samples, and place your code here to receive events using the above client. + Please note that send operations are not supported when this client is used against an IotHub instance + */ + await client.close(); + console.log(`Exiting useWithIotHub sample`); +} + +main().catch((error) => { + console.error("Error running sample:", error); +}); diff --git a/sdk/eventhub/event-hubs/samples/v5/typescript/src/usingAadAuth.ts b/sdk/eventhub/event-hubs/samples/v5/typescript/src/usingAadAuth.ts new file mode 100644 index 000000000000..d0cfc6073c88 --- /dev/null +++ b/sdk/eventhub/event-hubs/samples/v5/typescript/src/usingAadAuth.ts @@ -0,0 +1,56 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT Licence. + +/** + * @summary Demonstrates how to instantiate EventHubsClient using AAD token credentials obtained from using service principal secrets. + */ + +/* + * Setup : + * Register a new application in AAD and assign the "Azure Event Hubs Data Owner" role to it + * - See https://docs.microsoft.com/en-us/azure/active-directory/develop/quickstart-register-app + * to register a new application in the Azure Active Directory. + * - Note down the CLIENT_ID and TENANT_ID from the above step. + * - In the "Certificates & Secrets" tab, create a secret and note that down. + * - In the Azure portal, go to your Even Hubs resource and click on the Access control (IAM) + * tab. Here, assign the "Azure Event Hubs Data Owner" role to the registered application. + * - For more information on Event Hubs RBAC setup, learn more at https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-role-based-access-control) + * + */ + +import { EventHubConsumerClient } from "@azure/event-hubs"; +import { DefaultAzureCredential } from "@azure/identity"; + +// Load the .env file if it exists +import * as dotenv from "dotenv"; +dotenv.config(); + +// Define Event Hubs Endpoint and related entity name here here +const eventHubsFullyQualifiedName = process.env["EVENTHUB_FQDN"] || ""; // .servicebus.windows.net +const eventHubName = process.env["EVENTHUB_NAME"] || ""; +const consumerGroup = process.env["CONSUMER_GROUP_NAME"] || ""; + +// Define AZURE_TENANT_ID, AZURE_CLIENT_ID and AZURE_CLIENT_SECRET of your AAD application in your environment + +export async function main(): Promise { + console.log(`Running usingAadAuth sample`); + + const credential = new DefaultAzureCredential(); + const client = new EventHubConsumerClient( + consumerGroup, + eventHubsFullyQualifiedName, + eventHubName, + credential + ); + /* + Refer to other samples, and place your code here + to send/receive events + */ + await client.close(); + + console.log(`Exiting usingAadAuth sample`); +} + +main().catch((error) => { + console.error("Error running sample:", error); +}); diff --git a/sdk/eventhub/event-hubs/samples/v5/typescript/src/websockets.ts b/sdk/eventhub/event-hubs/samples/v5/typescript/src/websockets.ts new file mode 100644 index 000000000000..1e69950146f9 --- /dev/null +++ b/sdk/eventhub/event-hubs/samples/v5/typescript/src/websockets.ts @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT Licence. + +/** + * @summary Demonstrates how to connect to Azure Event Hubs over websockets to work over an HTTP proxy. + */ + +/* + * In environments where the standard AMQP port 5671 is blocked and you don't want to connect through a proxy, + * ignore proxy related configurations in this sample. + */ + +import WebSocket from "ws"; +const url = require("url"); +import { HttpsProxyAgent } from "https-proxy-agent"; + +import { EventHubConsumerClient } from "@azure/event-hubs"; + +// Load the .env file if it exists +import * as dotenv from "dotenv"; +dotenv.config(); + +// Define connection string and related Event Hubs entity name here +const connectionString = process.env["EVENTHUB_CONNECTION_STRING"] || ""; +const eventHubName = process.env["EVENTHUB_NAME"] || ""; +const consumerGroup = process.env["CONSUMER_GROUP_NAME"] || ""; + +// Create an instance of the `HttpsProxyAgent` class with the proxy server information like +// proxy url, username and password +// Skip this section if you are not behind a proxy server +const urlParts = url.parse("http://localhost:3128"); +urlParts.auth = "username:password"; // Skip this if proxy server does not need authentication. +const proxyAgent = new HttpsProxyAgent(urlParts); + +export async function main(): Promise { + console.log(`Running websockets sample`); + + const client = new EventHubConsumerClient(consumerGroup, connectionString, eventHubName, { + webSocketOptions: { + webSocket: WebSocket, + webSocketConstructorOptions: { agent: proxyAgent } + } + }); + /* + Refer to other samples, and place your code here to send/receive events + */ + await client.close(); + + console.log(`Exiting websockets sample`); +} + +main().catch((error) => { + console.error("Error running sample:", error); +}); diff --git a/sdk/eventhub/event-hubs/samples/v5/typescript/tsconfig.json b/sdk/eventhub/event-hubs/samples/v5/typescript/tsconfig.json new file mode 100644 index 000000000000..416c2dd82e00 --- /dev/null +++ b/sdk/eventhub/event-hubs/samples/v5/typescript/tsconfig.json @@ -0,0 +1,17 @@ +{ + "compilerOptions": { + "target": "ES2018", + "module": "commonjs", + "moduleResolution": "node", + "resolveJsonModule": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "strict": true, + "alwaysStrict": true, + "outDir": "dist", + "rootDir": "src" + }, + "include": [ + "src/**.ts" + ] +} diff --git a/sdk/eventhub/event-hubs/tsconfig.json b/sdk/eventhub/event-hubs/tsconfig.json index a7b99de238c8..2570c3f0d26e 100644 --- a/sdk/eventhub/event-hubs/tsconfig.json +++ b/sdk/eventhub/event-hubs/tsconfig.json @@ -3,8 +3,11 @@ "compilerOptions": { "declarationDir": "./types", "outDir": "./dist-esm", - "downlevelIteration": true + "downlevelIteration": true, + "paths": { + "@azure/event-hubs": ["./src/index"] + } }, "exclude": ["node_modules", "./types/**/*.d.ts", "./samples/**/*.ts", "test/perf/track-1/"], - "include": ["./src/**/*.ts", "./test/**/*.ts"] + "include": ["./src/**/*.ts", "./test/**/*.ts", "samples-dev/**/*.ts"] } From 94402546e63001917c3abc0cce39de8ae0f3e198 Mon Sep 17 00:00:00 2001 From: luc <44377201+LuChen-Microsoft@users.noreply.github.com> Date: Fri, 25 Jun 2021 10:43:46 -0700 Subject: [PATCH 02/49] update signaling package version to beta7 (#16001) --- common/config/rush/pnpm-lock.yaml | 8 ++++---- sdk/communication/communication-chat/package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index 68a8d64ec858..3df7abcb75b5 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -185,7 +185,7 @@ packages: node: '>=8.0.0' resolution: integrity: sha512-fa220+fQn27JN8QtajeMe88rqrJn3qctT/8FV/abJe6tSBJlAWYXOHiIF3nCgSeyIb5F9pi7Fycd9M55OY4O9w== - /@azure/communication-signaling/1.0.0-beta.6: + /@azure/communication-signaling/1.0.0-beta.7: dependencies: '@azure/core-http': 1.2.6 '@azure/core-tracing': 1.0.0-preview.9 @@ -197,7 +197,7 @@ packages: engines: node: '>=8.0.0' resolution: - integrity: sha512-4ejoRfG3Xb9BBjOT7T930me60EMMpB0OBHkdwJmrCA8SlEIJ8YcnmKYWJL+ocI8EMtOGRI/vu2FB4yYdYERXyg== + integrity: sha512-iO2Wpnr95HrAfOoq9IX7pcB7QlfSoJKDd4Ty9cjZK3Efv9vFN23kVybyd0JqC3HHXf0ALIcIm98bNH6PyVCOgw== /@azure/core-asynciterator-polyfill/1.0.0: dev: false resolution: @@ -8447,7 +8447,7 @@ packages: file:projects/communication-chat.tgz: dependencies: '@azure/communication-identity': 1.0.0 - '@azure/communication-signaling': 1.0.0-beta.6 + '@azure/communication-signaling': 1.0.0-beta.7 '@azure/core-tracing': 1.0.0-preview.11 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 @@ -8497,7 +8497,7 @@ packages: dev: false name: '@rush-temp/communication-chat' resolution: - integrity: sha512-x9R12DgmsAeN8ncSUNj7I0mdKT992y/8v1WLisNcJn7OW14IfCITuJx4JLmCEfOo7vbNe2pulwYlTqQ5MUNt9w== + integrity: sha512-i/8xbWYc2eRn2OedKY0xUzr3RDK/XdRT22ea2GLoBv4ivEPWY4+ehtL3DOntR3DXOVwnzoy8NTk44NnCTiT+Vg== tarball: file:projects/communication-chat.tgz version: 0.0.0 file:projects/communication-common.tgz: diff --git a/sdk/communication/communication-chat/package.json b/sdk/communication/communication-chat/package.json index 9858315fc660..20c72b42a06d 100644 --- a/sdk/communication/communication-chat/package.json +++ b/sdk/communication/communication-chat/package.json @@ -66,7 +66,7 @@ "dependencies": { "@azure/abort-controller": "^1.0.0", "@azure/communication-common": "^1.0.0", - "@azure/communication-signaling": "1.0.0-beta.6", + "@azure/communication-signaling": "1.0.0-beta.7", "@azure/core-auth": "^1.3.0", "@azure/core-http": "^2.0.0", "@azure/core-tracing": "1.0.0-preview.12", From ca61eb9ee277fbca11930543c59041834c90c8ed Mon Sep 17 00:00:00 2001 From: Jeremy Meng Date: Fri, 25 Jun 2021 12:54:20 -0700 Subject: [PATCH 03/49] [ContainerRegistry] Update delete image sample (#16002) to delete tags before delete the image as this is the recommended best practice for the service. --- sdk/containerregistry/container-registry/README.md | 6 ++++-- .../container-registry/samples-dev/deleteImages.ts | 6 ++++-- .../samples/v1/javascript/deleteImages.js | 6 ++++-- .../samples/v1/typescript/src/deleteImages.ts | 6 ++++-- 4 files changed, 16 insertions(+), 8 deletions(-) diff --git a/sdk/containerregistry/container-registry/README.md b/sdk/containerregistry/container-registry/README.md index 328e83816246..e50c8193411e 100644 --- a/sdk/containerregistry/container-registry/README.md +++ b/sdk/containerregistry/container-registry/README.md @@ -199,12 +199,14 @@ async function main() { // Delete images older than the first three. for await (const manifest of imageManifests) { if (imageCount++ > imagesToKeep) { + const image = repository.getArtifact(manifest.digest); console.log(`Deleting image with digest ${manifest.digest}`); - console.log(` This image has the following tags:`); + console.log(` Deleting the following tags from the image:`); for (const tagName of manifest.tags) { console.log(` ${manifest.repositoryName}:${tagName}`); + image.deleteTag(tagName); } - await repository.getArtifact(manifest.digest).delete(); + await image.delete(); } } } diff --git a/sdk/containerregistry/container-registry/samples-dev/deleteImages.ts b/sdk/containerregistry/container-registry/samples-dev/deleteImages.ts index 3941bdb921e6..c0b1947341c2 100644 --- a/sdk/containerregistry/container-registry/samples-dev/deleteImages.ts +++ b/sdk/containerregistry/container-registry/samples-dev/deleteImages.ts @@ -33,12 +33,14 @@ async function main() { // Delete images older than the first three. for await (const manifest of imageManifests) { if (imageCount++ > imagesToKeep) { + const image = repository.getArtifact(manifest.digest); console.log(`Deleting image with digest ${manifest.digest}`); - console.log(` This image has the following tags:`); + console.log(` Deleting the following tags from the image:`); for (const tagName of manifest.tags) { console.log(` ${manifest.repositoryName}:${tagName}`); + image.deleteTag(tagName); } - await repository.getArtifact(manifest.digest).delete(); + await image.delete(); } } } diff --git a/sdk/containerregistry/container-registry/samples/v1/javascript/deleteImages.js b/sdk/containerregistry/container-registry/samples/v1/javascript/deleteImages.js index 9175cef06944..29573681a926 100644 --- a/sdk/containerregistry/container-registry/samples/v1/javascript/deleteImages.js +++ b/sdk/containerregistry/container-registry/samples/v1/javascript/deleteImages.js @@ -32,12 +32,14 @@ async function main() { // Delete images older than the first three. for await (const manifest of imageManifests) { if (imageCount++ > imagesToKeep) { + const image = repository.getArtifact(manifest.digest); console.log(`Deleting image with digest ${manifest.digest}`); - console.log(` This image has the following tags:`); + console.log(` Deleting the following tags from the image:`); for (const tagName of manifest.tags) { console.log(` ${manifest.repositoryName}:${tagName}`); + image.deleteTag(tagName); } - await repository.getArtifact(manifest.digest).delete(); + await image.delete(); } } } diff --git a/sdk/containerregistry/container-registry/samples/v1/typescript/src/deleteImages.ts b/sdk/containerregistry/container-registry/samples/v1/typescript/src/deleteImages.ts index 89ce55c89bb5..43945bc01b7b 100644 --- a/sdk/containerregistry/container-registry/samples/v1/typescript/src/deleteImages.ts +++ b/sdk/containerregistry/container-registry/samples/v1/typescript/src/deleteImages.ts @@ -32,12 +32,14 @@ async function main() { // Delete images older than the first three. for await (const manifest of imageManifests) { if (imageCount++ > imagesToKeep) { + const image = repository.getArtifact(manifest.digest); console.log(`Deleting image with digest ${manifest.digest}`); - console.log(` This image has the following tags:`); + console.log(` Deleting the following tags from the image:`); for (const tagName of manifest.tags) { console.log(` ${manifest.repositoryName}:${tagName}`); + image.deleteTag(tagName); } - await repository.getArtifact(manifest.digest).delete(); + await image.delete(); } } } From 4ccc8d90ea3e0ba386a56a1588a87f82a5685827 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Rodr=C3=ADguez?= Date: Fri, 25 Jun 2021 16:21:22 -0400 Subject: [PATCH 04/49] [Identity] Test improvements (#15999) * [Identity] Test improvements * temporary node 16 fix * Since unhandled promise rejections are not supported in Node 16, tickAsync can't be awaited * fix the test Co-authored-by: Harsha Nalluru --- .../node/managedIdentityCredential.spec.ts | 40 +++++++------------ .../node/clientSecretCredential.spec.ts | 7 +++- 2 files changed, 19 insertions(+), 28 deletions(-) diff --git a/sdk/identity/identity/test/internal/node/managedIdentityCredential.spec.ts b/sdk/identity/identity/test/internal/node/managedIdentityCredential.spec.ts index 4d9fdf5e5cb6..aa6ac5f726bd 100644 --- a/sdk/identity/identity/test/internal/node/managedIdentityCredential.spec.ts +++ b/sdk/identity/identity/test/internal/node/managedIdentityCredential.spec.ts @@ -28,7 +28,6 @@ interface AuthRequestDetails { describe("ManagedIdentityCredential", function() { let envCopy: string = ""; let sandbox: Sinon.SinonSandbox; - let clock: Sinon.SinonFakeTimers; beforeEach(() => { envCopy = JSON.stringify(process.env); @@ -39,10 +38,6 @@ describe("ManagedIdentityCredential", function() { delete process.env.IDENTITY_SERVER_THUMBPRINT; delete process.env.IMDS_ENDPOINT; sandbox = Sinon.createSandbox(); - clock = sandbox.useFakeTimers({ - now: Date.now(), - shouldAdvanceTime: true - }); }); afterEach(() => { const env = JSON.parse(envCopy); @@ -53,7 +48,6 @@ describe("ManagedIdentityCredential", function() { process.env.IDENTITY_SERVER_THUMBPRINT = env.IDENTITY_SERVER_THUMBPRINT; process.env.IMDS_ENDPOINT = env.IMDS_ENDPOINT; sandbox.restore(); - clock.restore(); }); it("sends an authorization request with a modified resource name", async function() { @@ -232,20 +226,22 @@ describe("ManagedIdentityCredential", function() { ...mockHttpClient.tokenCredentialOptions }); - const promise = credential.getToken("scopes"); + const clock = sandbox.useFakeTimers(); - imdsMsiRetryConfig.startDelayInMs = 80; // 800ms / 10 - - // 800ms -> 1600ms -> 3200ms, results in 6400ms, / 10 = 640ms - clock.tick(640); + let errorMessage: string = ""; + credential.getToken("scopes").catch((error) => { + errorMessage = error.message; + }); + // 800ms -> 1600ms -> 3200ms, results in 6400ms - await assertRejects( - promise, - (error: AuthenticationError) => - error.message.indexOf( - `Failed to retrieve IMDS token after ${imdsMsiRetryConfig.maxRetries} retries.` - ) > -1 + await clock.tickAsync(6400); + assert.ok( + errorMessage.indexOf( + `Failed to retrieve IMDS token after ${imdsMsiRetryConfig.maxRetries} retries.` + ) > -1 ); + + clock.restore(); }); // Unavailable exception throws while IMDS endpoint is unavailable. This test not valid. @@ -397,15 +393,7 @@ describe("ManagedIdentityCredential", function() { ); assert.equal(authRequest.headers.get("Authorization"), `Basic ${key}`); - if (authDetails.token) { - // We use Date.now underneath. - assert.equal( - Math.floor(authDetails.token.expiresOnTimestamp / 1000000), - Math.floor(Date.now() / 1000000) - ); - } else { - assert.fail("No token was returned!"); - } + assert.ok(authDetails.token?.expiresOnTimestamp); } finally { unlinkSync(tempFile); rmdirSync(tempDir); diff --git a/sdk/identity/identity/test/public/node/clientSecretCredential.spec.ts b/sdk/identity/identity/test/public/node/clientSecretCredential.spec.ts index 46d088e86898..987d3e4bd63f 100644 --- a/sdk/identity/identity/test/public/node/clientSecretCredential.spec.ts +++ b/sdk/identity/identity/test/public/node/clientSecretCredential.spec.ts @@ -4,7 +4,7 @@ /* eslint-disable @typescript-eslint/no-non-null-asserted-optional-chain */ import assert from "assert"; -import { env, delay, isLiveMode } from "@azure/test-utils-recorder"; +import { env, delay, isRecordMode } from "@azure/test-utils-recorder"; import { AbortController } from "@azure/abort-controller"; import { MsalTestCleanup, msalNodeTestSetup, testTracing } from "../../msalTestUtils"; import { ClientSecretCredential, RegionalAuthority } from "../../../src"; @@ -83,7 +83,10 @@ describe("ClientSecretCredential", function() { ); it("supports specifying the regional authority", async function(this: Context) { - if (isLiveMode()) { + // This test is extremely slow. Let's skip it for now. + // I've tried Sinon's clock and it doesn't affect it. + // We have internal tests that check that the parameters are properly sent to MSAL, which should be enough from the perspective of the SDK. + if (!isRecordMode()) { this.skip(); } From 63b62362d8abb8c69c9fcd51dfd614f0c1d1c830 Mon Sep 17 00:00:00 2001 From: Harsha Nalluru Date: Fri, 25 Jun 2021 14:57:35 -0700 Subject: [PATCH 05/49] Add dev dependencies for App Config perf tests(#16009) --- sdk/appconfiguration/perf-tests/app-configuration/package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sdk/appconfiguration/perf-tests/app-configuration/package.json b/sdk/appconfiguration/perf-tests/app-configuration/package.json index d0dfc3134729..ad44b1c7f811 100644 --- a/sdk/appconfiguration/perf-tests/app-configuration/package.json +++ b/sdk/appconfiguration/perf-tests/app-configuration/package.json @@ -15,6 +15,9 @@ "devDependencies": { "@types/uuid": "^8.0.0", "@types/node": "^8.0.0", + "eslint": "^7.15.0", + "prettier": "^1.16.4", + "rimraf": "^3.0.0", "uuid": "^8.3.0", "tslib": "^2.2.0", "ts-node": "^9.0.0", From f3a8efe4096fbfe0f57c820304fcb4bbe3d97667 Mon Sep 17 00:00:00 2001 From: Maor Leger Date: Fri, 25 Jun 2021 15:15:58 -0700 Subject: [PATCH 06/49] [KeyVault] - Add support for getRandomBytes operation (#15955) ## What - Regenerate from 7.3-preview swagger - Add `getRandomBytes` method ## Why - For July we would like to add support for the RNG endpoint in a Managed HSM. While this is a customer ask for Java, we will add this to all languages at the same time. --- sdk/keyvault/keyvault-keys/CHANGELOG.md | 3 + .../keyvault-keys/platform-matrix.json | 7 +- ...ion_should_work_for_parallel_requests.json | 330 +- ...equests_should_not_authenticate_again.json | 226 +- ...ng_encrypts_and_decrypts_using_aescbc.json | 518 +- ...ng_encrypts_and_decrypts_using_aesgcm.json | 518 +- ...rding_encrypts_and_decrypts_using_rsa.json | 518 +- ...ng_encrypts_and_decrypts_using_aescbc.json | 518 +- ...ng_encrypts_and_decrypts_using_aesgcm.json | 526 +- .../recording_can_abort_creating_a_key.json | 38 +- .../recording_can_create_a_disabled_key.json | 1032 ++-- ...eate_a_key_while_giving_a_manual_type.json | 1302 ++--- ...cording_can_create_a_key_with_expires.json | 1518 ++--- ...rding_can_create_a_key_with_notbefore.json | 1734 +++--- .../recording_can_create_a_rsa_key.json | 924 +-- ...create_a_rsa_key_with_public_exponent.json | 870 +-- ...ording_can_create_a_rsa_key_with_size.json | 924 +-- .../recording_can_create_an_ec_key.json | 1464 ++--- ...rding_can_create_an_ec_key_with_curve.json | 978 ++-- ...ng_can_create_an_oct_key_with_options.json | 286 +- .../recording_can_delete_a_key.json | 1518 ++--- .../recording_can_get_a_deleted_key.json | 1194 ++-- .../recording_can_get_a_key.json | 1086 ++-- ...g_can_get_a_specific_version_of_a_key.json | 1086 ++-- .../recording_can_purge_a_deleted_key.json | 1086 ++-- .../recording_can_update_a_disabled_key.json | 1626 +++--- .../recording_can_update_key.json | 1032 ++-- ...t_get_a_deleted_key_that_doesnt_exist.json | 172 +- .../recording_delete_nonexisting_key.json | 172 +- .../recording_supports_tracing.json | 172 +- ...ng_can_create_an_oct_key_with_options.json | 292 +- ...n_return_the_required_number_of_bytes.json | 78 + ...s_an_error_when_bytes_is_out_of_range.json | 8 + .../recording_supports_tracing.json | 78 + .../recording_can_import_a_key.json | 172 +- ...cording_can_get_several_inserted_keys.json | 2540 ++++---- ...g_can_get_several_inserted_keys_paged.json | 2054 +++---- ...cording_can_get_the_versions_of_a_key.json | 1680 +++--- ...g_can_get_the_versions_of_a_key_paged.json | 1140 ++-- .../recording_can_purge_all_keys.json | 5172 ++++++++--------- ..._list_0_versions_of_a_nonexisting_key.json | 172 +- ...0_versions_of_a_nonexisting_key_paged.json | 172 +- .../recording_list_deleted_keys.json | 2002 +++---- .../recording_list_deleted_keys_paged.json | 2810 ++++----- ...ding_can_resume_from_a_stopped_poller.json | 1086 ++-- ...rding_can_wait_until_a_key_is_deleted.json | 1140 ++-- ...ding_can_resume_from_a_stopped_poller.json | 2868 ++++----- ...ing_can_wait_until_a_key_is_recovered.json | 2868 ++++----- ...ording_can_generate_a_backup_of_a_key.json | 1410 ++--- .../recording_can_recover_a_deleted_key.json | 2220 +++---- ...can_restore_a_key_with_a_given_backup.json | 2162 +++---- ..._to_recover_a_nonexisting_deleted_key.json | 226 +- ...enerate_a_backup_of_a_nonexisting_key.json | 172 +- ...restore_a_key_with_a_malformed_backup.json | 172 +- ...can_return_the_required_number_of_bytes.js | 165 + ...rns_an_error_when_bytes_is_out_of_range.js | 5 + .../recording_supports_tracing.js | 165 + .../keyvault-keys/review/keyvault-keys.api.md | 7 +- .../src/generated/keyVaultClient.ts | 352 +- .../src/generated/keyVaultClientContext.ts | 27 +- .../src/generated/models/index.ts | 397 +- .../src/generated/models/mappers.ts | 290 + .../src/generated/models/parameters.ts | 61 +- sdk/keyvault/keyvault-keys/src/index.ts | 22 +- sdk/keyvault/keyvault-keys/src/keysModels.ts | 30 +- sdk/keyvault/keyvault-keys/swagger/README.md | 10 +- ...CRUD.hsm.spec.ts => keyClient.hsm.spec.ts} | 22 + .../{CRUD.spec.ts => keyClient.spec.ts} | 0 .../keyvault-keys/test/utils/utils.common.ts | 2 +- 69 files changed, 29550 insertions(+), 28077 deletions(-) create mode 100644 sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations_for_managed_hsm_getrandombytes/recording_can_return_the_required_number_of_bytes.json create mode 100644 sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations_for_managed_hsm_getrandombytes/recording_returns_an_error_when_bytes_is_out_of_range.json create mode 100644 sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations_for_managed_hsm_getrandombytes/recording_supports_tracing.json create mode 100644 sdk/keyvault/keyvault-keys/recordings/node/keys_client__create_read_update_and_delete_operations_for_managed_hsm_getrandombytes/recording_can_return_the_required_number_of_bytes.js create mode 100644 sdk/keyvault/keyvault-keys/recordings/node/keys_client__create_read_update_and_delete_operations_for_managed_hsm_getrandombytes/recording_returns_an_error_when_bytes_is_out_of_range.js create mode 100644 sdk/keyvault/keyvault-keys/recordings/node/keys_client__create_read_update_and_delete_operations_for_managed_hsm_getrandombytes/recording_supports_tracing.js rename sdk/keyvault/keyvault-keys/test/public/{CRUD.hsm.spec.ts => keyClient.hsm.spec.ts} (68%) rename sdk/keyvault/keyvault-keys/test/public/{CRUD.spec.ts => keyClient.spec.ts} (100%) diff --git a/sdk/keyvault/keyvault-keys/CHANGELOG.md b/sdk/keyvault/keyvault-keys/CHANGELOG.md index 51b8480a8554..a69838d159b0 100644 --- a/sdk/keyvault/keyvault-keys/CHANGELOG.md +++ b/sdk/keyvault/keyvault-keys/CHANGELOG.md @@ -4,6 +4,9 @@ ### Features Added +- Added support for `KeyClient.getRandomBytes` which, when connected to a managed HSM, can be used to generate a byte array of a given length with random values. +- Updated the service version to 7.3-preview. + ### Breaking Changes ### Key Bugs Fixed diff --git a/sdk/keyvault/keyvault-keys/platform-matrix.json b/sdk/keyvault/keyvault-keys/platform-matrix.json index e075bc177399..dcdae26eb880 100644 --- a/sdk/keyvault/keyvault-keys/platform-matrix.json +++ b/sdk/keyvault/keyvault-keys/platform-matrix.json @@ -19,12 +19,13 @@ } }, "TestType": "node", - "NodeTestVersion": "10.x", - "ServiceVersion": ["7.0", "7.1"] + "NodeTestVersion": "14.x", + "ServiceVersion": ["7.0", "7.1", "7.2"] } ], "displayNames": { "7.0": "service_version_7_0", - "7.1": "service_version_7_1" + "7.1": "service_version_7_1", + "7.2": "service_version_7_2" } } diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/challenge_based_authentication_tests/recording_authentication_should_work_for_parallel_requests.json b/sdk/keyvault/keyvault-keys/recordings/browsers/challenge_based_authentication_tests/recording_authentication_should_work_for_parallel_requests.json index 3fc463b3d0f6..eb38cd7effb1 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/challenge_based_authentication_tests/recording_authentication_should_work_for_parallel_requests.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/challenge_based_authentication_tests/recording_authentication_should_work_for_parallel_requests.json @@ -1,167 +1,167 @@ { - "recordings": [ - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"AKV10000: Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "97", - "content-type": "application/json; charset=utf-8", - "date": "Thu, 17 Jun 2021 22:28:57 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ed067b2c-333e-42dd-a526-b1592bac0f5f", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=50.35.231.105;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.9.12.0", - "x-ms-request-id": "be104998-e1d5-4d79-8c40-33eaf62c5a12", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"AKV10000: Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "97", + "content-type": "application/json; charset=utf-8", + "date": "Thu, 17 Jun 2021 22:28:57 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ed067b2c-333e-42dd-a526-b1592bac0f5f", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=50.35.231.105;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.9.12.0", + "x-ms-request-id": "be104998-e1d5-4d79-8c40-33eaf62c5a12", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"AKV10000: Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "97", + "content-type": "application/json; charset=utf-8", + "date": "Thu, 17 Jun 2021 22:28:57 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "68fb0167-aff6-487d-aa2f-a5d86b02abc1", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=50.35.231.105;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.9.12.0", + "x-ms-request-id": "5738fba5-6936-4cad-a542-6b0fdaadab8d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Thu, 17 Jun 2021 22:28:58 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11829.4 - SCUS ProdSlices", + "x-ms-request-id": "a867aa5c-ca07-4596-b271-331a3b58c200" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Thu, 17 Jun 2021 22:28:57 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11829.4 - WUS2 ProdSlices", + "x-ms-request-id": "b9509a54-3fe4-47e5-ae1b-42f173a37100" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"value\":[{\"kid\":\"https://keyvault_name.vault.azure.net/keys/challengeAuthKeyName-Authenticationshouldworkforparallelrequests-304369368630208-1\",\"attributes\":{\"enabled\":true,\"created\":1623967959,\"updated\":1623967959,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"kid\":\"https://keyvault_name.vault.azure.net/keys/challengeAuthKeyName-Onceauthenticatednewrequestsshouldnotauthenticateagain-9173446555051745-1\",\"attributes\":{\"enabled\":true,\"created\":1623968785,\"updated\":1623968785,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}],\"nextLink\":null}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "585", + "content-type": "application/json; charset=utf-8", + "date": "Thu, 17 Jun 2021 22:28:58 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "68fb0167-aff6-487d-aa2f-a5d86b02abc1", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=50.35.231.105;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.9.12.0", + "x-ms-request-id": "a784515e-27b5-4022-bbd9-5236aedb905b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"value\":[{\"kid\":\"https://keyvault_name.vault.azure.net/keys/challengeAuthKeyName-Authenticationshouldworkforparallelrequests-304369368630208-1\",\"attributes\":{\"enabled\":true,\"created\":1623967959,\"updated\":1623967959,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"kid\":\"https://keyvault_name.vault.azure.net/keys/challengeAuthKeyName-Onceauthenticatednewrequestsshouldnotauthenticateagain-9173446555051745-1\",\"attributes\":{\"enabled\":true,\"created\":1623968785,\"updated\":1623968785,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}],\"nextLink\":null}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "585", + "content-type": "application/json; charset=utf-8", + "date": "Thu, 17 Jun 2021 22:28:58 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ed067b2c-333e-42dd-a526-b1592bac0f5f", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=50.35.231.105;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.9.12.0", + "x-ms-request-id": "29782669-986b-484b-be52-2bc0a2882a7c", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"AKV10000: Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "97", - "content-type": "application/json; charset=utf-8", - "date": "Thu, 17 Jun 2021 22:28:57 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "68fb0167-aff6-487d-aa2f-a5d86b02abc1", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=50.35.231.105;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.9.12.0", - "x-ms-request-id": "5738fba5-6936-4cad-a542-6b0fdaadab8d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Thu, 17 Jun 2021 22:28:58 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11829.4 - SCUS ProdSlices", - "x-ms-request-id": "a867aa5c-ca07-4596-b271-331a3b58c200" - } - }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Thu, 17 Jun 2021 22:28:57 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11829.4 - WUS2 ProdSlices", - "x-ms-request-id": "b9509a54-3fe4-47e5-ae1b-42f173a37100" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"value\":[{\"kid\":\"https://keyvault_name.vault.azure.net/keys/challengeAuthKeyName-Authenticationshouldworkforparallelrequests-304369368630208-1\",\"attributes\":{\"enabled\":true,\"created\":1623967959,\"updated\":1623967959,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"kid\":\"https://keyvault_name.vault.azure.net/keys/challengeAuthKeyName-Onceauthenticatednewrequestsshouldnotauthenticateagain-9173446555051745-1\",\"attributes\":{\"enabled\":true,\"created\":1623968785,\"updated\":1623968785,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}],\"nextLink\":null}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "585", - "content-type": "application/json; charset=utf-8", - "date": "Thu, 17 Jun 2021 22:28:58 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "68fb0167-aff6-487d-aa2f-a5d86b02abc1", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=50.35.231.105;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.9.12.0", - "x-ms-request-id": "a784515e-27b5-4022-bbd9-5236aedb905b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"value\":[{\"kid\":\"https://keyvault_name.vault.azure.net/keys/challengeAuthKeyName-Authenticationshouldworkforparallelrequests-304369368630208-1\",\"attributes\":{\"enabled\":true,\"created\":1623967959,\"updated\":1623967959,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"kid\":\"https://keyvault_name.vault.azure.net/keys/challengeAuthKeyName-Onceauthenticatednewrequestsshouldnotauthenticateagain-9173446555051745-1\",\"attributes\":{\"enabled\":true,\"created\":1623968785,\"updated\":1623968785,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}],\"nextLink\":null}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "585", - "content-type": "application/json; charset=utf-8", - "date": "Thu, 17 Jun 2021 22:28:58 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ed067b2c-333e-42dd-a526-b1592bac0f5f", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=50.35.231.105;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.9.12.0", - "x-ms-request-id": "29782669-986b-484b-be52-2bc0a2882a7c", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "9c6eaed2ebe372dd12aa2b3b7d5155e9" -} \ No newline at end of file + "hash": "9c6eaed2ebe372dd12aa2b3b7d5155e9" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/challenge_based_authentication_tests/recording_once_authenticated_new_requests_should_not_authenticate_again.json b/sdk/keyvault/keyvault-keys/recordings/browsers/challenge_based_authentication_tests/recording_once_authenticated_new_requests_should_not_authenticate_again.json index 4138ace45287..22c6d1c09a9c 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/challenge_based_authentication_tests/recording_once_authenticated_new_requests_should_not_authenticate_again.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/challenge_based_authentication_tests/recording_once_authenticated_new_requests_should_not_authenticate_again.json @@ -1,115 +1,115 @@ { - "recordings": [ - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"AKV10000: Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "97", - "content-type": "application/json; charset=utf-8", - "date": "Thu, 17 Jun 2021 22:28:58 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "7736f559-035b-4ca4-b0c8-ac2fa40210ff", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=50.35.231.105;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.9.12.0", - "x-ms-request-id": "d11e35f6-71da-459c-bed5-2ddb3a5fef14", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"AKV10000: Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "97", + "content-type": "application/json; charset=utf-8", + "date": "Thu, 17 Jun 2021 22:28:58 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "7736f559-035b-4ca4-b0c8-ac2fa40210ff", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=50.35.231.105;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.9.12.0", + "x-ms-request-id": "d11e35f6-71da-459c-bed5-2ddb3a5fef14", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Thu, 17 Jun 2021 22:28:58 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11829.4 - WUS2 ProdSlices", + "x-ms-request-id": "823a5ee1-ec9f-4230-9b62-25d78e285300" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"value\":[{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/challengeAuthKeyName-Authenticationshouldworkforparallelrequests-018489891015560644-1\",\"deletedDate\":1623968152,\"scheduledPurgeDate\":1624572952,\"kid\":\"https://keyvault_name.vault.azure.net/keys/challengeAuthKeyName-Authenticationshouldworkforparallelrequests-018489891015560644-1\",\"attributes\":{\"enabled\":true,\"created\":1623968038,\"updated\":1623968038,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/challengeAuthKeyName-Authenticationshouldworkforparallelrequests-24685237550245565-1\",\"deletedDate\":1623967880,\"scheduledPurgeDate\":1624572680,\"kid\":\"https://keyvault_name.vault.azure.net/keys/challengeAuthKeyName-Authenticationshouldworkforparallelrequests-24685237550245565-1\",\"attributes\":{\"enabled\":true,\"created\":1623967755,\"updated\":1623967755,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/challengeAuthKeyName-Authenticationshouldworkforparallelrequests-304369368630208-0\",\"deletedDate\":1623967959,\"scheduledPurgeDate\":1624572759,\"kid\":\"https://keyvault_name.vault.azure.net/keys/challengeAuthKeyName-Authenticationshouldworkforparallelrequests-304369368630208-0\",\"attributes\":{\"enabled\":true,\"created\":1623967959,\"updated\":1623967959,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/challengeAuthKeyName-Onceauthenticatednewrequestsshouldnotauthenticateagain-9173446555051745-0\",\"deletedDate\":1623968786,\"scheduledPurgeDate\":1624573586,\"kid\":\"https://keyvault_name.vault.azure.net/keys/challengeAuthKeyName-Onceauthenticatednewrequestsshouldnotauthenticateagain-9173446555051745-0\",\"attributes\":{\"enabled\":true,\"created\":1623968785,\"updated\":1623968785,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}],\"nextLink\":null}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "1953", + "content-type": "application/json; charset=utf-8", + "date": "Thu, 17 Jun 2021 22:28:58 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "7736f559-035b-4ca4-b0c8-ac2fa40210ff", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=50.35.231.105;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.9.12.0", + "x-ms-request-id": "e01d43f2-6e0e-4f3a-8494-1d0a859e2005", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"value\":[{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/challengeAuthKeyName-Authenticationshouldworkforparallelrequests-018489891015560644-1\",\"deletedDate\":1623968152,\"scheduledPurgeDate\":1624572952,\"kid\":\"https://keyvault_name.vault.azure.net/keys/challengeAuthKeyName-Authenticationshouldworkforparallelrequests-018489891015560644-1\",\"attributes\":{\"enabled\":true,\"created\":1623968038,\"updated\":1623968038,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/challengeAuthKeyName-Authenticationshouldworkforparallelrequests-24685237550245565-1\",\"deletedDate\":1623967880,\"scheduledPurgeDate\":1624572680,\"kid\":\"https://keyvault_name.vault.azure.net/keys/challengeAuthKeyName-Authenticationshouldworkforparallelrequests-24685237550245565-1\",\"attributes\":{\"enabled\":true,\"created\":1623967755,\"updated\":1623967755,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/challengeAuthKeyName-Authenticationshouldworkforparallelrequests-304369368630208-0\",\"deletedDate\":1623967959,\"scheduledPurgeDate\":1624572759,\"kid\":\"https://keyvault_name.vault.azure.net/keys/challengeAuthKeyName-Authenticationshouldworkforparallelrequests-304369368630208-0\",\"attributes\":{\"enabled\":true,\"created\":1623967959,\"updated\":1623967959,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/challengeAuthKeyName-Onceauthenticatednewrequestsshouldnotauthenticateagain-9173446555051745-0\",\"deletedDate\":1623968786,\"scheduledPurgeDate\":1624573586,\"kid\":\"https://keyvault_name.vault.azure.net/keys/challengeAuthKeyName-Onceauthenticatednewrequestsshouldnotauthenticateagain-9173446555051745-0\",\"attributes\":{\"enabled\":true,\"created\":1623968785,\"updated\":1623968785,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}],\"nextLink\":null}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "1953", + "content-type": "application/json; charset=utf-8", + "date": "Thu, 17 Jun 2021 22:28:58 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d6c488d9-f0c5-4252-9d28-325ee4b403c5", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=50.35.231.105;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.9.12.0", + "x-ms-request-id": "c7cc40e2-cb52-4695-9263-810a77695fad", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Thu, 17 Jun 2021 22:28:58 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11829.4 - WUS2 ProdSlices", - "x-ms-request-id": "823a5ee1-ec9f-4230-9b62-25d78e285300" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"value\":[{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/challengeAuthKeyName-Authenticationshouldworkforparallelrequests-018489891015560644-1\",\"deletedDate\":1623968152,\"scheduledPurgeDate\":1624572952,\"kid\":\"https://keyvault_name.vault.azure.net/keys/challengeAuthKeyName-Authenticationshouldworkforparallelrequests-018489891015560644-1\",\"attributes\":{\"enabled\":true,\"created\":1623968038,\"updated\":1623968038,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/challengeAuthKeyName-Authenticationshouldworkforparallelrequests-24685237550245565-1\",\"deletedDate\":1623967880,\"scheduledPurgeDate\":1624572680,\"kid\":\"https://keyvault_name.vault.azure.net/keys/challengeAuthKeyName-Authenticationshouldworkforparallelrequests-24685237550245565-1\",\"attributes\":{\"enabled\":true,\"created\":1623967755,\"updated\":1623967755,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/challengeAuthKeyName-Authenticationshouldworkforparallelrequests-304369368630208-0\",\"deletedDate\":1623967959,\"scheduledPurgeDate\":1624572759,\"kid\":\"https://keyvault_name.vault.azure.net/keys/challengeAuthKeyName-Authenticationshouldworkforparallelrequests-304369368630208-0\",\"attributes\":{\"enabled\":true,\"created\":1623967959,\"updated\":1623967959,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/challengeAuthKeyName-Onceauthenticatednewrequestsshouldnotauthenticateagain-9173446555051745-0\",\"deletedDate\":1623968786,\"scheduledPurgeDate\":1624573586,\"kid\":\"https://keyvault_name.vault.azure.net/keys/challengeAuthKeyName-Onceauthenticatednewrequestsshouldnotauthenticateagain-9173446555051745-0\",\"attributes\":{\"enabled\":true,\"created\":1623968785,\"updated\":1623968785,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}],\"nextLink\":null}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "1953", - "content-type": "application/json; charset=utf-8", - "date": "Thu, 17 Jun 2021 22:28:58 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "7736f559-035b-4ca4-b0c8-ac2fa40210ff", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=50.35.231.105;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.9.12.0", - "x-ms-request-id": "e01d43f2-6e0e-4f3a-8494-1d0a859e2005", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"value\":[{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/challengeAuthKeyName-Authenticationshouldworkforparallelrequests-018489891015560644-1\",\"deletedDate\":1623968152,\"scheduledPurgeDate\":1624572952,\"kid\":\"https://keyvault_name.vault.azure.net/keys/challengeAuthKeyName-Authenticationshouldworkforparallelrequests-018489891015560644-1\",\"attributes\":{\"enabled\":true,\"created\":1623968038,\"updated\":1623968038,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/challengeAuthKeyName-Authenticationshouldworkforparallelrequests-24685237550245565-1\",\"deletedDate\":1623967880,\"scheduledPurgeDate\":1624572680,\"kid\":\"https://keyvault_name.vault.azure.net/keys/challengeAuthKeyName-Authenticationshouldworkforparallelrequests-24685237550245565-1\",\"attributes\":{\"enabled\":true,\"created\":1623967755,\"updated\":1623967755,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/challengeAuthKeyName-Authenticationshouldworkforparallelrequests-304369368630208-0\",\"deletedDate\":1623967959,\"scheduledPurgeDate\":1624572759,\"kid\":\"https://keyvault_name.vault.azure.net/keys/challengeAuthKeyName-Authenticationshouldworkforparallelrequests-304369368630208-0\",\"attributes\":{\"enabled\":true,\"created\":1623967959,\"updated\":1623967959,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/challengeAuthKeyName-Onceauthenticatednewrequestsshouldnotauthenticateagain-9173446555051745-0\",\"deletedDate\":1623968786,\"scheduledPurgeDate\":1624573586,\"kid\":\"https://keyvault_name.vault.azure.net/keys/challengeAuthKeyName-Onceauthenticatednewrequestsshouldnotauthenticateagain-9173446555051745-0\",\"attributes\":{\"enabled\":true,\"created\":1623968785,\"updated\":1623968785,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}],\"nextLink\":null}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "1953", - "content-type": "application/json; charset=utf-8", - "date": "Thu, 17 Jun 2021 22:28:58 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d6c488d9-f0c5-4252-9d28-325ee4b403c5", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=50.35.231.105;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.9.12.0", - "x-ms-request-id": "c7cc40e2-cb52-4695-9263-810a77695fad", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "9f2d93241a593aee460253e5c0a48bca" -} \ No newline at end of file + "hash": "9f2d93241a593aee460253e5c0a48bca" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/cryptographyclient_for_managed_hsm_all_decrypts_happen_remotely_with_aes_crypto_algorithms/recording_encrypts_and_decrypts_using_aescbc.json b/sdk/keyvault/keyvault-keys/recordings/browsers/cryptographyclient_for_managed_hsm_all_decrypts_happen_remotely_with_aes_crypto_algorithms/recording_encrypts_and_decrypts_using_aescbc.json index ce09226b8ff1..aac7c07f304e 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/cryptographyclient_for_managed_hsm_all_decrypts_happen_remotely_with_aes_crypto_algorithms/recording_encrypts_and_decrypts_using_aescbc.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/cryptographyclient_for_managed_hsm_all_decrypts_happen_remotely_with_aes_crypto_algorithms/recording_encrypts_and_decrypts_using_aescbc.json @@ -1,261 +1,261 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "0", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.microsoftonline.com/azure_tenant_id\", resource=\"https://managedhsm.azure.net\"", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-request-id": "cc6f53b2-7303-11eb-9799-0242ac120009", - "x-ms-server-latency": "0" - } + "recordings": [ + { + "method": "POST", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "0", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.microsoftonline.com/azure_tenant_id\", resource=\"https://managedhsm.azure.net\"", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-request-id": "cc6f53b2-7303-11eb-9799-0242ac120009", + "x-ms-server-latency": "0" + } + }, + { + "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%2Fmanagedhsm.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1322", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 19 Feb 2021 22:42:51 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.11496.7 - SCUS ProdSlices", + "x-ms-request-id": "3e55bf0b-fca2-46f5-87aa-16495b980b00" + } + }, + { + "method": "POST", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"AES\",\"key_size\":256,\"attributes\":{}}", + "status": 200, + "response": "{\"attributes\":{\"created\":1613774571,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613774571},\"key\":{\"key_ops\":[\"wrapKey\",\"unwrapKey\",\"decrypt\",\"encrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/2b1f70f4eb004f442c093e6b41a94b7f\",\"kty\":\"oct-HSM\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "360", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "cc9b7848-7303-11eb-9799-0242ac120009", + "x-ms-server-latency": "157" + } + }, + { + "method": "GET", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/2b1f70f4eb004f442c093e6b41a94b7f", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "OK", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "2", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.microsoftonline.com/azure_tenant_id\", resource=\"https://managedhsm.azure.net\"", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-build-version": "1.0.20210204-1-c9f88df4-develop", + "x-ms-request-id": "cccceb26-7303-11eb-9799-0242ac120009", + "x-ms-server-latency": "0" + } + }, + { + "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%2Fmanagedhsm.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1322", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 19 Feb 2021 22:42:51 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.11496.7 - EUS ProdSlices", + "x-ms-request-id": "d46e2f68-9c1e-4073-a035-d2829def3400" + } + }, + { + "method": "GET", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/2b1f70f4eb004f442c093e6b41a94b7f", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"attributes\":{\"created\":1613774571,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613774571},\"key\":{\"key_ops\":[\"wrapKey\",\"unwrapKey\",\"encrypt\",\"decrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/2b1f70f4eb004f442c093e6b41a94b7f\",\"kty\":\"oct-HSM\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "360", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-build-version": "1.0.20210204-1-c9f88df4-develop", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "ccfa5034-7303-11eb-9799-0242ac120009", + "x-ms-server-latency": "76" + } + }, + { + "method": "POST", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/2b1f70f4eb004f442c093e6b41a94b7f/encrypt", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"alg\":\"A256CBCPAD\",\"value\":\"ZW5jcnlwdHMgYW5kIGRlY3J5cHRzIHVzaW5nIEFFUy1DQkM\",\"iv\":\"ZW5jcnlwdHMgYW5kIGRlY3J5cHRzIHVzaW5nIEFFUy1DQkM\"}", + "status": 200, + "response": "{\"alg\":\"A256CBCPAD\",\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/2b1f70f4eb004f442c093e6b41a94b7f\",\"value\":\"GLS9TkdfML6aKB5w2bkTVXuvCjp8Bs6kYSyhvW_61FJnr55wtpHotVEtd1pAg2Td\"}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "224", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "cd1e67b2-7303-11eb-9799-0242ac120009", + "x-ms-server-latency": "0" + } + }, + { + "method": "POST", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/2b1f70f4eb004f442c093e6b41a94b7f/decrypt", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"alg\":\"A256CBCPAD\",\"value\":\"GLS9TkdfML6aKB5w2bkTVXuvCjp8Bs6kYSyhvW_61FJnr55wtpHotVEtd1pAg2Td\",\"iv\":\"ZW5jcnlwdHMgYW5kIGRlY3J5cHRzIHVzaW5nIEFFUy1DQkM\"}", + "status": 200, + "response": "{\"alg\":\"A256CBCPAD\",\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/2b1f70f4eb004f442c093e6b41a94b7f\",\"value\":\"ZW5jcnlwdHMgYW5kIGRlY3J5cHRzIHVzaW5nIEFFUy1DQkM\"}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "207", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "cd36e7e2-7303-11eb-9799-0242ac120009", + "x-ms-server-latency": "1" + } + }, + { + "method": "DELETE", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"attributes\":{\"created\":1613774571,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613774571},\"deletedDate\":1613774573,\"key\":{\"key_ops\":[\"unwrapKey\",\"wrapKey\",\"decrypt\",\"encrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/2b1f70f4eb004f442c093e6b41a94b7f\",\"kty\":\"oct-HSM\"},\"recoveryId\":\"https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test\",\"scheduledPurgeDate\":1621550573}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "527", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "cd4fc79e-7303-11eb-9799-0242ac120009", + "x-ms-server-latency": "84" + } + }, + { + "method": "GET", + "url": "https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"attributes\":{\"created\":1613774571,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613774571},\"deletedDate\":1613774573,\"key\":{\"key_ops\":[\"encrypt\",\"decrypt\",\"unwrapKey\",\"wrapKey\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/2b1f70f4eb004f442c093e6b41a94b7f\",\"kty\":\"oct-HSM\"},\"recoveryId\":\"https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test\",\"scheduledPurgeDate\":1621550573}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "527", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-build-version": "1.0.20210204-1-c9f88df4-develop", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "cd752638-7303-11eb-9799-0242ac120009", + "x-ms-server-latency": "34" + } + }, + { + "method": "DELETE", + "url": "https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "0", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "cd92c26a-7303-11eb-9799-0242ac120009", + "x-ms-server-latency": "110" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "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%2Fmanagedhsm.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1322", - "content-type": "application/json; charset=utf-8", - "date": "Fri, 19 Feb 2021 22:42:51 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.11496.7 - SCUS ProdSlices", - "x-ms-request-id": "3e55bf0b-fca2-46f5-87aa-16495b980b00" - } - }, - { - "method": "POST", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"AES\",\"key_size\":256,\"attributes\":{}}", - "status": 200, - "response": "{\"attributes\":{\"created\":1613774571,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613774571},\"key\":{\"key_ops\":[\"wrapKey\",\"unwrapKey\",\"decrypt\",\"encrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/2b1f70f4eb004f442c093e6b41a94b7f\",\"kty\":\"oct-HSM\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "360", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "cc9b7848-7303-11eb-9799-0242ac120009", - "x-ms-server-latency": "157" - } - }, - { - "method": "GET", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/2b1f70f4eb004f442c093e6b41a94b7f", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "OK", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "2", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.microsoftonline.com/azure_tenant_id\", resource=\"https://managedhsm.azure.net\"", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-build-version": "1.0.20210204-1-c9f88df4-develop", - "x-ms-request-id": "cccceb26-7303-11eb-9799-0242ac120009", - "x-ms-server-latency": "0" - } - }, - { - "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%2Fmanagedhsm.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1322", - "content-type": "application/json; charset=utf-8", - "date": "Fri, 19 Feb 2021 22:42:51 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.11496.7 - EUS ProdSlices", - "x-ms-request-id": "d46e2f68-9c1e-4073-a035-d2829def3400" - } - }, - { - "method": "GET", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/2b1f70f4eb004f442c093e6b41a94b7f", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"attributes\":{\"created\":1613774571,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613774571},\"key\":{\"key_ops\":[\"wrapKey\",\"unwrapKey\",\"encrypt\",\"decrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/2b1f70f4eb004f442c093e6b41a94b7f\",\"kty\":\"oct-HSM\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "360", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-build-version": "1.0.20210204-1-c9f88df4-develop", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "ccfa5034-7303-11eb-9799-0242ac120009", - "x-ms-server-latency": "76" - } - }, - { - "method": "POST", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/2b1f70f4eb004f442c093e6b41a94b7f/encrypt", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"alg\":\"A256CBCPAD\",\"value\":\"ZW5jcnlwdHMgYW5kIGRlY3J5cHRzIHVzaW5nIEFFUy1DQkM\",\"iv\":\"ZW5jcnlwdHMgYW5kIGRlY3J5cHRzIHVzaW5nIEFFUy1DQkM\"}", - "status": 200, - "response": "{\"alg\":\"A256CBCPAD\",\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/2b1f70f4eb004f442c093e6b41a94b7f\",\"value\":\"GLS9TkdfML6aKB5w2bkTVXuvCjp8Bs6kYSyhvW_61FJnr55wtpHotVEtd1pAg2Td\"}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "224", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "cd1e67b2-7303-11eb-9799-0242ac120009", - "x-ms-server-latency": "0" - } - }, - { - "method": "POST", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/2b1f70f4eb004f442c093e6b41a94b7f/decrypt", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"alg\":\"A256CBCPAD\",\"value\":\"GLS9TkdfML6aKB5w2bkTVXuvCjp8Bs6kYSyhvW_61FJnr55wtpHotVEtd1pAg2Td\",\"iv\":\"ZW5jcnlwdHMgYW5kIGRlY3J5cHRzIHVzaW5nIEFFUy1DQkM\"}", - "status": 200, - "response": "{\"alg\":\"A256CBCPAD\",\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/2b1f70f4eb004f442c093e6b41a94b7f\",\"value\":\"ZW5jcnlwdHMgYW5kIGRlY3J5cHRzIHVzaW5nIEFFUy1DQkM\"}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "207", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "cd36e7e2-7303-11eb-9799-0242ac120009", - "x-ms-server-latency": "1" - } - }, - { - "method": "DELETE", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"attributes\":{\"created\":1613774571,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613774571},\"deletedDate\":1613774573,\"key\":{\"key_ops\":[\"unwrapKey\",\"wrapKey\",\"decrypt\",\"encrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/2b1f70f4eb004f442c093e6b41a94b7f\",\"kty\":\"oct-HSM\"},\"recoveryId\":\"https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test\",\"scheduledPurgeDate\":1621550573}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "527", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "cd4fc79e-7303-11eb-9799-0242ac120009", - "x-ms-server-latency": "84" - } - }, - { - "method": "GET", - "url": "https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"attributes\":{\"created\":1613774571,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613774571},\"deletedDate\":1613774573,\"key\":{\"key_ops\":[\"encrypt\",\"decrypt\",\"unwrapKey\",\"wrapKey\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/2b1f70f4eb004f442c093e6b41a94b7f\",\"kty\":\"oct-HSM\"},\"recoveryId\":\"https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test\",\"scheduledPurgeDate\":1621550573}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "527", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-build-version": "1.0.20210204-1-c9f88df4-develop", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "cd752638-7303-11eb-9799-0242ac120009", - "x-ms-server-latency": "34" - } - }, - { - "method": "DELETE", - "url": "https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "0", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "cd92c26a-7303-11eb-9799-0242ac120009", - "x-ms-server-latency": "110" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "96eafd8e16ef41103b66d5111d0bbd12" -} \ No newline at end of file + "hash": "96eafd8e16ef41103b66d5111d0bbd12" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/cryptographyclient_for_managed_hsm_all_decrypts_happen_remotely_with_aes_crypto_algorithms/recording_encrypts_and_decrypts_using_aesgcm.json b/sdk/keyvault/keyvault-keys/recordings/browsers/cryptographyclient_for_managed_hsm_all_decrypts_happen_remotely_with_aes_crypto_algorithms/recording_encrypts_and_decrypts_using_aesgcm.json index 9d6947cce98e..979f24bf8836 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/cryptographyclient_for_managed_hsm_all_decrypts_happen_remotely_with_aes_crypto_algorithms/recording_encrypts_and_decrypts_using_aesgcm.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/cryptographyclient_for_managed_hsm_all_decrypts_happen_remotely_with_aes_crypto_algorithms/recording_encrypts_and_decrypts_using_aesgcm.json @@ -1,261 +1,261 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "0", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.microsoftonline.com/azure_tenant_id\", resource=\"https://managedhsm.azure.net\"", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-request-id": "caff5a36-7303-11eb-9799-0242ac120009", - "x-ms-server-latency": "1" - } + "recordings": [ + { + "method": "POST", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "0", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.microsoftonline.com/azure_tenant_id\", resource=\"https://managedhsm.azure.net\"", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-request-id": "caff5a36-7303-11eb-9799-0242ac120009", + "x-ms-server-latency": "1" + } + }, + { + "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%2Fmanagedhsm.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1322", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 19 Feb 2021 22:42:48 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.11496.7 - EUS ProdSlices", + "x-ms-request-id": "f1670df7-71af-41ca-a384-c31e20283900" + } + }, + { + "method": "POST", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"AES\",\"key_size\":256,\"attributes\":{}}", + "status": 200, + "response": "{\"attributes\":{\"created\":1613774569,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613774569},\"key\":{\"key_ops\":[\"wrapKey\",\"unwrapKey\",\"decrypt\",\"encrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/faaa5008ebed08c11afabdf0b6bebabe\",\"kty\":\"oct-HSM\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "361", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "cb31d948-7303-11eb-9799-0242ac120009", + "x-ms-server-latency": "226" + } + }, + { + "method": "GET", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/faaa5008ebed08c11afabdf0b6bebabe", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "OK", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "2", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.microsoftonline.com/azure_tenant_id\", resource=\"https://managedhsm.azure.net\"", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-build-version": "1.0.20210204-1-c9f88df4-develop", + "x-ms-request-id": "cb6e88fc-7303-11eb-9799-0242ac120009", + "x-ms-server-latency": "0" + } + }, + { + "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%2Fmanagedhsm.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1322", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 19 Feb 2021 22:42:49 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.11496.7 - NCUS ProdSlices", + "x-ms-request-id": "f2d33824-78ad-48c5-942d-f137847f3600" + } + }, + { + "method": "GET", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/faaa5008ebed08c11afabdf0b6bebabe", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"attributes\":{\"created\":1613774569,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613774569},\"key\":{\"key_ops\":[\"wrapKey\",\"unwrapKey\",\"encrypt\",\"decrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/faaa5008ebed08c11afabdf0b6bebabe\",\"kty\":\"oct-HSM\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "361", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-build-version": "1.0.20210204-1-c9f88df4-develop", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "cb9af072-7303-11eb-9799-0242ac120009", + "x-ms-server-latency": "119" + } + }, + { + "method": "POST", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/faaa5008ebed08c11afabdf0b6bebabe/encrypt", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"alg\":\"A256GCM\",\"value\":\"ZW5jcnlwdHMgYW5kIGRlY3J5cHRzIHVzaW5nIEFFUy1HQ00\"}", + "status": 200, + "response": "{\"alg\":\"A256GCM\",\"iv\":\"Gy0ySkENZluDUPphAAAAAA\",\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/faaa5008ebed08c11afabdf0b6bebabe\",\"tag\":\"SKyfIORegG8jgvpn76YCbw\",\"value\":\"P6HErWTUgBUJRuzwVH67I7AdKqTVsyF-CLslW5SmTPidRDw\"}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "266", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "cbc5bc4e-7303-11eb-9799-0242ac120009", + "x-ms-server-latency": "0" + } + }, + { + "method": "POST", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/faaa5008ebed08c11afabdf0b6bebabe/decrypt", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"alg\":\"A256GCM\",\"value\":\"P6HErWTUgBUJRuzwVH67I7AdKqTVsyF-CLslW5SmTPidRDw\",\"iv\":\"Gy0ySkENZluDUPphAAAAAA\",\"tag\":\"SKyfIORegG8jgvpn76YCbw\"}", + "status": 200, + "response": "{\"alg\":\"A256GCM\",\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/faaa5008ebed08c11afabdf0b6bebabe\",\"value\":\"ZW5jcnlwdHMgYW5kIGRlY3J5cHRzIHVzaW5nIEFFUy1HQ00\"}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "205", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "cbdf5ad2-7303-11eb-9799-0242ac120009", + "x-ms-server-latency": "0" + } + }, + { + "method": "DELETE", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"attributes\":{\"created\":1613774569,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613774569},\"deletedDate\":1613774570,\"key\":{\"key_ops\":[\"unwrapKey\",\"wrapKey\",\"decrypt\",\"encrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/faaa5008ebed08c11afabdf0b6bebabe\",\"kty\":\"oct-HSM\"},\"recoveryId\":\"https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test\",\"scheduledPurgeDate\":1621550570}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "529", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "cbf85c30-7303-11eb-9799-0242ac120009", + "x-ms-server-latency": "87" + } + }, + { + "method": "GET", + "url": "https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"attributes\":{\"created\":1613774569,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613774569},\"deletedDate\":1613774570,\"key\":{\"key_ops\":[\"encrypt\",\"decrypt\",\"unwrapKey\",\"wrapKey\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/faaa5008ebed08c11afabdf0b6bebabe\",\"kty\":\"oct-HSM\"},\"recoveryId\":\"https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test\",\"scheduledPurgeDate\":1621550570}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "529", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-build-version": "1.0.20210204-1-c9f88df4-develop", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "cc1f5b3c-7303-11eb-9799-0242ac120009", + "x-ms-server-latency": "54" + } + }, + { + "method": "DELETE", + "url": "https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "0", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "cc41208c-7303-11eb-9799-0242ac120009", + "x-ms-server-latency": "117" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "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%2Fmanagedhsm.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1322", - "content-type": "application/json; charset=utf-8", - "date": "Fri, 19 Feb 2021 22:42:48 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.11496.7 - EUS ProdSlices", - "x-ms-request-id": "f1670df7-71af-41ca-a384-c31e20283900" - } - }, - { - "method": "POST", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"AES\",\"key_size\":256,\"attributes\":{}}", - "status": 200, - "response": "{\"attributes\":{\"created\":1613774569,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613774569},\"key\":{\"key_ops\":[\"wrapKey\",\"unwrapKey\",\"decrypt\",\"encrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/faaa5008ebed08c11afabdf0b6bebabe\",\"kty\":\"oct-HSM\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "361", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "cb31d948-7303-11eb-9799-0242ac120009", - "x-ms-server-latency": "226" - } - }, - { - "method": "GET", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/faaa5008ebed08c11afabdf0b6bebabe", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "OK", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "2", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.microsoftonline.com/azure_tenant_id\", resource=\"https://managedhsm.azure.net\"", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-build-version": "1.0.20210204-1-c9f88df4-develop", - "x-ms-request-id": "cb6e88fc-7303-11eb-9799-0242ac120009", - "x-ms-server-latency": "0" - } - }, - { - "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%2Fmanagedhsm.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1322", - "content-type": "application/json; charset=utf-8", - "date": "Fri, 19 Feb 2021 22:42:49 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.11496.7 - NCUS ProdSlices", - "x-ms-request-id": "f2d33824-78ad-48c5-942d-f137847f3600" - } - }, - { - "method": "GET", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/faaa5008ebed08c11afabdf0b6bebabe", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"attributes\":{\"created\":1613774569,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613774569},\"key\":{\"key_ops\":[\"wrapKey\",\"unwrapKey\",\"encrypt\",\"decrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/faaa5008ebed08c11afabdf0b6bebabe\",\"kty\":\"oct-HSM\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "361", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-build-version": "1.0.20210204-1-c9f88df4-develop", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "cb9af072-7303-11eb-9799-0242ac120009", - "x-ms-server-latency": "119" - } - }, - { - "method": "POST", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/faaa5008ebed08c11afabdf0b6bebabe/encrypt", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"alg\":\"A256GCM\",\"value\":\"ZW5jcnlwdHMgYW5kIGRlY3J5cHRzIHVzaW5nIEFFUy1HQ00\"}", - "status": 200, - "response": "{\"alg\":\"A256GCM\",\"iv\":\"Gy0ySkENZluDUPphAAAAAA\",\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/faaa5008ebed08c11afabdf0b6bebabe\",\"tag\":\"SKyfIORegG8jgvpn76YCbw\",\"value\":\"P6HErWTUgBUJRuzwVH67I7AdKqTVsyF-CLslW5SmTPidRDw\"}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "266", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "cbc5bc4e-7303-11eb-9799-0242ac120009", - "x-ms-server-latency": "0" - } - }, - { - "method": "POST", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/faaa5008ebed08c11afabdf0b6bebabe/decrypt", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"alg\":\"A256GCM\",\"value\":\"P6HErWTUgBUJRuzwVH67I7AdKqTVsyF-CLslW5SmTPidRDw\",\"iv\":\"Gy0ySkENZluDUPphAAAAAA\",\"tag\":\"SKyfIORegG8jgvpn76YCbw\"}", - "status": 200, - "response": "{\"alg\":\"A256GCM\",\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/faaa5008ebed08c11afabdf0b6bebabe\",\"value\":\"ZW5jcnlwdHMgYW5kIGRlY3J5cHRzIHVzaW5nIEFFUy1HQ00\"}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "205", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "cbdf5ad2-7303-11eb-9799-0242ac120009", - "x-ms-server-latency": "0" - } - }, - { - "method": "DELETE", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"attributes\":{\"created\":1613774569,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613774569},\"deletedDate\":1613774570,\"key\":{\"key_ops\":[\"unwrapKey\",\"wrapKey\",\"decrypt\",\"encrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/faaa5008ebed08c11afabdf0b6bebabe\",\"kty\":\"oct-HSM\"},\"recoveryId\":\"https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test\",\"scheduledPurgeDate\":1621550570}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "529", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "cbf85c30-7303-11eb-9799-0242ac120009", - "x-ms-server-latency": "87" - } - }, - { - "method": "GET", - "url": "https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"attributes\":{\"created\":1613774569,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613774569},\"deletedDate\":1613774570,\"key\":{\"key_ops\":[\"encrypt\",\"decrypt\",\"unwrapKey\",\"wrapKey\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/faaa5008ebed08c11afabdf0b6bebabe\",\"kty\":\"oct-HSM\"},\"recoveryId\":\"https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test\",\"scheduledPurgeDate\":1621550570}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "529", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-build-version": "1.0.20210204-1-c9f88df4-develop", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "cc1f5b3c-7303-11eb-9799-0242ac120009", - "x-ms-server-latency": "54" - } - }, - { - "method": "DELETE", - "url": "https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "0", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "cc41208c-7303-11eb-9799-0242ac120009", - "x-ms-server-latency": "117" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "cd354e57cc232aa1217b1b2b448d3409" -} \ No newline at end of file + "hash": "cd354e57cc232aa1217b1b2b448d3409" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/cryptographyclient_for_managed_hsm_all_decrypts_happen_remotely_with_rsa_crypto_algorithms/recording_encrypts_and_decrypts_using_rsa.json b/sdk/keyvault/keyvault-keys/recordings/browsers/cryptographyclient_for_managed_hsm_all_decrypts_happen_remotely_with_rsa_crypto_algorithms/recording_encrypts_and_decrypts_using_rsa.json index 3a48b73d2b1f..f2fb5e9db017 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/cryptographyclient_for_managed_hsm_all_decrypts_happen_remotely_with_rsa_crypto_algorithms/recording_encrypts_and_decrypts_using_rsa.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/cryptographyclient_for_managed_hsm_all_decrypts_happen_remotely_with_rsa_crypto_algorithms/recording_encrypts_and_decrypts_using_rsa.json @@ -1,261 +1,261 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "0", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.microsoftonline.com/azure_tenant_id\", resource=\"https://managedhsm.azure.net\"", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-request-id": "4e15c578-72f9-11eb-b0c0-0242ac12000a", - "x-ms-server-latency": "0" - } + "recordings": [ + { + "method": "POST", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "0", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.microsoftonline.com/azure_tenant_id\", resource=\"https://managedhsm.azure.net\"", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-request-id": "4e15c578-72f9-11eb-b0c0-0242ac12000a", + "x-ms-server-latency": "0" + } + }, + { + "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%2Fmanagedhsm.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1322", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 19 Feb 2021 21:27:44 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.11496.7 - NCUS ProdSlices", + "x-ms-request-id": "038b9084-2bb2-4064-973f-0d5f1b6a2f00" + } + }, + { + "method": "POST", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\"}", + "status": 200, + "response": "{\"attributes\":{\"created\":1613770065,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613770065},\"key\":{\"e\":\"AQAB\",\"key_ops\":[\"wrapKey\",\"decrypt\",\"encrypt\",\"unwrapKey\",\"sign\",\"verify\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/43396df1ad1f02b9286d96c8055c1c12\",\"kty\":\"RSA-HSM\",\"n\":\"hyhL19uGn93LzcTE9Xj9Qme6TXLfUz2Q1mtBukYWSnaG8PD-__pMShcVmsr1xO4JnEx7y25LB4AnDfPd_CJ76siy5CF0TZ6bMZvQ0lbat5Qh2sCii0JfCrS4E2diojvrdJNMFdKVP4YpqRrFFQxSs2IsdxcVLprWm4HZDTkzjoBpAAlmXNXkFPJJyS7GZhC7w5WbC6IajK3aJWYyRI1icpFLg1HoeMO4hbZGdIV6y4UWKDagGD7rGJ4OjEeY1NlJxZg-bolqVEcFIoHTVc16YuMXmcl-EghyXJ-mTEFj-b2a52w3XTKgItMWex4NleEBe3aLL7OE-OhqaFWIjIBiCw\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "736", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "4e47931e-72f9-11eb-b0c0-0242ac12000a", + "x-ms-server-latency": "218" + } + }, + { + "method": "GET", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/43396df1ad1f02b9286d96c8055c1c12", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "OK", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "2", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.microsoftonline.com/azure_tenant_id\", resource=\"https://managedhsm.azure.net\"", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-build-version": "1.0.20210204-1-c9f88df4-develop", + "x-ms-request-id": "4e813b82-72f9-11eb-b0c0-0242ac12000a", + "x-ms-server-latency": "0" + } + }, + { + "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%2Fmanagedhsm.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1322", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 19 Feb 2021 21:27:44 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.11496.7 - EUS ProdSlices", + "x-ms-request-id": "2e501adc-3360-4d7e-8fcd-9ee68d292d00" + } + }, + { + "method": "GET", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/43396df1ad1f02b9286d96c8055c1c12", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"attributes\":{\"created\":1613770065,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613770065},\"key\":{\"e\":\"AQAB\",\"key_ops\":[\"wrapKey\",\"verify\",\"sign\",\"unwrapKey\",\"encrypt\",\"decrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/43396df1ad1f02b9286d96c8055c1c12\",\"kty\":\"RSA-HSM\",\"n\":\"hyhL19uGn93LzcTE9Xj9Qme6TXLfUz2Q1mtBukYWSnaG8PD-__pMShcVmsr1xO4JnEx7y25LB4AnDfPd_CJ76siy5CF0TZ6bMZvQ0lbat5Qh2sCii0JfCrS4E2diojvrdJNMFdKVP4YpqRrFFQxSs2IsdxcVLprWm4HZDTkzjoBpAAlmXNXkFPJJyS7GZhC7w5WbC6IajK3aJWYyRI1icpFLg1HoeMO4hbZGdIV6y4UWKDagGD7rGJ4OjEeY1NlJxZg-bolqVEcFIoHTVc16YuMXmcl-EghyXJ-mTEFj-b2a52w3XTKgItMWex4NleEBe3aLL7OE-OhqaFWIjIBiCw\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "736", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-build-version": "1.0.20210204-1-c9f88df4-develop", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "4eb31c9c-72f9-11eb-b0c0-0242ac12000a", + "x-ms-server-latency": "128" + } + }, + { + "method": "POST", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/43396df1ad1f02b9286d96c8055c1c12/encrypt", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"alg\":\"RSA1_5\",\"value\":\"ZW5jcnlwdHMgYW5kIGRlY3J5cHRzIHVzaW5nIFJTQQ\"}", + "status": 200, + "response": "{\"alg\":\"RSA1_5\",\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/43396df1ad1f02b9286d96c8055c1c12\",\"value\":\"LstgSlbHU5hAf4QU4k4ICzqRFuMI-H0c-p4oVzxrB3rwEurUN1OTEQAjzeg3C7uF68QGNBodn27Ibe4sfd_68lidOhUH7pOBa8ztt3XPOefbzc2T5im4a_gosHlB9GF-nhgQ0ayfXYtzaq8M3OS-FitoYVZ1aYKCV7qBJF20_u7s4_PBXqiUSO3C7VC416m6fLjA7q5_ftDQt_o7wFmNZwCEadzcFRFeq4XKVWxuYWClvcYFRQVO_eAAr30UqBDgph88G2Kqw_z33ZMhzQLuKFRJjo8I3ZnxhA5Rm95JNeJR-ZLwc7Fec6RpmpDL9ora59IOSh50VWCoNsLKfh9vYA\"}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "498", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "4edf20f8-72f9-11eb-b0c0-0242ac12000a", + "x-ms-server-latency": "0" + } + }, + { + "method": "POST", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/43396df1ad1f02b9286d96c8055c1c12/decrypt", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"alg\":\"RSA1_5\",\"value\":\"LstgSlbHU5hAf4QU4k4ICzqRFuMI-H0c-p4oVzxrB3rwEurUN1OTEQAjzeg3C7uF68QGNBodn27Ibe4sfd_68lidOhUH7pOBa8ztt3XPOefbzc2T5im4a_gosHlB9GF-nhgQ0ayfXYtzaq8M3OS-FitoYVZ1aYKCV7qBJF20_u7s4_PBXqiUSO3C7VC416m6fLjA7q5_ftDQt_o7wFmNZwCEadzcFRFeq4XKVWxuYWClvcYFRQVO_eAAr30UqBDgph88G2Kqw_z33ZMhzQLuKFRJjo8I3ZnxhA5Rm95JNeJR-ZLwc7Fec6RpmpDL9ora59IOSh50VWCoNsLKfh9vYA\"}", + "status": 200, + "response": "{\"alg\":\"RSA1_5\",\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/43396df1ad1f02b9286d96c8055c1c12\",\"value\":\"ZW5jcnlwdHMgYW5kIGRlY3J5cHRzIHVzaW5nIFJTQQ\"}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "198", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "4ef8795e-72f9-11eb-b0c0-0242ac12000a", + "x-ms-server-latency": "2" + } + }, + { + "method": "DELETE", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"attributes\":{\"created\":1613770065,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613770065},\"deletedDate\":1613770066,\"key\":{\"e\":\"AQAB\",\"key_ops\":[\"wrapKey\",\"encrypt\",\"decrypt\",\"unwrapKey\",\"sign\",\"verify\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/43396df1ad1f02b9286d96c8055c1c12\",\"kty\":\"RSA-HSM\",\"n\":\"hyhL19uGn93LzcTE9Xj9Qme6TXLfUz2Q1mtBukYWSnaG8PD-__pMShcVmsr1xO4JnEx7y25LB4AnDfPd_CJ76siy5CF0TZ6bMZvQ0lbat5Qh2sCii0JfCrS4E2diojvrdJNMFdKVP4YpqRrFFQxSs2IsdxcVLprWm4HZDTkzjoBpAAlmXNXkFPJJyS7GZhC7w5WbC6IajK3aJWYyRI1icpFLg1HoeMO4hbZGdIV6y4UWKDagGD7rGJ4OjEeY1NlJxZg-bolqVEcFIoHTVc16YuMXmcl-EghyXJ-mTEFj-b2a52w3XTKgItMWex4NleEBe3aLL7OE-OhqaFWIjIBiCw\"},\"recoveryId\":\"https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test\",\"scheduledPurgeDate\":1621546066}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "903", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "4f11e0ba-72f9-11eb-b0c0-0242ac12000a", + "x-ms-server-latency": "83" + } + }, + { + "method": "GET", + "url": "https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"attributes\":{\"created\":1613770065,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613770065},\"deletedDate\":1613770066,\"key\":{\"e\":\"AQAB\",\"key_ops\":[\"verify\",\"sign\",\"unwrapKey\",\"encrypt\",\"decrypt\",\"wrapKey\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/43396df1ad1f02b9286d96c8055c1c12\",\"kty\":\"RSA-HSM\",\"n\":\"hyhL19uGn93LzcTE9Xj9Qme6TXLfUz2Q1mtBukYWSnaG8PD-__pMShcVmsr1xO4JnEx7y25LB4AnDfPd_CJ76siy5CF0TZ6bMZvQ0lbat5Qh2sCii0JfCrS4E2diojvrdJNMFdKVP4YpqRrFFQxSs2IsdxcVLprWm4HZDTkzjoBpAAlmXNXkFPJJyS7GZhC7w5WbC6IajK3aJWYyRI1icpFLg1HoeMO4hbZGdIV6y4UWKDagGD7rGJ4OjEeY1NlJxZg-bolqVEcFIoHTVc16YuMXmcl-EghyXJ-mTEFj-b2a52w3XTKgItMWex4NleEBe3aLL7OE-OhqaFWIjIBiCw\"},\"recoveryId\":\"https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test\",\"scheduledPurgeDate\":1621546066}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "903", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-build-version": "1.0.20210204-1-c9f88df4-develop", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "4f379490-72f9-11eb-b0c0-0242ac12000a", + "x-ms-server-latency": "34" + } + }, + { + "method": "DELETE", + "url": "https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "0", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "4f552bd6-72f9-11eb-b0c0-0242ac12000a", + "x-ms-server-latency": "120" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "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%2Fmanagedhsm.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1322", - "content-type": "application/json; charset=utf-8", - "date": "Fri, 19 Feb 2021 21:27:44 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.11496.7 - NCUS ProdSlices", - "x-ms-request-id": "038b9084-2bb2-4064-973f-0d5f1b6a2f00" - } - }, - { - "method": "POST", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\"}", - "status": 200, - "response": "{\"attributes\":{\"created\":1613770065,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613770065},\"key\":{\"e\":\"AQAB\",\"key_ops\":[\"wrapKey\",\"decrypt\",\"encrypt\",\"unwrapKey\",\"sign\",\"verify\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/43396df1ad1f02b9286d96c8055c1c12\",\"kty\":\"RSA-HSM\",\"n\":\"hyhL19uGn93LzcTE9Xj9Qme6TXLfUz2Q1mtBukYWSnaG8PD-__pMShcVmsr1xO4JnEx7y25LB4AnDfPd_CJ76siy5CF0TZ6bMZvQ0lbat5Qh2sCii0JfCrS4E2diojvrdJNMFdKVP4YpqRrFFQxSs2IsdxcVLprWm4HZDTkzjoBpAAlmXNXkFPJJyS7GZhC7w5WbC6IajK3aJWYyRI1icpFLg1HoeMO4hbZGdIV6y4UWKDagGD7rGJ4OjEeY1NlJxZg-bolqVEcFIoHTVc16YuMXmcl-EghyXJ-mTEFj-b2a52w3XTKgItMWex4NleEBe3aLL7OE-OhqaFWIjIBiCw\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "736", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "4e47931e-72f9-11eb-b0c0-0242ac12000a", - "x-ms-server-latency": "218" - } - }, - { - "method": "GET", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/43396df1ad1f02b9286d96c8055c1c12", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "OK", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "2", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.microsoftonline.com/azure_tenant_id\", resource=\"https://managedhsm.azure.net\"", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-build-version": "1.0.20210204-1-c9f88df4-develop", - "x-ms-request-id": "4e813b82-72f9-11eb-b0c0-0242ac12000a", - "x-ms-server-latency": "0" - } - }, - { - "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%2Fmanagedhsm.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1322", - "content-type": "application/json; charset=utf-8", - "date": "Fri, 19 Feb 2021 21:27:44 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.11496.7 - EUS ProdSlices", - "x-ms-request-id": "2e501adc-3360-4d7e-8fcd-9ee68d292d00" - } - }, - { - "method": "GET", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/43396df1ad1f02b9286d96c8055c1c12", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"attributes\":{\"created\":1613770065,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613770065},\"key\":{\"e\":\"AQAB\",\"key_ops\":[\"wrapKey\",\"verify\",\"sign\",\"unwrapKey\",\"encrypt\",\"decrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/43396df1ad1f02b9286d96c8055c1c12\",\"kty\":\"RSA-HSM\",\"n\":\"hyhL19uGn93LzcTE9Xj9Qme6TXLfUz2Q1mtBukYWSnaG8PD-__pMShcVmsr1xO4JnEx7y25LB4AnDfPd_CJ76siy5CF0TZ6bMZvQ0lbat5Qh2sCii0JfCrS4E2diojvrdJNMFdKVP4YpqRrFFQxSs2IsdxcVLprWm4HZDTkzjoBpAAlmXNXkFPJJyS7GZhC7w5WbC6IajK3aJWYyRI1icpFLg1HoeMO4hbZGdIV6y4UWKDagGD7rGJ4OjEeY1NlJxZg-bolqVEcFIoHTVc16YuMXmcl-EghyXJ-mTEFj-b2a52w3XTKgItMWex4NleEBe3aLL7OE-OhqaFWIjIBiCw\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "736", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-build-version": "1.0.20210204-1-c9f88df4-develop", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "4eb31c9c-72f9-11eb-b0c0-0242ac12000a", - "x-ms-server-latency": "128" - } - }, - { - "method": "POST", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/43396df1ad1f02b9286d96c8055c1c12/encrypt", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"alg\":\"RSA1_5\",\"value\":\"ZW5jcnlwdHMgYW5kIGRlY3J5cHRzIHVzaW5nIFJTQQ\"}", - "status": 200, - "response": "{\"alg\":\"RSA1_5\",\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/43396df1ad1f02b9286d96c8055c1c12\",\"value\":\"LstgSlbHU5hAf4QU4k4ICzqRFuMI-H0c-p4oVzxrB3rwEurUN1OTEQAjzeg3C7uF68QGNBodn27Ibe4sfd_68lidOhUH7pOBa8ztt3XPOefbzc2T5im4a_gosHlB9GF-nhgQ0ayfXYtzaq8M3OS-FitoYVZ1aYKCV7qBJF20_u7s4_PBXqiUSO3C7VC416m6fLjA7q5_ftDQt_o7wFmNZwCEadzcFRFeq4XKVWxuYWClvcYFRQVO_eAAr30UqBDgph88G2Kqw_z33ZMhzQLuKFRJjo8I3ZnxhA5Rm95JNeJR-ZLwc7Fec6RpmpDL9ora59IOSh50VWCoNsLKfh9vYA\"}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "498", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "4edf20f8-72f9-11eb-b0c0-0242ac12000a", - "x-ms-server-latency": "0" - } - }, - { - "method": "POST", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/43396df1ad1f02b9286d96c8055c1c12/decrypt", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"alg\":\"RSA1_5\",\"value\":\"LstgSlbHU5hAf4QU4k4ICzqRFuMI-H0c-p4oVzxrB3rwEurUN1OTEQAjzeg3C7uF68QGNBodn27Ibe4sfd_68lidOhUH7pOBa8ztt3XPOefbzc2T5im4a_gosHlB9GF-nhgQ0ayfXYtzaq8M3OS-FitoYVZ1aYKCV7qBJF20_u7s4_PBXqiUSO3C7VC416m6fLjA7q5_ftDQt_o7wFmNZwCEadzcFRFeq4XKVWxuYWClvcYFRQVO_eAAr30UqBDgph88G2Kqw_z33ZMhzQLuKFRJjo8I3ZnxhA5Rm95JNeJR-ZLwc7Fec6RpmpDL9ora59IOSh50VWCoNsLKfh9vYA\"}", - "status": 200, - "response": "{\"alg\":\"RSA1_5\",\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/43396df1ad1f02b9286d96c8055c1c12\",\"value\":\"ZW5jcnlwdHMgYW5kIGRlY3J5cHRzIHVzaW5nIFJTQQ\"}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "198", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "4ef8795e-72f9-11eb-b0c0-0242ac12000a", - "x-ms-server-latency": "2" - } - }, - { - "method": "DELETE", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"attributes\":{\"created\":1613770065,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613770065},\"deletedDate\":1613770066,\"key\":{\"e\":\"AQAB\",\"key_ops\":[\"wrapKey\",\"encrypt\",\"decrypt\",\"unwrapKey\",\"sign\",\"verify\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/43396df1ad1f02b9286d96c8055c1c12\",\"kty\":\"RSA-HSM\",\"n\":\"hyhL19uGn93LzcTE9Xj9Qme6TXLfUz2Q1mtBukYWSnaG8PD-__pMShcVmsr1xO4JnEx7y25LB4AnDfPd_CJ76siy5CF0TZ6bMZvQ0lbat5Qh2sCii0JfCrS4E2diojvrdJNMFdKVP4YpqRrFFQxSs2IsdxcVLprWm4HZDTkzjoBpAAlmXNXkFPJJyS7GZhC7w5WbC6IajK3aJWYyRI1icpFLg1HoeMO4hbZGdIV6y4UWKDagGD7rGJ4OjEeY1NlJxZg-bolqVEcFIoHTVc16YuMXmcl-EghyXJ-mTEFj-b2a52w3XTKgItMWex4NleEBe3aLL7OE-OhqaFWIjIBiCw\"},\"recoveryId\":\"https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test\",\"scheduledPurgeDate\":1621546066}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "903", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "4f11e0ba-72f9-11eb-b0c0-0242ac12000a", - "x-ms-server-latency": "83" - } - }, - { - "method": "GET", - "url": "https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"attributes\":{\"created\":1613770065,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613770065},\"deletedDate\":1613770066,\"key\":{\"e\":\"AQAB\",\"key_ops\":[\"verify\",\"sign\",\"unwrapKey\",\"encrypt\",\"decrypt\",\"wrapKey\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/43396df1ad1f02b9286d96c8055c1c12\",\"kty\":\"RSA-HSM\",\"n\":\"hyhL19uGn93LzcTE9Xj9Qme6TXLfUz2Q1mtBukYWSnaG8PD-__pMShcVmsr1xO4JnEx7y25LB4AnDfPd_CJ76siy5CF0TZ6bMZvQ0lbat5Qh2sCii0JfCrS4E2diojvrdJNMFdKVP4YpqRrFFQxSs2IsdxcVLprWm4HZDTkzjoBpAAlmXNXkFPJJyS7GZhC7w5WbC6IajK3aJWYyRI1icpFLg1HoeMO4hbZGdIV6y4UWKDagGD7rGJ4OjEeY1NlJxZg-bolqVEcFIoHTVc16YuMXmcl-EghyXJ-mTEFj-b2a52w3XTKgItMWex4NleEBe3aLL7OE-OhqaFWIjIBiCw\"},\"recoveryId\":\"https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test\",\"scheduledPurgeDate\":1621546066}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "903", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-build-version": "1.0.20210204-1-c9f88df4-develop", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "4f379490-72f9-11eb-b0c0-0242ac12000a", - "x-ms-server-latency": "34" - } - }, - { - "method": "DELETE", - "url": "https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "0", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "4f552bd6-72f9-11eb-b0c0-0242ac12000a", - "x-ms-server-latency": "120" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "13d4b1fe0ed49a3a02e481ea780abdc6" -} \ No newline at end of file + "hash": "13d4b1fe0ed49a3a02e481ea780abdc6" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/cryptographyclient_for_managed_hsm_skipped_if_mhsm_is_not_deployed_with_aes_crypto_algorithms/recording_encrypts_and_decrypts_using_aescbc.json b/sdk/keyvault/keyvault-keys/recordings/browsers/cryptographyclient_for_managed_hsm_skipped_if_mhsm_is_not_deployed_with_aes_crypto_algorithms/recording_encrypts_and_decrypts_using_aescbc.json index a1ec6a5bf3e3..f860fca32c1b 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/cryptographyclient_for_managed_hsm_skipped_if_mhsm_is_not_deployed_with_aes_crypto_algorithms/recording_encrypts_and_decrypts_using_aescbc.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/cryptographyclient_for_managed_hsm_skipped_if_mhsm_is_not_deployed_with_aes_crypto_algorithms/recording_encrypts_and_decrypts_using_aescbc.json @@ -1,261 +1,261 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "0", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.microsoftonline.com/azure_tenant_id\", resource=\"https://managedhsm.azure.net\"", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-request-id": "17149da4-7314-11eb-89bd-0242ac120006", - "x-ms-server-latency": "1" - } + "recordings": [ + { + "method": "POST", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "0", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.microsoftonline.com/azure_tenant_id\", resource=\"https://managedhsm.azure.net\"", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-request-id": "17149da4-7314-11eb-89bd-0242ac120006", + "x-ms-server-latency": "1" + } + }, + { + "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%2Fmanagedhsm.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1322", + "content-type": "application/json; charset=utf-8", + "date": "Sat, 20 Feb 2021 00:39:28 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.11496.7 - SCUS ProdSlices", + "x-ms-request-id": "107458da-d83a-485c-b7a6-d39642c01000" + } + }, + { + "method": "POST", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"AES\",\"key_size\":256,\"attributes\":{}}", + "status": 200, + "response": "{\"attributes\":{\"created\":1613781569,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613781569},\"key\":{\"key_ops\":[\"wrapKey\",\"unwrapKey\",\"decrypt\",\"encrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/8b8bfaaf77d20d3d855070e0ef4baca2\",\"kty\":\"oct-HSM\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "361", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "173f699e-7314-11eb-89bd-0242ac120006", + "x-ms-server-latency": "175" + } + }, + { + "method": "GET", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/8b8bfaaf77d20d3d855070e0ef4baca2", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "OK", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "2", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.microsoftonline.com/azure_tenant_id\", resource=\"https://managedhsm.azure.net\"", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-build-version": "1.0.20210204-1-c9f88df4-develop", + "x-ms-request-id": "177396b0-7314-11eb-89bd-0242ac120006", + "x-ms-server-latency": "0" + } + }, + { + "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%2Fmanagedhsm.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1322", + "content-type": "application/json; charset=utf-8", + "date": "Sat, 20 Feb 2021 00:39:29 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.11513.13 - WUS2 ProdSlices", + "x-ms-request-id": "6b1260e4-4839-4b05-8fc6-3ff760210900" + } + }, + { + "method": "GET", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/8b8bfaaf77d20d3d855070e0ef4baca2", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"attributes\":{\"created\":1613781569,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613781569},\"key\":{\"key_ops\":[\"wrapKey\",\"unwrapKey\",\"encrypt\",\"decrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/8b8bfaaf77d20d3d855070e0ef4baca2\",\"kty\":\"oct-HSM\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "361", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-build-version": "1.0.20210204-1-c9f88df4-develop", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "1796c4aa-7314-11eb-89bd-0242ac120006", + "x-ms-server-latency": "113" + } + }, + { + "method": "POST", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/8b8bfaaf77d20d3d855070e0ef4baca2/encrypt", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"alg\":\"A256CBCPAD\",\"value\":\"ZW5jcnlwdHMgYW5kIGRlY3J5cHRzIHVzaW5nIEFFUy1DQkM\",\"iv\":\"ZW5jcnlwdHMgYW5kIGRlY3J5cHRzIHVzaW5nIEFFUy1DQkM\"}", + "status": 200, + "response": "{\"alg\":\"A256CBCPAD\",\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/8b8bfaaf77d20d3d855070e0ef4baca2\",\"value\":\"77mhtBNfzpSkpdDyF-ubxDWQBLg3-afmZtVwamFq0Re7ueGnX0ftqcpAPhXRvejJ\"}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "225", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "17c01c7e-7314-11eb-89bd-0242ac120006", + "x-ms-server-latency": "1" + } + }, + { + "method": "POST", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/8b8bfaaf77d20d3d855070e0ef4baca2/decrypt", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"alg\":\"A256CBCPAD\",\"value\":\"77mhtBNfzpSkpdDyF-ubxDWQBLg3-afmZtVwamFq0Re7ueGnX0ftqcpAPhXRvejJ\",\"iv\":\"ZW5jcnlwdHMgYW5kIGRlY3J5cHRzIHVzaW5nIEFFUy1DQkM\"}", + "status": 200, + "response": "{\"alg\":\"A256CBCPAD\",\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/8b8bfaaf77d20d3d855070e0ef4baca2\",\"value\":\"ZW5jcnlwdHMgYW5kIGRlY3J5cHRzIHVzaW5nIEFFUy1DQkM\"}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "208", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "17d87e40-7314-11eb-89bd-0242ac120006", + "x-ms-server-latency": "1" + } + }, + { + "method": "DELETE", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"attributes\":{\"created\":1613781569,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613781569},\"deletedDate\":1613781570,\"key\":{\"key_ops\":[\"unwrapKey\",\"wrapKey\",\"decrypt\",\"encrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/8b8bfaaf77d20d3d855070e0ef4baca2\",\"kty\":\"oct-HSM\"},\"recoveryId\":\"https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test\",\"scheduledPurgeDate\":1621557570}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "529", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "17f1ced6-7314-11eb-89bd-0242ac120006", + "x-ms-server-latency": "76" + } + }, + { + "method": "GET", + "url": "https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"attributes\":{\"created\":1613781569,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613781569},\"deletedDate\":1613781570,\"key\":{\"key_ops\":[\"encrypt\",\"decrypt\",\"unwrapKey\",\"wrapKey\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/8b8bfaaf77d20d3d855070e0ef4baca2\",\"kty\":\"oct-HSM\"},\"recoveryId\":\"https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test\",\"scheduledPurgeDate\":1621557570}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "529", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-build-version": "1.0.20210204-1-c9f88df4-develop", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "1815fb6c-7314-11eb-89bd-0242ac120006", + "x-ms-server-latency": "31" + } + }, + { + "method": "DELETE", + "url": "https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "0", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "18341714-7314-11eb-89bd-0242ac120006", + "x-ms-server-latency": "112" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "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%2Fmanagedhsm.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1322", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 20 Feb 2021 00:39:28 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.11496.7 - SCUS ProdSlices", - "x-ms-request-id": "107458da-d83a-485c-b7a6-d39642c01000" - } - }, - { - "method": "POST", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"AES\",\"key_size\":256,\"attributes\":{}}", - "status": 200, - "response": "{\"attributes\":{\"created\":1613781569,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613781569},\"key\":{\"key_ops\":[\"wrapKey\",\"unwrapKey\",\"decrypt\",\"encrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/8b8bfaaf77d20d3d855070e0ef4baca2\",\"kty\":\"oct-HSM\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "361", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "173f699e-7314-11eb-89bd-0242ac120006", - "x-ms-server-latency": "175" - } - }, - { - "method": "GET", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/8b8bfaaf77d20d3d855070e0ef4baca2", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "OK", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "2", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.microsoftonline.com/azure_tenant_id\", resource=\"https://managedhsm.azure.net\"", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-build-version": "1.0.20210204-1-c9f88df4-develop", - "x-ms-request-id": "177396b0-7314-11eb-89bd-0242ac120006", - "x-ms-server-latency": "0" - } - }, - { - "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%2Fmanagedhsm.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1322", - "content-type": "application/json; charset=utf-8", - "date": "Sat, 20 Feb 2021 00:39:29 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.11513.13 - WUS2 ProdSlices", - "x-ms-request-id": "6b1260e4-4839-4b05-8fc6-3ff760210900" - } - }, - { - "method": "GET", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/8b8bfaaf77d20d3d855070e0ef4baca2", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"attributes\":{\"created\":1613781569,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613781569},\"key\":{\"key_ops\":[\"wrapKey\",\"unwrapKey\",\"encrypt\",\"decrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/8b8bfaaf77d20d3d855070e0ef4baca2\",\"kty\":\"oct-HSM\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "361", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-build-version": "1.0.20210204-1-c9f88df4-develop", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "1796c4aa-7314-11eb-89bd-0242ac120006", - "x-ms-server-latency": "113" - } - }, - { - "method": "POST", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/8b8bfaaf77d20d3d855070e0ef4baca2/encrypt", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"alg\":\"A256CBCPAD\",\"value\":\"ZW5jcnlwdHMgYW5kIGRlY3J5cHRzIHVzaW5nIEFFUy1DQkM\",\"iv\":\"ZW5jcnlwdHMgYW5kIGRlY3J5cHRzIHVzaW5nIEFFUy1DQkM\"}", - "status": 200, - "response": "{\"alg\":\"A256CBCPAD\",\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/8b8bfaaf77d20d3d855070e0ef4baca2\",\"value\":\"77mhtBNfzpSkpdDyF-ubxDWQBLg3-afmZtVwamFq0Re7ueGnX0ftqcpAPhXRvejJ\"}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "225", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "17c01c7e-7314-11eb-89bd-0242ac120006", - "x-ms-server-latency": "1" - } - }, - { - "method": "POST", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/8b8bfaaf77d20d3d855070e0ef4baca2/decrypt", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"alg\":\"A256CBCPAD\",\"value\":\"77mhtBNfzpSkpdDyF-ubxDWQBLg3-afmZtVwamFq0Re7ueGnX0ftqcpAPhXRvejJ\",\"iv\":\"ZW5jcnlwdHMgYW5kIGRlY3J5cHRzIHVzaW5nIEFFUy1DQkM\"}", - "status": 200, - "response": "{\"alg\":\"A256CBCPAD\",\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/8b8bfaaf77d20d3d855070e0ef4baca2\",\"value\":\"ZW5jcnlwdHMgYW5kIGRlY3J5cHRzIHVzaW5nIEFFUy1DQkM\"}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "208", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "17d87e40-7314-11eb-89bd-0242ac120006", - "x-ms-server-latency": "1" - } - }, - { - "method": "DELETE", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"attributes\":{\"created\":1613781569,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613781569},\"deletedDate\":1613781570,\"key\":{\"key_ops\":[\"unwrapKey\",\"wrapKey\",\"decrypt\",\"encrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/8b8bfaaf77d20d3d855070e0ef4baca2\",\"kty\":\"oct-HSM\"},\"recoveryId\":\"https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test\",\"scheduledPurgeDate\":1621557570}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "529", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "17f1ced6-7314-11eb-89bd-0242ac120006", - "x-ms-server-latency": "76" - } - }, - { - "method": "GET", - "url": "https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"attributes\":{\"created\":1613781569,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1613781569},\"deletedDate\":1613781570,\"key\":{\"key_ops\":[\"encrypt\",\"decrypt\",\"unwrapKey\",\"wrapKey\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/8b8bfaaf77d20d3d855070e0ef4baca2\",\"kty\":\"oct-HSM\"},\"recoveryId\":\"https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test\",\"scheduledPurgeDate\":1621557570}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "529", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-build-version": "1.0.20210204-1-c9f88df4-develop", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "1815fb6c-7314-11eb-89bd-0242ac120006", - "x-ms-server-latency": "31" - } - }, - { - "method": "DELETE", - "url": "https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "0", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "18341714-7314-11eb-89bd-0242ac120006", - "x-ms-server-latency": "112" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "96eafd8e16ef41103b66d5111d0bbd12" -} \ No newline at end of file + "hash": "96eafd8e16ef41103b66d5111d0bbd12" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/cryptographyclient_for_managed_hsm_skipped_if_mhsm_is_not_deployed_with_aes_crypto_algorithms/recording_encrypts_and_decrypts_using_aesgcm.json b/sdk/keyvault/keyvault-keys/recordings/browsers/cryptographyclient_for_managed_hsm_skipped_if_mhsm_is_not_deployed_with_aes_crypto_algorithms/recording_encrypts_and_decrypts_using_aesgcm.json index 5fff01072521..b4668ba1ea2c 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/cryptographyclient_for_managed_hsm_skipped_if_mhsm_is_not_deployed_with_aes_crypto_algorithms/recording_encrypts_and_decrypts_using_aesgcm.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/cryptographyclient_for_managed_hsm_skipped_if_mhsm_is_not_deployed_with_aes_crypto_algorithms/recording_encrypts_and_decrypts_using_aesgcm.json @@ -1,265 +1,265 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "0", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012\", resource=\"https://managedhsm.azure.net\"", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-request-id": "b915a9f6-a86e-11eb-a7bd-000d3a21d54b", - "x-ms-server-latency": "1" - } + "recordings": [ + { + "method": "POST", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "0", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012\", resource=\"https://managedhsm.azure.net\"", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-request-id": "b915a9f6-a86e-11eb-a7bd-000d3a21d54b", + "x-ms-server-latency": "1" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fmanagedhsm.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1322", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:47 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - SCUS ProdSlices", + "x-ms-request-id": "fc9ed9eb-c584-48ca-96c5-4631b7f45201" + } + }, + { + "method": "POST", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"AES\",\"key_size\":256,\"attributes\":{}}", + "status": 200, + "response": "{\"attributes\":{\"created\":1619647907,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1619647907},\"key\":{\"key_ops\":[\"wrapKey\",\"unwrapKey\",\"decrypt\",\"encrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/566b78f6b29e06830e4215bf528ecb77\",\"kty\":\"oct-HSM\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "362", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=Ipv4;", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "b939ed70-a86e-11eb-a7bd-000d3a21d54b", + "x-ms-server-latency": "197" + } + }, + { + "method": "GET", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/566b78f6b29e06830e4215bf528ecb77", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "OK", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "2", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012\", resource=\"https://managedhsm.azure.net\"", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-build-version": "1.0.20210407-3-27236ed1-develop", + "x-ms-request-id": "b966b1a2-a86e-11eb-a7bd-000d3a21d54b", + "x-ms-server-latency": "0" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fmanagedhsm.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1322", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:47 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", + "x-ms-request-id": "f886a18a-a107-45bc-a7bf-afbd04648001" + } + }, + { + "method": "GET", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/566b78f6b29e06830e4215bf528ecb77", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"attributes\":{\"created\":1619647907,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1619647907},\"key\":{\"key_ops\":[\"wrapKey\",\"unwrapKey\",\"encrypt\",\"decrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/566b78f6b29e06830e4215bf528ecb77\",\"kty\":\"oct-HSM\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "362", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-build-version": "1.0.20210407-3-27236ed1-develop", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=Ipv4;", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "b9829106-a86e-11eb-a7bd-000d3a21d54b", + "x-ms-server-latency": "57" + } + }, + { + "method": "POST", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/566b78f6b29e06830e4215bf528ecb77/encrypt", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"alg\":\"A256GCM\",\"value\":\"ZW5jcnlwdHMgYW5kIGRlY3J5cHRzIHVzaW5nIEFFUy1HQ00\"}", + "status": 200, + "response": "{\"alg\":\"A256GCM\",\"iv\":\"ai7slVnp6aZxGA0h\",\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/566b78f6b29e06830e4215bf528ecb77\",\"tag\":\"kX_LzUNoDvhbTn_FcWR__w\",\"value\":\"chTDb1MMvMbDUtR1ukhgiXFparFL23b0M1Jr1iSDQAA_KU0\"}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "261", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=Ipv4;", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "b999026a-a86e-11eb-a7bd-000d3a21d54b", + "x-ms-server-latency": "0" + } + }, + { + "method": "POST", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/566b78f6b29e06830e4215bf528ecb77/decrypt", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"alg\":\"A256GCM\",\"value\":\"chTDb1MMvMbDUtR1ukhgiXFparFL23b0M1Jr1iSDQAA_KU0\",\"iv\":\"ai7slVnp6aZxGA0h\",\"tag\":\"kX_LzUNoDvhbTn_FcWR__w\"}", + "status": 200, + "response": "{\"alg\":\"A256GCM\",\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/566b78f6b29e06830e4215bf528ecb77\",\"value\":\"ZW5jcnlwdHMgYW5kIGRlY3J5cHRzIHVzaW5nIEFFUy1HQ00\"}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "206", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=Ipv4;", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "b9a828f8-a86e-11eb-a7bd-000d3a21d54b", + "x-ms-server-latency": "1" + } + }, + { + "method": "DELETE", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"attributes\":{\"created\":1619647907,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1619647907},\"deletedDate\":1619647908,\"key\":{\"key_ops\":[\"unwrapKey\",\"wrapKey\",\"decrypt\",\"encrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/566b78f6b29e06830e4215bf528ecb77\",\"kty\":\"oct-HSM\"},\"recoveryId\":\"https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test\",\"scheduledPurgeDate\":1627423908}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "531", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=Ipv4;", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "b9b65270-a86e-11eb-a7bd-000d3a21d54b", + "x-ms-server-latency": "89" + } + }, + { + "method": "GET", + "url": "https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"attributes\":{\"created\":1619647907,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1619647907},\"deletedDate\":1619647908,\"key\":{\"key_ops\":[\"encrypt\",\"decrypt\",\"unwrapKey\",\"wrapKey\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/566b78f6b29e06830e4215bf528ecb77\",\"kty\":\"oct-HSM\"},\"recoveryId\":\"https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test\",\"scheduledPurgeDate\":1627423908}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "531", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-build-version": "1.0.20210407-3-27236ed1-develop", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=Ipv4;", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "b9d1f96c-a86e-11eb-a7bd-000d3a21d54b", + "x-ms-server-latency": "36" + } + }, + { + "method": "DELETE", + "url": "https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "0", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=Ipv4;", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "b9e84f78-a86e-11eb-a7bd-000d3a21d54b", + "x-ms-server-latency": "117" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fmanagedhsm.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1322", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:47 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - SCUS ProdSlices", - "x-ms-request-id": "fc9ed9eb-c584-48ca-96c5-4631b7f45201" - } - }, - { - "method": "POST", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"AES\",\"key_size\":256,\"attributes\":{}}", - "status": 200, - "response": "{\"attributes\":{\"created\":1619647907,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1619647907},\"key\":{\"key_ops\":[\"wrapKey\",\"unwrapKey\",\"decrypt\",\"encrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/566b78f6b29e06830e4215bf528ecb77\",\"kty\":\"oct-HSM\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "362", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=Ipv4;", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "b939ed70-a86e-11eb-a7bd-000d3a21d54b", - "x-ms-server-latency": "197" - } - }, - { - "method": "GET", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/566b78f6b29e06830e4215bf528ecb77", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "OK", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "2", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012\", resource=\"https://managedhsm.azure.net\"", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-build-version": "1.0.20210407-3-27236ed1-develop", - "x-ms-request-id": "b966b1a2-a86e-11eb-a7bd-000d3a21d54b", - "x-ms-server-latency": "0" - } - }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fmanagedhsm.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1322", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:47 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", - "x-ms-request-id": "f886a18a-a107-45bc-a7bf-afbd04648001" - } - }, - { - "method": "GET", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/566b78f6b29e06830e4215bf528ecb77", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"attributes\":{\"created\":1619647907,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1619647907},\"key\":{\"key_ops\":[\"wrapKey\",\"unwrapKey\",\"encrypt\",\"decrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/566b78f6b29e06830e4215bf528ecb77\",\"kty\":\"oct-HSM\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "362", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-build-version": "1.0.20210407-3-27236ed1-develop", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=Ipv4;", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "b9829106-a86e-11eb-a7bd-000d3a21d54b", - "x-ms-server-latency": "57" - } - }, - { - "method": "POST", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/566b78f6b29e06830e4215bf528ecb77/encrypt", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"alg\":\"A256GCM\",\"value\":\"ZW5jcnlwdHMgYW5kIGRlY3J5cHRzIHVzaW5nIEFFUy1HQ00\"}", - "status": 200, - "response": "{\"alg\":\"A256GCM\",\"iv\":\"ai7slVnp6aZxGA0h\",\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/566b78f6b29e06830e4215bf528ecb77\",\"tag\":\"kX_LzUNoDvhbTn_FcWR__w\",\"value\":\"chTDb1MMvMbDUtR1ukhgiXFparFL23b0M1Jr1iSDQAA_KU0\"}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "261", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=Ipv4;", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "b999026a-a86e-11eb-a7bd-000d3a21d54b", - "x-ms-server-latency": "0" - } - }, - { - "method": "POST", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/566b78f6b29e06830e4215bf528ecb77/decrypt", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"alg\":\"A256GCM\",\"value\":\"chTDb1MMvMbDUtR1ukhgiXFparFL23b0M1Jr1iSDQAA_KU0\",\"iv\":\"ai7slVnp6aZxGA0h\",\"tag\":\"kX_LzUNoDvhbTn_FcWR__w\"}", - "status": 200, - "response": "{\"alg\":\"A256GCM\",\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/566b78f6b29e06830e4215bf528ecb77\",\"value\":\"ZW5jcnlwdHMgYW5kIGRlY3J5cHRzIHVzaW5nIEFFUy1HQ00\"}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "206", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=Ipv4;", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "b9a828f8-a86e-11eb-a7bd-000d3a21d54b", - "x-ms-server-latency": "1" - } - }, - { - "method": "DELETE", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"attributes\":{\"created\":1619647907,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1619647907},\"deletedDate\":1619647908,\"key\":{\"key_ops\":[\"unwrapKey\",\"wrapKey\",\"decrypt\",\"encrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/566b78f6b29e06830e4215bf528ecb77\",\"kty\":\"oct-HSM\"},\"recoveryId\":\"https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test\",\"scheduledPurgeDate\":1627423908}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "531", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=Ipv4;", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "b9b65270-a86e-11eb-a7bd-000d3a21d54b", - "x-ms-server-latency": "89" - } - }, - { - "method": "GET", - "url": "https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"attributes\":{\"created\":1619647907,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1619647907},\"deletedDate\":1619647908,\"key\":{\"key_ops\":[\"encrypt\",\"decrypt\",\"unwrapKey\",\"wrapKey\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/cryptography-client-test/566b78f6b29e06830e4215bf528ecb77\",\"kty\":\"oct-HSM\"},\"recoveryId\":\"https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test\",\"scheduledPurgeDate\":1627423908}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "531", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-build-version": "1.0.20210407-3-27236ed1-develop", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=Ipv4;", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "b9d1f96c-a86e-11eb-a7bd-000d3a21d54b", - "x-ms-server-latency": "36" - } - }, - { - "method": "DELETE", - "url": "https://azure_managedhsm.managedhsm.azure.net/deletedkeys/cryptography-client-test", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "0", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=Ipv4;", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "b9e84f78-a86e-11eb-a7bd-000d3a21d54b", - "x-ms-server-latency": "117" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "31cd2cd413fc2b4da213f6afc1945620" -} \ No newline at end of file + "hash": "31cd2cd413fc2b4da213f6afc1945620" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_abort_creating_a_key.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_abort_creating_a_key.json index 701681398339..599507c49a12 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_abort_creating_a_key.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_abort_creating_a_key.json @@ -1,20 +1,20 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canabortcreatingakey-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 0, - "response": "", - "responseHeaders": {} - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "796fbcb2ce5dfdd19aaa49ade29f5773" -} \ No newline at end of file + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canabortcreatingakey-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 0, + "response": "", + "responseHeaders": {} + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "796fbcb2ce5dfdd19aaa49ade29f5773" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_a_disabled_key.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_a_disabled_key.json index d4a9dde43921..e69108837837 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_a_disabled_key.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_a_disabled_key.json @@ -1,518 +1,518 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateadisabledkey-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:49 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e21f7015-7aa6-414a-b1a7-5089aff80d33", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b23bfe60-db14-4334-a9de-b8cb17dbc3f9", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateadisabledkey-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:49 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e21f7015-7aa6-414a-b1a7-5089aff80d33", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b23bfe60-db14-4334-a9de-b8cb17dbc3f9", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:49 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", + "x-ms-request-id": "786f5b8e-426b-446f-974d-918f456f2b00" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateadisabledkey-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\",\"attributes\":{\"enabled\":false}}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateadisabledkey-/517d1bec2e3b49e288551bbb2939c091\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"0s8juPf02od3ohxurRHa25CVg-FnwCQziaq20BnGrY5HgJcA0rdLVM-fzYP4zvNZ3EaHhMRO_b7JqxEm0WfBmuGemLKeNsIRjXwz-elynwMky8Jfz074o2rboa2lSSquMEjR0mt0zECKCjeBM1q6UPMLUkOWEuZrM4nk0bL268oNJpZX_CrlImDzG1L1XIzLWq4Ko-Qzgjaf94SBB9y3sU60sibWykvrhHyygHiAowgW3fhfsUVz9ne08UNompk7PdG5KNV-UMsXmoR3Q6LgvZkEO2XqwbkMew_hEbFByDlwcJcwOtWFG1zjAb6darO5P_C3kShLHfDufnBVg7bPCQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":false,\"created\":1619647550,\"updated\":1619647550,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "726", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:49 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e21f7015-7aa6-414a-b1a7-5089aff80d33", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "75bf42b5-40bc-479a-8cfb-61596a54f523", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-\",\"deletedDate\":1619647550,\"scheduledPurgeDate\":1620252350,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateadisabledkey-/517d1bec2e3b49e288551bbb2939c091\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"0s8juPf02od3ohxurRHa25CVg-FnwCQziaq20BnGrY5HgJcA0rdLVM-fzYP4zvNZ3EaHhMRO_b7JqxEm0WfBmuGemLKeNsIRjXwz-elynwMky8Jfz074o2rboa2lSSquMEjR0mt0zECKCjeBM1q6UPMLUkOWEuZrM4nk0bL268oNJpZX_CrlImDzG1L1XIzLWq4Ko-Qzgjaf94SBB9y3sU60sibWykvrhHyygHiAowgW3fhfsUVz9ne08UNompk7PdG5KNV-UMsXmoR3Q6LgvZkEO2XqwbkMew_hEbFByDlwcJcwOtWFG1zjAb6darO5P_C3kShLHfDufnBVg7bPCQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":false,\"created\":1619647550,\"updated\":1619647550,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "896", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:49 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "95089d41-2cc1-41f5-ad23-f032f00e4a40", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b5d63395-fda1-4453-8a2c-e88b359e4b13", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:49 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2750c6d0-9da9-492d-bf23-982a649860b4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f1b9c86b-9cb2-467d-896a-ec7723be5c8d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:50 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "009d1329-dde3-4661-912b-6751533c3b94", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "52e0529b-0973-4a0d-8736-de9a1435bb8b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:52 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "27ed41f6-f5b3-49ce-82a6-fcbd01f04718", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "394e7026-96a3-4aa4-b8eb-a1b1b92e61f6", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:55 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "63f6a629-37f3-4993-b7da-37697bc9f608", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a29d72dc-3c84-4a96-a916-549dfa346b15", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:57 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "a501a4f6-8fac-4a5a-b3ec-be72e3f8e996", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f6cfdd4c-5de8-49c1-b42f-912af1500f25", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:59 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e19d19ad-f531-4c6c-9265-ffd4986155d3", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "93f5f9a8-309f-4d71-a6d3-f47786512b29", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:00 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "870d1b10-863d-4d77-b9b3-d1ecdef16728", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "164b62f0-3d39-4d7f-865d-b9d8dd44de55", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:02 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "6fca2440-140f-41da-8af4-03a30e072879", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "51701a7f-8acb-41b1-9c75-ca07e42b9705", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:04 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "b75c7c5e-f25b-4635-8a90-224fa96c4463", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ef8916fd-662a-4ded-a6a6-4587eccaf4dd", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:06 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "16174271-ade6-4432-ac5a-665ef049437c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "0fa0d9a4-fb52-4c61-bdd3-004730ecbf5a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:09 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "106a4fd9-1704-4cba-b73d-23de35b1787e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "bfa136b0-0ba3-4f03-930a-edcc41464ca3", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:12 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ca1d6b7a-913c-42b1-8ed8-00bbb7fbdd6b", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "097ab4ac-ee7d-432a-a9df-8213434f7516", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:14 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2619b1c5-dfdf-4843-81c8-39fe3cd04bf8", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "094cd3a4-c01d-494e-b4d2-1472dba36e4c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-\",\"deletedDate\":1619647550,\"scheduledPurgeDate\":1620252350,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateadisabledkey-/517d1bec2e3b49e288551bbb2939c091\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"0s8juPf02od3ohxurRHa25CVg-FnwCQziaq20BnGrY5HgJcA0rdLVM-fzYP4zvNZ3EaHhMRO_b7JqxEm0WfBmuGemLKeNsIRjXwz-elynwMky8Jfz074o2rboa2lSSquMEjR0mt0zECKCjeBM1q6UPMLUkOWEuZrM4nk0bL268oNJpZX_CrlImDzG1L1XIzLWq4Ko-Qzgjaf94SBB9y3sU60sibWykvrhHyygHiAowgW3fhfsUVz9ne08UNompk7PdG5KNV-UMsXmoR3Q6LgvZkEO2XqwbkMew_hEbFByDlwcJcwOtWFG1zjAb6darO5P_C3kShLHfDufnBVg7bPCQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":false,\"created\":1619647550,\"updated\":1619647550,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "896", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:16 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "b8c9644f-679d-40a4-9180-fc67ebad1de6", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4ab68fa5-396d-4c46-a844-ce3d0b22c14c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:06:16 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "5c630905-2df5-43df-b087-61de44b2d8af", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "fdf000dc-26a2-4d5a-bba9-a824fccef2e5", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:49 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", - "x-ms-request-id": "786f5b8e-426b-446f-974d-918f456f2b00" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateadisabledkey-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\",\"attributes\":{\"enabled\":false}}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateadisabledkey-/517d1bec2e3b49e288551bbb2939c091\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"0s8juPf02od3ohxurRHa25CVg-FnwCQziaq20BnGrY5HgJcA0rdLVM-fzYP4zvNZ3EaHhMRO_b7JqxEm0WfBmuGemLKeNsIRjXwz-elynwMky8Jfz074o2rboa2lSSquMEjR0mt0zECKCjeBM1q6UPMLUkOWEuZrM4nk0bL268oNJpZX_CrlImDzG1L1XIzLWq4Ko-Qzgjaf94SBB9y3sU60sibWykvrhHyygHiAowgW3fhfsUVz9ne08UNompk7PdG5KNV-UMsXmoR3Q6LgvZkEO2XqwbkMew_hEbFByDlwcJcwOtWFG1zjAb6darO5P_C3kShLHfDufnBVg7bPCQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":false,\"created\":1619647550,\"updated\":1619647550,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "726", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:49 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e21f7015-7aa6-414a-b1a7-5089aff80d33", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "75bf42b5-40bc-479a-8cfb-61596a54f523", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-\",\"deletedDate\":1619647550,\"scheduledPurgeDate\":1620252350,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateadisabledkey-/517d1bec2e3b49e288551bbb2939c091\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"0s8juPf02od3ohxurRHa25CVg-FnwCQziaq20BnGrY5HgJcA0rdLVM-fzYP4zvNZ3EaHhMRO_b7JqxEm0WfBmuGemLKeNsIRjXwz-elynwMky8Jfz074o2rboa2lSSquMEjR0mt0zECKCjeBM1q6UPMLUkOWEuZrM4nk0bL268oNJpZX_CrlImDzG1L1XIzLWq4Ko-Qzgjaf94SBB9y3sU60sibWykvrhHyygHiAowgW3fhfsUVz9ne08UNompk7PdG5KNV-UMsXmoR3Q6LgvZkEO2XqwbkMew_hEbFByDlwcJcwOtWFG1zjAb6darO5P_C3kShLHfDufnBVg7bPCQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":false,\"created\":1619647550,\"updated\":1619647550,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "896", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:49 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "95089d41-2cc1-41f5-ad23-f032f00e4a40", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b5d63395-fda1-4453-8a2c-e88b359e4b13", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:49 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2750c6d0-9da9-492d-bf23-982a649860b4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f1b9c86b-9cb2-467d-896a-ec7723be5c8d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:50 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "009d1329-dde3-4661-912b-6751533c3b94", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "52e0529b-0973-4a0d-8736-de9a1435bb8b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:52 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "27ed41f6-f5b3-49ce-82a6-fcbd01f04718", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "394e7026-96a3-4aa4-b8eb-a1b1b92e61f6", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:55 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "63f6a629-37f3-4993-b7da-37697bc9f608", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a29d72dc-3c84-4a96-a916-549dfa346b15", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:57 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "a501a4f6-8fac-4a5a-b3ec-be72e3f8e996", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f6cfdd4c-5de8-49c1-b42f-912af1500f25", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:59 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e19d19ad-f531-4c6c-9265-ffd4986155d3", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "93f5f9a8-309f-4d71-a6d3-f47786512b29", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:00 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "870d1b10-863d-4d77-b9b3-d1ecdef16728", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "164b62f0-3d39-4d7f-865d-b9d8dd44de55", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:02 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "6fca2440-140f-41da-8af4-03a30e072879", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "51701a7f-8acb-41b1-9c75-ca07e42b9705", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:04 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "b75c7c5e-f25b-4635-8a90-224fa96c4463", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ef8916fd-662a-4ded-a6a6-4587eccaf4dd", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:06 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "16174271-ade6-4432-ac5a-665ef049437c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "0fa0d9a4-fb52-4c61-bdd3-004730ecbf5a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:09 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "106a4fd9-1704-4cba-b73d-23de35b1787e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "bfa136b0-0ba3-4f03-930a-edcc41464ca3", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:12 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ca1d6b7a-913c-42b1-8ed8-00bbb7fbdd6b", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "097ab4ac-ee7d-432a-a9df-8213434f7516", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:14 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2619b1c5-dfdf-4843-81c8-39fe3cd04bf8", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "094cd3a4-c01d-494e-b4d2-1472dba36e4c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-\",\"deletedDate\":1619647550,\"scheduledPurgeDate\":1620252350,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateadisabledkey-/517d1bec2e3b49e288551bbb2939c091\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"0s8juPf02od3ohxurRHa25CVg-FnwCQziaq20BnGrY5HgJcA0rdLVM-fzYP4zvNZ3EaHhMRO_b7JqxEm0WfBmuGemLKeNsIRjXwz-elynwMky8Jfz074o2rboa2lSSquMEjR0mt0zECKCjeBM1q6UPMLUkOWEuZrM4nk0bL268oNJpZX_CrlImDzG1L1XIzLWq4Ko-Qzgjaf94SBB9y3sU60sibWykvrhHyygHiAowgW3fhfsUVz9ne08UNompk7PdG5KNV-UMsXmoR3Q6LgvZkEO2XqwbkMew_hEbFByDlwcJcwOtWFG1zjAb6darO5P_C3kShLHfDufnBVg7bPCQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":false,\"created\":1619647550,\"updated\":1619647550,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "896", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:16 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "b8c9644f-679d-40a4-9180-fc67ebad1de6", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4ab68fa5-396d-4c46-a844-ce3d0b22c14c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:06:16 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "5c630905-2df5-43df-b087-61de44b2d8af", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "fdf000dc-26a2-4d5a-bba9-a824fccef2e5", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "55aab5855ad179029c44d8e43930aff8" -} \ No newline at end of file + "hash": "55aab5855ad179029c44d8e43930aff8" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_a_key_while_giving_a_manual_type.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_a_key_while_giving_a_manual_type.json index 97d17176be92..7e3a9dfd330f 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_a_key_while_giving_a_manual_type.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_a_key_while_giving_a_manual_type.json @@ -1,653 +1,653 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywhilegivingamanualtype-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:02:59 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "57150f8e-3aa0-4e61-8aa4-fdb0260463f1", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a975197c-31ec-49db-b2e3-e688972f745e", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywhilegivingamanualtype-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:02:59 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "57150f8e-3aa0-4e61-8aa4-fdb0260463f1", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a975197c-31ec-49db-b2e3-e688972f745e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:02:59 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", + "x-ms-request-id": "786f5b8e-426b-446f-974d-918f89552b00" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywhilegivingamanualtype-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\"}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywhilegivingamanualtype-/3c1b7d75e9f441d0b5a43452a95de412\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"4nVCzcbvR1L57a_BWQPQKPdant2vaYAoPclbs93fPGEg24TYb5VLE354UUD-I5W1EMjHLSfG6DGLS7Mv0HRRED3ThT6-TLlrvBXX__CglRbP9RdlfyEn6P-99s3g2bxRAuUjuv34OhD4xca_CgeLgyA3rLM1Srs6AdMr1zpjSEAW-krBYnjxFaEBUZAuH7xSXF4xw-VZ6LNmaIdf6qPVV_ET0jXHIuIwL_xfqRqob6qFJnMVxYFZ6fgBhV5ejI9Hm_piqCzSSt7HAvEiYtCSWRFYOdvQnJU-dGFK6zy5u56eox6_FbO1V4XS6LvnLbsgOMHmwnhoCVjNRuiUey-dwQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647380,\"updated\":1619647380,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "739", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:00 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "57150f8e-3aa0-4e61-8aa4-fdb0260463f1", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "88b42ac1-665e-4d3c-85ab-07d92f08af61", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-\",\"deletedDate\":1619647380,\"scheduledPurgeDate\":1620252180,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywhilegivingamanualtype-/3c1b7d75e9f441d0b5a43452a95de412\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"4nVCzcbvR1L57a_BWQPQKPdant2vaYAoPclbs93fPGEg24TYb5VLE354UUD-I5W1EMjHLSfG6DGLS7Mv0HRRED3ThT6-TLlrvBXX__CglRbP9RdlfyEn6P-99s3g2bxRAuUjuv34OhD4xca_CgeLgyA3rLM1Srs6AdMr1zpjSEAW-krBYnjxFaEBUZAuH7xSXF4xw-VZ6LNmaIdf6qPVV_ET0jXHIuIwL_xfqRqob6qFJnMVxYFZ6fgBhV5ejI9Hm_piqCzSSt7HAvEiYtCSWRFYOdvQnJU-dGFK6zy5u56eox6_FbO1V4XS6LvnLbsgOMHmwnhoCVjNRuiUey-dwQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647380,\"updated\":1619647380,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "923", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:00 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f38d59d9-5a23-4de9-8c53-dea15be57949", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2d7b5b1b-ca7b-4df5-87f8-84cb001d4662", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "132", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:00 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "18a2f000-d54f-49e9-8420-44fdf5c14786", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "048ebfee-ec07-4fdc-b348-44a69e3175b3", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "132", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:00 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "5705a333-52b2-4108-9555-a2d6b5e9fa50", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "9a1ce366-c551-4369-a8f2-78fdcefe1557", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "132", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:02 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "61114b59-dc0f-4c0b-ae67-48c9c72fbd46", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3ae2754b-24b5-4dc3-9f07-2e6c9cd2c985", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "132", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:04 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "23413325-9aa8-4467-9f11-c1fca03373a8", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "16eb3404-9803-4f99-8005-537c361bc0bb", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "132", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:06 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "0750d7fa-5cbf-4df8-b2fd-841d265bccd7", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "eceef34b-8de7-4135-93cd-171afcbd168a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "132", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:08 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "cd08cbb2-f063-42b3-ab25-31988c3c1b59", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b8c5f1b6-dde5-4a51-872b-a425992c5307", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "132", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:10 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "0cb58e69-efcd-4bd1-b9ed-3485c309c13a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a48d0d90-09d8-4a92-8aa6-c99c0f5a7dd6", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "132", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:12 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "33843369-892f-4492-ab72-f66da26751ef", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f8ac935f-35b5-457e-be1c-d34ac011ac3e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "132", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:14 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "420c2f8f-afb7-4f7e-b47f-dfcfa627a54a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "0c993290-e600-4285-a234-a8faefe61e11", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "132", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:17 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "8f75bc50-1c36-465d-aaf3-af17fb00109e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c55742e7-9c64-42a4-8e0c-803593583255", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "132", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:19 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d18cd7cd-bb22-4923-900c-0fb763439944", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f7d98ada-e33f-49b3-a245-b3430d3dc685", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "132", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:21 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c346904e-0e8c-46e9-838b-c1e75126cee4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "26b08d3d-0c69-4dec-873a-6fcf32d98a0e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "132", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:23 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "82a6fa6f-e6f0-4255-aece-646e7fcf92af", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "75dc239e-7766-412e-b8da-e51d4c49085a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "132", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:25 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "016e3aec-88e0-448a-8782-04dc021c5c26", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "9cbf1ca2-020e-4f7b-9eaa-206cff4ad7ae", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "132", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:27 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9596b74f-174c-46f9-8e4d-41674611894a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a6484e4d-a0a6-40b5-868d-0aebee46d989", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "132", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:29 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c010e7fb-56f0-4912-bc32-b1529bc98350", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "fe7c8d50-a234-4221-a582-271ae5a3dc7b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "132", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:31 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "cc7a3b64-5fe7-4ac2-a5fb-73fd26ef020b", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "252d89c3-cb23-46e8-a208-342af7b7d1c1", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "132", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:34 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c5662468-9f3e-49c1-935d-6592b076a989", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5f170d96-fe10-4a80-9f4c-5232c158ae82", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-\",\"deletedDate\":1619647380,\"scheduledPurgeDate\":1620252180,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywhilegivingamanualtype-/3c1b7d75e9f441d0b5a43452a95de412\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"4nVCzcbvR1L57a_BWQPQKPdant2vaYAoPclbs93fPGEg24TYb5VLE354UUD-I5W1EMjHLSfG6DGLS7Mv0HRRED3ThT6-TLlrvBXX__CglRbP9RdlfyEn6P-99s3g2bxRAuUjuv34OhD4xca_CgeLgyA3rLM1Srs6AdMr1zpjSEAW-krBYnjxFaEBUZAuH7xSXF4xw-VZ6LNmaIdf6qPVV_ET0jXHIuIwL_xfqRqob6qFJnMVxYFZ6fgBhV5ejI9Hm_piqCzSSt7HAvEiYtCSWRFYOdvQnJU-dGFK6zy5u56eox6_FbO1V4XS6LvnLbsgOMHmwnhoCVjNRuiUey-dwQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647380,\"updated\":1619647380,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "923", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:36 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "3dea6a19-d1b7-4635-994f-d04b14aa785c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "fc9d3249-fd6e-46d2-8946-51c73e9ab7a5", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:03:36 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9dc3b0a3-f3fd-4363-a563-b35efd655a82", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "9de62c35-5344-4bd0-8ae9-8c3240d27f5c", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:02:59 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", - "x-ms-request-id": "786f5b8e-426b-446f-974d-918f89552b00" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywhilegivingamanualtype-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\"}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywhilegivingamanualtype-/3c1b7d75e9f441d0b5a43452a95de412\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"4nVCzcbvR1L57a_BWQPQKPdant2vaYAoPclbs93fPGEg24TYb5VLE354UUD-I5W1EMjHLSfG6DGLS7Mv0HRRED3ThT6-TLlrvBXX__CglRbP9RdlfyEn6P-99s3g2bxRAuUjuv34OhD4xca_CgeLgyA3rLM1Srs6AdMr1zpjSEAW-krBYnjxFaEBUZAuH7xSXF4xw-VZ6LNmaIdf6qPVV_ET0jXHIuIwL_xfqRqob6qFJnMVxYFZ6fgBhV5ejI9Hm_piqCzSSt7HAvEiYtCSWRFYOdvQnJU-dGFK6zy5u56eox6_FbO1V4XS6LvnLbsgOMHmwnhoCVjNRuiUey-dwQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647380,\"updated\":1619647380,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "739", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:00 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "57150f8e-3aa0-4e61-8aa4-fdb0260463f1", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "88b42ac1-665e-4d3c-85ab-07d92f08af61", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-\",\"deletedDate\":1619647380,\"scheduledPurgeDate\":1620252180,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywhilegivingamanualtype-/3c1b7d75e9f441d0b5a43452a95de412\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"4nVCzcbvR1L57a_BWQPQKPdant2vaYAoPclbs93fPGEg24TYb5VLE354UUD-I5W1EMjHLSfG6DGLS7Mv0HRRED3ThT6-TLlrvBXX__CglRbP9RdlfyEn6P-99s3g2bxRAuUjuv34OhD4xca_CgeLgyA3rLM1Srs6AdMr1zpjSEAW-krBYnjxFaEBUZAuH7xSXF4xw-VZ6LNmaIdf6qPVV_ET0jXHIuIwL_xfqRqob6qFJnMVxYFZ6fgBhV5ejI9Hm_piqCzSSt7HAvEiYtCSWRFYOdvQnJU-dGFK6zy5u56eox6_FbO1V4XS6LvnLbsgOMHmwnhoCVjNRuiUey-dwQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647380,\"updated\":1619647380,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "923", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:00 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f38d59d9-5a23-4de9-8c53-dea15be57949", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2d7b5b1b-ca7b-4df5-87f8-84cb001d4662", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "132", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:00 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "18a2f000-d54f-49e9-8420-44fdf5c14786", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "048ebfee-ec07-4fdc-b348-44a69e3175b3", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "132", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:00 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "5705a333-52b2-4108-9555-a2d6b5e9fa50", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "9a1ce366-c551-4369-a8f2-78fdcefe1557", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "132", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:02 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "61114b59-dc0f-4c0b-ae67-48c9c72fbd46", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3ae2754b-24b5-4dc3-9f07-2e6c9cd2c985", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "132", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:04 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "23413325-9aa8-4467-9f11-c1fca03373a8", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "16eb3404-9803-4f99-8005-537c361bc0bb", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "132", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:06 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "0750d7fa-5cbf-4df8-b2fd-841d265bccd7", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "eceef34b-8de7-4135-93cd-171afcbd168a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "132", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:08 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "cd08cbb2-f063-42b3-ab25-31988c3c1b59", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b8c5f1b6-dde5-4a51-872b-a425992c5307", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "132", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:10 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "0cb58e69-efcd-4bd1-b9ed-3485c309c13a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a48d0d90-09d8-4a92-8aa6-c99c0f5a7dd6", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "132", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:12 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "33843369-892f-4492-ab72-f66da26751ef", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f8ac935f-35b5-457e-be1c-d34ac011ac3e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "132", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:14 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "420c2f8f-afb7-4f7e-b47f-dfcfa627a54a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "0c993290-e600-4285-a234-a8faefe61e11", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "132", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:17 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "8f75bc50-1c36-465d-aaf3-af17fb00109e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c55742e7-9c64-42a4-8e0c-803593583255", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "132", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:19 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d18cd7cd-bb22-4923-900c-0fb763439944", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f7d98ada-e33f-49b3-a245-b3430d3dc685", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "132", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:21 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c346904e-0e8c-46e9-838b-c1e75126cee4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "26b08d3d-0c69-4dec-873a-6fcf32d98a0e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "132", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:23 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "82a6fa6f-e6f0-4255-aece-646e7fcf92af", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "75dc239e-7766-412e-b8da-e51d4c49085a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "132", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:25 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "016e3aec-88e0-448a-8782-04dc021c5c26", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "9cbf1ca2-020e-4f7b-9eaa-206cff4ad7ae", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "132", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:27 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9596b74f-174c-46f9-8e4d-41674611894a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a6484e4d-a0a6-40b5-868d-0aebee46d989", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "132", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:29 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c010e7fb-56f0-4912-bc32-b1529bc98350", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "fe7c8d50-a234-4221-a582-271ae5a3dc7b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "132", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:31 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "cc7a3b64-5fe7-4ac2-a5fb-73fd26ef020b", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "252d89c3-cb23-46e8-a208-342af7b7d1c1", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywhilegivingamanualtype-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "132", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:34 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c5662468-9f3e-49c1-935d-6592b076a989", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5f170d96-fe10-4a80-9f4c-5232c158ae82", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-\",\"deletedDate\":1619647380,\"scheduledPurgeDate\":1620252180,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywhilegivingamanualtype-/3c1b7d75e9f441d0b5a43452a95de412\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"4nVCzcbvR1L57a_BWQPQKPdant2vaYAoPclbs93fPGEg24TYb5VLE354UUD-I5W1EMjHLSfG6DGLS7Mv0HRRED3ThT6-TLlrvBXX__CglRbP9RdlfyEn6P-99s3g2bxRAuUjuv34OhD4xca_CgeLgyA3rLM1Srs6AdMr1zpjSEAW-krBYnjxFaEBUZAuH7xSXF4xw-VZ6LNmaIdf6qPVV_ET0jXHIuIwL_xfqRqob6qFJnMVxYFZ6fgBhV5ejI9Hm_piqCzSSt7HAvEiYtCSWRFYOdvQnJU-dGFK6zy5u56eox6_FbO1V4XS6LvnLbsgOMHmwnhoCVjNRuiUey-dwQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647380,\"updated\":1619647380,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "923", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:36 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "3dea6a19-d1b7-4635-994f-d04b14aa785c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "fc9d3249-fd6e-46d2-8946-51c73e9ab7a5", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywhilegivingamanualtype-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:03:36 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9dc3b0a3-f3fd-4363-a563-b35efd655a82", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "9de62c35-5344-4bd0-8ae9-8c3240d27f5c", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "82aad3a8a6c506c2afcfbefd44ddb207" -} \ No newline at end of file + "hash": "82aad3a8a6c506c2afcfbefd44ddb207" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_a_key_with_expires.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_a_key_with_expires.json index 81530a0296ce..6621854bad3d 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_a_key_with_expires.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_a_key_with_expires.json @@ -1,761 +1,761 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywithexpires-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:09 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "fefd38ed-5664-492e-8a7a-16f4cc44b02c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "9da5cd03-90d5-4427-bff1-558923031885", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywithexpires-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:09 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "fefd38ed-5664-492e-8a7a-16f4cc44b02c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "9da5cd03-90d5-4427-bff1-558923031885", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:09 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", + "x-ms-request-id": "cd7787fa-9afc-44d7-b558-d7a467b24401" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywithexpires-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\",\"attributes\":{\"exp\":1546300805}}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywithexpires-/25c8564ca6b34920935ba75bcd511270\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"vNEJIstdXjRIxgGCDqwv6Lt8o9_E5p4UFWnihf1ve2yN2Da0ZxGPcB8rvtGvSjoFy0FnGoP8heHTvhKV2M65ZWR3yKbiSIe9PKslsRCzs9DJmzF6nqVYGnR-Kb2pAEZ9RUO8-RZoOWKv8ORz71mEG-XCSPXSkCDdRsS3ekZPPqvcvvcx6zVm04n21zMuAsSNudd4OzgKZVJuEacCcgp5bCI-pKStFQEM7M70lwuvyAbgfseQQRTfc-et4U_8pSoxoqthAeBBgSaUqAqRETqBXRgPg4IzHAzc-qagvvBqb1I5k_6jLM37Tu_QQp7MeKVGdYKAySOsr_gOKh-XFSHafQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"exp\":1546300805,\"created\":1619647630,\"updated\":1619647630,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "744", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:10 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "fefd38ed-5664-492e-8a7a-16f4cc44b02c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f6742162-6623-4d73-b5bf-71a1d80bcece", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywithexpires-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-\",\"deletedDate\":1619647631,\"scheduledPurgeDate\":1620252431,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywithexpires-/25c8564ca6b34920935ba75bcd511270\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"vNEJIstdXjRIxgGCDqwv6Lt8o9_E5p4UFWnihf1ve2yN2Da0ZxGPcB8rvtGvSjoFy0FnGoP8heHTvhKV2M65ZWR3yKbiSIe9PKslsRCzs9DJmzF6nqVYGnR-Kb2pAEZ9RUO8-RZoOWKv8ORz71mEG-XCSPXSkCDdRsS3ekZPPqvcvvcx6zVm04n21zMuAsSNudd4OzgKZVJuEacCcgp5bCI-pKStFQEM7M70lwuvyAbgfseQQRTfc-et4U_8pSoxoqthAeBBgSaUqAqRETqBXRgPg4IzHAzc-qagvvBqb1I5k_6jLM37Tu_QQp7MeKVGdYKAySOsr_gOKh-XFSHafQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"exp\":1546300805,\"created\":1619647630,\"updated\":1619647630,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "916", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:10 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "25ac4cf4-0a36-4b79-8a23-e80874f1cd1d", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "29f86745-8f0c-4819-babb-629b45d7d5a3", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:10 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "4a18c3e8-1ba4-4974-ab7c-f3b4c10f1194", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "76bbeaa4-1286-4419-af01-03c4db3512d7", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:10 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "b63d31cb-60f1-4774-8607-b4ff8f178958", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "82260db2-bd3f-40f2-b91a-ce5ae969833a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:12 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c42f4dc0-95ed-4389-90c2-8469e9f57721", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4fa95da0-8ab0-4319-84c1-a02806452de7", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:14 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "bced1598-845c-4f8c-9a5b-a6474cbb297b", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d0e82a15-ba54-4059-b381-0bc5fd77fd0d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:17 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f32095da-1877-4c3d-8104-8eb9bab2d58b", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c1c7e148-5882-4ed4-8dc4-689c0d9df08d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:19 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f493eec9-6b3c-4894-86d6-165f9bc72dd7", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e892f2ec-50b2-447e-b789-02b688d67baf", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:21 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d330334f-56e9-44bd-ae79-f3eca2897621", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e7e061e4-3ba5-4662-a16d-542709e6c2e9", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:23 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "190dba30-3ebc-47fd-92d4-0437fb47e2d5", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "369911d3-4dd0-457c-b80d-b7590b345413", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:26 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "fe1d6940-9eea-424f-bbde-e9bdf6074bba", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2b6004bd-8629-4d20-8ff4-30297f7da497", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:27 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d9dfa69a-b0c8-4a42-95e6-554a68b7ffdd", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "8b349d7e-557a-466d-9ed4-3f6b412a8768", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:29 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c6181551-1721-4be0-9fd5-69efef32c398", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d933e373-b0ee-447c-bd9d-60a338fa8334", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:31 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "a8c20c14-444a-424b-a015-850618e40b43", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2219499d-5d0d-4489-b7b9-0c5eea4bdbae", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:34 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f63960fe-3752-4361-b3b7-0fd9c2181c35", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "86d08e9f-b655-4fd9-a7dd-f67e7690d7d1", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:36 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9f4cae13-31a3-41d4-a0b5-39e5fc4dc7d1", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "69cf531d-f04e-4264-a48d-0caec172e2a0", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:38 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1ab232eb-a9c2-4b7c-b235-b5a5fd1dece8", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "0337b6c9-82e3-4ff6-b074-fb3e3e4e771c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:40 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "0f14c5f0-87d3-438c-b060-28607d861645", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5fbb6ce0-88ae-4f18-920a-b0369509a76d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:42 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1eda0a9f-da40-4799-81c8-434e3ffc7de7", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "93cdb828-710d-408a-94b6-96fe714785dd", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:44 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f114b8dc-e80b-4abe-8b79-ae70b8b35374", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "7b7b6fed-a2fc-4d09-888c-57b8e8e2ccbb", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:46 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ce9e8738-3225-4d98-965d-dce22c84c338", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "91713195-0f18-4817-81d9-901068d66d95", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:48 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9bbf4bd2-3dd6-414f-b0f0-f524d29cb2fe", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "553b7b84-64f1-4097-b7a1-64dfc25109dc", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:50 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "b67d8589-c711-45c5-b6de-3d13f38b2d89", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "71bbb06e-1620-4d80-8c99-6633b7b26f6b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:52 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "33243cc9-02aa-4209-b960-60e5d8cd5ea1", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4a81082e-f3a9-479f-ab5c-e443c7caa789", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-\",\"deletedDate\":1619647631,\"scheduledPurgeDate\":1620252431,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywithexpires-/25c8564ca6b34920935ba75bcd511270\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"vNEJIstdXjRIxgGCDqwv6Lt8o9_E5p4UFWnihf1ve2yN2Da0ZxGPcB8rvtGvSjoFy0FnGoP8heHTvhKV2M65ZWR3yKbiSIe9PKslsRCzs9DJmzF6nqVYGnR-Kb2pAEZ9RUO8-RZoOWKv8ORz71mEG-XCSPXSkCDdRsS3ekZPPqvcvvcx6zVm04n21zMuAsSNudd4OzgKZVJuEacCcgp5bCI-pKStFQEM7M70lwuvyAbgfseQQRTfc-et4U_8pSoxoqthAeBBgSaUqAqRETqBXRgPg4IzHAzc-qagvvBqb1I5k_6jLM37Tu_QQp7MeKVGdYKAySOsr_gOKh-XFSHafQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"exp\":1546300805,\"created\":1619647630,\"updated\":1619647630,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "916", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:55 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "fc46d0b3-1d0d-41e9-a6f3-18119e510ffc", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "93237960-241d-466a-adf4-519ce452eee3", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:07:55 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "52bdd593-dc37-42f7-9419-7add7de71b55", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "bb06f447-3902-4f7f-aac6-59eead50c06a", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:09 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", - "x-ms-request-id": "cd7787fa-9afc-44d7-b558-d7a467b24401" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywithexpires-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\",\"attributes\":{\"exp\":1546300805}}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywithexpires-/25c8564ca6b34920935ba75bcd511270\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"vNEJIstdXjRIxgGCDqwv6Lt8o9_E5p4UFWnihf1ve2yN2Da0ZxGPcB8rvtGvSjoFy0FnGoP8heHTvhKV2M65ZWR3yKbiSIe9PKslsRCzs9DJmzF6nqVYGnR-Kb2pAEZ9RUO8-RZoOWKv8ORz71mEG-XCSPXSkCDdRsS3ekZPPqvcvvcx6zVm04n21zMuAsSNudd4OzgKZVJuEacCcgp5bCI-pKStFQEM7M70lwuvyAbgfseQQRTfc-et4U_8pSoxoqthAeBBgSaUqAqRETqBXRgPg4IzHAzc-qagvvBqb1I5k_6jLM37Tu_QQp7MeKVGdYKAySOsr_gOKh-XFSHafQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"exp\":1546300805,\"created\":1619647630,\"updated\":1619647630,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "744", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:10 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "fefd38ed-5664-492e-8a7a-16f4cc44b02c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f6742162-6623-4d73-b5bf-71a1d80bcece", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywithexpires-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-\",\"deletedDate\":1619647631,\"scheduledPurgeDate\":1620252431,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywithexpires-/25c8564ca6b34920935ba75bcd511270\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"vNEJIstdXjRIxgGCDqwv6Lt8o9_E5p4UFWnihf1ve2yN2Da0ZxGPcB8rvtGvSjoFy0FnGoP8heHTvhKV2M65ZWR3yKbiSIe9PKslsRCzs9DJmzF6nqVYGnR-Kb2pAEZ9RUO8-RZoOWKv8ORz71mEG-XCSPXSkCDdRsS3ekZPPqvcvvcx6zVm04n21zMuAsSNudd4OzgKZVJuEacCcgp5bCI-pKStFQEM7M70lwuvyAbgfseQQRTfc-et4U_8pSoxoqthAeBBgSaUqAqRETqBXRgPg4IzHAzc-qagvvBqb1I5k_6jLM37Tu_QQp7MeKVGdYKAySOsr_gOKh-XFSHafQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"exp\":1546300805,\"created\":1619647630,\"updated\":1619647630,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "916", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:10 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "25ac4cf4-0a36-4b79-8a23-e80874f1cd1d", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "29f86745-8f0c-4819-babb-629b45d7d5a3", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:10 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "4a18c3e8-1ba4-4974-ab7c-f3b4c10f1194", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "76bbeaa4-1286-4419-af01-03c4db3512d7", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:10 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "b63d31cb-60f1-4774-8607-b4ff8f178958", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "82260db2-bd3f-40f2-b91a-ce5ae969833a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:12 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c42f4dc0-95ed-4389-90c2-8469e9f57721", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4fa95da0-8ab0-4319-84c1-a02806452de7", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:14 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "bced1598-845c-4f8c-9a5b-a6474cbb297b", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d0e82a15-ba54-4059-b381-0bc5fd77fd0d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:17 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f32095da-1877-4c3d-8104-8eb9bab2d58b", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c1c7e148-5882-4ed4-8dc4-689c0d9df08d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:19 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f493eec9-6b3c-4894-86d6-165f9bc72dd7", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e892f2ec-50b2-447e-b789-02b688d67baf", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:21 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d330334f-56e9-44bd-ae79-f3eca2897621", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e7e061e4-3ba5-4662-a16d-542709e6c2e9", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:23 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "190dba30-3ebc-47fd-92d4-0437fb47e2d5", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "369911d3-4dd0-457c-b80d-b7590b345413", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:26 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "fe1d6940-9eea-424f-bbde-e9bdf6074bba", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2b6004bd-8629-4d20-8ff4-30297f7da497", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:27 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d9dfa69a-b0c8-4a42-95e6-554a68b7ffdd", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "8b349d7e-557a-466d-9ed4-3f6b412a8768", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:29 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c6181551-1721-4be0-9fd5-69efef32c398", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d933e373-b0ee-447c-bd9d-60a338fa8334", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:31 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "a8c20c14-444a-424b-a015-850618e40b43", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2219499d-5d0d-4489-b7b9-0c5eea4bdbae", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:34 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f63960fe-3752-4361-b3b7-0fd9c2181c35", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "86d08e9f-b655-4fd9-a7dd-f67e7690d7d1", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:36 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9f4cae13-31a3-41d4-a0b5-39e5fc4dc7d1", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "69cf531d-f04e-4264-a48d-0caec172e2a0", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:38 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1ab232eb-a9c2-4b7c-b235-b5a5fd1dece8", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "0337b6c9-82e3-4ff6-b074-fb3e3e4e771c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:40 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "0f14c5f0-87d3-438c-b060-28607d861645", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5fbb6ce0-88ae-4f18-920a-b0369509a76d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:42 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1eda0a9f-da40-4799-81c8-434e3ffc7de7", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "93cdb828-710d-408a-94b6-96fe714785dd", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:44 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f114b8dc-e80b-4abe-8b79-ae70b8b35374", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "7b7b6fed-a2fc-4d09-888c-57b8e8e2ccbb", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:46 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ce9e8738-3225-4d98-965d-dce22c84c338", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "91713195-0f18-4817-81d9-901068d66d95", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:48 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9bbf4bd2-3dd6-414f-b0f0-f524d29cb2fe", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "553b7b84-64f1-4097-b7a1-64dfc25109dc", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:50 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "b67d8589-c711-45c5-b6de-3d13f38b2d89", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "71bbb06e-1620-4d80-8c99-6633b7b26f6b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithexpires-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:52 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "33243cc9-02aa-4209-b960-60e5d8cd5ea1", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4a81082e-f3a9-479f-ab5c-e443c7caa789", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-\",\"deletedDate\":1619647631,\"scheduledPurgeDate\":1620252431,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywithexpires-/25c8564ca6b34920935ba75bcd511270\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"vNEJIstdXjRIxgGCDqwv6Lt8o9_E5p4UFWnihf1ve2yN2Da0ZxGPcB8rvtGvSjoFy0FnGoP8heHTvhKV2M65ZWR3yKbiSIe9PKslsRCzs9DJmzF6nqVYGnR-Kb2pAEZ9RUO8-RZoOWKv8ORz71mEG-XCSPXSkCDdRsS3ekZPPqvcvvcx6zVm04n21zMuAsSNudd4OzgKZVJuEacCcgp5bCI-pKStFQEM7M70lwuvyAbgfseQQRTfc-et4U_8pSoxoqthAeBBgSaUqAqRETqBXRgPg4IzHAzc-qagvvBqb1I5k_6jLM37Tu_QQp7MeKVGdYKAySOsr_gOKh-XFSHafQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"exp\":1546300805,\"created\":1619647630,\"updated\":1619647630,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "916", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:55 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "fc46d0b3-1d0d-41e9-a6f3-18119e510ffc", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "93237960-241d-466a-adf4-519ce452eee3", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithexpires-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:07:55 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "52bdd593-dc37-42f7-9419-7add7de71b55", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "bb06f447-3902-4f7f-aac6-59eead50c06a", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "df500dae4daa7dce67f950d3cb5b8cf8" -} \ No newline at end of file + "hash": "df500dae4daa7dce67f950d3cb5b8cf8" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_a_key_with_notbefore.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_a_key_with_notbefore.json index be634fc09aff..fb10a3446f0a 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_a_key_with_notbefore.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_a_key_with_notbefore.json @@ -1,869 +1,869 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywithnotBefore-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:16 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "42b79a32-86a6-4cc3-9ef7-adecc4b45c52", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "cf03f9c8-0072-4bc4-b87b-bf8cfcedb69b", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywithnotBefore-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:16 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "42b79a32-86a6-4cc3-9ef7-adecc4b45c52", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "cf03f9c8-0072-4bc4-b87b-bf8cfcedb69b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:16 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - SCUS ProdSlices", + "x-ms-request-id": "bdddb7dd-f411-4f99-a419-8997d3cd5901" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywithnotBefore-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\",\"attributes\":{\"nbf\":1546300805}}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywithnotBefore-/2af8fb99327647779a9cdb37a3c0f637\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"v5algrCWC9BkSj4sghwEq2-gbMZKS41N__LLqSB9nSEUMRvGcmgJEmBTV_ihm_JJMryF711kir2sija94SJNt2Z94odITd1KTQbKnUpEJTlj6ZgjWwuCfobi7U7Ra5e-mVjMSVCMna2oANW0A-pB87hA8V7FG5xsPjtz1jLPRQH2lQgw7IU0UwI760TdjhvGIb4MAjl0FB3d2oy2ieZh3AOQzPPsls65cSOBCNXM-D06cCO33fqe418s480E3D4N3a9OwdpYzjVBqkVmmbMH3gGDWvk9PKgU1HVhMv3XGu9Ip5RAJasymSq3EpXKP1_GI9pYXeKbW9LYZy8Ez5DpaQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"nbf\":1546300805,\"created\":1619647576,\"updated\":1619647576,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "748", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:16 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "42b79a32-86a6-4cc3-9ef7-adecc4b45c52", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "93153c4a-783f-4fd8-bf76-da878ad0144a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywithnotBefore-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-\",\"deletedDate\":1619647577,\"scheduledPurgeDate\":1620252377,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywithnotBefore-/2af8fb99327647779a9cdb37a3c0f637\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"v5algrCWC9BkSj4sghwEq2-gbMZKS41N__LLqSB9nSEUMRvGcmgJEmBTV_ihm_JJMryF711kir2sija94SJNt2Z94odITd1KTQbKnUpEJTlj6ZgjWwuCfobi7U7Ra5e-mVjMSVCMna2oANW0A-pB87hA8V7FG5xsPjtz1jLPRQH2lQgw7IU0UwI760TdjhvGIb4MAjl0FB3d2oy2ieZh3AOQzPPsls65cSOBCNXM-D06cCO33fqe418s480E3D4N3a9OwdpYzjVBqkVmmbMH3gGDWvk9PKgU1HVhMv3XGu9Ip5RAJasymSq3EpXKP1_GI9pYXeKbW9LYZy8Ez5DpaQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"nbf\":1546300805,\"created\":1619647576,\"updated\":1619647576,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "924", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:16 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "85749fb2-50c4-48d3-82ee-70671c812af7", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "97db6417-04d6-4170-a6e2-65eb5eb814f5", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "124", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:17 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "77de1646-8ad1-402c-8c74-5edaa6b90856", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5fc45226-6d04-40d4-bbe8-2330e738187b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "124", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:17 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "bc962352-dd61-4ed5-b024-c9d8ab8f07aa", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "05396cbd-c528-4065-b7e0-fc637c9a154e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "124", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:19 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e68acb5e-f37a-4244-9d99-8848310ff3eb", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "8cc2b3b4-f8d1-4370-a4c4-aa90afe50637", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "124", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:21 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "634107ff-99a0-44ac-a004-ab6ad34590e6", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "516ac0c7-d755-4729-8e51-4d7f6b8bb0ed", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "124", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:23 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "da0a4bf1-efa9-4aaf-9652-899cab2f7dfe", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ad8594b9-de10-4080-9d9a-b57a7ed92f5c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "124", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:25 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d643256c-1ef0-4a03-8253-618da30acc1a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "706e15c4-b635-414e-a5c7-d98ad3f4e843", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "124", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:27 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "359d7013-f454-4e9e-b3b3-c16e5c03ec90", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3e6baf4d-d0c7-4e3b-ac8b-6cbc3cfe443b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "124", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:29 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "fd0e4541-3be1-4a9e-b9c5-0813a4a5854e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "1ee1fb45-6f3f-449e-9e8c-0a3eef02ee06", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "124", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:31 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "6aaada7b-a5d1-4c7e-8da6-7fd3750ef7bc", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "55e14237-4c4a-4556-91af-333c4545fbce", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "124", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:34 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "29d30fa8-e078-44cb-95de-4f892399a916", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "405ede71-b1ed-4b5e-9ffe-abdfdd970ad2", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "124", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:36 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ba58e41a-78a6-4ffb-b232-8ecbd3830b7e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c7539c97-5e7b-4964-8603-16b6852e5622", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "124", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:38 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ae675e49-b13b-43b7-afd2-64272e4328e3", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "402f4a98-8982-49da-bc42-0d9a0b88ba8e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "124", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:40 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "b92a25f1-863f-4e9d-bed3-2a3f49a204b4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b8e17919-beb9-4fe0-b45a-4851fc44a43c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "124", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:42 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "eea3bd90-021f-46e9-b6b7-ad0de479034d", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2e210f95-af6a-44c1-ad66-2a9f4035744d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "124", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:44 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e6976f6d-0aca-4028-ab8c-27c6cd715d41", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "cdbf057b-aa1b-4b00-9303-d529ed6f1c6f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "124", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:46 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "64960a4b-72d6-4fe5-a7b3-9ef0787d11a5", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "cc7c8325-e159-4a5d-abef-6c0592fa412b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "124", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:48 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "6163685e-7edd-46bc-a3b2-d7ebb93e0f62", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f5d15fdb-fbb3-49cf-8f8f-e891c6126965", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "124", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:51 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "620509f2-285f-4e48-8031-921e2218d6c5", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d9eb53ec-8960-4145-bd2a-808dd9d5d85f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "124", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:53 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "b6321456-0fb1-4fef-881d-04af91010bb6", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "1c43d20c-a318-4b40-91a3-ac1182ce9f1c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "124", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:55 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "6b3f52a3-b7f7-4af3-b602-3b19d7a8d881", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "1d19d92d-9fa5-4213-83b9-095203247d71", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "124", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:57 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "6a1e1832-fb2c-4061-8cc6-503d5bf6b61d", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ea556694-feb9-4ab9-b51d-328dfa90d9ac", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "124", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:06:59 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1660f53e-f68c-4408-8f86-a43fc829d915", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c7234201-6934-4276-b8cb-cef8533db36c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "124", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:01 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c041117c-1505-429d-b76f-c22e91c98d84", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ce5462f7-3986-4310-a373-80d791712c8a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "124", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:03 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9b1421e5-0459-44d3-b706-048fa733a56c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e2c24302-f27a-43af-8036-663a9b10f317", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "124", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:05 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "5a2e4dfd-b110-4ff8-b2c2-e3e2c0f5402a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "7920cc9e-dca9-434b-9f23-9680a7e547e1", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "124", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:07 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c4e3161c-aaa3-43d4-b9d2-42a3d862d3d8", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e14c4843-2131-48f8-bb32-ac8b422c0b84", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-\",\"deletedDate\":1619647577,\"scheduledPurgeDate\":1620252377,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywithnotBefore-/2af8fb99327647779a9cdb37a3c0f637\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"v5algrCWC9BkSj4sghwEq2-gbMZKS41N__LLqSB9nSEUMRvGcmgJEmBTV_ihm_JJMryF711kir2sija94SJNt2Z94odITd1KTQbKnUpEJTlj6ZgjWwuCfobi7U7Ra5e-mVjMSVCMna2oANW0A-pB87hA8V7FG5xsPjtz1jLPRQH2lQgw7IU0UwI760TdjhvGIb4MAjl0FB3d2oy2ieZh3AOQzPPsls65cSOBCNXM-D06cCO33fqe418s480E3D4N3a9OwdpYzjVBqkVmmbMH3gGDWvk9PKgU1HVhMv3XGu9Ip5RAJasymSq3EpXKP1_GI9pYXeKbW9LYZy8Ez5DpaQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"nbf\":1546300805,\"created\":1619647576,\"updated\":1619647576,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "924", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:09 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "8b8027bf-1e33-4475-aa0d-de5e2ddd8387", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "dc751b7d-596c-4a77-aedd-770e2fc69366", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:07:09 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "edaacb55-8348-4d84-b627-b5c8cf50c8b9", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "fcd77d5a-6126-43f3-8d4a-1cc447dd7de5", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:16 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - SCUS ProdSlices", - "x-ms-request-id": "bdddb7dd-f411-4f99-a419-8997d3cd5901" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywithnotBefore-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\",\"attributes\":{\"nbf\":1546300805}}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywithnotBefore-/2af8fb99327647779a9cdb37a3c0f637\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"v5algrCWC9BkSj4sghwEq2-gbMZKS41N__LLqSB9nSEUMRvGcmgJEmBTV_ihm_JJMryF711kir2sija94SJNt2Z94odITd1KTQbKnUpEJTlj6ZgjWwuCfobi7U7Ra5e-mVjMSVCMna2oANW0A-pB87hA8V7FG5xsPjtz1jLPRQH2lQgw7IU0UwI760TdjhvGIb4MAjl0FB3d2oy2ieZh3AOQzPPsls65cSOBCNXM-D06cCO33fqe418s480E3D4N3a9OwdpYzjVBqkVmmbMH3gGDWvk9PKgU1HVhMv3XGu9Ip5RAJasymSq3EpXKP1_GI9pYXeKbW9LYZy8Ez5DpaQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"nbf\":1546300805,\"created\":1619647576,\"updated\":1619647576,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "748", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:16 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "42b79a32-86a6-4cc3-9ef7-adecc4b45c52", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "93153c4a-783f-4fd8-bf76-da878ad0144a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywithnotBefore-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-\",\"deletedDate\":1619647577,\"scheduledPurgeDate\":1620252377,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywithnotBefore-/2af8fb99327647779a9cdb37a3c0f637\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"v5algrCWC9BkSj4sghwEq2-gbMZKS41N__LLqSB9nSEUMRvGcmgJEmBTV_ihm_JJMryF711kir2sija94SJNt2Z94odITd1KTQbKnUpEJTlj6ZgjWwuCfobi7U7Ra5e-mVjMSVCMna2oANW0A-pB87hA8V7FG5xsPjtz1jLPRQH2lQgw7IU0UwI760TdjhvGIb4MAjl0FB3d2oy2ieZh3AOQzPPsls65cSOBCNXM-D06cCO33fqe418s480E3D4N3a9OwdpYzjVBqkVmmbMH3gGDWvk9PKgU1HVhMv3XGu9Ip5RAJasymSq3EpXKP1_GI9pYXeKbW9LYZy8Ez5DpaQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"nbf\":1546300805,\"created\":1619647576,\"updated\":1619647576,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "924", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:16 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "85749fb2-50c4-48d3-82ee-70671c812af7", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "97db6417-04d6-4170-a6e2-65eb5eb814f5", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "124", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:17 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "77de1646-8ad1-402c-8c74-5edaa6b90856", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5fc45226-6d04-40d4-bbe8-2330e738187b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "124", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:17 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "bc962352-dd61-4ed5-b024-c9d8ab8f07aa", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "05396cbd-c528-4065-b7e0-fc637c9a154e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "124", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:19 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e68acb5e-f37a-4244-9d99-8848310ff3eb", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "8cc2b3b4-f8d1-4370-a4c4-aa90afe50637", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "124", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:21 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "634107ff-99a0-44ac-a004-ab6ad34590e6", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "516ac0c7-d755-4729-8e51-4d7f6b8bb0ed", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "124", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:23 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "da0a4bf1-efa9-4aaf-9652-899cab2f7dfe", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ad8594b9-de10-4080-9d9a-b57a7ed92f5c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "124", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:25 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d643256c-1ef0-4a03-8253-618da30acc1a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "706e15c4-b635-414e-a5c7-d98ad3f4e843", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "124", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:27 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "359d7013-f454-4e9e-b3b3-c16e5c03ec90", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3e6baf4d-d0c7-4e3b-ac8b-6cbc3cfe443b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "124", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:29 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "fd0e4541-3be1-4a9e-b9c5-0813a4a5854e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "1ee1fb45-6f3f-449e-9e8c-0a3eef02ee06", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "124", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:31 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "6aaada7b-a5d1-4c7e-8da6-7fd3750ef7bc", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "55e14237-4c4a-4556-91af-333c4545fbce", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "124", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:34 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "29d30fa8-e078-44cb-95de-4f892399a916", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "405ede71-b1ed-4b5e-9ffe-abdfdd970ad2", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "124", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:36 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ba58e41a-78a6-4ffb-b232-8ecbd3830b7e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c7539c97-5e7b-4964-8603-16b6852e5622", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "124", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:38 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ae675e49-b13b-43b7-afd2-64272e4328e3", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "402f4a98-8982-49da-bc42-0d9a0b88ba8e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "124", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:40 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "b92a25f1-863f-4e9d-bed3-2a3f49a204b4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b8e17919-beb9-4fe0-b45a-4851fc44a43c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "124", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:42 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "eea3bd90-021f-46e9-b6b7-ad0de479034d", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2e210f95-af6a-44c1-ad66-2a9f4035744d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "124", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:44 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e6976f6d-0aca-4028-ab8c-27c6cd715d41", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "cdbf057b-aa1b-4b00-9303-d529ed6f1c6f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "124", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:46 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "64960a4b-72d6-4fe5-a7b3-9ef0787d11a5", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "cc7c8325-e159-4a5d-abef-6c0592fa412b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "124", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:48 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "6163685e-7edd-46bc-a3b2-d7ebb93e0f62", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f5d15fdb-fbb3-49cf-8f8f-e891c6126965", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "124", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:51 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "620509f2-285f-4e48-8031-921e2218d6c5", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d9eb53ec-8960-4145-bd2a-808dd9d5d85f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "124", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:53 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "b6321456-0fb1-4fef-881d-04af91010bb6", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "1c43d20c-a318-4b40-91a3-ac1182ce9f1c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "124", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:55 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "6b3f52a3-b7f7-4af3-b602-3b19d7a8d881", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "1d19d92d-9fa5-4213-83b9-095203247d71", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "124", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:57 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "6a1e1832-fb2c-4061-8cc6-503d5bf6b61d", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ea556694-feb9-4ab9-b51d-328dfa90d9ac", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "124", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:06:59 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1660f53e-f68c-4408-8f86-a43fc829d915", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c7234201-6934-4276-b8cb-cef8533db36c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "124", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:01 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c041117c-1505-429d-b76f-c22e91c98d84", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ce5462f7-3986-4310-a373-80d791712c8a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "124", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:03 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9b1421e5-0459-44d3-b706-048fa733a56c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e2c24302-f27a-43af-8036-663a9b10f317", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "124", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:05 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "5a2e4dfd-b110-4ff8-b2c2-e3e2c0f5402a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "7920cc9e-dca9-434b-9f23-9680a7e547e1", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateakeywithnotBefore-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "124", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:07 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c4e3161c-aaa3-43d4-b9d2-42a3d862d3d8", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e14c4843-2131-48f8-bb32-ac8b422c0b84", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-\",\"deletedDate\":1619647577,\"scheduledPurgeDate\":1620252377,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateakeywithnotBefore-/2af8fb99327647779a9cdb37a3c0f637\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"v5algrCWC9BkSj4sghwEq2-gbMZKS41N__LLqSB9nSEUMRvGcmgJEmBTV_ihm_JJMryF711kir2sija94SJNt2Z94odITd1KTQbKnUpEJTlj6ZgjWwuCfobi7U7Ra5e-mVjMSVCMna2oANW0A-pB87hA8V7FG5xsPjtz1jLPRQH2lQgw7IU0UwI760TdjhvGIb4MAjl0FB3d2oy2ieZh3AOQzPPsls65cSOBCNXM-D06cCO33fqe418s480E3D4N3a9OwdpYzjVBqkVmmbMH3gGDWvk9PKgU1HVhMv3XGu9Ip5RAJasymSq3EpXKP1_GI9pYXeKbW9LYZy8Ez5DpaQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"nbf\":1546300805,\"created\":1619647576,\"updated\":1619647576,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "924", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:09 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "8b8027bf-1e33-4475-aa0d-de5e2ddd8387", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "dc751b7d-596c-4a77-aedd-770e2fc69366", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateakeywithnotBefore-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:07:09 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "edaacb55-8348-4d84-b627-b5c8cf50c8b9", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "fcd77d5a-6126-43f3-8d4a-1cc447dd7de5", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "63d519a9e041801d92d4eb005e2ef567" -} \ No newline at end of file + "hash": "63d519a9e041801d92d4eb005e2ef567" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_a_rsa_key.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_a_rsa_key.json index a7e6e0736b14..05edee7d17ba 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_a_rsa_key.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_a_rsa_key.json @@ -1,464 +1,464 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkey-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:36 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9c42121d-15a0-4a03-be86-5156ab213fac", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2158e942-6047-4843-bfa9-7c6eb0c16c94", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkey-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:36 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9c42121d-15a0-4a03-be86-5156ab213fac", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2158e942-6047-4843-bfa9-7c6eb0c16c94", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:36 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", + "x-ms-request-id": "cd7787fa-9afc-44d7-b558-d7a44e924401" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkey-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\"}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkey-/5c68e73d27104ca9b18370fb113f1f63\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"5mNDVB4rcY_1FdtkR18usxSkgd4n79t3KDtCwHJaNpnRY0nhluabcWsN_6Cb-EuELxqbTYM3TD8WQPcIDsjApwwRsa2UG40PTdam_dwLYyJjqogCH_hXRv7iv552vy8gUZX8eHsKl1HqQkigeWTFSQS5DmI9qBtsQCjvLGrnmHRopJ5OSTtor90eSKsd3gTB6EBRkGSVLGMVP5HuMmy72WE6YjQK0VPxqA0AW2Awvr_rYCriSHxhZQQUuB3iFVkdvAQyJsHwJSQkKbhyVZ3TZyyhFoQGDXMxzXLuaCMuluWRvCvjpjeqCUjFMVK9dqFHsmCnGVXB3xXmurpLlLSIPQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647417,\"updated\":1619647417,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "720", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:37 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9c42121d-15a0-4a03-be86-5156ab213fac", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "19e07ec0-7327-4af3-961c-ff7efca91b1a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-\",\"deletedDate\":1619647417,\"scheduledPurgeDate\":1620252217,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkey-/5c68e73d27104ca9b18370fb113f1f63\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"5mNDVB4rcY_1FdtkR18usxSkgd4n79t3KDtCwHJaNpnRY0nhluabcWsN_6Cb-EuELxqbTYM3TD8WQPcIDsjApwwRsa2UG40PTdam_dwLYyJjqogCH_hXRv7iv552vy8gUZX8eHsKl1HqQkigeWTFSQS5DmI9qBtsQCjvLGrnmHRopJ5OSTtor90eSKsd3gTB6EBRkGSVLGMVP5HuMmy72WE6YjQK0VPxqA0AW2Awvr_rYCriSHxhZQQUuB3iFVkdvAQyJsHwJSQkKbhyVZ3TZyyhFoQGDXMxzXLuaCMuluWRvCvjpjeqCUjFMVK9dqFHsmCnGVXB3xXmurpLlLSIPQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647417,\"updated\":1619647417,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "885", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:37 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "766ac028-aa36-4faf-b5c6-8337b0aab955", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e19c2d64-821f-43e4-9db2-ab0940a4ea2c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:37 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "816ae900-ad7c-4b6f-be77-33435dc0e694", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "623e6baf-38bf-40eb-b2a0-76221e025136", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:37 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "80835987-186d-4e9d-b953-e94b68ed8bcd", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f51f696a-1d31-46a5-b56c-e7067061f6c4", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:39 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ff41bdfb-6f18-40b4-b558-f8583b0cbec0", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "6d198337-0cb4-4618-8ac3-359ed5b12dfe", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:41 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "6879caf8-c23b-4f9f-adcd-0aada087c4e2", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "972531d5-921b-4c45-b411-8144a0b7725c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:43 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "cf7ab218-bb3b-4d1b-937c-1fcac1c97a79", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "8f91e654-99c4-41b4-b468-07f4705a9ae0", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:45 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "7576523a-c0dc-40fd-bc23-4a1c44a9d647", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "9eedaf7c-f2ab-4d7a-8954-5d11dff9906a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:47 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "cff3b63e-0649-42d8-bee2-417dbdd4c2a7", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "83421d67-c487-45d8-8615-4efd8b3792a1", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:50 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "4200d923-aa9f-459d-8bee-042d2d07b142", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "119660be-eaa3-4eec-91a1-ced38f6cd2a8", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:52 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d618dd11-fe89-408f-8b79-6ef4e71547ef", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "587c9289-d538-479a-945b-a084c130475a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:54 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e0312d2f-2dbe-48c2-93ee-7eaf939b07e5", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a9e079e5-83b4-4f86-b803-6bdd4cde14f2", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:56 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "aba0f609-e8a7-4a2d-84bb-6338c256d722", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "34da5d40-5633-444e-8ba3-8e86ebc0155e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-\",\"deletedDate\":1619647417,\"scheduledPurgeDate\":1620252217,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkey-/5c68e73d27104ca9b18370fb113f1f63\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"5mNDVB4rcY_1FdtkR18usxSkgd4n79t3KDtCwHJaNpnRY0nhluabcWsN_6Cb-EuELxqbTYM3TD8WQPcIDsjApwwRsa2UG40PTdam_dwLYyJjqogCH_hXRv7iv552vy8gUZX8eHsKl1HqQkigeWTFSQS5DmI9qBtsQCjvLGrnmHRopJ5OSTtor90eSKsd3gTB6EBRkGSVLGMVP5HuMmy72WE6YjQK0VPxqA0AW2Awvr_rYCriSHxhZQQUuB3iFVkdvAQyJsHwJSQkKbhyVZ3TZyyhFoQGDXMxzXLuaCMuluWRvCvjpjeqCUjFMVK9dqFHsmCnGVXB3xXmurpLlLSIPQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647417,\"updated\":1619647417,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "885", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:58 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "60b21b29-9484-476c-961a-70790c41b59e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c4e64c3f-2872-4036-8071-961225170f15", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:03:58 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "b3bfe032-54c3-413b-a4ff-c4a1cb099bb4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "88377efa-e9b7-45f7-9ea3-983a1036b893", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:36 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", - "x-ms-request-id": "cd7787fa-9afc-44d7-b558-d7a44e924401" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkey-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\"}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkey-/5c68e73d27104ca9b18370fb113f1f63\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"5mNDVB4rcY_1FdtkR18usxSkgd4n79t3KDtCwHJaNpnRY0nhluabcWsN_6Cb-EuELxqbTYM3TD8WQPcIDsjApwwRsa2UG40PTdam_dwLYyJjqogCH_hXRv7iv552vy8gUZX8eHsKl1HqQkigeWTFSQS5DmI9qBtsQCjvLGrnmHRopJ5OSTtor90eSKsd3gTB6EBRkGSVLGMVP5HuMmy72WE6YjQK0VPxqA0AW2Awvr_rYCriSHxhZQQUuB3iFVkdvAQyJsHwJSQkKbhyVZ3TZyyhFoQGDXMxzXLuaCMuluWRvCvjpjeqCUjFMVK9dqFHsmCnGVXB3xXmurpLlLSIPQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647417,\"updated\":1619647417,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "720", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:37 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9c42121d-15a0-4a03-be86-5156ab213fac", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "19e07ec0-7327-4af3-961c-ff7efca91b1a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-\",\"deletedDate\":1619647417,\"scheduledPurgeDate\":1620252217,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkey-/5c68e73d27104ca9b18370fb113f1f63\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"5mNDVB4rcY_1FdtkR18usxSkgd4n79t3KDtCwHJaNpnRY0nhluabcWsN_6Cb-EuELxqbTYM3TD8WQPcIDsjApwwRsa2UG40PTdam_dwLYyJjqogCH_hXRv7iv552vy8gUZX8eHsKl1HqQkigeWTFSQS5DmI9qBtsQCjvLGrnmHRopJ5OSTtor90eSKsd3gTB6EBRkGSVLGMVP5HuMmy72WE6YjQK0VPxqA0AW2Awvr_rYCriSHxhZQQUuB3iFVkdvAQyJsHwJSQkKbhyVZ3TZyyhFoQGDXMxzXLuaCMuluWRvCvjpjeqCUjFMVK9dqFHsmCnGVXB3xXmurpLlLSIPQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647417,\"updated\":1619647417,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "885", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:37 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "766ac028-aa36-4faf-b5c6-8337b0aab955", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e19c2d64-821f-43e4-9db2-ab0940a4ea2c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:37 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "816ae900-ad7c-4b6f-be77-33435dc0e694", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "623e6baf-38bf-40eb-b2a0-76221e025136", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:37 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "80835987-186d-4e9d-b953-e94b68ed8bcd", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f51f696a-1d31-46a5-b56c-e7067061f6c4", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:39 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ff41bdfb-6f18-40b4-b558-f8583b0cbec0", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "6d198337-0cb4-4618-8ac3-359ed5b12dfe", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:41 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "6879caf8-c23b-4f9f-adcd-0aada087c4e2", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "972531d5-921b-4c45-b411-8144a0b7725c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:43 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "cf7ab218-bb3b-4d1b-937c-1fcac1c97a79", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "8f91e654-99c4-41b4-b468-07f4705a9ae0", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:45 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "7576523a-c0dc-40fd-bc23-4a1c44a9d647", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "9eedaf7c-f2ab-4d7a-8954-5d11dff9906a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:47 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "cff3b63e-0649-42d8-bee2-417dbdd4c2a7", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "83421d67-c487-45d8-8615-4efd8b3792a1", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:50 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "4200d923-aa9f-459d-8bee-042d2d07b142", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "119660be-eaa3-4eec-91a1-ced38f6cd2a8", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:52 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d618dd11-fe89-408f-8b79-6ef4e71547ef", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "587c9289-d538-479a-945b-a084c130475a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:54 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e0312d2f-2dbe-48c2-93ee-7eaf939b07e5", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a9e079e5-83b4-4f86-b803-6bdd4cde14f2", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:56 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "aba0f609-e8a7-4a2d-84bb-6338c256d722", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "34da5d40-5633-444e-8ba3-8e86ebc0155e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-\",\"deletedDate\":1619647417,\"scheduledPurgeDate\":1620252217,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkey-/5c68e73d27104ca9b18370fb113f1f63\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"5mNDVB4rcY_1FdtkR18usxSkgd4n79t3KDtCwHJaNpnRY0nhluabcWsN_6Cb-EuELxqbTYM3TD8WQPcIDsjApwwRsa2UG40PTdam_dwLYyJjqogCH_hXRv7iv552vy8gUZX8eHsKl1HqQkigeWTFSQS5DmI9qBtsQCjvLGrnmHRopJ5OSTtor90eSKsd3gTB6EBRkGSVLGMVP5HuMmy72WE6YjQK0VPxqA0AW2Awvr_rYCriSHxhZQQUuB3iFVkdvAQyJsHwJSQkKbhyVZ3TZyyhFoQGDXMxzXLuaCMuluWRvCvjpjeqCUjFMVK9dqFHsmCnGVXB3xXmurpLlLSIPQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647417,\"updated\":1619647417,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "885", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:58 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "60b21b29-9484-476c-961a-70790c41b59e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c4e64c3f-2872-4036-8071-961225170f15", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:03:58 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "b3bfe032-54c3-413b-a4ff-c4a1cb099bb4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "88377efa-e9b7-45f7-9ea3-983a1036b893", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "8e625c910e3e2009435d88565911e0ce" -} \ No newline at end of file + "hash": "8e625c910e3e2009435d88565911e0ce" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_a_rsa_key_with_public_exponent.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_a_rsa_key_with_public_exponent.json index 36870d5548b0..5a0980dcf096 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_a_rsa_key_with_public_exponent.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_a_rsa_key_with_public_exponent.json @@ -1,437 +1,437 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:20 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ffd4d2bd-c9a3-4382-97e1-83a5a4087781", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e8201f0e-7567-43ca-8c95-8ee8c92b45cd", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:20 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ffd4d2bd-c9a3-4382-97e1-83a5a4087781", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e8201f0e-7567-43ca-8c95-8ee8c92b45cd", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:21 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", + "x-ms-request-id": "2581370d-525c-449a-8781-7cf3fc1a5401" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\",\"public_exponent\":3,\"attributes\":{}}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-/8ed8f26bcece4c64af909ddcf2c8147a\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"oEH6uqM0ynkHPmI5J-J9es9RQmTgOqoSqigN6sj6AXEInSaLQ82IGbg36eVm9L3iUOXbPZCdwxModXxXZFUaY791hkKG2QAi-N6_0X2-aYOUHncHz9zfFrrOm38V28Lwhqzhwo-ufiNxOB-uF-xsnIEhVCeHyhB_8-UP2uQ7LkVCHRPe_877M82fQGkTyq2BIMgTn-h49jLAOqaNh0IN2IuBdtlAwZqfci9A34FP0paa5Luosz89BxUgYNxD9G7qX_lb5lfeyW0gHQnpiTKdoHWwEZ_ROmQdY6HThN0tk2Mw3Gf_qLbIhb-Oo0b5LJuV96x_Dta1uxv8VZ2on6r7vQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647461,\"updated\":1619647461,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "739", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:21 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ffd4d2bd-c9a3-4382-97e1-83a5a4087781", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ab1e6f78-3f50-4e4d-bb7d-3d56ed349f8f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-\",\"deletedDate\":1619647462,\"scheduledPurgeDate\":1620252262,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-/8ed8f26bcece4c64af909ddcf2c8147a\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"oEH6uqM0ynkHPmI5J-J9es9RQmTgOqoSqigN6sj6AXEInSaLQ82IGbg36eVm9L3iUOXbPZCdwxModXxXZFUaY791hkKG2QAi-N6_0X2-aYOUHncHz9zfFrrOm38V28Lwhqzhwo-ufiNxOB-uF-xsnIEhVCeHyhB_8-UP2uQ7LkVCHRPe_877M82fQGkTyq2BIMgTn-h49jLAOqaNh0IN2IuBdtlAwZqfci9A34FP0paa5Luosz89BxUgYNxD9G7qX_lb5lfeyW0gHQnpiTKdoHWwEZ_ROmQdY6HThN0tk2Mw3Gf_qLbIhb-Oo0b5LJuV96x_Dta1uxv8VZ2on6r7vQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647461,\"updated\":1619647461,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "923", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:22 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ee95798b-9334-404a-a8a3-bffc033b7c83", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "fe1b0363-cec6-4323-a5a5-470793cad46b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithpublicexponent-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "132", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:22 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "3c2fd38b-e2bc-4dde-af51-98e41c5b02e4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "0da058d4-cecb-46b9-9379-342128becd89", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithpublicexponent-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "132", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:22 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2a1a68ad-3a22-41e0-b9d5-2e3c07b1fab8", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "9235f830-4502-4003-9771-31e13918151e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithpublicexponent-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "132", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:24 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "62fbd55b-eb26-41c3-9f96-1c8a824e5504", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "6c98a4c3-6ec1-4e79-8ca2-1d9514b56fb0", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithpublicexponent-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "132", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:27 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ae4c4fc0-1a8c-4606-a142-dc20bd68f4dc", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "fdaf8c43-1ba1-436c-8996-07072d5029fb", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithpublicexponent-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "132", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:29 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9a64d4c4-4f20-4f26-a9fa-8bfdb6c8d75e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "0f3982b3-d4a2-482e-9e93-075401b2fee9", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithpublicexponent-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "132", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:31 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "8eb63000-e10e-41d6-bbe0-bcbef49d28a1", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f78808f2-ddad-4a3a-aa1b-ff57ade47842", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithpublicexponent-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "132", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:33 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "df92388c-487a-4456-90c8-74840512d504", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "bbf9b982-a51f-4f43-b383-8a59a5347071", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithpublicexponent-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "132", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:35 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "55fc4eac-6a74-45a2-9016-cc38a4278506", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "fd91b153-e0d4-43bd-82f1-43ecf9db41aa", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithpublicexponent-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "132", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:37 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "57bd1c58-ef3b-45be-966b-2f3d0793b7f4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f38c5c01-1d9e-419b-a681-84a405d37738", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithpublicexponent-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "132", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:40 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "7d2ed4dc-f991-4f38-b0d9-e83185c015e9", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b0954eb4-d69e-466e-9e44-6402c7d79d46", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-\",\"deletedDate\":1619647462,\"scheduledPurgeDate\":1620252262,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-/8ed8f26bcece4c64af909ddcf2c8147a\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"oEH6uqM0ynkHPmI5J-J9es9RQmTgOqoSqigN6sj6AXEInSaLQ82IGbg36eVm9L3iUOXbPZCdwxModXxXZFUaY791hkKG2QAi-N6_0X2-aYOUHncHz9zfFrrOm38V28Lwhqzhwo-ufiNxOB-uF-xsnIEhVCeHyhB_8-UP2uQ7LkVCHRPe_877M82fQGkTyq2BIMgTn-h49jLAOqaNh0IN2IuBdtlAwZqfci9A34FP0paa5Luosz89BxUgYNxD9G7qX_lb5lfeyW0gHQnpiTKdoHWwEZ_ROmQdY6HThN0tk2Mw3Gf_qLbIhb-Oo0b5LJuV96x_Dta1uxv8VZ2on6r7vQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647461,\"updated\":1619647461,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "923", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:41 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "b9b993ac-9821-44ee-9647-cddd6d2331b5", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "05107869-9737-4bdb-84a0-09333869f1e7", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:04:41 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "76ececf8-0cc1-4cec-b122-d5b302de876d", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "65966931-e7bf-4dfc-b94f-12223cbbfe31", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:21 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", - "x-ms-request-id": "2581370d-525c-449a-8781-7cf3fc1a5401" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\",\"public_exponent\":3,\"attributes\":{}}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-/8ed8f26bcece4c64af909ddcf2c8147a\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"oEH6uqM0ynkHPmI5J-J9es9RQmTgOqoSqigN6sj6AXEInSaLQ82IGbg36eVm9L3iUOXbPZCdwxModXxXZFUaY791hkKG2QAi-N6_0X2-aYOUHncHz9zfFrrOm38V28Lwhqzhwo-ufiNxOB-uF-xsnIEhVCeHyhB_8-UP2uQ7LkVCHRPe_877M82fQGkTyq2BIMgTn-h49jLAOqaNh0IN2IuBdtlAwZqfci9A34FP0paa5Luosz89BxUgYNxD9G7qX_lb5lfeyW0gHQnpiTKdoHWwEZ_ROmQdY6HThN0tk2Mw3Gf_qLbIhb-Oo0b5LJuV96x_Dta1uxv8VZ2on6r7vQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647461,\"updated\":1619647461,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "739", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:21 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ffd4d2bd-c9a3-4382-97e1-83a5a4087781", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ab1e6f78-3f50-4e4d-bb7d-3d56ed349f8f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-\",\"deletedDate\":1619647462,\"scheduledPurgeDate\":1620252262,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-/8ed8f26bcece4c64af909ddcf2c8147a\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"oEH6uqM0ynkHPmI5J-J9es9RQmTgOqoSqigN6sj6AXEInSaLQ82IGbg36eVm9L3iUOXbPZCdwxModXxXZFUaY791hkKG2QAi-N6_0X2-aYOUHncHz9zfFrrOm38V28Lwhqzhwo-ufiNxOB-uF-xsnIEhVCeHyhB_8-UP2uQ7LkVCHRPe_877M82fQGkTyq2BIMgTn-h49jLAOqaNh0IN2IuBdtlAwZqfci9A34FP0paa5Luosz89BxUgYNxD9G7qX_lb5lfeyW0gHQnpiTKdoHWwEZ_ROmQdY6HThN0tk2Mw3Gf_qLbIhb-Oo0b5LJuV96x_Dta1uxv8VZ2on6r7vQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647461,\"updated\":1619647461,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "923", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:22 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ee95798b-9334-404a-a8a3-bffc033b7c83", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "fe1b0363-cec6-4323-a5a5-470793cad46b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithpublicexponent-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "132", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:22 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "3c2fd38b-e2bc-4dde-af51-98e41c5b02e4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "0da058d4-cecb-46b9-9379-342128becd89", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithpublicexponent-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "132", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:22 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2a1a68ad-3a22-41e0-b9d5-2e3c07b1fab8", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "9235f830-4502-4003-9771-31e13918151e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithpublicexponent-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "132", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:24 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "62fbd55b-eb26-41c3-9f96-1c8a824e5504", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "6c98a4c3-6ec1-4e79-8ca2-1d9514b56fb0", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithpublicexponent-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "132", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:27 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ae4c4fc0-1a8c-4606-a142-dc20bd68f4dc", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "fdaf8c43-1ba1-436c-8996-07072d5029fb", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithpublicexponent-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "132", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:29 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9a64d4c4-4f20-4f26-a9fa-8bfdb6c8d75e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "0f3982b3-d4a2-482e-9e93-075401b2fee9", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithpublicexponent-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "132", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:31 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "8eb63000-e10e-41d6-bbe0-bcbef49d28a1", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f78808f2-ddad-4a3a-aa1b-ff57ade47842", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithpublicexponent-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "132", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:33 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "df92388c-487a-4456-90c8-74840512d504", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "bbf9b982-a51f-4f43-b383-8a59a5347071", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithpublicexponent-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "132", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:35 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "55fc4eac-6a74-45a2-9016-cc38a4278506", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "fd91b153-e0d4-43bd-82f1-43ecf9db41aa", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithpublicexponent-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "132", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:37 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "57bd1c58-ef3b-45be-966b-2f3d0793b7f4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f38c5c01-1d9e-419b-a681-84a405d37738", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithpublicexponent-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "132", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:40 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "7d2ed4dc-f991-4f38-b0d9-e83185c015e9", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b0954eb4-d69e-466e-9e44-6402c7d79d46", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-\",\"deletedDate\":1619647462,\"scheduledPurgeDate\":1620252262,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-/8ed8f26bcece4c64af909ddcf2c8147a\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"oEH6uqM0ynkHPmI5J-J9es9RQmTgOqoSqigN6sj6AXEInSaLQ82IGbg36eVm9L3iUOXbPZCdwxModXxXZFUaY791hkKG2QAi-N6_0X2-aYOUHncHz9zfFrrOm38V28Lwhqzhwo-ufiNxOB-uF-xsnIEhVCeHyhB_8-UP2uQ7LkVCHRPe_877M82fQGkTyq2BIMgTn-h49jLAOqaNh0IN2IuBdtlAwZqfci9A34FP0paa5Luosz89BxUgYNxD9G7qX_lb5lfeyW0gHQnpiTKdoHWwEZ_ROmQdY6HThN0tk2Mw3Gf_qLbIhb-Oo0b5LJuV96x_Dta1uxv8VZ2on6r7vQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647461,\"updated\":1619647461,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "923", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:41 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "b9b993ac-9821-44ee-9647-cddd6d2331b5", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "05107869-9737-4bdb-84a0-09333869f1e7", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithpublicexponent-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:04:41 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "76ececf8-0cc1-4cec-b122-d5b302de876d", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "65966931-e7bf-4dfc-b94f-12223cbbfe31", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "84cc5954add884dc386d56c7429f6c26" -} \ No newline at end of file + "hash": "84cc5954add884dc386d56c7429f6c26" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_a_rsa_key_with_size.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_a_rsa_key_with_size.json index 9d801cfd2eee..510f01a79984 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_a_rsa_key_with_size.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_a_rsa_key_with_size.json @@ -1,464 +1,464 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkeywithsize-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:58 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c42fd92b-a95c-4e82-abc8-d23ffa6be0ed", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5d6a40e2-c79e-4c35-8fd0-999254be8f43", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkeywithsize-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:58 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c42fd92b-a95c-4e82-abc8-d23ffa6be0ed", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5d6a40e2-c79e-4c35-8fd0-999254be8f43", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:58 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", + "x-ms-request-id": "2581370d-525c-449a-8781-7cf3f9175401" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkeywithsize-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\",\"key_size\":2048,\"attributes\":{}}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkeywithsize-/37c900a5499744838a14dbdca8dc2658\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"uYdn95Og-9Q1klYRg2JaMMbI9mch57TmHsvgcRggyp76q3bKfiKF_LwQgv8QVz6Er2ZPYI7epAiiaECX3UrMlr7uwvreoqq86URfAlXkelWCh1TDdIL0IdpEdU4U1X6U8hj4g5ZRvPzg3cB1FTcForbhNwnRaGmIMAJhcVCQ4sy1EaltFiQt4e886rMrpOYeVwJQmXUn7m0YEugoAsAvv8Xy6TyNxcS5iX7d1A0VEbdZ2uGj8MiQ1n1nKgcM1mcWvGusZGHldGuvYLyMLCn1pfCfih9q_8yg6GyZSAjWb_5P37X29AxjVKrcF7Q-me371j0Y16LqCiWn_V61wnxHtQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647439,\"updated\":1619647439,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "728", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:58 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c42fd92b-a95c-4e82-abc8-d23ffa6be0ed", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "1ad9f70b-1776-4432-8348-86808ae2750f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkeywithsize-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-\",\"deletedDate\":1619647439,\"scheduledPurgeDate\":1620252239,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkeywithsize-/37c900a5499744838a14dbdca8dc2658\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"uYdn95Og-9Q1klYRg2JaMMbI9mch57TmHsvgcRggyp76q3bKfiKF_LwQgv8QVz6Er2ZPYI7epAiiaECX3UrMlr7uwvreoqq86URfAlXkelWCh1TDdIL0IdpEdU4U1X6U8hj4g5ZRvPzg3cB1FTcForbhNwnRaGmIMAJhcVCQ4sy1EaltFiQt4e886rMrpOYeVwJQmXUn7m0YEugoAsAvv8Xy6TyNxcS5iX7d1A0VEbdZ2uGj8MiQ1n1nKgcM1mcWvGusZGHldGuvYLyMLCn1pfCfih9q_8yg6GyZSAjWb_5P37X29AxjVKrcF7Q-me371j0Y16LqCiWn_V61wnxHtQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647439,\"updated\":1619647439,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "901", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:58 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "a2b5d36b-07c0-42bb-aca6-b2ae777a00dc", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "86a5b438-ea0d-4a6f-af36-752959f9d644", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithsize-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:58 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d8587242-a920-4835-9fb1-31aaa56420c2", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "34cd467b-8c98-48cc-8ee3-1c4b74a1d294", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithsize-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:03:59 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "4cae57d3-c90d-4e41-8aee-a98b7f08d496", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f3be2e5d-38ea-40f1-b2ff-e6b05b8a8ec5", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithsize-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:01 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "38aec243-1d85-4f9f-a021-157c559e22e4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "0a6a03a6-2ac1-4abf-bf64-9f29bd11f1bc", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithsize-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:03 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ccca9037-89d2-4aa2-b7ba-c210576f808f", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5522388d-c24e-4b5e-9008-a33d9e0e6c3d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithsize-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:05 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "cb9d3a4c-d358-4187-b4a2-5ea9a0465292", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "cf522226-542c-4cb3-a390-ea7b4d80e369", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithsize-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:08 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "794ece84-6c59-4d2e-aa15-90cfec3b7357", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e7a8e7f9-d3a9-47f3-9eb7-20bdc34bee0d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithsize-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:10 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "320f9427-3c97-4ac1-8441-c9bcbf96e130", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "7a0b126b-143b-48a2-8945-46a75c79338e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithsize-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:12 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f271deba-3e74-42d3-9f91-f19946f11364", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3424ceb3-3168-44ef-af50-2136bbeebb71", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithsize-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:14 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "5d91505e-e157-4cef-bc07-7638426c3f6c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e3246d7c-1d73-4bc9-8bde-245c7380b21e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithsize-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:16 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "13bef76a-ca47-406f-9e66-e5ffce5ed294", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e57c8823-1a34-43bb-8a81-603cd6557d07", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithsize-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:18 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2f73d9ea-35bf-45b0-8d2a-ebea25b9c737", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "98276d14-6e17-41d2-bcc7-52666d3295bd", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-\",\"deletedDate\":1619647439,\"scheduledPurgeDate\":1620252239,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkeywithsize-/37c900a5499744838a14dbdca8dc2658\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"uYdn95Og-9Q1klYRg2JaMMbI9mch57TmHsvgcRggyp76q3bKfiKF_LwQgv8QVz6Er2ZPYI7epAiiaECX3UrMlr7uwvreoqq86URfAlXkelWCh1TDdIL0IdpEdU4U1X6U8hj4g5ZRvPzg3cB1FTcForbhNwnRaGmIMAJhcVCQ4sy1EaltFiQt4e886rMrpOYeVwJQmXUn7m0YEugoAsAvv8Xy6TyNxcS5iX7d1A0VEbdZ2uGj8MiQ1n1nKgcM1mcWvGusZGHldGuvYLyMLCn1pfCfih9q_8yg6GyZSAjWb_5P37X29AxjVKrcF7Q-me371j0Y16LqCiWn_V61wnxHtQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647439,\"updated\":1619647439,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "901", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:20 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d17e432a-771c-4f4f-8e17-4000cfb98d06", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "0e2347a3-9cfe-46b9-978b-696304c935e5", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:04:20 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f662d4dc-f49f-4e0c-8055-f99184c266a9", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "30e9609b-fc2b-4799-88b6-6135fdd6485f", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:58 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", - "x-ms-request-id": "2581370d-525c-449a-8781-7cf3f9175401" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkeywithsize-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\",\"key_size\":2048,\"attributes\":{}}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkeywithsize-/37c900a5499744838a14dbdca8dc2658\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"uYdn95Og-9Q1klYRg2JaMMbI9mch57TmHsvgcRggyp76q3bKfiKF_LwQgv8QVz6Er2ZPYI7epAiiaECX3UrMlr7uwvreoqq86URfAlXkelWCh1TDdIL0IdpEdU4U1X6U8hj4g5ZRvPzg3cB1FTcForbhNwnRaGmIMAJhcVCQ4sy1EaltFiQt4e886rMrpOYeVwJQmXUn7m0YEugoAsAvv8Xy6TyNxcS5iX7d1A0VEbdZ2uGj8MiQ1n1nKgcM1mcWvGusZGHldGuvYLyMLCn1pfCfih9q_8yg6GyZSAjWb_5P37X29AxjVKrcF7Q-me371j0Y16LqCiWn_V61wnxHtQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647439,\"updated\":1619647439,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "728", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:58 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c42fd92b-a95c-4e82-abc8-d23ffa6be0ed", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "1ad9f70b-1776-4432-8348-86808ae2750f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkeywithsize-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-\",\"deletedDate\":1619647439,\"scheduledPurgeDate\":1620252239,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkeywithsize-/37c900a5499744838a14dbdca8dc2658\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"uYdn95Og-9Q1klYRg2JaMMbI9mch57TmHsvgcRggyp76q3bKfiKF_LwQgv8QVz6Er2ZPYI7epAiiaECX3UrMlr7uwvreoqq86URfAlXkelWCh1TDdIL0IdpEdU4U1X6U8hj4g5ZRvPzg3cB1FTcForbhNwnRaGmIMAJhcVCQ4sy1EaltFiQt4e886rMrpOYeVwJQmXUn7m0YEugoAsAvv8Xy6TyNxcS5iX7d1A0VEbdZ2uGj8MiQ1n1nKgcM1mcWvGusZGHldGuvYLyMLCn1pfCfih9q_8yg6GyZSAjWb_5P37X29AxjVKrcF7Q-me371j0Y16LqCiWn_V61wnxHtQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647439,\"updated\":1619647439,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "901", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:58 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "a2b5d36b-07c0-42bb-aca6-b2ae777a00dc", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "86a5b438-ea0d-4a6f-af36-752959f9d644", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithsize-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:58 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d8587242-a920-4835-9fb1-31aaa56420c2", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "34cd467b-8c98-48cc-8ee3-1c4b74a1d294", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithsize-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:03:59 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "4cae57d3-c90d-4e41-8aee-a98b7f08d496", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f3be2e5d-38ea-40f1-b2ff-e6b05b8a8ec5", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithsize-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:01 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "38aec243-1d85-4f9f-a021-157c559e22e4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "0a6a03a6-2ac1-4abf-bf64-9f29bd11f1bc", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithsize-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:03 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ccca9037-89d2-4aa2-b7ba-c210576f808f", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5522388d-c24e-4b5e-9008-a33d9e0e6c3d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithsize-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:05 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "cb9d3a4c-d358-4187-b4a2-5ea9a0465292", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "cf522226-542c-4cb3-a390-ea7b4d80e369", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithsize-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:08 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "794ece84-6c59-4d2e-aa15-90cfec3b7357", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e7a8e7f9-d3a9-47f3-9eb7-20bdc34bee0d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithsize-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:10 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "320f9427-3c97-4ac1-8441-c9bcbf96e130", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "7a0b126b-143b-48a2-8945-46a75c79338e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithsize-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:12 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f271deba-3e74-42d3-9f91-f19946f11364", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3424ceb3-3168-44ef-af50-2136bbeebb71", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithsize-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:14 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "5d91505e-e157-4cef-bc07-7638426c3f6c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e3246d7c-1d73-4bc9-8bde-245c7380b21e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithsize-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:16 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "13bef76a-ca47-406f-9e66-e5ffce5ed294", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e57c8823-1a34-43bb-8a81-603cd6557d07", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateaRSAkeywithsize-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:18 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2f73d9ea-35bf-45b0-8d2a-ebea25b9c737", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "98276d14-6e17-41d2-bcc7-52666d3295bd", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-\",\"deletedDate\":1619647439,\"scheduledPurgeDate\":1620252239,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateaRSAkeywithsize-/37c900a5499744838a14dbdca8dc2658\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"uYdn95Og-9Q1klYRg2JaMMbI9mch57TmHsvgcRggyp76q3bKfiKF_LwQgv8QVz6Er2ZPYI7epAiiaECX3UrMlr7uwvreoqq86URfAlXkelWCh1TDdIL0IdpEdU4U1X6U8hj4g5ZRvPzg3cB1FTcForbhNwnRaGmIMAJhcVCQ4sy1EaltFiQt4e886rMrpOYeVwJQmXUn7m0YEugoAsAvv8Xy6TyNxcS5iX7d1A0VEbdZ2uGj8MiQ1n1nKgcM1mcWvGusZGHldGuvYLyMLCn1pfCfih9q_8yg6GyZSAjWb_5P37X29AxjVKrcF7Q-me371j0Y16LqCiWn_V61wnxHtQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647439,\"updated\":1619647439,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "901", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:20 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d17e432a-771c-4f4f-8e17-4000cfb98d06", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "0e2347a3-9cfe-46b9-978b-696304c935e5", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateaRSAkeywithsize-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:04:20 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f662d4dc-f49f-4e0c-8055-f99184c266a9", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "30e9609b-fc2b-4799-88b6-6135fdd6485f", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "55973b746ee9a62f62c3ec9cf3565343" -} \ No newline at end of file + "hash": "55973b746ee9a62f62c3ec9cf3565343" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_an_ec_key.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_an_ec_key.json index 1e94a0415e67..4012e7d82627 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_an_ec_key.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_an_ec_key.json @@ -1,734 +1,734 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanECkey-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:42 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "067f42db-32ce-4b69-854e-346f8bf205f3", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c7293265-a53c-4541-aa80-11c3ac6e9279", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanECkey-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:42 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "067f42db-32ce-4b69-854e-346f8bf205f3", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c7293265-a53c-4541-aa80-11c3ac6e9279", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:42 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", + "x-ms-request-id": "2581370d-525c-449a-8781-7cf3ec1d5401" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanECkey-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"EC\"}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanECkey-/970837969d2446d9a5e2247b1e992c1a\",\"kty\":\"EC\",\"key_ops\":[\"sign\",\"verify\"],\"crv\":\"P-256\",\"x\":\"clKxRTC6u1VnJEqS7Hqjhlf0iuTK4n-7i8dSPS-pAp4\",\"y\":\"eEw-1XLJWslcQKby5sx-hA0G82bJb24EwCr9rB1-nqA\"},\"attributes\":{\"enabled\":true,\"created\":1619647482,\"updated\":1619647482,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "432", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:42 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "067f42db-32ce-4b69-854e-346f8bf205f3", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "8c67621e-5031-4dcf-8d2b-b02e61f53476", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanECkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-\",\"deletedDate\":1619647482,\"scheduledPurgeDate\":1620252282,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanECkey-/970837969d2446d9a5e2247b1e992c1a\",\"kty\":\"EC\",\"key_ops\":[\"sign\",\"verify\"],\"crv\":\"P-256\",\"x\":\"clKxRTC6u1VnJEqS7Hqjhlf0iuTK4n-7i8dSPS-pAp4\",\"y\":\"eEw-1XLJWslcQKby5sx-hA0G82bJb24EwCr9rB1-nqA\"},\"attributes\":{\"enabled\":true,\"created\":1619647482,\"updated\":1619647482,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "598", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:42 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d747d47b-9079-4f54-b3c0-3eb1c0730543", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "79d5126a-2909-4237-add7-baba5eb2dcbb", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:42 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f0b282b4-61b1-4baa-9aba-b8d8e9f5f4dd", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "95f25088-b104-4cc4-8802-f5396f685b07", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:42 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "bc680de7-3936-4bfd-b29d-f23d18ed4577", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e69cb875-3b88-4112-9d09-1de017df9196", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:44 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "82d4aa47-dfc9-464e-9011-b9bfb29001d6", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "462525ad-fbff-4b10-b80e-cacc255216b1", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:46 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2e8b3350-95a0-41ba-a8ef-b1255d0b3968", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ff82bd11-a851-46e8-af92-552f6af7cac5", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:49 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "3703e9dd-f0a3-4abb-beee-e6bbe1d31571", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "291beb15-2b74-462d-9957-7453f46d8cf7", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:51 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "a46466e1-a6c9-4f89-a5cc-5eb0a679a71a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d174c166-93c6-4feb-8301-1b4a2882cd86", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:53 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2dc17065-c8fe-49c8-b8df-2e73b3886c76", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d5e004b9-81f4-4c77-8aa4-e0c201b5034e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:55 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e920fe6b-b903-4672-bb65-7752c6336e60", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "8ef3b7ff-c866-4f1b-9994-4f7b7db6669c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:04:57 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "7a5f973a-a1b9-48cf-bd84-a1fa1a8fe0a6", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ad470127-ad1b-4922-8ab8-e86f54636d68", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:00 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "4fba21a7-f5ad-40b6-bd5c-d2406d2a1878", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "6785b55f-f3bf-4c88-bef4-2ac23add5812", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:02 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "872f9d77-b8d2-4c81-bc4b-70187f8f0a22", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "157eba72-ef46-4d04-bdbd-41880829d9c6", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:03 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "937868ce-fa61-464b-904f-361632d6b6a7", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "64162fa5-2da0-49bb-a88d-077121ae4dd9", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:05 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "5b70a0b1-36b9-43ef-90e8-64587f9cd0c5", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "81d0cfdf-8fb1-4ed0-8de5-0bfd1cb60d4e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:08 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "7690406f-aad3-4a43-a4e3-72bb81a9b390", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d6b1697c-1083-4505-8043-2b7b6d6cd2a2", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:10 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "0791dfc4-00f3-4bb1-ac8b-a2791587be52", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d248b5ce-3c3f-4b77-96c2-17b50eb26164", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:12 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "31bed4d1-ce43-431b-901d-da4c2d5036ce", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d8f90ab1-d192-4205-82ec-c4c4b47907f2", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:14 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "76f1cf26-0101-4289-9602-685551eb79d8", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b0ac565e-e45f-42cf-8894-68fc016b3e05", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:16 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2601f273-52c7-4d56-825d-4a4c233f096a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "9874bf50-d93a-4763-8136-1419801d31b1", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:18 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "7042f1a7-4b84-45ea-9df6-6e2a7972d5e7", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4e138325-abe2-4269-8614-a4444374bb1a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:21 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "16b83f39-8239-4d7a-ae06-07c4881b2e00", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "28965ff5-b807-44d1-a771-8db4455270b3", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:23 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "131b2ab2-fefa-462b-b2ab-84abaf00bc6d", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e3d80af5-1839-4e9c-9ecb-40735976e2b1", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-\",\"deletedDate\":1619647482,\"scheduledPurgeDate\":1620252282,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanECkey-/970837969d2446d9a5e2247b1e992c1a\",\"kty\":\"EC\",\"key_ops\":[\"sign\",\"verify\"],\"crv\":\"P-256\",\"x\":\"clKxRTC6u1VnJEqS7Hqjhlf0iuTK4n-7i8dSPS-pAp4\",\"y\":\"eEw-1XLJWslcQKby5sx-hA0G82bJb24EwCr9rB1-nqA\"},\"attributes\":{\"enabled\":true,\"created\":1619647482,\"updated\":1619647482,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "598", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:25 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "bf8288cd-abaa-40ab-95ca-cefba5a07076", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3d2c43a9-3dbf-4add-b8be-dd0bc590ded2", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:05:25 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "3ad3edb8-3f55-40ff-a7d3-e23f3608078a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4fa068ce-54b3-4e33-a501-4a9e3785bbae", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:42 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", - "x-ms-request-id": "2581370d-525c-449a-8781-7cf3ec1d5401" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanECkey-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"EC\"}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanECkey-/970837969d2446d9a5e2247b1e992c1a\",\"kty\":\"EC\",\"key_ops\":[\"sign\",\"verify\"],\"crv\":\"P-256\",\"x\":\"clKxRTC6u1VnJEqS7Hqjhlf0iuTK4n-7i8dSPS-pAp4\",\"y\":\"eEw-1XLJWslcQKby5sx-hA0G82bJb24EwCr9rB1-nqA\"},\"attributes\":{\"enabled\":true,\"created\":1619647482,\"updated\":1619647482,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "432", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:42 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "067f42db-32ce-4b69-854e-346f8bf205f3", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "8c67621e-5031-4dcf-8d2b-b02e61f53476", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanECkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-\",\"deletedDate\":1619647482,\"scheduledPurgeDate\":1620252282,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanECkey-/970837969d2446d9a5e2247b1e992c1a\",\"kty\":\"EC\",\"key_ops\":[\"sign\",\"verify\"],\"crv\":\"P-256\",\"x\":\"clKxRTC6u1VnJEqS7Hqjhlf0iuTK4n-7i8dSPS-pAp4\",\"y\":\"eEw-1XLJWslcQKby5sx-hA0G82bJb24EwCr9rB1-nqA\"},\"attributes\":{\"enabled\":true,\"created\":1619647482,\"updated\":1619647482,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "598", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:42 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d747d47b-9079-4f54-b3c0-3eb1c0730543", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "79d5126a-2909-4237-add7-baba5eb2dcbb", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:42 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f0b282b4-61b1-4baa-9aba-b8d8e9f5f4dd", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "95f25088-b104-4cc4-8802-f5396f685b07", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:42 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "bc680de7-3936-4bfd-b29d-f23d18ed4577", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e69cb875-3b88-4112-9d09-1de017df9196", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:44 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "82d4aa47-dfc9-464e-9011-b9bfb29001d6", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "462525ad-fbff-4b10-b80e-cacc255216b1", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:46 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2e8b3350-95a0-41ba-a8ef-b1255d0b3968", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ff82bd11-a851-46e8-af92-552f6af7cac5", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:49 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "3703e9dd-f0a3-4abb-beee-e6bbe1d31571", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "291beb15-2b74-462d-9957-7453f46d8cf7", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:51 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "a46466e1-a6c9-4f89-a5cc-5eb0a679a71a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d174c166-93c6-4feb-8301-1b4a2882cd86", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:53 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2dc17065-c8fe-49c8-b8df-2e73b3886c76", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d5e004b9-81f4-4c77-8aa4-e0c201b5034e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:55 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e920fe6b-b903-4672-bb65-7752c6336e60", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "8ef3b7ff-c866-4f1b-9994-4f7b7db6669c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:04:57 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "7a5f973a-a1b9-48cf-bd84-a1fa1a8fe0a6", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ad470127-ad1b-4922-8ab8-e86f54636d68", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:00 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "4fba21a7-f5ad-40b6-bd5c-d2406d2a1878", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "6785b55f-f3bf-4c88-bef4-2ac23add5812", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:02 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "872f9d77-b8d2-4c81-bc4b-70187f8f0a22", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "157eba72-ef46-4d04-bdbd-41880829d9c6", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:03 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "937868ce-fa61-464b-904f-361632d6b6a7", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "64162fa5-2da0-49bb-a88d-077121ae4dd9", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:05 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "5b70a0b1-36b9-43ef-90e8-64587f9cd0c5", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "81d0cfdf-8fb1-4ed0-8de5-0bfd1cb60d4e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:08 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "7690406f-aad3-4a43-a4e3-72bb81a9b390", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d6b1697c-1083-4505-8043-2b7b6d6cd2a2", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:10 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "0791dfc4-00f3-4bb1-ac8b-a2791587be52", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d248b5ce-3c3f-4b77-96c2-17b50eb26164", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:12 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "31bed4d1-ce43-431b-901d-da4c2d5036ce", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d8f90ab1-d192-4205-82ec-c4c4b47907f2", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:14 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "76f1cf26-0101-4289-9602-685551eb79d8", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b0ac565e-e45f-42cf-8894-68fc016b3e05", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:16 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2601f273-52c7-4d56-825d-4a4c233f096a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "9874bf50-d93a-4763-8136-1419801d31b1", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:18 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "7042f1a7-4b84-45ea-9df6-6e2a7972d5e7", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4e138325-abe2-4269-8614-a4444374bb1a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:21 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "16b83f39-8239-4d7a-ae06-07c4881b2e00", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "28965ff5-b807-44d1-a771-8db4455270b3", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:23 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "131b2ab2-fefa-462b-b2ab-84abaf00bc6d", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e3d80af5-1839-4e9c-9ecb-40735976e2b1", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-\",\"deletedDate\":1619647482,\"scheduledPurgeDate\":1620252282,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanECkey-/970837969d2446d9a5e2247b1e992c1a\",\"kty\":\"EC\",\"key_ops\":[\"sign\",\"verify\"],\"crv\":\"P-256\",\"x\":\"clKxRTC6u1VnJEqS7Hqjhlf0iuTK4n-7i8dSPS-pAp4\",\"y\":\"eEw-1XLJWslcQKby5sx-hA0G82bJb24EwCr9rB1-nqA\"},\"attributes\":{\"enabled\":true,\"created\":1619647482,\"updated\":1619647482,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "598", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:25 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "bf8288cd-abaa-40ab-95ca-cefba5a07076", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3d2c43a9-3dbf-4add-b8be-dd0bc590ded2", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:05:25 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "3ad3edb8-3f55-40ff-a7d3-e23f3608078a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4fa068ce-54b3-4e33-a501-4a9e3785bbae", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "15d433c1aa30209f7b7f97bcb18c9b2c" -} \ No newline at end of file + "hash": "15d433c1aa30209f7b7f97bcb18c9b2c" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_an_ec_key_with_curve.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_an_ec_key_with_curve.json index 0e8ca6e84174..debf60bad825 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_an_ec_key_with_curve.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_an_ec_key_with_curve.json @@ -1,491 +1,491 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanECkeywithcurve-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:25 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "0134201b-817a-4d14-a5af-9e3cbefc34c5", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "fac2483b-ff3a-4347-a223-ea6af819b226", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanECkeywithcurve-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:25 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "0134201b-817a-4d14-a5af-9e3cbefc34c5", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "fac2483b-ff3a-4347-a223-ea6af819b226", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:25 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", + "x-ms-request-id": "2581370d-525c-449a-8781-7cf327245401" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanECkeywithcurve-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"EC\",\"attributes\":{},\"crv\":\"P-256\"}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanECkeywithcurve-/5a688aed7b5d42118c5ec51b27f2703d\",\"kty\":\"EC\",\"key_ops\":[\"sign\",\"verify\"],\"crv\":\"P-256\",\"x\":\"mowGUuk-5h2b1-DCPj9tuBvU44FDL2HtDKqpmy9nxZc\",\"y\":\"J4kMCZI7TxPZsvAr_-jO6ic6ge8qri5pFcJ_ss5Uxfs\"},\"attributes\":{\"enabled\":true,\"created\":1619647525,\"updated\":1619647525,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "440", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:25 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "0134201b-817a-4d14-a5af-9e3cbefc34c5", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "08284930-14ff-45f6-898b-c0c939d5dbb0", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanECkeywithcurve-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-\",\"deletedDate\":1619647526,\"scheduledPurgeDate\":1620252326,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanECkeywithcurve-/5a688aed7b5d42118c5ec51b27f2703d\",\"kty\":\"EC\",\"key_ops\":[\"sign\",\"verify\"],\"crv\":\"P-256\",\"x\":\"mowGUuk-5h2b1-DCPj9tuBvU44FDL2HtDKqpmy9nxZc\",\"y\":\"J4kMCZI7TxPZsvAr_-jO6ic6ge8qri5pFcJ_ss5Uxfs\"},\"attributes\":{\"enabled\":true,\"created\":1619647525,\"updated\":1619647525,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "614", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:26 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "141d7d38-9729-4736-8701-69f9d4b5e7e4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "35483c4e-7f10-454e-8fb6-9d6f48f2de85", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkeywithcurve-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "122", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:26 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "a0eea850-12ba-4e2c-9f2d-c004ede9b49e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b2bf8bc1-5c75-42ae-91ed-c6032de1a3a6", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkeywithcurve-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "122", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:26 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e33f5722-e7d7-4eb9-bf59-113087e44963", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "16419687-0fbc-47d5-85e4-68a5be7be018", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkeywithcurve-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "122", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:28 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d181f3b5-accf-42a1-b4f7-bd3d67317386", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2dcd5f54-9439-4ed0-969a-56c88c43ca39", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkeywithcurve-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "122", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:30 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "97a1c1b4-ad5f-4c21-ac62-8a5902335f22", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2477dfed-a22e-4752-b200-222240169fd3", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkeywithcurve-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "122", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:32 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c52d5211-5a26-4449-99c5-f832568293f1", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2ce8488d-b62e-468b-87f4-328d84a85bc3", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkeywithcurve-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "122", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:34 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "b795d737-7bc9-4ded-b700-ffcda44439e0", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "1f8cd45d-e10f-40cb-b14f-8bdef476d2ed", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkeywithcurve-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "122", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:37 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "92cbc79d-1e16-467a-bf5b-48fcc4ae4bf6", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5c6e6e96-3bba-4057-b363-077940df07b2", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkeywithcurve-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "122", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:39 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e8299bf9-2cbd-4c77-b707-7e1191d69210", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "62b6f77f-5f7d-4fdf-9662-c76302aa35d1", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkeywithcurve-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "122", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:41 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e1519fa3-0573-47d4-ab26-c51a2da618f1", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "84a5a962-298f-475d-893b-3a9e1f17ee9d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkeywithcurve-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "122", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:43 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "61a655da-13cd-48e6-8c01-b913a057c8e5", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "db8ff009-1663-43ca-a72c-928cc505396b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkeywithcurve-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "122", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:45 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "8b9efc1c-9e4d-4f5e-96dc-a36fe02f14bb", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "8e09cdd3-0b10-4339-85ae-f63bba8b49c7", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkeywithcurve-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "122", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:47 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "41023edb-c7c9-4594-be0f-583768acf2c5", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5912bb7f-1d15-4bc6-bd4b-31d5ea5e2132", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-\",\"deletedDate\":1619647526,\"scheduledPurgeDate\":1620252326,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanECkeywithcurve-/5a688aed7b5d42118c5ec51b27f2703d\",\"kty\":\"EC\",\"key_ops\":[\"sign\",\"verify\"],\"crv\":\"P-256\",\"x\":\"mowGUuk-5h2b1-DCPj9tuBvU44FDL2HtDKqpmy9nxZc\",\"y\":\"J4kMCZI7TxPZsvAr_-jO6ic6ge8qri5pFcJ_ss5Uxfs\"},\"attributes\":{\"enabled\":true,\"created\":1619647525,\"updated\":1619647525,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "614", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:05:49 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "19f6a1be-1aaf-4270-b94e-9098646c57ca", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "27647a21-f7bf-43e1-875c-830a432e040b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:05:49 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d6761c61-03a5-40f4-a664-7dd7912d0135", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5c1de5f8-d829-4167-b3bc-8ada37b36cc2", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:25 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", - "x-ms-request-id": "2581370d-525c-449a-8781-7cf327245401" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanECkeywithcurve-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"EC\",\"attributes\":{},\"crv\":\"P-256\"}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanECkeywithcurve-/5a688aed7b5d42118c5ec51b27f2703d\",\"kty\":\"EC\",\"key_ops\":[\"sign\",\"verify\"],\"crv\":\"P-256\",\"x\":\"mowGUuk-5h2b1-DCPj9tuBvU44FDL2HtDKqpmy9nxZc\",\"y\":\"J4kMCZI7TxPZsvAr_-jO6ic6ge8qri5pFcJ_ss5Uxfs\"},\"attributes\":{\"enabled\":true,\"created\":1619647525,\"updated\":1619647525,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "440", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:25 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "0134201b-817a-4d14-a5af-9e3cbefc34c5", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "08284930-14ff-45f6-898b-c0c939d5dbb0", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanECkeywithcurve-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-\",\"deletedDate\":1619647526,\"scheduledPurgeDate\":1620252326,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanECkeywithcurve-/5a688aed7b5d42118c5ec51b27f2703d\",\"kty\":\"EC\",\"key_ops\":[\"sign\",\"verify\"],\"crv\":\"P-256\",\"x\":\"mowGUuk-5h2b1-DCPj9tuBvU44FDL2HtDKqpmy9nxZc\",\"y\":\"J4kMCZI7TxPZsvAr_-jO6ic6ge8qri5pFcJ_ss5Uxfs\"},\"attributes\":{\"enabled\":true,\"created\":1619647525,\"updated\":1619647525,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "614", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:26 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "141d7d38-9729-4736-8701-69f9d4b5e7e4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "35483c4e-7f10-454e-8fb6-9d6f48f2de85", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkeywithcurve-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "122", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:26 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "a0eea850-12ba-4e2c-9f2d-c004ede9b49e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b2bf8bc1-5c75-42ae-91ed-c6032de1a3a6", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkeywithcurve-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "122", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:26 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e33f5722-e7d7-4eb9-bf59-113087e44963", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "16419687-0fbc-47d5-85e4-68a5be7be018", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkeywithcurve-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "122", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:28 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d181f3b5-accf-42a1-b4f7-bd3d67317386", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2dcd5f54-9439-4ed0-969a-56c88c43ca39", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkeywithcurve-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "122", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:30 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "97a1c1b4-ad5f-4c21-ac62-8a5902335f22", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2477dfed-a22e-4752-b200-222240169fd3", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkeywithcurve-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "122", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:32 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c52d5211-5a26-4449-99c5-f832568293f1", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2ce8488d-b62e-468b-87f4-328d84a85bc3", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkeywithcurve-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "122", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:34 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "b795d737-7bc9-4ded-b700-ffcda44439e0", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "1f8cd45d-e10f-40cb-b14f-8bdef476d2ed", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkeywithcurve-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "122", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:37 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "92cbc79d-1e16-467a-bf5b-48fcc4ae4bf6", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5c6e6e96-3bba-4057-b363-077940df07b2", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkeywithcurve-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "122", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:39 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e8299bf9-2cbd-4c77-b707-7e1191d69210", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "62b6f77f-5f7d-4fdf-9662-c76302aa35d1", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkeywithcurve-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "122", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:41 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e1519fa3-0573-47d4-ab26-c51a2da618f1", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "84a5a962-298f-475d-893b-3a9e1f17ee9d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkeywithcurve-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "122", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:43 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "61a655da-13cd-48e6-8c01-b913a057c8e5", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "db8ff009-1663-43ca-a72c-928cc505396b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkeywithcurve-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "122", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:45 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "8b9efc1c-9e4d-4f5e-96dc-a36fe02f14bb", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "8e09cdd3-0b10-4339-85ae-f63bba8b49c7", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cancreateanECkeywithcurve-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "122", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:47 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "41023edb-c7c9-4594-be0f-583768acf2c5", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5912bb7f-1d15-4bc6-bd4b-31d5ea5e2132", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-\",\"deletedDate\":1619647526,\"scheduledPurgeDate\":1620252326,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanECkeywithcurve-/5a688aed7b5d42118c5ec51b27f2703d\",\"kty\":\"EC\",\"key_ops\":[\"sign\",\"verify\"],\"crv\":\"P-256\",\"x\":\"mowGUuk-5h2b1-DCPj9tuBvU44FDL2HtDKqpmy9nxZc\",\"y\":\"J4kMCZI7TxPZsvAr_-jO6ic6ge8qri5pFcJ_ss5Uxfs\"},\"attributes\":{\"enabled\":true,\"created\":1619647525,\"updated\":1619647525,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "614", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:05:49 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "19f6a1be-1aaf-4270-b94e-9098646c57ca", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "27647a21-f7bf-43e1-875c-830a432e040b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanECkeywithcurve-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:05:49 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d6761c61-03a5-40f4-a664-7dd7912d0135", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5c1de5f8-d829-4167-b3bc-8ada37b36cc2", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "5a9bdbf216e8894a998b745de07d73ec" -} \ No newline at end of file + "hash": "5a9bdbf216e8894a998b745de07d73ec" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_an_oct_key_with_options.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_an_oct_key_with_options.json index b4d87836cd2d..6af78d9c321b 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_an_oct_key_with_options.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_create_an_oct_key_with_options.json @@ -1,146 +1,146 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanOCTkeywithoptions-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "0", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.microsoftonline.com/azure_tenant_id\", resource=\"https://managedhsm.azure.net\"", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-request-id": "2e445fd8-64ef-11eb-8854-0242ac12000b", - "x-ms-server-latency": "1" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanOCTkeywithoptions-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "0", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.microsoftonline.com/azure_tenant_id\", resource=\"https://managedhsm.azure.net\"", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-request-id": "2e445fd8-64ef-11eb-8854-0242ac12000b", + "x-ms-server-latency": "1" + } + }, + { + "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%2Fmanagedhsm.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1322", + "content-type": "application/json; charset=utf-8", + "date": "Tue, 02 Feb 2021 00:39:59 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.11444.12 - NCUS ProdSlices", + "x-ms-request-id": "599892fb-32d8-4b74-8211-f87a6deaaf00" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanOCTkeywithoptions-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"oct-HSM\",\"attributes\":{}}", + "status": 200, + "response": "{\"attributes\":{\"created\":1612226400,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1612226400},\"key\":{\"key_ops\":[\"wrapKey\",\"unwrapKey\",\"decrypt\",\"encrypt\"],\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanOCTkeywithoptions-/86b28bf6c92e012781fb30a70306963d\",\"kty\":\"oct-HSM\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "379", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "2e75adea-64ef-11eb-8854-0242ac12000b", + "x-ms-server-latency": "213" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanOCTkeywithoptions-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"attributes\":{\"created\":1612226400,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1612226400},\"deletedDate\":1612226400,\"key\":{\"key_ops\":[\"unwrapKey\",\"wrapKey\",\"decrypt\",\"encrypt\"],\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanOCTkeywithoptions-/86b28bf6c92e012781fb30a70306963d\",\"kty\":\"oct-HSM\"},\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanOCTkeywithoptions-\",\"scheduledPurgeDate\":1620002400}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "565", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "2eaf3916-64ef-11eb-8854-0242ac12000b", + "x-ms-server-latency": "136" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanOCTkeywithoptions-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"attributes\":{\"created\":1612226400,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1612226400},\"deletedDate\":1612226400,\"key\":{\"key_ops\":[\"encrypt\",\"decrypt\",\"unwrapKey\",\"wrapKey\"],\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanOCTkeywithoptions-/86b28bf6c92e012781fb30a70306963d\",\"kty\":\"oct-HSM\"},\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanOCTkeywithoptions-\",\"scheduledPurgeDate\":1620002400}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "565", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-build-version": "1.0.20210128-1-4c3070d1-develop", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "2edd61d8-64ef-11eb-8854-0242ac12000b", + "x-ms-server-latency": "59" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanOCTkeywithoptions-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "0", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "addr=50.35.231.105", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "2efee5ba-64ef-11eb-8854-0242ac12000b", + "x-ms-server-latency": "144" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "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%2Fmanagedhsm.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1322", - "content-type": "application/json; charset=utf-8", - "date": "Tue, 02 Feb 2021 00:39:59 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.11444.12 - NCUS ProdSlices", - "x-ms-request-id": "599892fb-32d8-4b74-8211-f87a6deaaf00" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanOCTkeywithoptions-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"oct-HSM\",\"attributes\":{}}", - "status": 200, - "response": "{\"attributes\":{\"created\":1612226400,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1612226400},\"key\":{\"key_ops\":[\"wrapKey\",\"unwrapKey\",\"decrypt\",\"encrypt\"],\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanOCTkeywithoptions-/86b28bf6c92e012781fb30a70306963d\",\"kty\":\"oct-HSM\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "379", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "2e75adea-64ef-11eb-8854-0242ac12000b", - "x-ms-server-latency": "213" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanOCTkeywithoptions-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"attributes\":{\"created\":1612226400,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1612226400},\"deletedDate\":1612226400,\"key\":{\"key_ops\":[\"unwrapKey\",\"wrapKey\",\"decrypt\",\"encrypt\"],\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanOCTkeywithoptions-/86b28bf6c92e012781fb30a70306963d\",\"kty\":\"oct-HSM\"},\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanOCTkeywithoptions-\",\"scheduledPurgeDate\":1620002400}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "565", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "2eaf3916-64ef-11eb-8854-0242ac12000b", - "x-ms-server-latency": "136" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanOCTkeywithoptions-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"attributes\":{\"created\":1612226400,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1612226400},\"deletedDate\":1612226400,\"key\":{\"key_ops\":[\"encrypt\",\"decrypt\",\"unwrapKey\",\"wrapKey\"],\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cancreateanOCTkeywithoptions-/86b28bf6c92e012781fb30a70306963d\",\"kty\":\"oct-HSM\"},\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanOCTkeywithoptions-\",\"scheduledPurgeDate\":1620002400}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "565", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-build-version": "1.0.20210128-1-4c3070d1-develop", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "2edd61d8-64ef-11eb-8854-0242ac12000b", - "x-ms-server-latency": "59" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cancreateanOCTkeywithoptions-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "0", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "addr=50.35.231.105", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "2efee5ba-64ef-11eb-8854-0242ac12000b", - "x-ms-server-latency": "144" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "64c08f41e8c6efba5a7e8bbc460760f0" + "hash": "64c08f41e8c6efba5a7e8bbc460760f0" } diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_delete_a_key.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_delete_a_key.json index 4054092f6300..cf68939a49b8 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_delete_a_key.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_delete_a_key.json @@ -1,761 +1,761 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-candeleteakey-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:08 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c71f4de1-c1c8-43d4-86fc-4bc44b1306be", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4f24d763-3d2b-4175-8308-f4b22ab10aea", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-candeleteakey-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:08 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c71f4de1-c1c8-43d4-86fc-4bc44b1306be", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4f24d763-3d2b-4175-8308-f4b22ab10aea", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:08 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", + "x-ms-request-id": "786f5b8e-426b-446f-974d-918f548e2b00" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-candeleteakey-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\"}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-candeleteakey-/5701ca5eefe1401fab4443b85fca02ca\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"xxj-ZMrV_yuscPIfAxSRlIHx5gu1X0mDhVCELvpN30m9OOrcLCQP8fWypMpzYPwI8D9URHOKdgSiPC_cGqd-T8lwpRQvNsEMg44ZYadpSdeTIzIGERzhAjTW6y4D8SWNw0vi3U9pJ4zKEHXcHqBdanheGRx91dhv4ZoAQtASXn8VUa0rlZvq64JWsVByLZGZI2rHvjnUIl2WF1EukCOmMjFBt83wY9zaE_N6_dD9pV-vZoGFZeyQFxgf5-9OYKYY_0wWsxosLPLRiyE7BQEMds2k0zOpWxSvQC8-eaFehuzpL-gVx-JjMdQN37AKYMLpoVJ33GZzmrOnhS1CtV8C-Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647748,\"updated\":1619647748,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "718", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:08 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c71f4de1-c1c8-43d4-86fc-4bc44b1306be", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e4705533-3d33-49f3-978f-8b4593ed49c8", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-candeleteakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-\",\"deletedDate\":1619647749,\"scheduledPurgeDate\":1620252549,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-candeleteakey-/5701ca5eefe1401fab4443b85fca02ca\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"xxj-ZMrV_yuscPIfAxSRlIHx5gu1X0mDhVCELvpN30m9OOrcLCQP8fWypMpzYPwI8D9URHOKdgSiPC_cGqd-T8lwpRQvNsEMg44ZYadpSdeTIzIGERzhAjTW6y4D8SWNw0vi3U9pJ4zKEHXcHqBdanheGRx91dhv4ZoAQtASXn8VUa0rlZvq64JWsVByLZGZI2rHvjnUIl2WF1EukCOmMjFBt83wY9zaE_N6_dD9pV-vZoGFZeyQFxgf5-9OYKYY_0wWsxosLPLRiyE7BQEMds2k0zOpWxSvQC8-eaFehuzpL-gVx-JjMdQN37AKYMLpoVJ33GZzmrOnhS1CtV8C-Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647748,\"updated\":1619647748,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "881", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:08 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "64756ae1-a4d5-4ea7-8295-d49969a54b14", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d9732cb6-22a2-48ea-937f-eef6bf695809", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "111", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:08 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "25745044-f4dd-4dcc-a24f-e31ec4d56c4b", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "23718684-c1a1-4c6d-bf47-fa30fe1e6e88", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "111", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:08 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d367ab20-ffcb-49c5-9abc-5a81d45fbc11", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e65d5994-82bc-4676-8d32-99d55c47f382", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "111", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:10 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "02eaca8e-0652-4a87-86a4-4c8f82c21721", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "17e23634-6f2f-4997-9439-be90b1699bc7", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "111", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:12 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1260f928-56f7-481f-950b-9f9a7ac0f9bc", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "1a8906bd-913e-496f-a5fd-6351d660b6c8", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "111", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:14 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "a724004f-698b-48b2-be13-a8a91fd0539c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "288e3286-13d5-4dbf-a4cf-42edc8a7e305", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "111", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:17 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d7c31b76-00d1-40f2-89a7-798a8549e3ef", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3e709fa1-7d86-412c-ab3b-18a817692165", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "111", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:19 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "02dd4085-d40c-444b-8eb3-48474cda584f", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2024bd62-d90b-4eaf-905e-f0cc1bb3c11d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "111", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:21 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "3616e5d9-552a-49be-a2d4-280c44528a1e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "351002ef-de28-4a7a-90e3-094002e2dadc", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "111", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:23 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ee3e6208-d060-4882-9e51-609f0c72f154", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "18ae5a7b-4e9b-455f-9eac-51d457b0aeee", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "111", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:26 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f4217f8d-74a1-40f6-af24-8d5d7d14d381", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3ac108be-9253-48ca-85f5-15c95b3a72f7", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "111", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:28 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d5a0169d-a0f5-4337-ac74-c9218ec43bcb", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "74950c41-e417-48b2-b085-8d15e4669828", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "111", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:30 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "577ea89c-d310-4062-9715-0be2aaa46e3e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "05e86776-cf45-4d83-9f41-d1a9ab89fcf2", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "111", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:32 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f786c5cd-31ac-4fc6-8789-8e1d8a47c20d", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "0c20ffe8-d093-446b-8a12-932bcf8e9aad", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "111", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:34 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "80534beb-881b-4a80-b2e1-cb21ecd837f6", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f6fedfaa-131d-48ce-93ed-ffa1c14f8306", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "111", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:36 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e53f792d-e7e8-4254-8673-aa4cc6d66414", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3b8b6291-791b-4d74-9863-b5023a7438bf", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "111", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:38 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "70a10dcd-825a-428f-9631-be08d78b9bd6", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c781977d-a2ad-44a6-82e0-27c8a3dd74ab", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "111", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:41 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ef8c80ae-f846-460a-918c-b22d3d5c5b69", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ef491828-3a9f-4469-bedb-30aa77ba773d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "111", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:42 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "3b068c39-f1b2-47db-88d4-4176a1d8e1bd", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "015bcbd1-22c8-4a92-93b2-40ef02a09ff3", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "111", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:44 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "17c21d7b-5cae-45ff-9a07-403848876b25", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ff57ef3d-e1ff-420a-a19a-b7d722352a61", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "111", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:46 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "0c728b7a-7a4d-4769-97df-4a06a44daf15", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "af4cd684-c261-4fc3-b1cd-b5fee142d96e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "111", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:48 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d905ca21-5c88-4bd8-859d-a614aa59a589", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "7fd1b6e4-ac3f-437c-8bf1-6da961eff824", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-\",\"deletedDate\":1619647749,\"scheduledPurgeDate\":1620252549,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-candeleteakey-/5701ca5eefe1401fab4443b85fca02ca\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"xxj-ZMrV_yuscPIfAxSRlIHx5gu1X0mDhVCELvpN30m9OOrcLCQP8fWypMpzYPwI8D9URHOKdgSiPC_cGqd-T8lwpRQvNsEMg44ZYadpSdeTIzIGERzhAjTW6y4D8SWNw0vi3U9pJ4zKEHXcHqBdanheGRx91dhv4ZoAQtASXn8VUa0rlZvq64JWsVByLZGZI2rHvjnUIl2WF1EukCOmMjFBt83wY9zaE_N6_dD9pV-vZoGFZeyQFxgf5-9OYKYY_0wWsxosLPLRiyE7BQEMds2k0zOpWxSvQC8-eaFehuzpL-gVx-JjMdQN37AKYMLpoVJ33GZzmrOnhS1CtV8C-Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647748,\"updated\":1619647748,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "881", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:50 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1e143089-d4df-480b-aa85-15eb37e0a658", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4c25cd24-1727-4cf5-acc7-b6ff46f43e1e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-candeleteakey-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) CRUDKeyName-candeleteakey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "331", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:50 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f75c5517-e5d7-4333-a84d-d4a49367374c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "07836da7-2577-4b14-8326-07a93c8931e1", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:09:51 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1744ade8-27a6-479b-8f3f-e870acea5a1d", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "437dd871-3b35-4a7e-80c6-0cfa48bc5191", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:08 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", - "x-ms-request-id": "786f5b8e-426b-446f-974d-918f548e2b00" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-candeleteakey-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\"}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-candeleteakey-/5701ca5eefe1401fab4443b85fca02ca\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"xxj-ZMrV_yuscPIfAxSRlIHx5gu1X0mDhVCELvpN30m9OOrcLCQP8fWypMpzYPwI8D9URHOKdgSiPC_cGqd-T8lwpRQvNsEMg44ZYadpSdeTIzIGERzhAjTW6y4D8SWNw0vi3U9pJ4zKEHXcHqBdanheGRx91dhv4ZoAQtASXn8VUa0rlZvq64JWsVByLZGZI2rHvjnUIl2WF1EukCOmMjFBt83wY9zaE_N6_dD9pV-vZoGFZeyQFxgf5-9OYKYY_0wWsxosLPLRiyE7BQEMds2k0zOpWxSvQC8-eaFehuzpL-gVx-JjMdQN37AKYMLpoVJ33GZzmrOnhS1CtV8C-Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647748,\"updated\":1619647748,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "718", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:08 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c71f4de1-c1c8-43d4-86fc-4bc44b1306be", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e4705533-3d33-49f3-978f-8b4593ed49c8", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-candeleteakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-\",\"deletedDate\":1619647749,\"scheduledPurgeDate\":1620252549,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-candeleteakey-/5701ca5eefe1401fab4443b85fca02ca\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"xxj-ZMrV_yuscPIfAxSRlIHx5gu1X0mDhVCELvpN30m9OOrcLCQP8fWypMpzYPwI8D9URHOKdgSiPC_cGqd-T8lwpRQvNsEMg44ZYadpSdeTIzIGERzhAjTW6y4D8SWNw0vi3U9pJ4zKEHXcHqBdanheGRx91dhv4ZoAQtASXn8VUa0rlZvq64JWsVByLZGZI2rHvjnUIl2WF1EukCOmMjFBt83wY9zaE_N6_dD9pV-vZoGFZeyQFxgf5-9OYKYY_0wWsxosLPLRiyE7BQEMds2k0zOpWxSvQC8-eaFehuzpL-gVx-JjMdQN37AKYMLpoVJ33GZzmrOnhS1CtV8C-Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647748,\"updated\":1619647748,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "881", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:08 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "64756ae1-a4d5-4ea7-8295-d49969a54b14", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d9732cb6-22a2-48ea-937f-eef6bf695809", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "111", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:08 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "25745044-f4dd-4dcc-a24f-e31ec4d56c4b", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "23718684-c1a1-4c6d-bf47-fa30fe1e6e88", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "111", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:08 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d367ab20-ffcb-49c5-9abc-5a81d45fbc11", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e65d5994-82bc-4676-8d32-99d55c47f382", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "111", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:10 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "02eaca8e-0652-4a87-86a4-4c8f82c21721", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "17e23634-6f2f-4997-9439-be90b1699bc7", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "111", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:12 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1260f928-56f7-481f-950b-9f9a7ac0f9bc", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "1a8906bd-913e-496f-a5fd-6351d660b6c8", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "111", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:14 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "a724004f-698b-48b2-be13-a8a91fd0539c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "288e3286-13d5-4dbf-a4cf-42edc8a7e305", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "111", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:17 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d7c31b76-00d1-40f2-89a7-798a8549e3ef", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3e709fa1-7d86-412c-ab3b-18a817692165", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "111", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:19 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "02dd4085-d40c-444b-8eb3-48474cda584f", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2024bd62-d90b-4eaf-905e-f0cc1bb3c11d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "111", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:21 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "3616e5d9-552a-49be-a2d4-280c44528a1e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "351002ef-de28-4a7a-90e3-094002e2dadc", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "111", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:23 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ee3e6208-d060-4882-9e51-609f0c72f154", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "18ae5a7b-4e9b-455f-9eac-51d457b0aeee", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "111", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:26 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f4217f8d-74a1-40f6-af24-8d5d7d14d381", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3ac108be-9253-48ca-85f5-15c95b3a72f7", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "111", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:28 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d5a0169d-a0f5-4337-ac74-c9218ec43bcb", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "74950c41-e417-48b2-b085-8d15e4669828", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "111", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:30 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "577ea89c-d310-4062-9715-0be2aaa46e3e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "05e86776-cf45-4d83-9f41-d1a9ab89fcf2", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "111", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:32 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f786c5cd-31ac-4fc6-8789-8e1d8a47c20d", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "0c20ffe8-d093-446b-8a12-932bcf8e9aad", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "111", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:34 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "80534beb-881b-4a80-b2e1-cb21ecd837f6", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f6fedfaa-131d-48ce-93ed-ffa1c14f8306", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "111", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:36 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e53f792d-e7e8-4254-8673-aa4cc6d66414", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3b8b6291-791b-4d74-9863-b5023a7438bf", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "111", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:38 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "70a10dcd-825a-428f-9631-be08d78b9bd6", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c781977d-a2ad-44a6-82e0-27c8a3dd74ab", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "111", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:41 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ef8c80ae-f846-460a-918c-b22d3d5c5b69", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ef491828-3a9f-4469-bedb-30aa77ba773d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "111", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:42 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "3b068c39-f1b2-47db-88d4-4176a1d8e1bd", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "015bcbd1-22c8-4a92-93b2-40ef02a09ff3", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "111", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:44 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "17c21d7b-5cae-45ff-9a07-403848876b25", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ff57ef3d-e1ff-420a-a19a-b7d722352a61", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "111", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:46 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "0c728b7a-7a4d-4769-97df-4a06a44daf15", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "af4cd684-c261-4fc3-b1cd-b5fee142d96e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-candeleteakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "111", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:48 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d905ca21-5c88-4bd8-859d-a614aa59a589", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "7fd1b6e4-ac3f-437c-8bf1-6da961eff824", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-\",\"deletedDate\":1619647749,\"scheduledPurgeDate\":1620252549,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-candeleteakey-/5701ca5eefe1401fab4443b85fca02ca\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"xxj-ZMrV_yuscPIfAxSRlIHx5gu1X0mDhVCELvpN30m9OOrcLCQP8fWypMpzYPwI8D9URHOKdgSiPC_cGqd-T8lwpRQvNsEMg44ZYadpSdeTIzIGERzhAjTW6y4D8SWNw0vi3U9pJ4zKEHXcHqBdanheGRx91dhv4ZoAQtASXn8VUa0rlZvq64JWsVByLZGZI2rHvjnUIl2WF1EukCOmMjFBt83wY9zaE_N6_dD9pV-vZoGFZeyQFxgf5-9OYKYY_0wWsxosLPLRiyE7BQEMds2k0zOpWxSvQC8-eaFehuzpL-gVx-JjMdQN37AKYMLpoVJ33GZzmrOnhS1CtV8C-Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647748,\"updated\":1619647748,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "881", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:50 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1e143089-d4df-480b-aa85-15eb37e0a658", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4c25cd24-1727-4cf5-acc7-b6ff46f43e1e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-candeleteakey-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) CRUDKeyName-candeleteakey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "331", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:50 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f75c5517-e5d7-4333-a84d-d4a49367374c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "07836da7-2577-4b14-8326-07a93c8931e1", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-candeleteakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:09:51 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1744ade8-27a6-479b-8f3f-e870acea5a1d", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "437dd871-3b35-4a7e-80c6-0cfa48bc5191", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "8fe443aea4bbb18d82a700ed2215c0e5" -} \ No newline at end of file + "hash": "8fe443aea4bbb18d82a700ed2215c0e5" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_get_a_deleted_key.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_get_a_deleted_key.json index b2eedb86f20a..d7faddeb47c4 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_get_a_deleted_key.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_get_a_deleted_key.json @@ -1,599 +1,599 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetadeletedkey-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:44 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2ce97a69-06b9-403d-8ffd-b87fc54e25d4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "887fd2d2-7539-4651-8ad0-8c02251dbb60", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetadeletedkey-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:44 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2ce97a69-06b9-403d-8ffd-b87fc54e25d4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "887fd2d2-7539-4651-8ad0-8c02251dbb60", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:44 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - WUS2 ProdSlices", + "x-ms-request-id": "c8b4fac2-0e48-414e-9442-21d8e82b2b00" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetadeletedkey-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\"}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetadeletedkey-/bedd928c6b2b43c4a0054d1cd819199f\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"tRsO7ethvgpKa8YJK7Sj16Tz5klg1yx1jZMBr8aXKrLY48ib8P199b-6f1lmzgpR1HxPA5EdG3KCQyDxr-lAHcIqUMujaS17rDv7mZtrpGojIfaPdWHuOGDo3axFQ2Q9nxlJqgU8e3aCybvV6Ls29Jr41UrQ5MhjuJqEpX4PZCfetqO1rybRjiWt6iMu055Ux7RNli5TmE0RhIA4bcjkoaksSI9kh3cUjkFpiygvtJcFAgZpeGmh48kL_RyxMbNJzi0d-MxUetZ89UbHygala7wncMAaob0KqwjoIYJcSExvPjAm3NBxyXHvwz-IGcfl5thRck6gxjRIHEKwOM1I6Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647845,\"updated\":1619647845,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "721", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:45 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2ce97a69-06b9-403d-8ffd-b87fc54e25d4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4505e467-c8f9-4849-9818-0fdb7038e145", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-\",\"deletedDate\":1619647845,\"scheduledPurgeDate\":1620252645,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetadeletedkey-/bedd928c6b2b43c4a0054d1cd819199f\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"tRsO7ethvgpKa8YJK7Sj16Tz5klg1yx1jZMBr8aXKrLY48ib8P199b-6f1lmzgpR1HxPA5EdG3KCQyDxr-lAHcIqUMujaS17rDv7mZtrpGojIfaPdWHuOGDo3axFQ2Q9nxlJqgU8e3aCybvV6Ls29Jr41UrQ5MhjuJqEpX4PZCfetqO1rybRjiWt6iMu055Ux7RNli5TmE0RhIA4bcjkoaksSI9kh3cUjkFpiygvtJcFAgZpeGmh48kL_RyxMbNJzi0d-MxUetZ89UbHygala7wncMAaob0KqwjoIYJcSExvPjAm3NBxyXHvwz-IGcfl5thRck6gxjRIHEKwOM1I6Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647845,\"updated\":1619647845,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "887", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:45 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c3671df8-2976-485b-9d73-a878bd61721d", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "bfb78126-b6f9-4bee-b8bc-c8d7c11efb76", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:45 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "190a75af-8e0c-4676-a2b3-7dc8ca37f9d9", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "6debd463-d73f-4eec-a8c3-d089d00e0f2c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:45 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "35be6288-bcab-43bc-ba78-2e4e4d32e36f", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "cb6f477c-eb6f-440c-9293-b8188b494fb3", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:47 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "0f37c938-0f03-44a7-8a68-4fb0ec9c9773", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "413d1364-73f4-46e3-89a7-bcb8d0356af9", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:49 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "59f10bee-631c-4e6c-abda-8da9bf75e6ab", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "448b1f7b-3269-4411-8ed4-ba61101604e6", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:51 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d23648ea-e67a-4339-9437-7064620ec2ba", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3efc5ac8-76f9-4cac-baa0-9bdd6ce90727", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:53 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e46f9b01-94ea-4d40-b196-451cb60b7e56", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b80665ba-021a-4c9e-b2af-84b2c58d565d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:55 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f24641fe-1f7b-411e-bdb4-c1d1c765d5c3", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "1a217349-c01f-4fe6-bde3-5f310cfaa311", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:58 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "db04e7fe-d7c6-4fc1-b7b6-c4c29457f990", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c3c736a6-36da-40dd-9cd3-cad3c630e174", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:00 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c021840c-c37d-435c-ab26-91330947ddae", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d4b5d5fe-19a0-43bc-80bf-253cf4f6e5fe", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:02 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2e1d0bcf-0d6d-464b-bee1-c5fe978ab7aa", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "8ba26431-0fe9-4ccc-9f0b-ab64dcbdf40c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:04 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d99f276e-ed57-4357-96ff-26a7da428871", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "608c194c-815e-405f-93db-aeba37d5e4e6", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:06 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2788fa1c-32a5-45ce-b9d8-5d1071c501c8", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "83aa7247-301a-4959-a232-d65ade6541fb", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:08 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2e3abf74-afd5-470a-a67c-41fd04fc1061", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b7ba9377-e5c9-43a8-a25b-d9e06cb6145d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:10 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "dc987f83-e155-4c6e-822e-010438ae169c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ec99bfa9-bf03-4546-9b6f-75665a9869d3", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:12 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "871c9fc9-3900-4335-9961-abe15d811c62", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "9f409a86-aa86-41fa-96f4-5b794ff04388", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-\",\"deletedDate\":1619647845,\"scheduledPurgeDate\":1620252645,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetadeletedkey-/bedd928c6b2b43c4a0054d1cd819199f\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"tRsO7ethvgpKa8YJK7Sj16Tz5klg1yx1jZMBr8aXKrLY48ib8P199b-6f1lmzgpR1HxPA5EdG3KCQyDxr-lAHcIqUMujaS17rDv7mZtrpGojIfaPdWHuOGDo3axFQ2Q9nxlJqgU8e3aCybvV6Ls29Jr41UrQ5MhjuJqEpX4PZCfetqO1rybRjiWt6iMu055Ux7RNli5TmE0RhIA4bcjkoaksSI9kh3cUjkFpiygvtJcFAgZpeGmh48kL_RyxMbNJzi0d-MxUetZ89UbHygala7wncMAaob0KqwjoIYJcSExvPjAm3NBxyXHvwz-IGcfl5thRck6gxjRIHEKwOM1I6Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647845,\"updated\":1619647845,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "887", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:14 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "8ded8ff3-a4a1-4ca1-80cd-3b9b99fb8e26", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "312654f5-be5f-4e62-874e-78bb00b403b4", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-\",\"deletedDate\":1619647845,\"scheduledPurgeDate\":1620252645,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetadeletedkey-/bedd928c6b2b43c4a0054d1cd819199f\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"tRsO7ethvgpKa8YJK7Sj16Tz5klg1yx1jZMBr8aXKrLY48ib8P199b-6f1lmzgpR1HxPA5EdG3KCQyDxr-lAHcIqUMujaS17rDv7mZtrpGojIfaPdWHuOGDo3axFQ2Q9nxlJqgU8e3aCybvV6Ls29Jr41UrQ5MhjuJqEpX4PZCfetqO1rybRjiWt6iMu055Ux7RNli5TmE0RhIA4bcjkoaksSI9kh3cUjkFpiygvtJcFAgZpeGmh48kL_RyxMbNJzi0d-MxUetZ89UbHygala7wncMAaob0KqwjoIYJcSExvPjAm3NBxyXHvwz-IGcfl5thRck6gxjRIHEKwOM1I6Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647845,\"updated\":1619647845,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "887", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:14 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "3db16c05-d0bc-4f77-a0f3-7814eaca011f", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2a03fb3c-486e-4a3d-bb8c-57d98b027f7a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:11:14 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1e9b23be-65f6-4601-9a45-21d114a79810", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "640b336f-c108-4fd1-9fa6-c5976de65a84", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:44 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - WUS2 ProdSlices", - "x-ms-request-id": "c8b4fac2-0e48-414e-9442-21d8e82b2b00" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetadeletedkey-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\"}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetadeletedkey-/bedd928c6b2b43c4a0054d1cd819199f\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"tRsO7ethvgpKa8YJK7Sj16Tz5klg1yx1jZMBr8aXKrLY48ib8P199b-6f1lmzgpR1HxPA5EdG3KCQyDxr-lAHcIqUMujaS17rDv7mZtrpGojIfaPdWHuOGDo3axFQ2Q9nxlJqgU8e3aCybvV6Ls29Jr41UrQ5MhjuJqEpX4PZCfetqO1rybRjiWt6iMu055Ux7RNli5TmE0RhIA4bcjkoaksSI9kh3cUjkFpiygvtJcFAgZpeGmh48kL_RyxMbNJzi0d-MxUetZ89UbHygala7wncMAaob0KqwjoIYJcSExvPjAm3NBxyXHvwz-IGcfl5thRck6gxjRIHEKwOM1I6Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647845,\"updated\":1619647845,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "721", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:45 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2ce97a69-06b9-403d-8ffd-b87fc54e25d4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4505e467-c8f9-4849-9818-0fdb7038e145", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-\",\"deletedDate\":1619647845,\"scheduledPurgeDate\":1620252645,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetadeletedkey-/bedd928c6b2b43c4a0054d1cd819199f\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"tRsO7ethvgpKa8YJK7Sj16Tz5klg1yx1jZMBr8aXKrLY48ib8P199b-6f1lmzgpR1HxPA5EdG3KCQyDxr-lAHcIqUMujaS17rDv7mZtrpGojIfaPdWHuOGDo3axFQ2Q9nxlJqgU8e3aCybvV6Ls29Jr41UrQ5MhjuJqEpX4PZCfetqO1rybRjiWt6iMu055Ux7RNli5TmE0RhIA4bcjkoaksSI9kh3cUjkFpiygvtJcFAgZpeGmh48kL_RyxMbNJzi0d-MxUetZ89UbHygala7wncMAaob0KqwjoIYJcSExvPjAm3NBxyXHvwz-IGcfl5thRck6gxjRIHEKwOM1I6Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647845,\"updated\":1619647845,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "887", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:45 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c3671df8-2976-485b-9d73-a878bd61721d", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "bfb78126-b6f9-4bee-b8bc-c8d7c11efb76", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:45 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "190a75af-8e0c-4676-a2b3-7dc8ca37f9d9", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "6debd463-d73f-4eec-a8c3-d089d00e0f2c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:45 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "35be6288-bcab-43bc-ba78-2e4e4d32e36f", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "cb6f477c-eb6f-440c-9293-b8188b494fb3", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:47 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "0f37c938-0f03-44a7-8a68-4fb0ec9c9773", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "413d1364-73f4-46e3-89a7-bcb8d0356af9", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:49 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "59f10bee-631c-4e6c-abda-8da9bf75e6ab", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "448b1f7b-3269-4411-8ed4-ba61101604e6", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:51 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d23648ea-e67a-4339-9437-7064620ec2ba", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3efc5ac8-76f9-4cac-baa0-9bdd6ce90727", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:53 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e46f9b01-94ea-4d40-b196-451cb60b7e56", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b80665ba-021a-4c9e-b2af-84b2c58d565d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:55 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f24641fe-1f7b-411e-bdb4-c1d1c765d5c3", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "1a217349-c01f-4fe6-bde3-5f310cfaa311", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:58 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "db04e7fe-d7c6-4fc1-b7b6-c4c29457f990", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c3c736a6-36da-40dd-9cd3-cad3c630e174", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:00 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c021840c-c37d-435c-ab26-91330947ddae", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d4b5d5fe-19a0-43bc-80bf-253cf4f6e5fe", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:02 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2e1d0bcf-0d6d-464b-bee1-c5fe978ab7aa", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "8ba26431-0fe9-4ccc-9f0b-ab64dcbdf40c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:04 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d99f276e-ed57-4357-96ff-26a7da428871", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "608c194c-815e-405f-93db-aeba37d5e4e6", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:06 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2788fa1c-32a5-45ce-b9d8-5d1071c501c8", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "83aa7247-301a-4959-a232-d65ade6541fb", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:08 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2e3abf74-afd5-470a-a67c-41fd04fc1061", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b7ba9377-e5c9-43a8-a25b-d9e06cb6145d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:10 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "dc987f83-e155-4c6e-822e-010438ae169c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ec99bfa9-bf03-4546-9b6f-75665a9869d3", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetadeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:12 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "871c9fc9-3900-4335-9961-abe15d811c62", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "9f409a86-aa86-41fa-96f4-5b794ff04388", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-\",\"deletedDate\":1619647845,\"scheduledPurgeDate\":1620252645,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetadeletedkey-/bedd928c6b2b43c4a0054d1cd819199f\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"tRsO7ethvgpKa8YJK7Sj16Tz5klg1yx1jZMBr8aXKrLY48ib8P199b-6f1lmzgpR1HxPA5EdG3KCQyDxr-lAHcIqUMujaS17rDv7mZtrpGojIfaPdWHuOGDo3axFQ2Q9nxlJqgU8e3aCybvV6Ls29Jr41UrQ5MhjuJqEpX4PZCfetqO1rybRjiWt6iMu055Ux7RNli5TmE0RhIA4bcjkoaksSI9kh3cUjkFpiygvtJcFAgZpeGmh48kL_RyxMbNJzi0d-MxUetZ89UbHygala7wncMAaob0KqwjoIYJcSExvPjAm3NBxyXHvwz-IGcfl5thRck6gxjRIHEKwOM1I6Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647845,\"updated\":1619647845,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "887", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:14 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "8ded8ff3-a4a1-4ca1-80cd-3b9b99fb8e26", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "312654f5-be5f-4e62-874e-78bb00b403b4", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-\",\"deletedDate\":1619647845,\"scheduledPurgeDate\":1620252645,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetadeletedkey-/bedd928c6b2b43c4a0054d1cd819199f\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"tRsO7ethvgpKa8YJK7Sj16Tz5klg1yx1jZMBr8aXKrLY48ib8P199b-6f1lmzgpR1HxPA5EdG3KCQyDxr-lAHcIqUMujaS17rDv7mZtrpGojIfaPdWHuOGDo3axFQ2Q9nxlJqgU8e3aCybvV6Ls29Jr41UrQ5MhjuJqEpX4PZCfetqO1rybRjiWt6iMu055Ux7RNli5TmE0RhIA4bcjkoaksSI9kh3cUjkFpiygvtJcFAgZpeGmh48kL_RyxMbNJzi0d-MxUetZ89UbHygala7wncMAaob0KqwjoIYJcSExvPjAm3NBxyXHvwz-IGcfl5thRck6gxjRIHEKwOM1I6Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647845,\"updated\":1619647845,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "887", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:14 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "3db16c05-d0bc-4f77-a0f3-7814eaca011f", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2a03fb3c-486e-4a3d-bb8c-57d98b027f7a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:11:14 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1e9b23be-65f6-4601-9a45-21d114a79810", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "640b336f-c108-4fd1-9fa6-c5976de65a84", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "8995fe78b5d9b3795639484f5728932b" -} \ No newline at end of file + "hash": "8995fe78b5d9b3795639484f5728932b" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_get_a_key.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_get_a_key.json index af26da17bd44..6a8990280a8e 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_get_a_key.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_get_a_key.json @@ -1,545 +1,545 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetakey-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:51 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1de1a2a0-5ab0-43cf-99df-476ebeef04c0", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e6a16348-da86-449f-87de-2bded1cb2732", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetakey-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:51 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1de1a2a0-5ab0-43cf-99df-476ebeef04c0", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e6a16348-da86-449f-87de-2bded1cb2732", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:51 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - SCUS ProdSlices", + "x-ms-request-id": "f61edbfc-1980-461e-9d5e-316c8e665201" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetakey-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\"}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetakey-/c6c6ec176ec645b5b88f41b2847eb838\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"upbhzU-vlJpTO-_q5bsHbMPV_5v2wqvy89moHgND0TGRB4M3F8h7vHFpBluHF1AVk-NuUOtGgvCO-68nrEQDbYStaVFuCO_hRZMQp7YjNKC32-luEfe5-eJ0s2XeAsZNuH14Uj93-SZzuykUb2iBpaFc02tuDOa9kabHAUCqXd5DLvfND8wZ6NvQ92_BsBzCiCHwNgr8wf-5fGhtPDw2BX0kdrMJLJg8-dde4s3BZN6n7yUTqkEkPecuLpC02BDMYLedXaxKQD6FqEFQzujYYjrm-jccoJJAm0JgDNRmZ4RvA46d7KunR5xlrRysbllesuAXoq1-BUkvKlDImS02RQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647792,\"updated\":1619647792,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "714", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:51 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1de1a2a0-5ab0-43cf-99df-476ebeef04c0", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "21ac147b-7232-4e2d-ba3e-14af51d3b31f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetakey-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetakey-/c6c6ec176ec645b5b88f41b2847eb838\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"upbhzU-vlJpTO-_q5bsHbMPV_5v2wqvy89moHgND0TGRB4M3F8h7vHFpBluHF1AVk-NuUOtGgvCO-68nrEQDbYStaVFuCO_hRZMQp7YjNKC32-luEfe5-eJ0s2XeAsZNuH14Uj93-SZzuykUb2iBpaFc02tuDOa9kabHAUCqXd5DLvfND8wZ6NvQ92_BsBzCiCHwNgr8wf-5fGhtPDw2BX0kdrMJLJg8-dde4s3BZN6n7yUTqkEkPecuLpC02BDMYLedXaxKQD6FqEFQzujYYjrm-jccoJJAm0JgDNRmZ4RvA46d7KunR5xlrRysbllesuAXoq1-BUkvKlDImS02RQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647792,\"updated\":1619647792,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "714", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:51 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2ed9d02b-9852-4e8f-bf5c-08e9efe9acd9", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "dae97eea-676b-464b-971a-177b4dc33899", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-\",\"deletedDate\":1619647792,\"scheduledPurgeDate\":1620252592,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetakey-/c6c6ec176ec645b5b88f41b2847eb838\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"upbhzU-vlJpTO-_q5bsHbMPV_5v2wqvy89moHgND0TGRB4M3F8h7vHFpBluHF1AVk-NuUOtGgvCO-68nrEQDbYStaVFuCO_hRZMQp7YjNKC32-luEfe5-eJ0s2XeAsZNuH14Uj93-SZzuykUb2iBpaFc02tuDOa9kabHAUCqXd5DLvfND8wZ6NvQ92_BsBzCiCHwNgr8wf-5fGhtPDw2BX0kdrMJLJg8-dde4s3BZN6n7yUTqkEkPecuLpC02BDMYLedXaxKQD6FqEFQzujYYjrm-jccoJJAm0JgDNRmZ4RvA46d7KunR5xlrRysbllesuAXoq1-BUkvKlDImS02RQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647792,\"updated\":1619647792,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "873", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:52 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "a2933cd2-13ce-4a02-ab82-ee0ec11d656b", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "86cb4fcf-e450-485c-9384-8423bf96bc87", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "107", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:52 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "6a3005e1-59a8-4d14-975f-aab502df9626", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "555a4e94-3be5-45c2-a11a-7bdba02a8cb0", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "107", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:52 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "b576bd6d-a329-4d6b-ba29-5d6a0b9b2743", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "26054417-611a-4c5d-a91b-20ba14d133d1", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "107", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:54 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "0d064519-f0e2-4f12-aef7-42ba15aa4f89", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "db87c734-8517-43b8-96b7-f7d3bf96ff2e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "107", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:57 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "32cc7b32-0a76-4f4c-8808-c7474780e813", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a2b26e0e-c13d-464b-b98c-0a1c4ae5cb4e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "107", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:59 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f9295975-2b8a-4d16-9e86-716026c7369f", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "65885591-b924-415c-90a6-319c130ea506", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "107", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:01 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "06d4381a-08c9-493d-9f9e-4fd3cb1825f1", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2b82397f-0046-423e-bdb1-759f89945d34", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "107", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:03 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "bceec4be-0acc-4a86-a745-78a7688c5f2b", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "40ba267c-575c-4b36-96a3-1539e5911771", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "107", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:05 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "60069d53-50eb-456c-b6b0-06e358042d47", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "6d95ab61-b82e-43b9-b6fc-e0a6aa646b4e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "107", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:07 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e4041911-1a51-4742-a559-c677dbb8b826", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "426ae8b0-e906-4fc7-a94f-f7a75d33bfc5", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "107", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:09 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c4d6ca27-d73e-4277-bbe2-b366f1982acf", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "1d6f4fec-36bf-4374-aa13-c0cc6081e453", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "107", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:11 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "25a03c41-efc2-4781-8b92-28f36539c717", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "cbc3ad36-ee38-4d5c-a791-ec753494c14c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "107", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:13 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "dc43a51b-e97b-4c60-9250-186a9fabe271", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "389830f8-7e25-4033-b58f-027d7b1646ed", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "107", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:15 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d7b75962-a1fb-46df-99e7-c0599d436f48", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ed883afd-2e3f-4da0-9cac-f63f4cc1232d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-\",\"deletedDate\":1619647792,\"scheduledPurgeDate\":1620252592,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetakey-/c6c6ec176ec645b5b88f41b2847eb838\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"upbhzU-vlJpTO-_q5bsHbMPV_5v2wqvy89moHgND0TGRB4M3F8h7vHFpBluHF1AVk-NuUOtGgvCO-68nrEQDbYStaVFuCO_hRZMQp7YjNKC32-luEfe5-eJ0s2XeAsZNuH14Uj93-SZzuykUb2iBpaFc02tuDOa9kabHAUCqXd5DLvfND8wZ6NvQ92_BsBzCiCHwNgr8wf-5fGhtPDw2BX0kdrMJLJg8-dde4s3BZN6n7yUTqkEkPecuLpC02BDMYLedXaxKQD6FqEFQzujYYjrm-jccoJJAm0JgDNRmZ4RvA46d7KunR5xlrRysbllesuAXoq1-BUkvKlDImS02RQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647792,\"updated\":1619647792,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "873", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:17 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "61dc5bc2-b5d8-4339-8987-4dbf7580f438", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "08210ded-cf2e-4e39-b782-e18cfc323963", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:10:18 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "48c46be4-7f61-4971-8026-bc3575aeaeb8", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "54b542e9-6876-4f45-8c21-d90204eeb9ee", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:51 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - SCUS ProdSlices", - "x-ms-request-id": "f61edbfc-1980-461e-9d5e-316c8e665201" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetakey-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\"}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetakey-/c6c6ec176ec645b5b88f41b2847eb838\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"upbhzU-vlJpTO-_q5bsHbMPV_5v2wqvy89moHgND0TGRB4M3F8h7vHFpBluHF1AVk-NuUOtGgvCO-68nrEQDbYStaVFuCO_hRZMQp7YjNKC32-luEfe5-eJ0s2XeAsZNuH14Uj93-SZzuykUb2iBpaFc02tuDOa9kabHAUCqXd5DLvfND8wZ6NvQ92_BsBzCiCHwNgr8wf-5fGhtPDw2BX0kdrMJLJg8-dde4s3BZN6n7yUTqkEkPecuLpC02BDMYLedXaxKQD6FqEFQzujYYjrm-jccoJJAm0JgDNRmZ4RvA46d7KunR5xlrRysbllesuAXoq1-BUkvKlDImS02RQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647792,\"updated\":1619647792,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "714", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:51 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1de1a2a0-5ab0-43cf-99df-476ebeef04c0", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "21ac147b-7232-4e2d-ba3e-14af51d3b31f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetakey-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetakey-/c6c6ec176ec645b5b88f41b2847eb838\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"upbhzU-vlJpTO-_q5bsHbMPV_5v2wqvy89moHgND0TGRB4M3F8h7vHFpBluHF1AVk-NuUOtGgvCO-68nrEQDbYStaVFuCO_hRZMQp7YjNKC32-luEfe5-eJ0s2XeAsZNuH14Uj93-SZzuykUb2iBpaFc02tuDOa9kabHAUCqXd5DLvfND8wZ6NvQ92_BsBzCiCHwNgr8wf-5fGhtPDw2BX0kdrMJLJg8-dde4s3BZN6n7yUTqkEkPecuLpC02BDMYLedXaxKQD6FqEFQzujYYjrm-jccoJJAm0JgDNRmZ4RvA46d7KunR5xlrRysbllesuAXoq1-BUkvKlDImS02RQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647792,\"updated\":1619647792,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "714", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:51 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2ed9d02b-9852-4e8f-bf5c-08e9efe9acd9", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "dae97eea-676b-464b-971a-177b4dc33899", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-\",\"deletedDate\":1619647792,\"scheduledPurgeDate\":1620252592,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetakey-/c6c6ec176ec645b5b88f41b2847eb838\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"upbhzU-vlJpTO-_q5bsHbMPV_5v2wqvy89moHgND0TGRB4M3F8h7vHFpBluHF1AVk-NuUOtGgvCO-68nrEQDbYStaVFuCO_hRZMQp7YjNKC32-luEfe5-eJ0s2XeAsZNuH14Uj93-SZzuykUb2iBpaFc02tuDOa9kabHAUCqXd5DLvfND8wZ6NvQ92_BsBzCiCHwNgr8wf-5fGhtPDw2BX0kdrMJLJg8-dde4s3BZN6n7yUTqkEkPecuLpC02BDMYLedXaxKQD6FqEFQzujYYjrm-jccoJJAm0JgDNRmZ4RvA46d7KunR5xlrRysbllesuAXoq1-BUkvKlDImS02RQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647792,\"updated\":1619647792,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "873", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:52 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "a2933cd2-13ce-4a02-ab82-ee0ec11d656b", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "86cb4fcf-e450-485c-9384-8423bf96bc87", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "107", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:52 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "6a3005e1-59a8-4d14-975f-aab502df9626", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "555a4e94-3be5-45c2-a11a-7bdba02a8cb0", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "107", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:52 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "b576bd6d-a329-4d6b-ba29-5d6a0b9b2743", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "26054417-611a-4c5d-a91b-20ba14d133d1", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "107", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:54 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "0d064519-f0e2-4f12-aef7-42ba15aa4f89", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "db87c734-8517-43b8-96b7-f7d3bf96ff2e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "107", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:57 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "32cc7b32-0a76-4f4c-8808-c7474780e813", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a2b26e0e-c13d-464b-b98c-0a1c4ae5cb4e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "107", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:59 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f9295975-2b8a-4d16-9e86-716026c7369f", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "65885591-b924-415c-90a6-319c130ea506", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "107", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:01 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "06d4381a-08c9-493d-9f9e-4fd3cb1825f1", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2b82397f-0046-423e-bdb1-759f89945d34", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "107", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:03 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "bceec4be-0acc-4a86-a745-78a7688c5f2b", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "40ba267c-575c-4b36-96a3-1539e5911771", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "107", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:05 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "60069d53-50eb-456c-b6b0-06e358042d47", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "6d95ab61-b82e-43b9-b6fc-e0a6aa646b4e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "107", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:07 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e4041911-1a51-4742-a559-c677dbb8b826", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "426ae8b0-e906-4fc7-a94f-f7a75d33bfc5", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "107", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:09 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c4d6ca27-d73e-4277-bbe2-b366f1982acf", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "1d6f4fec-36bf-4374-aa13-c0cc6081e453", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "107", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:11 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "25a03c41-efc2-4781-8b92-28f36539c717", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "cbc3ad36-ee38-4d5c-a791-ec753494c14c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "107", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:13 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "dc43a51b-e97b-4c60-9250-186a9fabe271", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "389830f8-7e25-4033-b58f-027d7b1646ed", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "107", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:15 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d7b75962-a1fb-46df-99e7-c0599d436f48", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ed883afd-2e3f-4da0-9cac-f63f4cc1232d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-\",\"deletedDate\":1619647792,\"scheduledPurgeDate\":1620252592,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetakey-/c6c6ec176ec645b5b88f41b2847eb838\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"upbhzU-vlJpTO-_q5bsHbMPV_5v2wqvy89moHgND0TGRB4M3F8h7vHFpBluHF1AVk-NuUOtGgvCO-68nrEQDbYStaVFuCO_hRZMQp7YjNKC32-luEfe5-eJ0s2XeAsZNuH14Uj93-SZzuykUb2iBpaFc02tuDOa9kabHAUCqXd5DLvfND8wZ6NvQ92_BsBzCiCHwNgr8wf-5fGhtPDw2BX0kdrMJLJg8-dde4s3BZN6n7yUTqkEkPecuLpC02BDMYLedXaxKQD6FqEFQzujYYjrm-jccoJJAm0JgDNRmZ4RvA46d7KunR5xlrRysbllesuAXoq1-BUkvKlDImS02RQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647792,\"updated\":1619647792,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "873", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:17 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "61dc5bc2-b5d8-4339-8987-4dbf7580f438", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "08210ded-cf2e-4e39-b782-e18cfc323963", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:10:18 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "48c46be4-7f61-4971-8026-bc3575aeaeb8", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "54b542e9-6876-4f45-8c21-d90204eeb9ee", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "83518876a5e953a348199ba719c3b9e9" -} \ No newline at end of file + "hash": "83518876a5e953a348199ba719c3b9e9" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_get_a_specific_version_of_a_key.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_get_a_specific_version_of_a_key.json index 370ebf265259..bb6b7a02a314 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_get_a_specific_version_of_a_key.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_get_a_specific_version_of_a_key.json @@ -1,545 +1,545 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetaspecificversionofakey-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:18 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "000a0e77-a438-4e31-ac93-7453a3128645", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "733b0687-021b-4eef-a753-23079c9e5f2c", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetaspecificversionofakey-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:18 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "000a0e77-a438-4e31-ac93-7453a3128645", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "733b0687-021b-4eef-a753-23079c9e5f2c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:18 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - WUS2 ProdSlices", + "x-ms-request-id": "67773429-54a0-4d33-8329-a6186cc5c100" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetaspecificversionofakey-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\"}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetaspecificversionofakey-/2846f2aefd5a4b41b2c78f14a3b220ba\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wSm_jve3Y5SQTNsFCKQh0jKFrGIlUmqeUfjfwFs9Fi3fE5oaQXfo2nJH3psY47G1aofPdzeSm2QysjxiOOq9ap9rSA_I4TxZ-m-nefauysfEYmPGuq0w9UyFCFi7-sK295uzEmvH6c_dFi3TqzDPmPDJSDYhO3ZGAqwH374kLPmUDfjqdG4V2ED0Tw1jqEHwofGhPKixxN5DVih_68XdF1dyEHRkwnG2q8Jn5UP3XPUwfxgmWZdx_vPFRVgQIDvgMLspuPkkOsBm8yIgfq11of92EADrXFKNpHdz9ysXC541kfY39rbQA_rUbJoxgs7xOoYNclLwlOPEREp71XRo1Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647819,\"updated\":1619647819,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "732", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:18 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "000a0e77-a438-4e31-ac93-7453a3128645", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f75460f9-0556-41b5-a30b-39f2fcdaa15e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetaspecificversionofakey-/2846f2aefd5a4b41b2c78f14a3b220ba", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetaspecificversionofakey-/2846f2aefd5a4b41b2c78f14a3b220ba\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wSm_jve3Y5SQTNsFCKQh0jKFrGIlUmqeUfjfwFs9Fi3fE5oaQXfo2nJH3psY47G1aofPdzeSm2QysjxiOOq9ap9rSA_I4TxZ-m-nefauysfEYmPGuq0w9UyFCFi7-sK295uzEmvH6c_dFi3TqzDPmPDJSDYhO3ZGAqwH374kLPmUDfjqdG4V2ED0Tw1jqEHwofGhPKixxN5DVih_68XdF1dyEHRkwnG2q8Jn5UP3XPUwfxgmWZdx_vPFRVgQIDvgMLspuPkkOsBm8yIgfq11of92EADrXFKNpHdz9ysXC541kfY39rbQA_rUbJoxgs7xOoYNclLwlOPEREp71XRo1Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647819,\"updated\":1619647819,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "732", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:18 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "96766af5-f9c7-47b3-829c-cbecdfbb1c30", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c0e2eac4-996c-4f11-a8ce-0ee134c99c04", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetaspecificversionofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-\",\"deletedDate\":1619647819,\"scheduledPurgeDate\":1620252619,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetaspecificversionofakey-/2846f2aefd5a4b41b2c78f14a3b220ba\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wSm_jve3Y5SQTNsFCKQh0jKFrGIlUmqeUfjfwFs9Fi3fE5oaQXfo2nJH3psY47G1aofPdzeSm2QysjxiOOq9ap9rSA_I4TxZ-m-nefauysfEYmPGuq0w9UyFCFi7-sK295uzEmvH6c_dFi3TqzDPmPDJSDYhO3ZGAqwH374kLPmUDfjqdG4V2ED0Tw1jqEHwofGhPKixxN5DVih_68XdF1dyEHRkwnG2q8Jn5UP3XPUwfxgmWZdx_vPFRVgQIDvgMLspuPkkOsBm8yIgfq11of92EADrXFKNpHdz9ysXC541kfY39rbQA_rUbJoxgs7xOoYNclLwlOPEREp71XRo1Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647819,\"updated\":1619647819,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "909", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:19 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "a03d5b78-970d-4b76-8b8b-19b44d3261a3", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "01ab464b-6f33-4b0a-908b-5232cf22b20b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetaspecificversionofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "125", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:19 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "111b37b4-1e6b-49b3-9fda-6b1b7b046b86", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "916d9ce0-3146-41ed-af56-173034b352c2", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetaspecificversionofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "125", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:19 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "14618a06-41d6-4334-8b14-d38a8252733d", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "035d8fb6-53a5-4c06-8e83-ee3066bd1358", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetaspecificversionofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "125", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:21 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "fcbf05d4-487a-4442-b1cc-ef2659fe9c87", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "0a4c4471-1d74-4f02-9fe1-afdb767183b6", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetaspecificversionofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "125", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:23 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "26bd9fac-808c-477a-948f-4c420c022b0a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4654cb1b-fb6b-4664-a60b-ec6279223d55", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetaspecificversionofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "125", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:25 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "01a00d4b-9373-4b05-8ec6-0595bbf407c0", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "773e7062-7917-4469-81ca-e8d6128f5402", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetaspecificversionofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "125", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:27 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "b425f59c-1597-4903-aa83-86649f59270a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c02e92de-d64e-4429-89b3-f2a7a45097eb", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetaspecificversionofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "125", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:30 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "89baa80b-4f84-4914-84c6-4e6f47448226", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "23b92fc5-a792-49b5-894d-e578f10346fe", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetaspecificversionofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "125", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:32 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "bda660bf-3f54-46d4-afef-4ab1e0a156a7", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3e641e4c-cc0f-4ef1-a392-38c1ab70cbde", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetaspecificversionofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "125", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:34 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "69278a95-a340-4c7b-ab7c-8d3cb7c6b75b", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d0822d04-bc7e-4e2d-92a5-f390e817219c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetaspecificversionofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "125", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:36 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c588ec13-b3ee-4cfc-b696-e40e2a2fe6f0", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e24e08f3-1881-4c78-a3a8-dcd6baf9d5c4", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetaspecificversionofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "125", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:38 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "8a1bb199-a3f2-4a62-99e3-9969c7942919", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ac33e8d8-2c20-45a1-8475-15fc7b7997c3", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetaspecificversionofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "125", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:40 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "8ce057c6-f9ca-4d54-9e26-2f8a83ab347b", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "763a5ee3-c2da-4752-bec0-99865bde8f6d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetaspecificversionofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "125", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:42 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "27ebfe69-d4d5-4571-a77d-e9f299268e23", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "9944fd7f-3aeb-4a8f-9b07-2eb3c6f789e0", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-\",\"deletedDate\":1619647819,\"scheduledPurgeDate\":1620252619,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetaspecificversionofakey-/2846f2aefd5a4b41b2c78f14a3b220ba\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wSm_jve3Y5SQTNsFCKQh0jKFrGIlUmqeUfjfwFs9Fi3fE5oaQXfo2nJH3psY47G1aofPdzeSm2QysjxiOOq9ap9rSA_I4TxZ-m-nefauysfEYmPGuq0w9UyFCFi7-sK295uzEmvH6c_dFi3TqzDPmPDJSDYhO3ZGAqwH374kLPmUDfjqdG4V2ED0Tw1jqEHwofGhPKixxN5DVih_68XdF1dyEHRkwnG2q8Jn5UP3XPUwfxgmWZdx_vPFRVgQIDvgMLspuPkkOsBm8yIgfq11of92EADrXFKNpHdz9ysXC541kfY39rbQA_rUbJoxgs7xOoYNclLwlOPEREp71XRo1Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647819,\"updated\":1619647819,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "909", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:10:44 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "4d374fa9-2f2f-438a-ba23-9cdd70b1da8e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "51b60f35-bcc1-4539-afee-c6d7fcd0fe1f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:10:44 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1bd43695-66b2-4dc3-910a-d82faa5f2880", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5e2f9f0c-4d7b-4413-9ad0-da1572800cc2", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:18 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - WUS2 ProdSlices", - "x-ms-request-id": "67773429-54a0-4d33-8329-a6186cc5c100" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetaspecificversionofakey-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\"}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetaspecificversionofakey-/2846f2aefd5a4b41b2c78f14a3b220ba\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wSm_jve3Y5SQTNsFCKQh0jKFrGIlUmqeUfjfwFs9Fi3fE5oaQXfo2nJH3psY47G1aofPdzeSm2QysjxiOOq9ap9rSA_I4TxZ-m-nefauysfEYmPGuq0w9UyFCFi7-sK295uzEmvH6c_dFi3TqzDPmPDJSDYhO3ZGAqwH374kLPmUDfjqdG4V2ED0Tw1jqEHwofGhPKixxN5DVih_68XdF1dyEHRkwnG2q8Jn5UP3XPUwfxgmWZdx_vPFRVgQIDvgMLspuPkkOsBm8yIgfq11of92EADrXFKNpHdz9ysXC541kfY39rbQA_rUbJoxgs7xOoYNclLwlOPEREp71XRo1Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647819,\"updated\":1619647819,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "732", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:18 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "000a0e77-a438-4e31-ac93-7453a3128645", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f75460f9-0556-41b5-a30b-39f2fcdaa15e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetaspecificversionofakey-/2846f2aefd5a4b41b2c78f14a3b220ba", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetaspecificversionofakey-/2846f2aefd5a4b41b2c78f14a3b220ba\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wSm_jve3Y5SQTNsFCKQh0jKFrGIlUmqeUfjfwFs9Fi3fE5oaQXfo2nJH3psY47G1aofPdzeSm2QysjxiOOq9ap9rSA_I4TxZ-m-nefauysfEYmPGuq0w9UyFCFi7-sK295uzEmvH6c_dFi3TqzDPmPDJSDYhO3ZGAqwH374kLPmUDfjqdG4V2ED0Tw1jqEHwofGhPKixxN5DVih_68XdF1dyEHRkwnG2q8Jn5UP3XPUwfxgmWZdx_vPFRVgQIDvgMLspuPkkOsBm8yIgfq11of92EADrXFKNpHdz9ysXC541kfY39rbQA_rUbJoxgs7xOoYNclLwlOPEREp71XRo1Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647819,\"updated\":1619647819,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "732", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:18 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "96766af5-f9c7-47b3-829c-cbecdfbb1c30", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c0e2eac4-996c-4f11-a8ce-0ee134c99c04", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetaspecificversionofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-\",\"deletedDate\":1619647819,\"scheduledPurgeDate\":1620252619,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetaspecificversionofakey-/2846f2aefd5a4b41b2c78f14a3b220ba\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wSm_jve3Y5SQTNsFCKQh0jKFrGIlUmqeUfjfwFs9Fi3fE5oaQXfo2nJH3psY47G1aofPdzeSm2QysjxiOOq9ap9rSA_I4TxZ-m-nefauysfEYmPGuq0w9UyFCFi7-sK295uzEmvH6c_dFi3TqzDPmPDJSDYhO3ZGAqwH374kLPmUDfjqdG4V2ED0Tw1jqEHwofGhPKixxN5DVih_68XdF1dyEHRkwnG2q8Jn5UP3XPUwfxgmWZdx_vPFRVgQIDvgMLspuPkkOsBm8yIgfq11of92EADrXFKNpHdz9ysXC541kfY39rbQA_rUbJoxgs7xOoYNclLwlOPEREp71XRo1Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647819,\"updated\":1619647819,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "909", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:19 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "a03d5b78-970d-4b76-8b8b-19b44d3261a3", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "01ab464b-6f33-4b0a-908b-5232cf22b20b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetaspecificversionofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "125", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:19 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "111b37b4-1e6b-49b3-9fda-6b1b7b046b86", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "916d9ce0-3146-41ed-af56-173034b352c2", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetaspecificversionofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "125", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:19 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "14618a06-41d6-4334-8b14-d38a8252733d", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "035d8fb6-53a5-4c06-8e83-ee3066bd1358", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetaspecificversionofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "125", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:21 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "fcbf05d4-487a-4442-b1cc-ef2659fe9c87", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "0a4c4471-1d74-4f02-9fe1-afdb767183b6", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetaspecificversionofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "125", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:23 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "26bd9fac-808c-477a-948f-4c420c022b0a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4654cb1b-fb6b-4664-a60b-ec6279223d55", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetaspecificversionofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "125", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:25 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "01a00d4b-9373-4b05-8ec6-0595bbf407c0", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "773e7062-7917-4469-81ca-e8d6128f5402", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetaspecificversionofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "125", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:27 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "b425f59c-1597-4903-aa83-86649f59270a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c02e92de-d64e-4429-89b3-f2a7a45097eb", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetaspecificversionofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "125", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:30 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "89baa80b-4f84-4914-84c6-4e6f47448226", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "23b92fc5-a792-49b5-894d-e578f10346fe", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetaspecificversionofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "125", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:32 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "bda660bf-3f54-46d4-afef-4ab1e0a156a7", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3e641e4c-cc0f-4ef1-a392-38c1ab70cbde", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetaspecificversionofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "125", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:34 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "69278a95-a340-4c7b-ab7c-8d3cb7c6b75b", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d0822d04-bc7e-4e2d-92a5-f390e817219c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetaspecificversionofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "125", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:36 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c588ec13-b3ee-4cfc-b696-e40e2a2fe6f0", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e24e08f3-1881-4c78-a3a8-dcd6baf9d5c4", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetaspecificversionofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "125", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:38 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "8a1bb199-a3f2-4a62-99e3-9969c7942919", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ac33e8d8-2c20-45a1-8475-15fc7b7997c3", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetaspecificversionofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "125", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:40 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "8ce057c6-f9ca-4d54-9e26-2f8a83ab347b", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "763a5ee3-c2da-4752-bec0-99865bde8f6d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-cangetaspecificversionofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "125", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:42 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "27ebfe69-d4d5-4571-a77d-e9f299268e23", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "9944fd7f-3aeb-4a8f-9b07-2eb3c6f789e0", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-\",\"deletedDate\":1619647819,\"scheduledPurgeDate\":1620252619,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cangetaspecificversionofakey-/2846f2aefd5a4b41b2c78f14a3b220ba\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wSm_jve3Y5SQTNsFCKQh0jKFrGIlUmqeUfjfwFs9Fi3fE5oaQXfo2nJH3psY47G1aofPdzeSm2QysjxiOOq9ap9rSA_I4TxZ-m-nefauysfEYmPGuq0w9UyFCFi7-sK295uzEmvH6c_dFi3TqzDPmPDJSDYhO3ZGAqwH374kLPmUDfjqdG4V2ED0Tw1jqEHwofGhPKixxN5DVih_68XdF1dyEHRkwnG2q8Jn5UP3XPUwfxgmWZdx_vPFRVgQIDvgMLspuPkkOsBm8yIgfq11of92EADrXFKNpHdz9ysXC541kfY39rbQA_rUbJoxgs7xOoYNclLwlOPEREp71XRo1Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647819,\"updated\":1619647819,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "909", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:10:44 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "4d374fa9-2f2f-438a-ba23-9cdd70b1da8e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "51b60f35-bcc1-4539-afee-c6d7fcd0fe1f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-cangetaspecificversionofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:10:44 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1bd43695-66b2-4dc3-910a-d82faa5f2880", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5e2f9f0c-4d7b-4413-9ad0-da1572800cc2", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "2e7ab0525618909e63047864340176cd" -} \ No newline at end of file + "hash": "2e7ab0525618909e63047864340176cd" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_purge_a_deleted_key.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_purge_a_deleted_key.json index 6f5421028904..3edb81391a87 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_purge_a_deleted_key.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_purge_a_deleted_key.json @@ -1,545 +1,545 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canpurgeadeletedkey-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:16 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "605fed64-ae7c-44ba-b263-e413a8a4cf13", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e702d614-53a6-4b21-9d8c-05c1e0d99f55", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canpurgeadeletedkey-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:16 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "605fed64-ae7c-44ba-b263-e413a8a4cf13", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e702d614-53a6-4b21-9d8c-05c1e0d99f55", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:15 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - SCUS ProdSlices", + "x-ms-request-id": "f61edbfc-1980-461e-9d5e-316c87755201" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canpurgeadeletedkey-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\"}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canpurgeadeletedkey-/78acad34115c4a22958e252c7d8da072\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"oQR_4195JsOKRyj8eux5nwhTPSE65sRUGEr045n6I452Lco73x9lfG2_G-qV7tFxPwfgr1aYrIG_nZrAnOKG6c0wqYmJJRpZ_izj7qzoMDqOQMvhSmM2kJfy-pRqnx60PLMtxCAnFI811V1ALO9LAmIM0V61XfwgvMAm1wD1zmnOO7ePSAaLL3W5T0PUU8Cp_Jm1iRZ3aHrkHK88HXm2Fi9rZNxonLuZuTPSgUCrmmT9ZJzHmpDsKCp3uK8Hh7qxi1kdxlUwRw_nfzJ7ToESKccTMZhdc-TzPL0lfRNrBaffwnbWbUwVrHbSfWxoDohamtUwnqWT5DJx97p9UCExWQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647876,\"updated\":1619647876,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "723", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:16 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "605fed64-ae7c-44ba-b263-e413a8a4cf13", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a83b1b8f-b3fb-44a0-8677-a0645e02ef65", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canpurgeadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-\",\"deletedDate\":1619647877,\"scheduledPurgeDate\":1620252677,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canpurgeadeletedkey-/78acad34115c4a22958e252c7d8da072\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"oQR_4195JsOKRyj8eux5nwhTPSE65sRUGEr045n6I452Lco73x9lfG2_G-qV7tFxPwfgr1aYrIG_nZrAnOKG6c0wqYmJJRpZ_izj7qzoMDqOQMvhSmM2kJfy-pRqnx60PLMtxCAnFI811V1ALO9LAmIM0V61XfwgvMAm1wD1zmnOO7ePSAaLL3W5T0PUU8Cp_Jm1iRZ3aHrkHK88HXm2Fi9rZNxonLuZuTPSgUCrmmT9ZJzHmpDsKCp3uK8Hh7qxi1kdxlUwRw_nfzJ7ToESKccTMZhdc-TzPL0lfRNrBaffwnbWbUwVrHbSfWxoDohamtUwnqWT5DJx97p9UCExWQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647876,\"updated\":1619647876,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "891", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:16 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e8401f77-11f5-4074-b0e3-2a92a93427d9", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c9c3ee02-092a-4c48-9969-f57f71d65fc4", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canpurgeadeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "116", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:17 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d0717f16-ae6f-4c40-83f4-53614b51c166", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "80821dc6-8397-4cf7-9cfd-5b6bc75e87eb", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canpurgeadeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "116", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:17 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "b27cc2cf-16bd-451b-9d11-e0ab7fd87d4f", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ad7d27c5-1ebc-438c-8893-edb6e7b3d948", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canpurgeadeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "116", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:19 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "7b62c31f-b31e-4079-8aef-6bd4cbd5fe13", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "02ecba9e-cf98-461d-a094-a15419385b16", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canpurgeadeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "116", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:21 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d6b54d77-5483-4507-b651-fcd07ce17700", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "79dc73c9-32bb-4553-90d2-2c7470591d60", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canpurgeadeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "116", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:23 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "54154f62-5b19-4a1e-9f79-649b1a0ebe06", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "7bcfd31c-88ad-477f-80d6-052f9fc52173", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canpurgeadeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "116", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:25 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "57411bad-b174-44ed-b818-4a5f7b6d44b2", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3792939b-2b98-4b1a-ada9-b6347be71fda", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canpurgeadeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "116", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:27 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "65ad67ef-485c-46be-a458-438245710b66", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2e20523a-8bd8-4ec9-93dd-2faf953a0f51", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canpurgeadeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "116", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:29 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "5cb0775c-9b05-4889-bfaa-f04f01d905a8", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "afe7b136-5e9b-4616-8ac8-bdc5854b5a55", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canpurgeadeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "116", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:31 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e6310c75-e70a-40ae-ad4c-73d07ad79963", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "618a1410-d997-45f9-b560-ab4e25820e53", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canpurgeadeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "116", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:33 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "00118105-2660-49e5-adbb-88beed5bfb6f", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2f90019e-061b-44b6-ba38-691a2cfb4a5f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canpurgeadeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "116", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:36 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "315e80a6-ed58-4f99-aa78-c997ca366f15", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "849a444d-8c82-45ce-982b-b8745627e79b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canpurgeadeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "116", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:38 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "466b95f7-f050-4ea0-8e3d-fdd3d3ebf70b", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a528484b-597b-4092-a34f-dd264d9522ad", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canpurgeadeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "116", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:40 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "cc214aae-ffb5-4949-ba73-3425246c3675", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "68a589a8-4401-4b48-8750-0ca065617ed2", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canpurgeadeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "116", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:42 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "486c3627-b79d-4a2c-b1c6-b41e571ffecf", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e8cc5676-4a1e-47db-b8c7-2d6a4183a158", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-\",\"deletedDate\":1619647877,\"scheduledPurgeDate\":1620252677,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canpurgeadeletedkey-/78acad34115c4a22958e252c7d8da072\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"oQR_4195JsOKRyj8eux5nwhTPSE65sRUGEr045n6I452Lco73x9lfG2_G-qV7tFxPwfgr1aYrIG_nZrAnOKG6c0wqYmJJRpZ_izj7qzoMDqOQMvhSmM2kJfy-pRqnx60PLMtxCAnFI811V1ALO9LAmIM0V61XfwgvMAm1wD1zmnOO7ePSAaLL3W5T0PUU8Cp_Jm1iRZ3aHrkHK88HXm2Fi9rZNxonLuZuTPSgUCrmmT9ZJzHmpDsKCp3uK8Hh7qxi1kdxlUwRw_nfzJ7ToESKccTMZhdc-TzPL0lfRNrBaffwnbWbUwVrHbSfWxoDohamtUwnqWT5DJx97p9UCExWQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647876,\"updated\":1619647876,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "891", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:44 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "837b04d7-e830-4d4c-b19a-414426faa0b6", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "722dee64-a03d-4b01-b71f-851c2f31c41f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:11:45 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "b720fc83-8b61-4090-abdc-6e58343b1de3", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ae6454e0-f49b-494d-b915-eace3833758d", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:15 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - SCUS ProdSlices", - "x-ms-request-id": "f61edbfc-1980-461e-9d5e-316c87755201" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canpurgeadeletedkey-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\"}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canpurgeadeletedkey-/78acad34115c4a22958e252c7d8da072\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"oQR_4195JsOKRyj8eux5nwhTPSE65sRUGEr045n6I452Lco73x9lfG2_G-qV7tFxPwfgr1aYrIG_nZrAnOKG6c0wqYmJJRpZ_izj7qzoMDqOQMvhSmM2kJfy-pRqnx60PLMtxCAnFI811V1ALO9LAmIM0V61XfwgvMAm1wD1zmnOO7ePSAaLL3W5T0PUU8Cp_Jm1iRZ3aHrkHK88HXm2Fi9rZNxonLuZuTPSgUCrmmT9ZJzHmpDsKCp3uK8Hh7qxi1kdxlUwRw_nfzJ7ToESKccTMZhdc-TzPL0lfRNrBaffwnbWbUwVrHbSfWxoDohamtUwnqWT5DJx97p9UCExWQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647876,\"updated\":1619647876,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "723", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:16 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "605fed64-ae7c-44ba-b263-e413a8a4cf13", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a83b1b8f-b3fb-44a0-8677-a0645e02ef65", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canpurgeadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-\",\"deletedDate\":1619647877,\"scheduledPurgeDate\":1620252677,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canpurgeadeletedkey-/78acad34115c4a22958e252c7d8da072\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"oQR_4195JsOKRyj8eux5nwhTPSE65sRUGEr045n6I452Lco73x9lfG2_G-qV7tFxPwfgr1aYrIG_nZrAnOKG6c0wqYmJJRpZ_izj7qzoMDqOQMvhSmM2kJfy-pRqnx60PLMtxCAnFI811V1ALO9LAmIM0V61XfwgvMAm1wD1zmnOO7ePSAaLL3W5T0PUU8Cp_Jm1iRZ3aHrkHK88HXm2Fi9rZNxonLuZuTPSgUCrmmT9ZJzHmpDsKCp3uK8Hh7qxi1kdxlUwRw_nfzJ7ToESKccTMZhdc-TzPL0lfRNrBaffwnbWbUwVrHbSfWxoDohamtUwnqWT5DJx97p9UCExWQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647876,\"updated\":1619647876,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "891", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:16 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e8401f77-11f5-4074-b0e3-2a92a93427d9", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c9c3ee02-092a-4c48-9969-f57f71d65fc4", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canpurgeadeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "116", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:17 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d0717f16-ae6f-4c40-83f4-53614b51c166", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "80821dc6-8397-4cf7-9cfd-5b6bc75e87eb", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canpurgeadeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "116", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:17 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "b27cc2cf-16bd-451b-9d11-e0ab7fd87d4f", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ad7d27c5-1ebc-438c-8893-edb6e7b3d948", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canpurgeadeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "116", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:19 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "7b62c31f-b31e-4079-8aef-6bd4cbd5fe13", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "02ecba9e-cf98-461d-a094-a15419385b16", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canpurgeadeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "116", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:21 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d6b54d77-5483-4507-b651-fcd07ce17700", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "79dc73c9-32bb-4553-90d2-2c7470591d60", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canpurgeadeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "116", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:23 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "54154f62-5b19-4a1e-9f79-649b1a0ebe06", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "7bcfd31c-88ad-477f-80d6-052f9fc52173", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canpurgeadeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "116", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:25 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "57411bad-b174-44ed-b818-4a5f7b6d44b2", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3792939b-2b98-4b1a-ada9-b6347be71fda", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canpurgeadeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "116", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:27 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "65ad67ef-485c-46be-a458-438245710b66", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2e20523a-8bd8-4ec9-93dd-2faf953a0f51", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canpurgeadeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "116", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:29 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "5cb0775c-9b05-4889-bfaa-f04f01d905a8", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "afe7b136-5e9b-4616-8ac8-bdc5854b5a55", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canpurgeadeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "116", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:31 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e6310c75-e70a-40ae-ad4c-73d07ad79963", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "618a1410-d997-45f9-b560-ab4e25820e53", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canpurgeadeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "116", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:33 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "00118105-2660-49e5-adbb-88beed5bfb6f", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2f90019e-061b-44b6-ba38-691a2cfb4a5f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canpurgeadeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "116", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:36 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "315e80a6-ed58-4f99-aa78-c997ca366f15", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "849a444d-8c82-45ce-982b-b8745627e79b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canpurgeadeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "116", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:38 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "466b95f7-f050-4ea0-8e3d-fdd3d3ebf70b", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a528484b-597b-4092-a34f-dd264d9522ad", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canpurgeadeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "116", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:40 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "cc214aae-ffb5-4949-ba73-3425246c3675", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "68a589a8-4401-4b48-8750-0ca065617ed2", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canpurgeadeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "116", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:42 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "486c3627-b79d-4a2c-b1c6-b41e571ffecf", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e8cc5676-4a1e-47db-b8c7-2d6a4183a158", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-\",\"deletedDate\":1619647877,\"scheduledPurgeDate\":1620252677,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canpurgeadeletedkey-/78acad34115c4a22958e252c7d8da072\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"oQR_4195JsOKRyj8eux5nwhTPSE65sRUGEr045n6I452Lco73x9lfG2_G-qV7tFxPwfgr1aYrIG_nZrAnOKG6c0wqYmJJRpZ_izj7qzoMDqOQMvhSmM2kJfy-pRqnx60PLMtxCAnFI811V1ALO9LAmIM0V61XfwgvMAm1wD1zmnOO7ePSAaLL3W5T0PUU8Cp_Jm1iRZ3aHrkHK88HXm2Fi9rZNxonLuZuTPSgUCrmmT9ZJzHmpDsKCp3uK8Hh7qxi1kdxlUwRw_nfzJ7ToESKccTMZhdc-TzPL0lfRNrBaffwnbWbUwVrHbSfWxoDohamtUwnqWT5DJx97p9UCExWQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647876,\"updated\":1619647876,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "891", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:44 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "837b04d7-e830-4d4c-b19a-414426faa0b6", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "722dee64-a03d-4b01-b71f-851c2f31c41f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canpurgeadeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:11:45 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "b720fc83-8b61-4090-abdc-6e58343b1de3", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ae6454e0-f49b-494d-b915-eace3833758d", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "e5a21c769b4ab6e14b08a3bca267283c" -} \ No newline at end of file + "hash": "e5a21c769b4ab6e14b08a3bca267283c" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_update_a_disabled_key.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_update_a_disabled_key.json index cb0f21937ecd..d283472add4d 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_update_a_disabled_key.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_update_a_disabled_key.json @@ -1,815 +1,815 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdateadisabledkey-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:20 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d2ab71a8-be17-4011-8af6-badebbe6a411", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "9b3eee76-6479-4e86-8b6c-15ceb8d7c333", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdateadisabledkey-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:20 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d2ab71a8-be17-4011-8af6-badebbe6a411", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "9b3eee76-6479-4e86-8b6c-15ceb8d7c333", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:20 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", + "x-ms-request-id": "cd7787fa-9afc-44d7-b558-d7a4c9bb4401" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdateadisabledkey-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\",\"attributes\":{\"enabled\":false}}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdateadisabledkey-/6f85a0b625de4422be7d7697ca78a711\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"opdFUoYAm2s3RtKrlNIcS9_U4Qk5K-YEchNNOOxQI3UJMCn52ySAaTnP2AuBqpxdV1TSO9d9aCi100L1K3Dm1vTHGvsGeBs-HoiZkNX8tTQnc5WaeYoLVMzfzYkPKXHE3UsRexjmB54E1PtDhANQtVZQlWN-Ysi3pjQcWzMmVCetldKkgRbssQL4-YI8UGMPgEoHbhVO6PPn29vPQfWWv0Kh0adie6zQI2m60SIh7JvUHuRZSLBb5EYVPd_xMZ6-6bbR1JmnRpIPr8-9jYhz-FvbmVMrdwvynUp_OGDCPdK4bRrSG7QJFaxY-357TLQRRzDstMy_yMtKTFDX6OKM5Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":false,\"created\":1619647700,\"updated\":1619647700,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "726", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:20 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d2ab71a8-be17-4011-8af6-badebbe6a411", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "565ce68a-0e74-40a2-91a6-6c90a4bc4c4e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "PATCH", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdateadisabledkey-/6f85a0b625de4422be7d7697ca78a711", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"attributes\":{\"exp\":1546300800}}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdateadisabledkey-/6f85a0b625de4422be7d7697ca78a711\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"opdFUoYAm2s3RtKrlNIcS9_U4Qk5K-YEchNNOOxQI3UJMCn52ySAaTnP2AuBqpxdV1TSO9d9aCi100L1K3Dm1vTHGvsGeBs-HoiZkNX8tTQnc5WaeYoLVMzfzYkPKXHE3UsRexjmB54E1PtDhANQtVZQlWN-Ysi3pjQcWzMmVCetldKkgRbssQL4-YI8UGMPgEoHbhVO6PPn29vPQfWWv0Kh0adie6zQI2m60SIh7JvUHuRZSLBb5EYVPd_xMZ6-6bbR1JmnRpIPr8-9jYhz-FvbmVMrdwvynUp_OGDCPdK4bRrSG7QJFaxY-357TLQRRzDstMy_yMtKTFDX6OKM5Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":false,\"exp\":1546300800,\"created\":1619647700,\"updated\":1619647701,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "743", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:20 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "876c9cf1-5aa3-4895-8deb-d33af31811d3", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3b3f28df-4c1a-472d-b065-d45bafe80d58", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-\",\"deletedDate\":1619647701,\"scheduledPurgeDate\":1620252501,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdateadisabledkey-/6f85a0b625de4422be7d7697ca78a711\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"opdFUoYAm2s3RtKrlNIcS9_U4Qk5K-YEchNNOOxQI3UJMCn52ySAaTnP2AuBqpxdV1TSO9d9aCi100L1K3Dm1vTHGvsGeBs-HoiZkNX8tTQnc5WaeYoLVMzfzYkPKXHE3UsRexjmB54E1PtDhANQtVZQlWN-Ysi3pjQcWzMmVCetldKkgRbssQL4-YI8UGMPgEoHbhVO6PPn29vPQfWWv0Kh0adie6zQI2m60SIh7JvUHuRZSLBb5EYVPd_xMZ6-6bbR1JmnRpIPr8-9jYhz-FvbmVMrdwvynUp_OGDCPdK4bRrSG7QJFaxY-357TLQRRzDstMy_yMtKTFDX6OKM5Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":false,\"exp\":1546300800,\"created\":1619647700,\"updated\":1619647701,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "913", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:21 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "194f45ed-738b-4273-ba3a-e93c9ad98d4f", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a65cb68b-8b4e-4671-af96-16f3fd3334df", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:21 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "6287347a-b00a-43e9-b31f-01f877a29386", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5bd30389-d30a-4da5-b888-fca073888c9f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:21 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "0bd82ea6-4306-48f5-92bd-f99f1760748e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5a2c6761-6372-444e-8986-3ada19d03833", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:23 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "52b4c763-9750-47e4-ac67-1dad85bf18f8", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3e244601-c906-41d8-9d60-b9351c954a17", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:25 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "664b56f9-3b27-4386-aff6-77598fe2b4d3", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c924baf8-11e5-4320-a90b-ed730685d054", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:27 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "724d7f2c-18ed-4d05-9b5d-561428a748df", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b22c61fa-a1fc-4365-a2bd-cc29b92a754d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:30 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "012c214e-c876-4f39-b435-bea69e6c6d4b", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4bf36d43-4055-403a-8517-2faf24daefd8", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:32 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9fd41c2c-ae8a-40a0-b4b1-baaf51549f8a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "7303356b-bb91-4fa4-8ec3-078bc11b127a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:34 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "4f197a82-6a7e-408f-a9b2-1c60c636ec48", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "6e71f29a-2d38-4753-9458-15692de6b114", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:35 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "0af1cf51-67d8-4691-bbf7-a729462b6035", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f758d411-7f98-477d-b091-d9cb8d00763b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:37 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "72b3811e-8c0b-4b1a-af23-d0e948a345ee", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ec6a00dd-3ee8-4c15-8d1f-6dff7a448e0e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:39 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "bacbd73e-74bc-4a50-ac12-6bc792eda138", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "60ab846f-1066-4d92-94cb-c0f24dd5df74", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:41 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "b47c8014-6934-466d-93f6-674f4bdf90b8", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4739c777-7c71-4cf7-9d91-ad7d8e02688a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:44 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "31542382-c482-4b6c-a7cb-6bf0bc8af559", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5457bfd8-7e1f-4457-8cdb-7bacdbad939d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:46 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "655fd6d9-e3bb-4628-936b-6bbd026cdc53", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "49042572-41c6-4d8a-9612-a1baf90514c1", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:48 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1fb44c6c-5efe-4f8c-b040-4a9737ddf867", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "bbc4d032-b8cb-4e89-a26e-45f402c25d0e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:50 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "de49eaf8-cb3b-439f-acbc-c436b1d36f44", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a5297036-2bee-447d-a3ff-573ddedc3277", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:52 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "db11a0e5-a2a3-4284-a33f-cd3561ac101c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c85ac722-c624-4266-be3a-24ab5eb6a17c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:54 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "5fac8e54-38fd-48d7-ad96-69fdf16e1f67", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e90b055c-30bc-47ed-b260-3482e5832c3e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:56 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "599aa545-7543-43be-80f7-ae61d2e9aabe", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "25888dbc-d020-442e-8184-3d0cd0ba9725", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:58 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "5304ef6c-83fb-489d-a113-98096f3cabf6", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f6573f5b-f3ba-4d16-b65c-b4adcafb2846", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:00 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "01ee9937-54b4-4301-9d59-1c32e983fa26", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "54ac9b6b-1872-4a72-bfa4-1d5b77ca2593", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:02 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "23b6bc68-edee-4adb-acad-8a31b8aafaa5", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "65d39f67-6063-4a17-8edd-eac7e044bfaf", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:05 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "7e2ad31e-ad69-488f-a567-123a02c59c40", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "649bd4d8-3464-4d22-af05-496af4a96386", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-\",\"deletedDate\":1619647701,\"scheduledPurgeDate\":1620252501,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdateadisabledkey-/6f85a0b625de4422be7d7697ca78a711\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"opdFUoYAm2s3RtKrlNIcS9_U4Qk5K-YEchNNOOxQI3UJMCn52ySAaTnP2AuBqpxdV1TSO9d9aCi100L1K3Dm1vTHGvsGeBs-HoiZkNX8tTQnc5WaeYoLVMzfzYkPKXHE3UsRexjmB54E1PtDhANQtVZQlWN-Ysi3pjQcWzMmVCetldKkgRbssQL4-YI8UGMPgEoHbhVO6PPn29vPQfWWv0Kh0adie6zQI2m60SIh7JvUHuRZSLBb5EYVPd_xMZ6-6bbR1JmnRpIPr8-9jYhz-FvbmVMrdwvynUp_OGDCPdK4bRrSG7QJFaxY-357TLQRRzDstMy_yMtKTFDX6OKM5Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":false,\"exp\":1546300800,\"created\":1619647700,\"updated\":1619647701,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "913", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:07 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "58b24f6e-a780-479f-8499-03360ae3f29b", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "8bc11919-88b2-4e53-b8d2-b313de628c1b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:09:08 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "3cf3136b-095d-4bb4-86a7-8b4dd122cd11", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "dc3a50dd-d7fd-4bb7-b0c5-dd92553dc4ca", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:20 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", - "x-ms-request-id": "cd7787fa-9afc-44d7-b558-d7a4c9bb4401" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdateadisabledkey-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\",\"attributes\":{\"enabled\":false}}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdateadisabledkey-/6f85a0b625de4422be7d7697ca78a711\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"opdFUoYAm2s3RtKrlNIcS9_U4Qk5K-YEchNNOOxQI3UJMCn52ySAaTnP2AuBqpxdV1TSO9d9aCi100L1K3Dm1vTHGvsGeBs-HoiZkNX8tTQnc5WaeYoLVMzfzYkPKXHE3UsRexjmB54E1PtDhANQtVZQlWN-Ysi3pjQcWzMmVCetldKkgRbssQL4-YI8UGMPgEoHbhVO6PPn29vPQfWWv0Kh0adie6zQI2m60SIh7JvUHuRZSLBb5EYVPd_xMZ6-6bbR1JmnRpIPr8-9jYhz-FvbmVMrdwvynUp_OGDCPdK4bRrSG7QJFaxY-357TLQRRzDstMy_yMtKTFDX6OKM5Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":false,\"created\":1619647700,\"updated\":1619647700,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "726", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:20 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d2ab71a8-be17-4011-8af6-badebbe6a411", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "565ce68a-0e74-40a2-91a6-6c90a4bc4c4e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "PATCH", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdateadisabledkey-/6f85a0b625de4422be7d7697ca78a711", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"attributes\":{\"exp\":1546300800}}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdateadisabledkey-/6f85a0b625de4422be7d7697ca78a711\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"opdFUoYAm2s3RtKrlNIcS9_U4Qk5K-YEchNNOOxQI3UJMCn52ySAaTnP2AuBqpxdV1TSO9d9aCi100L1K3Dm1vTHGvsGeBs-HoiZkNX8tTQnc5WaeYoLVMzfzYkPKXHE3UsRexjmB54E1PtDhANQtVZQlWN-Ysi3pjQcWzMmVCetldKkgRbssQL4-YI8UGMPgEoHbhVO6PPn29vPQfWWv0Kh0adie6zQI2m60SIh7JvUHuRZSLBb5EYVPd_xMZ6-6bbR1JmnRpIPr8-9jYhz-FvbmVMrdwvynUp_OGDCPdK4bRrSG7QJFaxY-357TLQRRzDstMy_yMtKTFDX6OKM5Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":false,\"exp\":1546300800,\"created\":1619647700,\"updated\":1619647701,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "743", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:20 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "876c9cf1-5aa3-4895-8deb-d33af31811d3", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3b3f28df-4c1a-472d-b065-d45bafe80d58", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-\",\"deletedDate\":1619647701,\"scheduledPurgeDate\":1620252501,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdateadisabledkey-/6f85a0b625de4422be7d7697ca78a711\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"opdFUoYAm2s3RtKrlNIcS9_U4Qk5K-YEchNNOOxQI3UJMCn52ySAaTnP2AuBqpxdV1TSO9d9aCi100L1K3Dm1vTHGvsGeBs-HoiZkNX8tTQnc5WaeYoLVMzfzYkPKXHE3UsRexjmB54E1PtDhANQtVZQlWN-Ysi3pjQcWzMmVCetldKkgRbssQL4-YI8UGMPgEoHbhVO6PPn29vPQfWWv0Kh0adie6zQI2m60SIh7JvUHuRZSLBb5EYVPd_xMZ6-6bbR1JmnRpIPr8-9jYhz-FvbmVMrdwvynUp_OGDCPdK4bRrSG7QJFaxY-357TLQRRzDstMy_yMtKTFDX6OKM5Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":false,\"exp\":1546300800,\"created\":1619647700,\"updated\":1619647701,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "913", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:21 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "194f45ed-738b-4273-ba3a-e93c9ad98d4f", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a65cb68b-8b4e-4671-af96-16f3fd3334df", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:21 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "6287347a-b00a-43e9-b31f-01f877a29386", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5bd30389-d30a-4da5-b888-fca073888c9f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:21 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "0bd82ea6-4306-48f5-92bd-f99f1760748e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5a2c6761-6372-444e-8986-3ada19d03833", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:23 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "52b4c763-9750-47e4-ac67-1dad85bf18f8", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3e244601-c906-41d8-9d60-b9351c954a17", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:25 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "664b56f9-3b27-4386-aff6-77598fe2b4d3", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c924baf8-11e5-4320-a90b-ed730685d054", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:27 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "724d7f2c-18ed-4d05-9b5d-561428a748df", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b22c61fa-a1fc-4365-a2bd-cc29b92a754d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:30 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "012c214e-c876-4f39-b435-bea69e6c6d4b", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4bf36d43-4055-403a-8517-2faf24daefd8", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:32 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9fd41c2c-ae8a-40a0-b4b1-baaf51549f8a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "7303356b-bb91-4fa4-8ec3-078bc11b127a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:34 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "4f197a82-6a7e-408f-a9b2-1c60c636ec48", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "6e71f29a-2d38-4753-9458-15692de6b114", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:35 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "0af1cf51-67d8-4691-bbf7-a729462b6035", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f758d411-7f98-477d-b091-d9cb8d00763b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:37 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "72b3811e-8c0b-4b1a-af23-d0e948a345ee", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ec6a00dd-3ee8-4c15-8d1f-6dff7a448e0e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:39 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "bacbd73e-74bc-4a50-ac12-6bc792eda138", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "60ab846f-1066-4d92-94cb-c0f24dd5df74", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:41 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "b47c8014-6934-466d-93f6-674f4bdf90b8", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4739c777-7c71-4cf7-9d91-ad7d8e02688a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:44 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "31542382-c482-4b6c-a7cb-6bf0bc8af559", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5457bfd8-7e1f-4457-8cdb-7bacdbad939d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:46 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "655fd6d9-e3bb-4628-936b-6bbd026cdc53", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "49042572-41c6-4d8a-9612-a1baf90514c1", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:48 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1fb44c6c-5efe-4f8c-b040-4a9737ddf867", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "bbc4d032-b8cb-4e89-a26e-45f402c25d0e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:50 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "de49eaf8-cb3b-439f-acbc-c436b1d36f44", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a5297036-2bee-447d-a3ff-573ddedc3277", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:52 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "db11a0e5-a2a3-4284-a33f-cd3561ac101c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c85ac722-c624-4266-be3a-24ab5eb6a17c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:54 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "5fac8e54-38fd-48d7-ad96-69fdf16e1f67", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e90b055c-30bc-47ed-b260-3482e5832c3e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:56 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "599aa545-7543-43be-80f7-ae61d2e9aabe", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "25888dbc-d020-442e-8184-3d0cd0ba9725", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:58 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "5304ef6c-83fb-489d-a113-98096f3cabf6", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f6573f5b-f3ba-4d16-b65c-b4adcafb2846", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:00 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "01ee9937-54b4-4301-9d59-1c32e983fa26", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "54ac9b6b-1872-4a72-bfa4-1d5b77ca2593", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:02 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "23b6bc68-edee-4adb-acad-8a31b8aafaa5", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "65d39f67-6063-4a17-8edd-eac7e044bfaf", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdateadisabledkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:05 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "7e2ad31e-ad69-488f-a567-123a02c59c40", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "649bd4d8-3464-4d22-af05-496af4a96386", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-\",\"deletedDate\":1619647701,\"scheduledPurgeDate\":1620252501,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdateadisabledkey-/6f85a0b625de4422be7d7697ca78a711\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"opdFUoYAm2s3RtKrlNIcS9_U4Qk5K-YEchNNOOxQI3UJMCn52ySAaTnP2AuBqpxdV1TSO9d9aCi100L1K3Dm1vTHGvsGeBs-HoiZkNX8tTQnc5WaeYoLVMzfzYkPKXHE3UsRexjmB54E1PtDhANQtVZQlWN-Ysi3pjQcWzMmVCetldKkgRbssQL4-YI8UGMPgEoHbhVO6PPn29vPQfWWv0Kh0adie6zQI2m60SIh7JvUHuRZSLBb5EYVPd_xMZ6-6bbR1JmnRpIPr8-9jYhz-FvbmVMrdwvynUp_OGDCPdK4bRrSG7QJFaxY-357TLQRRzDstMy_yMtKTFDX6OKM5Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":false,\"exp\":1546300800,\"created\":1619647700,\"updated\":1619647701,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "913", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:07 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "58b24f6e-a780-479f-8499-03360ae3f29b", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "8bc11919-88b2-4e53-b8d2-b313de628c1b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdateadisabledkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:09:08 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "3cf3136b-095d-4bb4-86a7-8b4dd122cd11", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "dc3a50dd-d7fd-4bb7-b0c5-dd92553dc4ca", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "8f026dd398fb40ba3ff37956fce1435e" -} \ No newline at end of file + "hash": "8f026dd398fb40ba3ff37956fce1435e" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_update_key.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_update_key.json index 09f3771ae945..2eece82c1166 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_update_key.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_can_update_key.json @@ -1,518 +1,518 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdatekey-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:56 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "4d378177-277d-4dda-90ed-f6f0a796f06b", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5ec9ba5a-52c3-4d00-a1c9-7c85257bc589", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdatekey-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:56 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "4d378177-277d-4dda-90ed-f6f0a796f06b", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5ec9ba5a-52c3-4d00-a1c9-7c85257bc589", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:55 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - SCUS ProdSlices", + "x-ms-request-id": "f61edbfc-1980-461e-9d5e-316c1b555201" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdatekey-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\"}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdatekey-/fcd0568857eb4f2c9f8947469a39879f\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wDjSHgwLPsqDkPsPuR78U7P6i_ITUml1oXUSyW0mQL8GBg7yGzH64FW9im4nn3_KBL_pnM6CYOCLiSLW0x-nLsZA36V68-34wjUiB6qTJEUdtuS4iNq8hOOzGuD48z6MrM4U98nhzhQzAb40Mk1moJ5ScNM9xdrfS14p_NFqmvhD9NCEQjAWEKJH50plUJQwN5PPZrQlfb3OfD1oX6cG1h9t9c0_Q6RJqUzob4ulWBJ2EAkCvqyaUK9gEDXG590T5dcoJem-wDpVq0ecmBhdBu5f078TAzN2LlI4jar7aPx7WmSiCMFyhpxPZk2Oksxszo-qZzHZ6o0JpQ7qEkpKKQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647676,\"updated\":1619647676,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "716", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:56 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "4d378177-277d-4dda-90ed-f6f0a796f06b", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3392dbd5-0b76-4f81-8fdd-9d276d7011f7", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "PATCH", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdatekey-/fcd0568857eb4f2c9f8947469a39879f", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"attributes\":{\"enabled\":false}}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdatekey-/fcd0568857eb4f2c9f8947469a39879f\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wDjSHgwLPsqDkPsPuR78U7P6i_ITUml1oXUSyW0mQL8GBg7yGzH64FW9im4nn3_KBL_pnM6CYOCLiSLW0x-nLsZA36V68-34wjUiB6qTJEUdtuS4iNq8hOOzGuD48z6MrM4U98nhzhQzAb40Mk1moJ5ScNM9xdrfS14p_NFqmvhD9NCEQjAWEKJH50plUJQwN5PPZrQlfb3OfD1oX6cG1h9t9c0_Q6RJqUzob4ulWBJ2EAkCvqyaUK9gEDXG590T5dcoJem-wDpVq0ecmBhdBu5f078TAzN2LlI4jar7aPx7WmSiCMFyhpxPZk2Oksxszo-qZzHZ6o0JpQ7qEkpKKQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":false,\"created\":1619647676,\"updated\":1619647676,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "717", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:56 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "781827b3-5f5c-4672-9ad2-7ab8cbe38b44", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f2d81060-8521-4214-8862-19471e6c3385", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdatekey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-\",\"deletedDate\":1619647676,\"scheduledPurgeDate\":1620252476,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdatekey-/fcd0568857eb4f2c9f8947469a39879f\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wDjSHgwLPsqDkPsPuR78U7P6i_ITUml1oXUSyW0mQL8GBg7yGzH64FW9im4nn3_KBL_pnM6CYOCLiSLW0x-nLsZA36V68-34wjUiB6qTJEUdtuS4iNq8hOOzGuD48z6MrM4U98nhzhQzAb40Mk1moJ5ScNM9xdrfS14p_NFqmvhD9NCEQjAWEKJH50plUJQwN5PPZrQlfb3OfD1oX6cG1h9t9c0_Q6RJqUzob4ulWBJ2EAkCvqyaUK9gEDXG590T5dcoJem-wDpVq0ecmBhdBu5f078TAzN2LlI4jar7aPx7WmSiCMFyhpxPZk2Oksxszo-qZzHZ6o0JpQ7qEkpKKQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":false,\"created\":1619647676,\"updated\":1619647676,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "878", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:56 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "70857f5f-5461-495a-b551-4fcb75516cc9", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2d83bf08-c226-4cc7-8455-a84ce3e6db9d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdatekey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "109", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:57 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "28cf980a-d789-4ad6-91c3-43926afc77f4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4ab5d659-3ecf-402f-a2d0-57f96254be7b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdatekey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "109", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:57 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "37a983a3-96b0-42d9-82bb-6f214fd9d09f", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "9383b3c6-6c0e-4af0-8086-703796a33e05", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdatekey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "109", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:07:59 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "4da018fd-defd-4409-8310-c509d71c5281", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f745ac3a-34dc-4af8-9de6-7972f5480fb1", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdatekey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "109", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:01 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "88e58c2b-47fa-462a-9543-b6852579cb7a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "aa180cf1-5d1e-4f73-97f8-5a03a14d5e99", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdatekey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "109", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:03 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "a916d147-a099-4fb3-8d21-a9237eca4b10", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2d7cb077-5dc1-407f-8167-083cef55cbcc", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdatekey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "109", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:05 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "8d29cc85-2a94-41df-baa5-3a7b3eea87b1", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "fc97e448-ebf1-4652-94ce-1a481c5f57b9", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdatekey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "109", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:07 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "089bdf9c-7773-470d-9097-1afbd554c51d", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3b73b14e-c319-44a8-849c-618562077fa9", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdatekey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "109", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:09 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "7656eb72-5e78-466e-b454-892cef9faaf9", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3922f26e-2d60-41fb-a96c-51a92395c27a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdatekey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "109", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:12 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "0fca0587-8728-46b6-872d-ecf419977c70", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d1169929-e790-488e-96d7-4adbe34dca8c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdatekey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "109", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:14 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "6085732b-690a-41b0-9c4f-b11449a76935", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "71433633-dfe3-4e9d-b893-b46c08ba0c34", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdatekey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "109", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:16 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d2ad8815-528a-427d-91af-5d8041d2de55", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "8d650ff9-e5fe-4793-aa7b-dfd408e47c94", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdatekey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "109", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:18 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c26abb37-216a-4d1e-a9d5-b24491e366f8", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "de21c2d2-85f8-453e-b65e-d2a8e9f7bec5", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-\",\"deletedDate\":1619647676,\"scheduledPurgeDate\":1620252476,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdatekey-/fcd0568857eb4f2c9f8947469a39879f\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wDjSHgwLPsqDkPsPuR78U7P6i_ITUml1oXUSyW0mQL8GBg7yGzH64FW9im4nn3_KBL_pnM6CYOCLiSLW0x-nLsZA36V68-34wjUiB6qTJEUdtuS4iNq8hOOzGuD48z6MrM4U98nhzhQzAb40Mk1moJ5ScNM9xdrfS14p_NFqmvhD9NCEQjAWEKJH50plUJQwN5PPZrQlfb3OfD1oX6cG1h9t9c0_Q6RJqUzob4ulWBJ2EAkCvqyaUK9gEDXG590T5dcoJem-wDpVq0ecmBhdBu5f078TAzN2LlI4jar7aPx7WmSiCMFyhpxPZk2Oksxszo-qZzHZ6o0JpQ7qEkpKKQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":false,\"created\":1619647676,\"updated\":1619647676,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "878", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:08:20 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "38b19b58-7793-4a42-a469-1f1fc021ac94", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4941596a-1b18-4030-b240-79e44d057a07", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:08:20 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "8cf9259a-fcf7-4198-a517-e841431f719f", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "0f8362d0-7da1-4a5d-8924-77d99b12ec9d", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:55 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - SCUS ProdSlices", - "x-ms-request-id": "f61edbfc-1980-461e-9d5e-316c1b555201" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdatekey-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\"}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdatekey-/fcd0568857eb4f2c9f8947469a39879f\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wDjSHgwLPsqDkPsPuR78U7P6i_ITUml1oXUSyW0mQL8GBg7yGzH64FW9im4nn3_KBL_pnM6CYOCLiSLW0x-nLsZA36V68-34wjUiB6qTJEUdtuS4iNq8hOOzGuD48z6MrM4U98nhzhQzAb40Mk1moJ5ScNM9xdrfS14p_NFqmvhD9NCEQjAWEKJH50plUJQwN5PPZrQlfb3OfD1oX6cG1h9t9c0_Q6RJqUzob4ulWBJ2EAkCvqyaUK9gEDXG590T5dcoJem-wDpVq0ecmBhdBu5f078TAzN2LlI4jar7aPx7WmSiCMFyhpxPZk2Oksxszo-qZzHZ6o0JpQ7qEkpKKQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647676,\"updated\":1619647676,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "716", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:56 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "4d378177-277d-4dda-90ed-f6f0a796f06b", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3392dbd5-0b76-4f81-8fdd-9d276d7011f7", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "PATCH", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdatekey-/fcd0568857eb4f2c9f8947469a39879f", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"attributes\":{\"enabled\":false}}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdatekey-/fcd0568857eb4f2c9f8947469a39879f\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wDjSHgwLPsqDkPsPuR78U7P6i_ITUml1oXUSyW0mQL8GBg7yGzH64FW9im4nn3_KBL_pnM6CYOCLiSLW0x-nLsZA36V68-34wjUiB6qTJEUdtuS4iNq8hOOzGuD48z6MrM4U98nhzhQzAb40Mk1moJ5ScNM9xdrfS14p_NFqmvhD9NCEQjAWEKJH50plUJQwN5PPZrQlfb3OfD1oX6cG1h9t9c0_Q6RJqUzob4ulWBJ2EAkCvqyaUK9gEDXG590T5dcoJem-wDpVq0ecmBhdBu5f078TAzN2LlI4jar7aPx7WmSiCMFyhpxPZk2Oksxszo-qZzHZ6o0JpQ7qEkpKKQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":false,\"created\":1619647676,\"updated\":1619647676,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "717", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:56 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "781827b3-5f5c-4672-9ad2-7ab8cbe38b44", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f2d81060-8521-4214-8862-19471e6c3385", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdatekey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-\",\"deletedDate\":1619647676,\"scheduledPurgeDate\":1620252476,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdatekey-/fcd0568857eb4f2c9f8947469a39879f\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wDjSHgwLPsqDkPsPuR78U7P6i_ITUml1oXUSyW0mQL8GBg7yGzH64FW9im4nn3_KBL_pnM6CYOCLiSLW0x-nLsZA36V68-34wjUiB6qTJEUdtuS4iNq8hOOzGuD48z6MrM4U98nhzhQzAb40Mk1moJ5ScNM9xdrfS14p_NFqmvhD9NCEQjAWEKJH50plUJQwN5PPZrQlfb3OfD1oX6cG1h9t9c0_Q6RJqUzob4ulWBJ2EAkCvqyaUK9gEDXG590T5dcoJem-wDpVq0ecmBhdBu5f078TAzN2LlI4jar7aPx7WmSiCMFyhpxPZk2Oksxszo-qZzHZ6o0JpQ7qEkpKKQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":false,\"created\":1619647676,\"updated\":1619647676,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "878", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:56 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "70857f5f-5461-495a-b551-4fcb75516cc9", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2d83bf08-c226-4cc7-8455-a84ce3e6db9d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdatekey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "109", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:57 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "28cf980a-d789-4ad6-91c3-43926afc77f4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4ab5d659-3ecf-402f-a2d0-57f96254be7b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdatekey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "109", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:57 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "37a983a3-96b0-42d9-82bb-6f214fd9d09f", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "9383b3c6-6c0e-4af0-8086-703796a33e05", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdatekey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "109", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:07:59 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "4da018fd-defd-4409-8310-c509d71c5281", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f745ac3a-34dc-4af8-9de6-7972f5480fb1", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdatekey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "109", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:01 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "88e58c2b-47fa-462a-9543-b6852579cb7a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "aa180cf1-5d1e-4f73-97f8-5a03a14d5e99", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdatekey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "109", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:03 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "a916d147-a099-4fb3-8d21-a9237eca4b10", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2d7cb077-5dc1-407f-8167-083cef55cbcc", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdatekey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "109", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:05 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "8d29cc85-2a94-41df-baa5-3a7b3eea87b1", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "fc97e448-ebf1-4652-94ce-1a481c5f57b9", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdatekey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "109", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:07 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "089bdf9c-7773-470d-9097-1afbd554c51d", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3b73b14e-c319-44a8-849c-618562077fa9", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdatekey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "109", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:09 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "7656eb72-5e78-466e-b454-892cef9faaf9", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3922f26e-2d60-41fb-a96c-51a92395c27a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdatekey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "109", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:12 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "0fca0587-8728-46b6-872d-ecf419977c70", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d1169929-e790-488e-96d7-4adbe34dca8c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdatekey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "109", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:14 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "6085732b-690a-41b0-9c4f-b11449a76935", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "71433633-dfe3-4e9d-b893-b46c08ba0c34", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdatekey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "109", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:16 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d2ad8815-528a-427d-91af-5d8041d2de55", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "8d650ff9-e5fe-4793-aa7b-dfd408e47c94", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-canupdatekey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "109", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:18 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c26abb37-216a-4d1e-a9d5-b24491e366f8", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "de21c2d2-85f8-453e-b65e-d2a8e9f7bec5", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-\",\"deletedDate\":1619647676,\"scheduledPurgeDate\":1620252476,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-canupdatekey-/fcd0568857eb4f2c9f8947469a39879f\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wDjSHgwLPsqDkPsPuR78U7P6i_ITUml1oXUSyW0mQL8GBg7yGzH64FW9im4nn3_KBL_pnM6CYOCLiSLW0x-nLsZA36V68-34wjUiB6qTJEUdtuS4iNq8hOOzGuD48z6MrM4U98nhzhQzAb40Mk1moJ5ScNM9xdrfS14p_NFqmvhD9NCEQjAWEKJH50plUJQwN5PPZrQlfb3OfD1oX6cG1h9t9c0_Q6RJqUzob4ulWBJ2EAkCvqyaUK9gEDXG590T5dcoJem-wDpVq0ecmBhdBu5f078TAzN2LlI4jar7aPx7WmSiCMFyhpxPZk2Oksxszo-qZzHZ6o0JpQ7qEkpKKQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":false,\"created\":1619647676,\"updated\":1619647676,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "878", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:08:20 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "38b19b58-7793-4a42-a469-1f1fc021ac94", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4941596a-1b18-4030-b240-79e44d057a07", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-canupdatekey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:08:20 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "8cf9259a-fcf7-4198-a517-e841431f719f", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "0f8362d0-7da1-4a5d-8924-77d99b12ec9d", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "4f8e6c5f127e72748f13944b61ad11ff" -} \ No newline at end of file + "hash": "4f8e6c5f127e72748f13944b61ad11ff" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_cant_get_a_deleted_key_that_doesnt_exist.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_cant_get_a_deleted_key_that_doesnt_exist.json index 882d005aa9b1..ac92c8854b0a 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_cant_get_a_deleted_key_that_doesnt_exist.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_cant_get_a_deleted_key_that_doesnt_exist.json @@ -1,88 +1,88 @@ { - "recordings": [ - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cantgetadeletedkeythatdoesntexist-", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:14 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2a8d8009-c278-428b-af75-b1573d30c0f4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "dfdbd4ad-efee-43a8-8345-8e37552f091c", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cantgetadeletedkeythatdoesntexist-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:14 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2a8d8009-c278-428b-af75-b1573d30c0f4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "dfdbd4ad-efee-43a8-8345-8e37552f091c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:15 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - SCUS ProdSlices", + "x-ms-request-id": "3aa6bb8b-6bcb-414d-bd57-37837b005b01" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cantgetadeletedkeythatdoesntexist-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) CRUDKeyName-cantgetadeletedkeythatdoesntexist- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "350", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:16 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2a8d8009-c278-428b-af75-b1573d30c0f4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "06a5c9e6-787b-495d-a47c-b68f6e520722", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:15 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - SCUS ProdSlices", - "x-ms-request-id": "3aa6bb8b-6bcb-414d-bd57-37837b005b01" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-cantgetadeletedkeythatdoesntexist-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) CRUDKeyName-cantgetadeletedkeythatdoesntexist- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "350", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:16 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2a8d8009-c278-428b-af75-b1573d30c0f4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "06a5c9e6-787b-495d-a47c-b68f6e520722", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "e5dbb74486922d60dbd98407fa71e561" -} \ No newline at end of file + "hash": "e5dbb74486922d60dbd98407fa71e561" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_delete_nonexisting_key.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_delete_nonexisting_key.json index 5711e2e543ef..74e737eabc5f 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_delete_nonexisting_key.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_delete_nonexisting_key.json @@ -1,88 +1,88 @@ { - "recordings": [ - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-deletenonexistingkey-/", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:51 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "440971a3-9b67-474c-92e2-566d0b09cfd9", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "6c5077ff-0efd-4510-9d66-541002f15f56", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-deletenonexistingkey-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:51 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "440971a3-9b67-474c-92e2-566d0b09cfd9", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "6c5077ff-0efd-4510-9d66-541002f15f56", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:51 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - WUS2 ProdSlices", + "x-ms-request-id": "c8b4fac2-0e48-414e-9442-21d84c232b00" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-deletenonexistingkey-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) CRUDKeyName-deletenonexistingkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "337", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:09:51 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "440971a3-9b67-474c-92e2-566d0b09cfd9", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e10728d4-ef94-4af6-8b4a-f87f3b3a6508", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:51 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - WUS2 ProdSlices", - "x-ms-request-id": "c8b4fac2-0e48-414e-9442-21d84c232b00" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-deletenonexistingkey-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) CRUDKeyName-deletenonexistingkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "337", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:09:51 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "440971a3-9b67-474c-92e2-566d0b09cfd9", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e10728d4-ef94-4af6-8b4a-f87f3b3a6508", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "a1194f0dfdaf635882c4c28ef18bbe88" -} \ No newline at end of file + "hash": "a1194f0dfdaf635882c4c28ef18bbe88" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_supports_tracing.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_supports_tracing.json index f373847e59c5..f64a65f438f9 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_supports_tracing.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations/recording_supports_tracing.json @@ -1,88 +1,88 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-supportstracing-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:45 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e4c2007f-3653-4a9c-acc9-aa3b9c4f6810", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "28670ff1-b929-4c59-9c7b-50a7ddfe114f", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-supportstracing-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:45 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e4c2007f-3653-4a9c-acc9-aa3b9c4f6810", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "28670ff1-b929-4c59-9c7b-50a7ddfe114f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1310", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:45 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - SCUS ProdSlices", + "x-ms-request-id": "fc9ed9eb-c584-48ca-96c5-463175f45201" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-supportstracing-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\",\"attributes\":{}}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-supportstracing-/39a52f116ed243bb874ce6f72ab77b5f\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wms368T499CBVEXxonmrl3XgwiKP10B4t-QOT_ZD6HgSqtb0nx4-WeTeJSA5ikBxi0-AJCPjgOfXbiYQFxFqnaWuVslYLym0ez5O7EFFGG2t2XyyyW2J6IdJQn46I1__X5IiOuoM4z7iH3QMP4mUyxJVRUiVyrKKRKoWqEPOdPzEDIYz6mo7mNhxdgX9gHloQwpThCw4vAI7j0YhNMC8uw8tqGk4Qb7i_FnXqg-h4Xt-6m4BwuvthGClHcaim44KH-2YXfeUEXmM2UmrwSa44vDlE8JIkipZbqNgrAGoiDLeT-Q6RCfNKLLCXcHVtfdSZq7S6l3zrVd5bxOWKYJmsQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647905,\"updated\":1619647905,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "720", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:45 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e4c2007f-3653-4a9c-acc9-aa3b9c4f6810", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "9e2b07cb-0830-4e93-96d0-772b571391e3", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1310", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:45 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - SCUS ProdSlices", - "x-ms-request-id": "fc9ed9eb-c584-48ca-96c5-463175f45201" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-supportstracing-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\",\"attributes\":{}}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-supportstracing-/39a52f116ed243bb874ce6f72ab77b5f\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wms368T499CBVEXxonmrl3XgwiKP10B4t-QOT_ZD6HgSqtb0nx4-WeTeJSA5ikBxi0-AJCPjgOfXbiYQFxFqnaWuVslYLym0ez5O7EFFGG2t2XyyyW2J6IdJQn46I1__X5IiOuoM4z7iH3QMP4mUyxJVRUiVyrKKRKoWqEPOdPzEDIYz6mo7mNhxdgX9gHloQwpThCw4vAI7j0YhNMC8uw8tqGk4Qb7i_FnXqg-h4Xt-6m4BwuvthGClHcaim44KH-2YXfeUEXmM2UmrwSa44vDlE8JIkipZbqNgrAGoiDLeT-Q6RCfNKLLCXcHVtfdSZq7S6l3zrVd5bxOWKYJmsQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647905,\"updated\":1619647905,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "720", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:45 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e4c2007f-3653-4a9c-acc9-aa3b9c4f6810", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "9e2b07cb-0830-4e93-96d0-772b571391e3", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "5d04467f483fec6830cb47b877980e78" -} \ No newline at end of file + "hash": "5d04467f483fec6830cb47b877980e78" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations_for_managed_hsm/recording_can_create_an_oct_key_with_options.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations_for_managed_hsm/recording_can_create_an_oct_key_with_options.json index 954f4e51ae57..271753678429 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations_for_managed_hsm/recording_can_create_an_oct_key_with_options.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations_for_managed_hsm/recording_can_create_an_oct_key_with_options.json @@ -1,148 +1,148 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/CRUDKeyName-cancreateanOCTkeywithoptions-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "0", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012\", resource=\"https://managedhsm.azure.net\"", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-request-id": "7df48546-a86d-11eb-950c-000d3a230d40", - "x-ms-server-latency": "1" - } + "recordings": [ + { + "method": "POST", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/CRUDKeyName-cancreateanOCTkeywithoptions-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "0", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012\", resource=\"https://managedhsm.azure.net\"", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-request-id": "7df48546-a86d-11eb-950c-000d3a230d40", + "x-ms-server-latency": "1" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fmanagedhsm.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1322", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:02:57 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", + "x-ms-request-id": "786f5b8e-426b-446f-974d-918f45552b00" + } + }, + { + "method": "POST", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/CRUDKeyName-cancreateanOCTkeywithoptions-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"oct-HSM\",\"attributes\":{}}", + "status": 200, + "response": "{\"attributes\":{\"created\":1619647379,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1619647379},\"key\":{\"key_ops\":[\"wrapKey\",\"unwrapKey\",\"decrypt\",\"encrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/CRUDKeyName-cancreateanOCTkeywithoptions-/c36d3e30dee649faad4d9e40196e107c\",\"kty\":\"oct-HSM\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "380", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=Ipv4;", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "7e16a3ba-a86d-11eb-950c-000d3a230d40", + "x-ms-server-latency": "643" + } + }, + { + "method": "DELETE", + "url": "https://azure_managedhsm.managedhsm.azure.net/keys/CRUDKeyName-cancreateanOCTkeywithoptions-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"attributes\":{\"created\":1619647379,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1619647379},\"deletedDate\":1619647379,\"key\":{\"key_ops\":[\"unwrapKey\",\"wrapKey\",\"decrypt\",\"encrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/CRUDKeyName-cancreateanOCTkeywithoptions-/c36d3e30dee649faad4d9e40196e107c\",\"kty\":\"oct-HSM\"},\"recoveryId\":\"https://azure_managedhsm.managedhsm.azure.net/deletedkeys/CRUDKeyName-cancreateanOCTkeywithoptions-\",\"scheduledPurgeDate\":1627423379}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "567", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=Ipv4;", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "7e881770-a86d-11eb-950c-000d3a230d40", + "x-ms-server-latency": "124" + } + }, + { + "method": "GET", + "url": "https://azure_managedhsm.managedhsm.azure.net/deletedkeys/CRUDKeyName-cancreateanOCTkeywithoptions-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"attributes\":{\"created\":1619647379,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1619647379},\"deletedDate\":1619647379,\"key\":{\"key_ops\":[\"encrypt\",\"decrypt\",\"unwrapKey\",\"wrapKey\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/CRUDKeyName-cancreateanOCTkeywithoptions-/c36d3e30dee649faad4d9e40196e107c\",\"kty\":\"oct-HSM\"},\"recoveryId\":\"https://azure_managedhsm.managedhsm.azure.net/deletedkeys/CRUDKeyName-cancreateanOCTkeywithoptions-\",\"scheduledPurgeDate\":1627423379}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "567", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-build-version": "1.0.20210407-3-27236ed1-develop", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=Ipv4;", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "7ea8d848-a86d-11eb-950c-000d3a230d40", + "x-ms-server-latency": "31" + } + }, + { + "method": "DELETE", + "url": "https://azure_managedhsm.managedhsm.azure.net/deletedkeys/CRUDKeyName-cancreateanOCTkeywithoptions-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "0", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=Ipv4;", + "x-ms-keyvault-region": "westeurope", + "x-ms-request-id": "7ebc5ac6-a86d-11eb-950c-000d3a230d40", + "x-ms-server-latency": "259" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fmanagedhsm.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1322", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:02:57 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", - "x-ms-request-id": "786f5b8e-426b-446f-974d-918f45552b00" - } - }, - { - "method": "POST", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/CRUDKeyName-cancreateanOCTkeywithoptions-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"oct-HSM\",\"attributes\":{}}", - "status": 200, - "response": "{\"attributes\":{\"created\":1619647379,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1619647379},\"key\":{\"key_ops\":[\"wrapKey\",\"unwrapKey\",\"decrypt\",\"encrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/CRUDKeyName-cancreateanOCTkeywithoptions-/c36d3e30dee649faad4d9e40196e107c\",\"kty\":\"oct-HSM\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "380", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=Ipv4;", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "7e16a3ba-a86d-11eb-950c-000d3a230d40", - "x-ms-server-latency": "643" - } - }, - { - "method": "DELETE", - "url": "https://azure_managedhsm.managedhsm.azure.net/keys/CRUDKeyName-cancreateanOCTkeywithoptions-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"attributes\":{\"created\":1619647379,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1619647379},\"deletedDate\":1619647379,\"key\":{\"key_ops\":[\"unwrapKey\",\"wrapKey\",\"decrypt\",\"encrypt\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/CRUDKeyName-cancreateanOCTkeywithoptions-/c36d3e30dee649faad4d9e40196e107c\",\"kty\":\"oct-HSM\"},\"recoveryId\":\"https://azure_managedhsm.managedhsm.azure.net/deletedkeys/CRUDKeyName-cancreateanOCTkeywithoptions-\",\"scheduledPurgeDate\":1627423379}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "567", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=Ipv4;", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "7e881770-a86d-11eb-950c-000d3a230d40", - "x-ms-server-latency": "124" - } - }, - { - "method": "GET", - "url": "https://azure_managedhsm.managedhsm.azure.net/deletedkeys/CRUDKeyName-cancreateanOCTkeywithoptions-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"attributes\":{\"created\":1619647379,\"enabled\":true,\"exportable\":false,\"recoverableDays\":90,\"recoveryLevel\":\"Recoverable+Purgeable\",\"updated\":1619647379},\"deletedDate\":1619647379,\"key\":{\"key_ops\":[\"encrypt\",\"decrypt\",\"unwrapKey\",\"wrapKey\"],\"kid\":\"https://azure_managedhsm.managedhsm.azure.net/keys/CRUDKeyName-cancreateanOCTkeywithoptions-/c36d3e30dee649faad4d9e40196e107c\",\"kty\":\"oct-HSM\"},\"recoveryId\":\"https://azure_managedhsm.managedhsm.azure.net/deletedkeys/CRUDKeyName-cancreateanOCTkeywithoptions-\",\"scheduledPurgeDate\":1627423379}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "567", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-build-version": "1.0.20210407-3-27236ed1-develop", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=Ipv4;", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "7ea8d848-a86d-11eb-950c-000d3a230d40", - "x-ms-server-latency": "31" - } - }, - { - "method": "DELETE", - "url": "https://azure_managedhsm.managedhsm.azure.net/deletedkeys/CRUDKeyName-cancreateanOCTkeywithoptions-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "0", - "content-security-policy": "default-src 'self'", - "content-type": "application/json; charset=utf-8", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-frame-options": "SAMEORIGIN", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=Ipv4;", - "x-ms-keyvault-region": "westeurope", - "x-ms-request-id": "7ebc5ac6-a86d-11eb-950c-000d3a230d40", - "x-ms-server-latency": "259" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "d1b98bea533db0a1ad16cbd81524f0c1" -} \ No newline at end of file + "hash": "d1b98bea533db0a1ad16cbd81524f0c1" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations_for_managed_hsm_getrandombytes/recording_can_return_the_required_number_of_bytes.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations_for_managed_hsm_getrandombytes/recording_can_return_the_required_number_of_bytes.json new file mode 100644 index 000000000000..a40369ee277f --- /dev/null +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations_for_managed_hsm_getrandombytes/recording_can_return_the_required_number_of_bytes.json @@ -0,0 +1,78 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://azure_managedhsm.managedhsm.azure.net/rng", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "0", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012\", resource=\"https://managedhsm.azure.net\"", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-request-id": "5bb21dfc-d529-11eb-b1e5-0022484f830d", + "x-ms-server-latency": "1" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1322", + "content-type": "application/json; charset=utf-8", + "date": "Thu, 24 Jun 2021 20:18:36 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11829.9 - NCUS ProdSlices", + "x-ms-request-id": "adab7405-6419-4772-80ae-95d6aefa3400" + } + }, + { + "method": "POST", + "url": "https://azure_managedhsm.managedhsm.azure.net/rng", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"count\":10}", + "status": 200, + "response": "{\"value\":\"dPmLJcOQkvSsQg\"}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "26", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=50.35.231.105;act_addr_fam=Ipv4;", + "x-ms-keyvault-region": "eastus2", + "x-ms-request-id": "5bf524ee-d529-11eb-b1e5-0022484f830d", + "x-ms-server-latency": "0" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "2b5e9907f8b658d41d8f28ec0c247ea9" +} \ No newline at end of file diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations_for_managed_hsm_getrandombytes/recording_returns_an_error_when_bytes_is_out_of_range.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations_for_managed_hsm_getrandombytes/recording_returns_an_error_when_bytes_is_out_of_range.json new file mode 100644 index 000000000000..a57a5eea89fe --- /dev/null +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations_for_managed_hsm_getrandombytes/recording_returns_an_error_when_bytes_is_out_of_range.json @@ -0,0 +1,8 @@ +{ + "recordings": [], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "b4deb846148bd9998061b157d310dfaf" +} \ No newline at end of file diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations_for_managed_hsm_getrandombytes/recording_supports_tracing.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations_for_managed_hsm_getrandombytes/recording_supports_tracing.json new file mode 100644 index 000000000000..568c3d20c99d --- /dev/null +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__create_read_update_and_delete_operations_for_managed_hsm_getrandombytes/recording_supports_tracing.json @@ -0,0 +1,78 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://azure_managedhsm.managedhsm.azure.net/rng", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "0", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012\", resource=\"https://managedhsm.azure.net\"", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-request-id": "5c066560-d529-11eb-b1e5-0022484f830d", + "x-ms-server-latency": "0" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1322", + "content-type": "application/json; charset=utf-8", + "date": "Thu, 24 Jun 2021 20:18:37 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11829.9 - SCUS ProdSlices", + "x-ms-request-id": "59b1eb01-764c-46df-9381-4b82fbd73600" + } + }, + { + "method": "POST", + "url": "https://azure_managedhsm.managedhsm.azure.net/rng", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"count\":128}", + "status": 200, + "response": "{\"value\":\"mqFaqdp48lvoPR7mEbcRTb5y5C7ZdQRCCMLa7EyatllLmFlzaH0CNZ1AOGrVQAoubp5mRctUlZEog4mEIqjxA6D0vl1fR43Qs-ZrDpf6nHyUuRXt7gNdobWRPtHxYOCJucBwK-M_X3H7CBaSdD2pi-1B-BVxBxnYtHkBtCdcpJo\"}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "183", + "content-security-policy": "default-src 'self'", + "content-type": "application/json; charset=utf-8", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=50.35.231.105;act_addr_fam=Ipv4;", + "x-ms-keyvault-region": "eastus2", + "x-ms-request-id": "5c23b5e8-d529-11eb-b1e5-0022484f830d", + "x-ms-server-latency": "1" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "335dbe4e0cb7ae4beaa08873830ed29c" +} \ No newline at end of file diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__import_keys/recording_can_import_a_key.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__import_keys/recording_can_import_a_key.json index ef5dc620a782..34ee818116a6 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__import_keys/recording_can_import_a_key.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__import_keys/recording_can_import_a_key.json @@ -1,88 +1,88 @@ { - "recordings": [ - { - "method": "PUT", - "url": "https://keyvault_name.vault.azure.net/keys/importKeyName-canimportakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:47 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d6aa7587-c0ef-4fb2-b0d9-45fa9efa72d2", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "80b22461-c8d2-4737-8292-31bf0b063f61", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "PUT", + "url": "https://keyvault_name.vault.azure.net/keys/importKeyName-canimportakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:47 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d6aa7587-c0ef-4fb2-b0d9-45fa9efa72d2", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "80b22461-c8d2-4737-8292-31bf0b063f61", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:48 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", + "x-ms-request-id": "2581370d-525c-449a-8781-7cf3ab5c5401" + } + }, + { + "method": "PUT", + "url": "https://keyvault_name.vault.azure.net/keys/importKeyName-canimportakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"key\":{\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"AKCRTQAjSsaDshtMFdW-2Ie9yVnC5Xr1Suc06PAHINd10nXkVSB-N4TO62ClCkZV3XKnqU0nHo7o95WaZpym53W_DiO62umRtFKdl4UotL2QUh0y3SZWeWuoK2u_x2aMj17rUFN0f9GZMZ0pqEQNCPRBLVJ_-TEe2nGCWSC0exxGsRqz6R1zFkB-icfzQPe4WjQELOUXQ7J9RxhAPTTHtDivYYG-BeTRHrmF04JT1_6b9T_C8bAC0i0teT-nmlBLarQtBJKATXBx1yegbPOoiTqlQrFQP4MrKWNxtnB9Tcbjcvj-Z9je0ckI_eRc4DvAhqcUh_p15Dqg4GeaoNIO_jU\",\"e\":\"AQAB\",\"d\":\"Ynx9JGaBSP4iUsf6ZJ6opantRNdcdmzaQrKbZg6ZQE8Ohi1FYabJWvaoPSE-CiJEsDzShXZHMhUHN4X7Bn8BXaGQhK3p9HXgiwQKmix7oAJTu4ElUIyd8UC3UWHSZr40el4PaQD-HYu_eMzCXus34MnRiNbh_BUWm6T-Eidhk9d3kNIyaSi9YNDQHW6tjWrEhhq63O7JU1j9ZonFChZxpKk20jdkQKQURVAdpOdL-5j4I70ZxFuU6wHZj8DS8oRQfwGOvZKbgYDb5jgf3UNL_7eACqq92XPVX56vm7iKbqeyjCqAIx5y3hrSRIJtZlWCwjYnYQGd4unxDLi8wmJWSQ\",\"dp\":\"AMmhWb5yZcu6vJr8xJZ-t0_likxJRUMZAtEULaWZt2DgODj4y9JrZDJP6mvckzhQP0WXk2NuWbU2HR5pUeCN2wieG1B76VKoH76vfnaJDqT1NuJVBcP2SLHog3ffwZtMME5zjfygchG3kihqOSpwTQ9ETAqAJTkRC38fEhwAz_Cp\",\"dq\":\"AKC9TAo9n2RDaggjdLXK8kiLrBVoaWFTpqXkzYXRhtsx4vWPAkxhfSnze05rVMl6HiXv7FnE0f0wYawzUJzoyuXBH0zS6D9BqCZPeF543AmWB27iPf38Q9Z8Rjr6oBgMSnGDV_mm8nDVQkeaDyE4cOZh-5UKvKShTKKQVwunmDNH\",\"qi\":\"AJ_nrkLpK8BPzVeARkvSHQyKwMWZ-a8CD95qsKfn0dOZAvXY-2xhQYTEwbED-0bpTNEKbIpA-ZkaHygmnzJkNbbFAnb9pkkzU8ZQqDP3JNgMfVIroWx58Oth9nJza2j7i-MkPRCUPEq3Ao0J52z7WJIiLji8TTVYW_NaiM1oxzsH\",\"p\":\"ANHerI1o3dLB_VLVmZZVss8VZSYN5SaeQ_0qhfOSgOFwj__waCFmy2EG7l6l6f_Z-Y0L7Mn_LNov68lyWSFa2EuQUeVj4UoFHc5Di8ZUGiSsTwFM-XMtNuv8HmGgDYLL5BIJD3eTz71LdgW-Ez38OZH34b7VeG8zfeUDb8Hi30zz\",\"q\":\"AMPcZrZBqbc82DO8Q5zTT8ZXRGWrW36KktMllaIk1W2RHnRiQiW0jBWmcCgqUcQNHa1LwumjyNqwx28QBS37BTvG7ULGUoio6LrOeoiBGEMj-U19sX6m37plEhj5Mak7j3OPPY_T9rohjTW5aGGg9YSwq4jdz0RrmBX00ofYOjI3\"}}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/importKeyName-canimportakey-/c3822ce302324dbf95b0d70f987f496d\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"oJFNACNKxoOyG0wV1b7Yh73JWcLlevVK5zTo8Acg13XSdeRVIH43hM7rYKUKRlXdcqepTScejuj3lZpmnKbndb8OI7ra6ZG0Up2XhSi0vZBSHTLdJlZ5a6gra7_HZoyPXutQU3R_0ZkxnSmoRA0I9EEtUn_5MR7acYJZILR7HEaxGrPpHXMWQH6Jx_NA97haNAQs5RdDsn1HGEA9NMe0OK9hgb4F5NEeuYXTglPX_pv1P8LxsALSLS15P6eaUEtqtC0EkoBNcHHXJ6Bs86iJOqVCsVA_gyspY3G2cH1NxuNy-P5n2N7RyQj95FzgO8CGpxSH-nXkOqDgZ5qg0g7-NQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647908,\"updated\":1619647908,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "719", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:48 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d6aa7587-c0ef-4fb2-b0d9-45fa9efa72d2", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "154d7ccf-58f2-407c-b7ac-d71934a79287", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:48 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", - "x-ms-request-id": "2581370d-525c-449a-8781-7cf3ab5c5401" - } - }, - { - "method": "PUT", - "url": "https://keyvault_name.vault.azure.net/keys/importKeyName-canimportakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"key\":{\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"AKCRTQAjSsaDshtMFdW-2Ie9yVnC5Xr1Suc06PAHINd10nXkVSB-N4TO62ClCkZV3XKnqU0nHo7o95WaZpym53W_DiO62umRtFKdl4UotL2QUh0y3SZWeWuoK2u_x2aMj17rUFN0f9GZMZ0pqEQNCPRBLVJ_-TEe2nGCWSC0exxGsRqz6R1zFkB-icfzQPe4WjQELOUXQ7J9RxhAPTTHtDivYYG-BeTRHrmF04JT1_6b9T_C8bAC0i0teT-nmlBLarQtBJKATXBx1yegbPOoiTqlQrFQP4MrKWNxtnB9Tcbjcvj-Z9je0ckI_eRc4DvAhqcUh_p15Dqg4GeaoNIO_jU\",\"e\":\"AQAB\",\"d\":\"Ynx9JGaBSP4iUsf6ZJ6opantRNdcdmzaQrKbZg6ZQE8Ohi1FYabJWvaoPSE-CiJEsDzShXZHMhUHN4X7Bn8BXaGQhK3p9HXgiwQKmix7oAJTu4ElUIyd8UC3UWHSZr40el4PaQD-HYu_eMzCXus34MnRiNbh_BUWm6T-Eidhk9d3kNIyaSi9YNDQHW6tjWrEhhq63O7JU1j9ZonFChZxpKk20jdkQKQURVAdpOdL-5j4I70ZxFuU6wHZj8DS8oRQfwGOvZKbgYDb5jgf3UNL_7eACqq92XPVX56vm7iKbqeyjCqAIx5y3hrSRIJtZlWCwjYnYQGd4unxDLi8wmJWSQ\",\"dp\":\"AMmhWb5yZcu6vJr8xJZ-t0_likxJRUMZAtEULaWZt2DgODj4y9JrZDJP6mvckzhQP0WXk2NuWbU2HR5pUeCN2wieG1B76VKoH76vfnaJDqT1NuJVBcP2SLHog3ffwZtMME5zjfygchG3kihqOSpwTQ9ETAqAJTkRC38fEhwAz_Cp\",\"dq\":\"AKC9TAo9n2RDaggjdLXK8kiLrBVoaWFTpqXkzYXRhtsx4vWPAkxhfSnze05rVMl6HiXv7FnE0f0wYawzUJzoyuXBH0zS6D9BqCZPeF543AmWB27iPf38Q9Z8Rjr6oBgMSnGDV_mm8nDVQkeaDyE4cOZh-5UKvKShTKKQVwunmDNH\",\"qi\":\"AJ_nrkLpK8BPzVeARkvSHQyKwMWZ-a8CD95qsKfn0dOZAvXY-2xhQYTEwbED-0bpTNEKbIpA-ZkaHygmnzJkNbbFAnb9pkkzU8ZQqDP3JNgMfVIroWx58Oth9nJza2j7i-MkPRCUPEq3Ao0J52z7WJIiLji8TTVYW_NaiM1oxzsH\",\"p\":\"ANHerI1o3dLB_VLVmZZVss8VZSYN5SaeQ_0qhfOSgOFwj__waCFmy2EG7l6l6f_Z-Y0L7Mn_LNov68lyWSFa2EuQUeVj4UoFHc5Di8ZUGiSsTwFM-XMtNuv8HmGgDYLL5BIJD3eTz71LdgW-Ez38OZH34b7VeG8zfeUDb8Hi30zz\",\"q\":\"AMPcZrZBqbc82DO8Q5zTT8ZXRGWrW36KktMllaIk1W2RHnRiQiW0jBWmcCgqUcQNHa1LwumjyNqwx28QBS37BTvG7ULGUoio6LrOeoiBGEMj-U19sX6m37plEhj5Mak7j3OPPY_T9rohjTW5aGGg9YSwq4jdz0RrmBX00ofYOjI3\"}}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/importKeyName-canimportakey-/c3822ce302324dbf95b0d70f987f496d\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"oJFNACNKxoOyG0wV1b7Yh73JWcLlevVK5zTo8Acg13XSdeRVIH43hM7rYKUKRlXdcqepTScejuj3lZpmnKbndb8OI7ra6ZG0Up2XhSi0vZBSHTLdJlZ5a6gra7_HZoyPXutQU3R_0ZkxnSmoRA0I9EEtUn_5MR7acYJZILR7HEaxGrPpHXMWQH6Jx_NA97haNAQs5RdDsn1HGEA9NMe0OK9hgb4F5NEeuYXTglPX_pv1P8LxsALSLS15P6eaUEtqtC0EkoBNcHHXJ6Bs86iJOqVCsVA_gyspY3G2cH1NxuNy-P5n2N7RyQj95FzgO8CGpxSH-nXkOqDgZ5qg0g7-NQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647908,\"updated\":1619647908,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "719", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:48 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d6aa7587-c0ef-4fb2-b0d9-45fa9efa72d2", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "154d7ccf-58f2-407c-b7ac-d71934a79287", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "80f1d585a0f4590c035a1ac6fb18bd6b" -} \ No newline at end of file + "hash": "80f1d585a0f4590c035a1ac6fb18bd6b" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_can_get_several_inserted_keys.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_can_get_several_inserted_keys.json index 1ef72b4641c9..118c2721b16b 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_can_get_several_inserted_keys.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_can_get_several_inserted_keys.json @@ -1,1272 +1,1272 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeys--0/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:41 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "988b7030-a12c-4590-94e9-466e12d46446", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "285cdb1c-3311-47c8-8552-51e27c185e38", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeys--0/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:41 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "988b7030-a12c-4590-94e9-466e12d46446", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "285cdb1c-3311-47c8-8552-51e27c185e38", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:40 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - SCUS ProdSlices", + "x-ms-request-id": "f6c1360a-956b-4676-bc40-655624e46501" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeys--0/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\"}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeys--0/7dbd456fd2564c06ab656aad9e46203c\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"2V5nSTC6tczual2KRJveC8ualbIiG3FbUJe2q4O1Qz1tKXaM45xq_GPjNb0p7R9tuVDQoFdYO44KefovpWG6q19QCRqope985q1PHYa7Le0jZrlt1ynEzeW2WZCfL7_YSalQkNsoD4Qk2IEsmjNCmZk-1QOMr4jLDvyhMAXOn55-_EnY4UQPdU9mrSs2zyjvzDqxQyRRJau4oikz7_OrysLmrjLrG83R6MWfAMsP4LlsLKPa1CQQ3a_J24ssgWrI8pM7cYDDFWoAGP-prS65pX8vJ_je9D_W2vl8lHYVG89L7MIbgRasHYN3NcmIP0oBd6_AsVQRT5JxVQ5C3n29TQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648141,\"updated\":1619648141,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "730", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:41 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "988b7030-a12c-4590-94e9-466e12d46446", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "94ed7fb8-f0f6-4e5f-8fc5-fd452921e656", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeys--1/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\"}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeys--1/da48f6e3a2a24e049544fb43c57c692e\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"2dG9Fh8JfvO34J_N0Y1sCW4UG1LEUhoEM2c584Rx0gvJ-ml6Ro_I-3huSd8qbvsq4fyySrBrGormWJFG2xpy5zWYPL-vwXfHlF1h9EwVtWhOnhB7YBOax7nXXe9HxeV5nSSPesRD0NbyNpLvO33aiAmQZbH6jhreWKbHc_wNGkwzQVwcBCvgUo0zLa0zM99unuPZQD7RUNDpTAjwQe9ysc6Jk_KFkzpVhnPuVyh6rt0z8z5BKTP00G5_S851NF_lNqjSK6Z4rN1cGIWf8Gxzwy8HcK-sUMIZmP_d8n8Q3BQJ5LDL1D9F0r94-ERgPcKpheAqmFX-hLM2G9-Q3fvglQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648141,\"updated\":1619648141,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "730", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:41 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c6c5d39e-a656-4c34-9b6a-858de6dde508", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e72e3100-806d-45f5-8891-d62b750442fe", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"value\":[{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeys--0\",\"attributes\":{\"enabled\":true,\"created\":1619648141,\"updated\":1619648141,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeys--1\",\"attributes\":{\"enabled\":true,\"created\":1619648141,\"updated\":1619648141,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}],\"nextLink\":null}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "523", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:42 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "7505e5cc-e956-406e-bd72-5076a3ba64de", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "29e31941-26fe-4013-a8ad-748fd9fb584f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0\",\"deletedDate\":1619648142,\"scheduledPurgeDate\":1620252942,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeys--0/7dbd456fd2564c06ab656aad9e46203c\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"2V5nSTC6tczual2KRJveC8ualbIiG3FbUJe2q4O1Qz1tKXaM45xq_GPjNb0p7R9tuVDQoFdYO44KefovpWG6q19QCRqope985q1PHYa7Le0jZrlt1ynEzeW2WZCfL7_YSalQkNsoD4Qk2IEsmjNCmZk-1QOMr4jLDvyhMAXOn55-_EnY4UQPdU9mrSs2zyjvzDqxQyRRJau4oikz7_OrysLmrjLrG83R6MWfAMsP4LlsLKPa1CQQ3a_J24ssgWrI8pM7cYDDFWoAGP-prS65pX8vJ_je9D_W2vl8lHYVG89L7MIbgRasHYN3NcmIP0oBd6_AsVQRT5JxVQ5C3n29TQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648141,\"updated\":1619648141,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "905", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:42 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "7bfb2542-f340-4c99-b254-d941726a4de3", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "78401963-50e6-4608-964b-81f6db0a31d9", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:42 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "76d1ee8b-b6c1-40ec-b072-904cd7c4925d", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f4cb9976-ff33-436d-b979-34b5e876576b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:42 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "b2b19cfb-c3f5-41be-b350-f486028b5f79", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c0e96490-27c7-4b17-8552-4cb3d85cf451", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:44 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "b3f47155-6503-4e98-8dc7-3c942e7963da", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f49947c7-d83a-48b4-b753-bd4b91e918d6", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:46 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c3526d7f-d3fc-4de5-9323-04df7ecaf3b4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a373efff-0bd7-4691-a365-eee6f17d732c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:48 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "86eb0a63-ed89-4676-a290-40a4dc386a03", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "beffbf8b-e69a-4fe3-9c9c-2b5f12dc60e0", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:50 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "80177c56-0bf9-4c47-8bb0-747baa01d5b4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ff5a45e2-4c28-44ea-bfe9-267f02d1e58d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:52 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "4bd3f121-dbd7-4a19-b10e-9f988a229409", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "be0b85c0-ef28-485b-afdb-efbbbdd11731", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:54 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "a7ca5f2f-3ca4-4e71-be74-cea9804c36b0", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "1bfdef83-940f-40e5-a791-a132a33fa4ae", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:56 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c32be736-aef9-49d6-bc41-f180ce1742a9", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "1cc4c2d1-1e43-4c41-8087-55e36c09a015", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:58 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ad042580-b672-4bbe-988b-57471e5f53e1", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c39e4b87-6c44-47fd-bcd6-ca4c2f2d42cc", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:00 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "b6a01311-5e49-4a39-8c3b-37b66a754131", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "93bbb0be-a1cf-4efe-85cb-bb386e084598", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:02 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "4767ab3f-c2d0-44d3-9e61-2e54143c40e4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a95b67af-bd22-44ed-806b-a74341e79c80", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:05 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e4e8fb3f-42de-46bb-a4e7-e509f68b9897", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4cdb2c8a-33d6-4714-8fa7-0c53252cdba2", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:07 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "dac18f94-20b6-49d3-9665-8a2c381dd718", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a9dd2985-7fe8-4100-95ae-9690e44c1ad0", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:09 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "10c5e2ad-2388-49b2-b208-355cf42e17b7", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a570da07-3533-4326-a047-0f1dd2584c4f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:12 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "41b322e5-115d-460b-816b-2cae0d4e9685", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "aad85ef9-f9d8-4387-a742-710434f598ec", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:13 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "24003223-ad35-4343-a608-e9aac0a40101", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ad007b53-32ec-4d22-a366-2dfa509667a6", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:15 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "32832294-42a7-4455-91ec-66a7c28035aa", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "98905ee6-af0e-4043-b56e-ac7c78b5195b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:17 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "fa93f474-a4c9-4a42-b5bd-fc0242d4beca", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "1c7e3a91-2179-46dc-b3ee-c9bfad51f36d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:19 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e34821ca-aaf7-41de-9bf1-81a28d142f4b", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "6d88d4d3-2ac8-4ac1-b12e-6d4a66f9abff", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:22 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "03e292ee-4314-4ff4-8c8a-d4ed2864bac7", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ce8c4642-037a-42f9-a653-5c4cd69998bb", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:24 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "7ae455c2-412a-4166-b79d-91d88a28b796", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "6de41425-a784-4e8c-ac81-a895165fdbea", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:26 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "a5fb3a8b-a47e-4b63-b348-d44e6f829749", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e0227702-ab97-4017-88b2-c931bddf5223", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0\",\"deletedDate\":1619648142,\"scheduledPurgeDate\":1620252942,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeys--0/7dbd456fd2564c06ab656aad9e46203c\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"2V5nSTC6tczual2KRJveC8ualbIiG3FbUJe2q4O1Qz1tKXaM45xq_GPjNb0p7R9tuVDQoFdYO44KefovpWG6q19QCRqope985q1PHYa7Le0jZrlt1ynEzeW2WZCfL7_YSalQkNsoD4Qk2IEsmjNCmZk-1QOMr4jLDvyhMAXOn55-_EnY4UQPdU9mrSs2zyjvzDqxQyRRJau4oikz7_OrysLmrjLrG83R6MWfAMsP4LlsLKPa1CQQ3a_J24ssgWrI8pM7cYDDFWoAGP-prS65pX8vJ_je9D_W2vl8lHYVG89L7MIbgRasHYN3NcmIP0oBd6_AsVQRT5JxVQ5C3n29TQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648141,\"updated\":1619648141,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "905", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:28 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c4135419-bd51-415f-a697-85a865ac1965", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "79887288-7e72-4a1b-bff0-b16dc935e08b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:16:28 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "a642d4aa-ce3c-42b8-b087-5347f9bcc379", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "97054300-4514-464b-9346-69340cd2a19f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1\",\"deletedDate\":1619648189,\"scheduledPurgeDate\":1620252989,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeys--1/da48f6e3a2a24e049544fb43c57c692e\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"2dG9Fh8JfvO34J_N0Y1sCW4UG1LEUhoEM2c584Rx0gvJ-ml6Ro_I-3huSd8qbvsq4fyySrBrGormWJFG2xpy5zWYPL-vwXfHlF1h9EwVtWhOnhB7YBOax7nXXe9HxeV5nSSPesRD0NbyNpLvO33aiAmQZbH6jhreWKbHc_wNGkwzQVwcBCvgUo0zLa0zM99unuPZQD7RUNDpTAjwQe9ysc6Jk_KFkzpVhnPuVyh6rt0z8z5BKTP00G5_S851NF_lNqjSK6Z4rN1cGIWf8Gxzwy8HcK-sUMIZmP_d8n8Q3BQJ5LDL1D9F0r94-ERgPcKpheAqmFX-hLM2G9-Q3fvglQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648141,\"updated\":1619648141,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "905", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:28 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "6a347d04-349f-447b-8134-743e394c3d0f", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "76333fd5-efba-4aec-9e7c-2257e6df06ba", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:28 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "34cf9e56-9ee3-4e2d-96ae-6acfafe1353c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "eaeb4c63-8d8f-4df5-aa5f-942ddc1c75c4", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:29 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ba6c5541-167e-4a69-830a-88694ac7bd49", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "9d310039-d655-49c7-8f87-99b7e13ac42e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:31 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "947263f6-c216-4389-908f-aa2a2cb6b778", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f4217406-d769-40c7-9084-33dfaee0482b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:33 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "5819cb45-fb4b-4a05-bbb8-0d5856e681ff", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ca2f0d9c-b450-4d6d-9497-1135d3e021c1", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:35 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e57680c7-7755-45f0-ba95-58166e82b9a1", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "302968cb-d10e-4209-858c-a35d28c5c665", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:38 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "376d79a7-f1d3-4a0d-9871-3ae1ed55cb20", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e85b0368-52f9-45f3-ac4f-3c56b9c4b56e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:40 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "85e9fc3f-4183-421b-b320-737b14d568e2", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5cd0d2c4-9de0-46db-807b-7493032db3de", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:42 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1307adac-a831-4a26-ad7c-75796f778f97", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "20506da0-89a5-48e9-8526-64a244b4b8aa", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:44 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "236181b7-b8ae-4682-9f4e-fdfb72df4f65", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "03f7b07a-5fd5-467b-b9d9-62d9a4c85fbb", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:46 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "08643d98-fe16-4b3a-8ef5-bf7d499386f8", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "dc8f9447-61fd-448d-8baf-0524de766500", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:48 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "139f7f6d-e490-4108-b813-f7fe98e9ce5e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a2ab3c48-999c-487b-9507-758db0ed4853", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:50 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ec2f3d68-e11c-4cb2-8a91-f37b9076bdb3", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "83d6b211-7157-421c-ad76-567a2e7130cd", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "123", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:52 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f0ae7b25-3789-42f1-98f7-a4440b8c5ea2", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4e5fddce-ac64-4dc2-adb0-54562be0c695", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1\",\"deletedDate\":1619648189,\"scheduledPurgeDate\":1620252989,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeys--1/da48f6e3a2a24e049544fb43c57c692e\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"2dG9Fh8JfvO34J_N0Y1sCW4UG1LEUhoEM2c584Rx0gvJ-ml6Ro_I-3huSd8qbvsq4fyySrBrGormWJFG2xpy5zWYPL-vwXfHlF1h9EwVtWhOnhB7YBOax7nXXe9HxeV5nSSPesRD0NbyNpLvO33aiAmQZbH6jhreWKbHc_wNGkwzQVwcBCvgUo0zLa0zM99unuPZQD7RUNDpTAjwQe9ysc6Jk_KFkzpVhnPuVyh6rt0z8z5BKTP00G5_S851NF_lNqjSK6Z4rN1cGIWf8Gxzwy8HcK-sUMIZmP_d8n8Q3BQJ5LDL1D9F0r94-ERgPcKpheAqmFX-hLM2G9-Q3fvglQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648141,\"updated\":1619648141,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "905", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:55 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9c1b03ba-bc14-4dab-87e1-2c5bd7ce7a0a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2707473e-2bd4-44db-bdee-add473900f96", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:16:55 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e1d8eae8-b8ef-45ed-a12e-23097edaf0fa", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2e4f4448-7747-4950-86e6-228e73e8581b", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:40 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - SCUS ProdSlices", - "x-ms-request-id": "f6c1360a-956b-4676-bc40-655624e46501" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeys--0/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\"}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeys--0/7dbd456fd2564c06ab656aad9e46203c\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"2V5nSTC6tczual2KRJveC8ualbIiG3FbUJe2q4O1Qz1tKXaM45xq_GPjNb0p7R9tuVDQoFdYO44KefovpWG6q19QCRqope985q1PHYa7Le0jZrlt1ynEzeW2WZCfL7_YSalQkNsoD4Qk2IEsmjNCmZk-1QOMr4jLDvyhMAXOn55-_EnY4UQPdU9mrSs2zyjvzDqxQyRRJau4oikz7_OrysLmrjLrG83R6MWfAMsP4LlsLKPa1CQQ3a_J24ssgWrI8pM7cYDDFWoAGP-prS65pX8vJ_je9D_W2vl8lHYVG89L7MIbgRasHYN3NcmIP0oBd6_AsVQRT5JxVQ5C3n29TQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648141,\"updated\":1619648141,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "730", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:41 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "988b7030-a12c-4590-94e9-466e12d46446", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "94ed7fb8-f0f6-4e5f-8fc5-fd452921e656", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeys--1/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\"}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeys--1/da48f6e3a2a24e049544fb43c57c692e\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"2dG9Fh8JfvO34J_N0Y1sCW4UG1LEUhoEM2c584Rx0gvJ-ml6Ro_I-3huSd8qbvsq4fyySrBrGormWJFG2xpy5zWYPL-vwXfHlF1h9EwVtWhOnhB7YBOax7nXXe9HxeV5nSSPesRD0NbyNpLvO33aiAmQZbH6jhreWKbHc_wNGkwzQVwcBCvgUo0zLa0zM99unuPZQD7RUNDpTAjwQe9ysc6Jk_KFkzpVhnPuVyh6rt0z8z5BKTP00G5_S851NF_lNqjSK6Z4rN1cGIWf8Gxzwy8HcK-sUMIZmP_d8n8Q3BQJ5LDL1D9F0r94-ERgPcKpheAqmFX-hLM2G9-Q3fvglQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648141,\"updated\":1619648141,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "730", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:41 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c6c5d39e-a656-4c34-9b6a-858de6dde508", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e72e3100-806d-45f5-8891-d62b750442fe", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"value\":[{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeys--0\",\"attributes\":{\"enabled\":true,\"created\":1619648141,\"updated\":1619648141,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeys--1\",\"attributes\":{\"enabled\":true,\"created\":1619648141,\"updated\":1619648141,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}],\"nextLink\":null}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "523", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:42 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "7505e5cc-e956-406e-bd72-5076a3ba64de", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "29e31941-26fe-4013-a8ad-748fd9fb584f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0\",\"deletedDate\":1619648142,\"scheduledPurgeDate\":1620252942,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeys--0/7dbd456fd2564c06ab656aad9e46203c\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"2V5nSTC6tczual2KRJveC8ualbIiG3FbUJe2q4O1Qz1tKXaM45xq_GPjNb0p7R9tuVDQoFdYO44KefovpWG6q19QCRqope985q1PHYa7Le0jZrlt1ynEzeW2WZCfL7_YSalQkNsoD4Qk2IEsmjNCmZk-1QOMr4jLDvyhMAXOn55-_EnY4UQPdU9mrSs2zyjvzDqxQyRRJau4oikz7_OrysLmrjLrG83R6MWfAMsP4LlsLKPa1CQQ3a_J24ssgWrI8pM7cYDDFWoAGP-prS65pX8vJ_je9D_W2vl8lHYVG89L7MIbgRasHYN3NcmIP0oBd6_AsVQRT5JxVQ5C3n29TQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648141,\"updated\":1619648141,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "905", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:42 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "7bfb2542-f340-4c99-b254-d941726a4de3", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "78401963-50e6-4608-964b-81f6db0a31d9", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:42 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "76d1ee8b-b6c1-40ec-b072-904cd7c4925d", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f4cb9976-ff33-436d-b979-34b5e876576b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:42 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "b2b19cfb-c3f5-41be-b350-f486028b5f79", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c0e96490-27c7-4b17-8552-4cb3d85cf451", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:44 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "b3f47155-6503-4e98-8dc7-3c942e7963da", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f49947c7-d83a-48b4-b753-bd4b91e918d6", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:46 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c3526d7f-d3fc-4de5-9323-04df7ecaf3b4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a373efff-0bd7-4691-a365-eee6f17d732c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:48 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "86eb0a63-ed89-4676-a290-40a4dc386a03", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "beffbf8b-e69a-4fe3-9c9c-2b5f12dc60e0", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:50 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "80177c56-0bf9-4c47-8bb0-747baa01d5b4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ff5a45e2-4c28-44ea-bfe9-267f02d1e58d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:52 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "4bd3f121-dbd7-4a19-b10e-9f988a229409", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "be0b85c0-ef28-485b-afdb-efbbbdd11731", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:54 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "a7ca5f2f-3ca4-4e71-be74-cea9804c36b0", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "1bfdef83-940f-40e5-a791-a132a33fa4ae", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:56 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c32be736-aef9-49d6-bc41-f180ce1742a9", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "1cc4c2d1-1e43-4c41-8087-55e36c09a015", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:58 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ad042580-b672-4bbe-988b-57471e5f53e1", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c39e4b87-6c44-47fd-bcd6-ca4c2f2d42cc", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:00 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "b6a01311-5e49-4a39-8c3b-37b66a754131", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "93bbb0be-a1cf-4efe-85cb-bb386e084598", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:02 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "4767ab3f-c2d0-44d3-9e61-2e54143c40e4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a95b67af-bd22-44ed-806b-a74341e79c80", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:05 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e4e8fb3f-42de-46bb-a4e7-e509f68b9897", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4cdb2c8a-33d6-4714-8fa7-0c53252cdba2", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:07 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "dac18f94-20b6-49d3-9665-8a2c381dd718", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a9dd2985-7fe8-4100-95ae-9690e44c1ad0", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:09 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "10c5e2ad-2388-49b2-b208-355cf42e17b7", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a570da07-3533-4326-a047-0f1dd2584c4f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:12 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "41b322e5-115d-460b-816b-2cae0d4e9685", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "aad85ef9-f9d8-4387-a742-710434f598ec", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:13 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "24003223-ad35-4343-a608-e9aac0a40101", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ad007b53-32ec-4d22-a366-2dfa509667a6", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:15 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "32832294-42a7-4455-91ec-66a7c28035aa", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "98905ee6-af0e-4043-b56e-ac7c78b5195b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:17 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "fa93f474-a4c9-4a42-b5bd-fc0242d4beca", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "1c7e3a91-2179-46dc-b3ee-c9bfad51f36d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:19 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e34821ca-aaf7-41de-9bf1-81a28d142f4b", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "6d88d4d3-2ac8-4ac1-b12e-6d4a66f9abff", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:22 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "03e292ee-4314-4ff4-8c8a-d4ed2864bac7", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ce8c4642-037a-42f9-a653-5c4cd69998bb", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:24 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "7ae455c2-412a-4166-b79d-91d88a28b796", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "6de41425-a784-4e8c-ac81-a895165fdbea", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:26 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "a5fb3a8b-a47e-4b63-b348-d44e6f829749", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e0227702-ab97-4017-88b2-c931bddf5223", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0\",\"deletedDate\":1619648142,\"scheduledPurgeDate\":1620252942,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeys--0/7dbd456fd2564c06ab656aad9e46203c\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"2V5nSTC6tczual2KRJveC8ualbIiG3FbUJe2q4O1Qz1tKXaM45xq_GPjNb0p7R9tuVDQoFdYO44KefovpWG6q19QCRqope985q1PHYa7Le0jZrlt1ynEzeW2WZCfL7_YSalQkNsoD4Qk2IEsmjNCmZk-1QOMr4jLDvyhMAXOn55-_EnY4UQPdU9mrSs2zyjvzDqxQyRRJau4oikz7_OrysLmrjLrG83R6MWfAMsP4LlsLKPa1CQQ3a_J24ssgWrI8pM7cYDDFWoAGP-prS65pX8vJ_je9D_W2vl8lHYVG89L7MIbgRasHYN3NcmIP0oBd6_AsVQRT5JxVQ5C3n29TQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648141,\"updated\":1619648141,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "905", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:28 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c4135419-bd51-415f-a697-85a865ac1965", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "79887288-7e72-4a1b-bff0-b16dc935e08b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:16:28 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "a642d4aa-ce3c-42b8-b087-5347f9bcc379", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "97054300-4514-464b-9346-69340cd2a19f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1\",\"deletedDate\":1619648189,\"scheduledPurgeDate\":1620252989,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeys--1/da48f6e3a2a24e049544fb43c57c692e\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"2dG9Fh8JfvO34J_N0Y1sCW4UG1LEUhoEM2c584Rx0gvJ-ml6Ro_I-3huSd8qbvsq4fyySrBrGormWJFG2xpy5zWYPL-vwXfHlF1h9EwVtWhOnhB7YBOax7nXXe9HxeV5nSSPesRD0NbyNpLvO33aiAmQZbH6jhreWKbHc_wNGkwzQVwcBCvgUo0zLa0zM99unuPZQD7RUNDpTAjwQe9ysc6Jk_KFkzpVhnPuVyh6rt0z8z5BKTP00G5_S851NF_lNqjSK6Z4rN1cGIWf8Gxzwy8HcK-sUMIZmP_d8n8Q3BQJ5LDL1D9F0r94-ERgPcKpheAqmFX-hLM2G9-Q3fvglQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648141,\"updated\":1619648141,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "905", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:28 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "6a347d04-349f-447b-8134-743e394c3d0f", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "76333fd5-efba-4aec-9e7c-2257e6df06ba", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:28 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "34cf9e56-9ee3-4e2d-96ae-6acfafe1353c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "eaeb4c63-8d8f-4df5-aa5f-942ddc1c75c4", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:29 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ba6c5541-167e-4a69-830a-88694ac7bd49", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "9d310039-d655-49c7-8f87-99b7e13ac42e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:31 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "947263f6-c216-4389-908f-aa2a2cb6b778", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f4217406-d769-40c7-9084-33dfaee0482b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:33 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "5819cb45-fb4b-4a05-bbb8-0d5856e681ff", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ca2f0d9c-b450-4d6d-9497-1135d3e021c1", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:35 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e57680c7-7755-45f0-ba95-58166e82b9a1", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "302968cb-d10e-4209-858c-a35d28c5c665", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:38 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "376d79a7-f1d3-4a0d-9871-3ae1ed55cb20", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e85b0368-52f9-45f3-ac4f-3c56b9c4b56e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:40 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "85e9fc3f-4183-421b-b320-737b14d568e2", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5cd0d2c4-9de0-46db-807b-7493032db3de", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:42 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1307adac-a831-4a26-ad7c-75796f778f97", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "20506da0-89a5-48e9-8526-64a244b4b8aa", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:44 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "236181b7-b8ae-4682-9f4e-fdfb72df4f65", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "03f7b07a-5fd5-467b-b9d9-62d9a4c85fbb", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:46 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "08643d98-fe16-4b3a-8ef5-bf7d499386f8", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "dc8f9447-61fd-448d-8baf-0524de766500", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:48 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "139f7f6d-e490-4108-b813-f7fe98e9ce5e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a2ab3c48-999c-487b-9507-758db0ed4853", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:50 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ec2f3d68-e11c-4cb2-8a91-f37b9076bdb3", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "83d6b211-7157-421c-ad76-567a2e7130cd", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeys--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "123", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:52 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f0ae7b25-3789-42f1-98f7-a4440b8c5ea2", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4e5fddce-ac64-4dc2-adb0-54562be0c695", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1\",\"deletedDate\":1619648189,\"scheduledPurgeDate\":1620252989,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeys--1/da48f6e3a2a24e049544fb43c57c692e\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"2dG9Fh8JfvO34J_N0Y1sCW4UG1LEUhoEM2c584Rx0gvJ-ml6Ro_I-3huSd8qbvsq4fyySrBrGormWJFG2xpy5zWYPL-vwXfHlF1h9EwVtWhOnhB7YBOax7nXXe9HxeV5nSSPesRD0NbyNpLvO33aiAmQZbH6jhreWKbHc_wNGkwzQVwcBCvgUo0zLa0zM99unuPZQD7RUNDpTAjwQe9ysc6Jk_KFkzpVhnPuVyh6rt0z8z5BKTP00G5_S851NF_lNqjSK6Z4rN1cGIWf8Gxzwy8HcK-sUMIZmP_d8n8Q3BQJ5LDL1D9F0r94-ERgPcKpheAqmFX-hLM2G9-Q3fvglQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648141,\"updated\":1619648141,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "905", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:55 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9c1b03ba-bc14-4dab-87e1-2c5bd7ce7a0a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2707473e-2bd4-44db-bdee-add473900f96", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:16:55 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e1d8eae8-b8ef-45ed-a12e-23097edaf0fa", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2e4f4448-7747-4950-86e6-228e73e8581b", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "8e857f30b78de869832cd3e7ae77c0d1" -} \ No newline at end of file + "hash": "8e857f30b78de869832cd3e7ae77c0d1" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_can_get_several_inserted_keys_paged.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_can_get_several_inserted_keys_paged.json index 3397c55341ca..de60f5d507d8 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_can_get_several_inserted_keys_paged.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_can_get_several_inserted_keys_paged.json @@ -1,1029 +1,1029 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeyspaged--0/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:55 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "a8e9bf33-c2e5-47f2-8355-94f089be26e9", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "1216a827-13cf-45a6-b4df-72e2ea58a2c9", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeyspaged--0/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:55 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "a8e9bf33-c2e5-47f2-8355-94f089be26e9", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "1216a827-13cf-45a6-b4df-72e2ea58a2c9", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:54 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - SCUS ProdSlices", + "x-ms-request-id": "b0eebdf2-53e1-4a2d-b7ef-db41e1af3b01" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeyspaged--0/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\"}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeyspaged--0/b2bf161f2c594fb98a29a088926dad79\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"yCsIuIma2mSk2mDvH9Dtvus02YQ3f2-y252NvuT8DT9TTpk55g9lkJb5hPpMcM2XqlWJFeuEfKXNSpSGEcCW0ypXAlLpc2JSzPcP6WKxHW9OkJMn0Kz6eGJ45MGZH3E6-qkCe9tQCR-tAqCNshl8F9mWhDwRJyMb-Ah9pq-Qr4QD6F_e3P_tBAyAb-MAWuouugGZ6k1_Gc5hUd-ONPXAzCrw6I4X8skrklPKysqpaPnUVi7CGegnriqhev2-ETxS2pZOyDo-xcXAL4ysbXV6_69hr9j8kEMiN3kuXs6lehrHgKYWiKFoP5bg6fFMqjxmEN7wAUcHRwqp7CY5pd5hAQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648215,\"updated\":1619648215,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "736", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:55 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "a8e9bf33-c2e5-47f2-8355-94f089be26e9", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "960dd644-f005-4728-980a-12fa01e1d25c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeyspaged--1/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\"}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeyspaged--1/fc03f5fa3e884db1bec9a04c02340ce2\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"vCNLf6nTTHjd7ZkzQf2fK2HtZvbteEYrTVmqz9PaMbFte7PM-Gxxvanlu_r-HQp7P3_H0iU9TBLQKdbLmbN8IXVsmNRcAS5cVhe1patxhuQOTFj9D_Wt_T88UpDcgH-2m6qUPiV3EHbhHdBRK_jTEqDLFiN9Na39XZNU6JUSlDv9SoUfQv85X5Qy4dWKYfVGahOckL1kIhc3J2TqSIos_bEDQoh24Q7CHTl5I2X_Wk-DQxoLyJB5wAt-tA3Sy7CGJFaXINp-NGgRVVEzNvFETcjiWmTmaCcE_mSG_ZNUxI-hi670MSlE5Pwjzk9RU5AP4IqQcA5_gY6R4sMhPwXoLQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648215,\"updated\":1619648215,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "736", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:56 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "cf38be90-d06d-4a6c-8e18-a7986439aada", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "1d00c66c-c61b-4789-b6eb-950714306428", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"value\":[{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeyspaged--0\",\"attributes\":{\"enabled\":true,\"created\":1619648215,\"updated\":1619648215,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeyspaged--1\",\"attributes\":{\"enabled\":true,\"created\":1619648215,\"updated\":1619648215,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}],\"nextLink\":null}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "535", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:56 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "bb2d2cdf-9c7f-4395-af55-164f36590cf3", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "086ed9cd-3e50-45df-bbc7-ee3d83bebb66", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0\",\"deletedDate\":1619648216,\"scheduledPurgeDate\":1620253016,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeyspaged--0/b2bf161f2c594fb98a29a088926dad79\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"yCsIuIma2mSk2mDvH9Dtvus02YQ3f2-y252NvuT8DT9TTpk55g9lkJb5hPpMcM2XqlWJFeuEfKXNSpSGEcCW0ypXAlLpc2JSzPcP6WKxHW9OkJMn0Kz6eGJ45MGZH3E6-qkCe9tQCR-tAqCNshl8F9mWhDwRJyMb-Ah9pq-Qr4QD6F_e3P_tBAyAb-MAWuouugGZ6k1_Gc5hUd-ONPXAzCrw6I4X8skrklPKysqpaPnUVi7CGegnriqhev2-ETxS2pZOyDo-xcXAL4ysbXV6_69hr9j8kEMiN3kuXs6lehrHgKYWiKFoP5bg6fFMqjxmEN7wAUcHRwqp7CY5pd5hAQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648215,\"updated\":1619648215,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "917", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:56 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "6d5f4cb8-0ff4-4181-a8b7-17cb892b77bf", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3d56905e-181b-430d-b639-466130e8021b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:56 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "50cdd1e1-4f30-4a23-926d-1967a1322324", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "1b70c9b4-b9e1-4d73-a1e5-39b7b0ed7919", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:56 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "03604767-9905-4d09-be07-9f6568429493", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "23a29f98-e8ad-4498-b84d-75237b627d3b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:16:58 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "650f6d46-b212-4925-811f-f7e74d0ab770", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5328a522-671a-48bd-92be-bec53bc27a37", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:00 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "92a160c1-18a2-41c3-8433-f1089db14b46", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "95594a5d-3545-4ef1-8bb6-9507ba10ddcf", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:02 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c698b773-d883-426d-95ff-8bf95a76b8db", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5eae0d04-9a20-4d39-8e8c-57b64cded294", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:04 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "5d8d0b81-309b-4d83-aa39-ed3e42cc4736", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "7bd9ea95-e0df-4592-a2d6-46877995c013", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:06 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "4b53557b-15e8-4181-89f7-0e3f034e8749", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "8b939469-fe21-48be-84bd-5fc23a229630", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:08 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d6e66d03-baeb-4004-8c4a-25461b1b4500", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "73dce0c4-3d19-4afb-b899-02c02d305abc", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:10 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f8801eb9-de54-4074-9a82-c01a3d7f5835", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b35f5858-13df-4721-9f84-c2e123bab5ee", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:13 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "3aa74dd9-99e4-4e90-be0e-015b0df5f63c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ea9aa341-0c2c-4ddf-8763-3cfc896b2803", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:15 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "48ac5978-53e5-4037-96a4-8d10b603b40e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "21e155dd-bc84-4f0e-ad19-dda65db79394", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:17 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "4fe948f4-d2bf-4c99-9bf6-d49118472142", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "47f05fd1-c95c-465e-8ca7-8fc2f8a29620", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:19 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9eab24d8-affb-469f-9da2-6d8aaddc0d4c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5f46b22a-d967-4d72-9e05-96d410b92dc9", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:21 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "84cc8910-0487-45a9-a52c-d5e8df414075", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "367299a5-d52a-4247-9876-954c419aa1d3", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0\",\"deletedDate\":1619648216,\"scheduledPurgeDate\":1620253016,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeyspaged--0/b2bf161f2c594fb98a29a088926dad79\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"yCsIuIma2mSk2mDvH9Dtvus02YQ3f2-y252NvuT8DT9TTpk55g9lkJb5hPpMcM2XqlWJFeuEfKXNSpSGEcCW0ypXAlLpc2JSzPcP6WKxHW9OkJMn0Kz6eGJ45MGZH3E6-qkCe9tQCR-tAqCNshl8F9mWhDwRJyMb-Ah9pq-Qr4QD6F_e3P_tBAyAb-MAWuouugGZ6k1_Gc5hUd-ONPXAzCrw6I4X8skrklPKysqpaPnUVi7CGegnriqhev2-ETxS2pZOyDo-xcXAL4ysbXV6_69hr9j8kEMiN3kuXs6lehrHgKYWiKFoP5bg6fFMqjxmEN7wAUcHRwqp7CY5pd5hAQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648215,\"updated\":1619648215,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "917", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:23 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c0c9332d-028e-403f-aed0-72ef5568742a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "7f68515a-e4d1-4ec7-9659-e78b5d638896", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:17:23 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "64115594-c5be-4068-bc80-22ea28168f16", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "840719c3-dc73-4a0e-b8c0-1110356f788a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1\",\"deletedDate\":1619648244,\"scheduledPurgeDate\":1620253044,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeyspaged--1/fc03f5fa3e884db1bec9a04c02340ce2\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"vCNLf6nTTHjd7ZkzQf2fK2HtZvbteEYrTVmqz9PaMbFte7PM-Gxxvanlu_r-HQp7P3_H0iU9TBLQKdbLmbN8IXVsmNRcAS5cVhe1patxhuQOTFj9D_Wt_T88UpDcgH-2m6qUPiV3EHbhHdBRK_jTEqDLFiN9Na39XZNU6JUSlDv9SoUfQv85X5Qy4dWKYfVGahOckL1kIhc3J2TqSIos_bEDQoh24Q7CHTl5I2X_Wk-DQxoLyJB5wAt-tA3Sy7CGJFaXINp-NGgRVVEzNvFETcjiWmTmaCcE_mSG_ZNUxI-hi670MSlE5Pwjzk9RU5AP4IqQcA5_gY6R4sMhPwXoLQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648215,\"updated\":1619648215,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "917", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:23 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "cfe40a87-7853-4762-8591-95243fb4dc34", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4a3419b8-090a-434c-b37e-874d8d4689a0", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:23 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d88fcac3-a07c-4d2c-8ef5-283442bd11f4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a1bd0fed-0a64-4693-a48c-dfc55bac504e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:23 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2f3429c7-e92d-4e7c-9a7f-c6ca70126ea1", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c603582b-116b-453f-ba25-357c07eac4b1", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:26 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c2889b7b-03b4-44b7-8306-a628afc88c78", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "9a1d68bc-9602-43a8-ba1d-850ba7f3b4d5", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:28 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "a5c15a51-c362-43ea-a442-334ff9a92b35", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "51ffcc71-bdf5-4eaa-9682-e5fdc56bbc81", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:30 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "abcca202-3133-4084-84c2-78f761a34069", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e0ca44a7-6775-4b4e-9c6f-17faf97e43f9", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:32 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "50f4d582-f2a1-41d5-bfd8-2f0f0d185edb", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "9f05b229-7dac-487f-8b61-763e393d55fc", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:34 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "af77c52d-1004-4cce-a691-2f69f928cf26", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d2ebf01f-2feb-4e00-b8d3-a9733bde1c61", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:36 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "3571e36b-5eb8-4345-8542-31fcde3697e9", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "18b92eb9-2b66-4f98-ae69-f079b7cd0854", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:39 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ff9e6103-8cc4-47fb-8e59-cf053ee2ef5a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "1a26596e-a14e-43f7-b4e3-d92b6c802545", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:41 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1f8264f2-c0d8-4604-8d6f-07e296facd42", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "cabb8a59-9015-4754-8f60-7b2a328abfd1", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:42 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "fb2c445c-4d67-412c-a032-a44e00590778", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "1a5929b1-4cc2-4c75-860e-c38743658c21", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:45 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "80835a0b-502b-46ea-a422-a9e9157f76f0", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d11e988c-4c3b-4c5b-9e6a-e7fa004173ce", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:47 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "65743f4c-dfc7-4c7d-902b-01b87b01b752", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b86cdf5d-421a-4484-a2bb-b70a6a798399", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1\",\"deletedDate\":1619648244,\"scheduledPurgeDate\":1620253044,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeyspaged--1/fc03f5fa3e884db1bec9a04c02340ce2\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"vCNLf6nTTHjd7ZkzQf2fK2HtZvbteEYrTVmqz9PaMbFte7PM-Gxxvanlu_r-HQp7P3_H0iU9TBLQKdbLmbN8IXVsmNRcAS5cVhe1patxhuQOTFj9D_Wt_T88UpDcgH-2m6qUPiV3EHbhHdBRK_jTEqDLFiN9Na39XZNU6JUSlDv9SoUfQv85X5Qy4dWKYfVGahOckL1kIhc3J2TqSIos_bEDQoh24Q7CHTl5I2X_Wk-DQxoLyJB5wAt-tA3Sy7CGJFaXINp-NGgRVVEzNvFETcjiWmTmaCcE_mSG_ZNUxI-hi670MSlE5Pwjzk9RU5AP4IqQcA5_gY6R4sMhPwXoLQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648215,\"updated\":1619648215,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "917", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:49 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2c047b89-d1ff-4195-90d0-996ee4c14c42", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e5847f69-7ed3-4d20-831d-094f5ab1e7aa", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:17:49 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d029853b-33ba-421f-b519-92a49c3e67b9", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "50e40a1c-9876-4f71-8955-c9d711c09056", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:54 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - SCUS ProdSlices", - "x-ms-request-id": "b0eebdf2-53e1-4a2d-b7ef-db41e1af3b01" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeyspaged--0/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\"}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeyspaged--0/b2bf161f2c594fb98a29a088926dad79\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"yCsIuIma2mSk2mDvH9Dtvus02YQ3f2-y252NvuT8DT9TTpk55g9lkJb5hPpMcM2XqlWJFeuEfKXNSpSGEcCW0ypXAlLpc2JSzPcP6WKxHW9OkJMn0Kz6eGJ45MGZH3E6-qkCe9tQCR-tAqCNshl8F9mWhDwRJyMb-Ah9pq-Qr4QD6F_e3P_tBAyAb-MAWuouugGZ6k1_Gc5hUd-ONPXAzCrw6I4X8skrklPKysqpaPnUVi7CGegnriqhev2-ETxS2pZOyDo-xcXAL4ysbXV6_69hr9j8kEMiN3kuXs6lehrHgKYWiKFoP5bg6fFMqjxmEN7wAUcHRwqp7CY5pd5hAQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648215,\"updated\":1619648215,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "736", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:55 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "a8e9bf33-c2e5-47f2-8355-94f089be26e9", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "960dd644-f005-4728-980a-12fa01e1d25c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeyspaged--1/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\"}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeyspaged--1/fc03f5fa3e884db1bec9a04c02340ce2\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"vCNLf6nTTHjd7ZkzQf2fK2HtZvbteEYrTVmqz9PaMbFte7PM-Gxxvanlu_r-HQp7P3_H0iU9TBLQKdbLmbN8IXVsmNRcAS5cVhe1patxhuQOTFj9D_Wt_T88UpDcgH-2m6qUPiV3EHbhHdBRK_jTEqDLFiN9Na39XZNU6JUSlDv9SoUfQv85X5Qy4dWKYfVGahOckL1kIhc3J2TqSIos_bEDQoh24Q7CHTl5I2X_Wk-DQxoLyJB5wAt-tA3Sy7CGJFaXINp-NGgRVVEzNvFETcjiWmTmaCcE_mSG_ZNUxI-hi670MSlE5Pwjzk9RU5AP4IqQcA5_gY6R4sMhPwXoLQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648215,\"updated\":1619648215,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "736", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:56 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "cf38be90-d06d-4a6c-8e18-a7986439aada", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "1d00c66c-c61b-4789-b6eb-950714306428", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"value\":[{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeyspaged--0\",\"attributes\":{\"enabled\":true,\"created\":1619648215,\"updated\":1619648215,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeyspaged--1\",\"attributes\":{\"enabled\":true,\"created\":1619648215,\"updated\":1619648215,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}],\"nextLink\":null}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "535", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:56 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "bb2d2cdf-9c7f-4395-af55-164f36590cf3", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "086ed9cd-3e50-45df-bbc7-ee3d83bebb66", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0\",\"deletedDate\":1619648216,\"scheduledPurgeDate\":1620253016,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeyspaged--0/b2bf161f2c594fb98a29a088926dad79\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"yCsIuIma2mSk2mDvH9Dtvus02YQ3f2-y252NvuT8DT9TTpk55g9lkJb5hPpMcM2XqlWJFeuEfKXNSpSGEcCW0ypXAlLpc2JSzPcP6WKxHW9OkJMn0Kz6eGJ45MGZH3E6-qkCe9tQCR-tAqCNshl8F9mWhDwRJyMb-Ah9pq-Qr4QD6F_e3P_tBAyAb-MAWuouugGZ6k1_Gc5hUd-ONPXAzCrw6I4X8skrklPKysqpaPnUVi7CGegnriqhev2-ETxS2pZOyDo-xcXAL4ysbXV6_69hr9j8kEMiN3kuXs6lehrHgKYWiKFoP5bg6fFMqjxmEN7wAUcHRwqp7CY5pd5hAQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648215,\"updated\":1619648215,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "917", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:56 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "6d5f4cb8-0ff4-4181-a8b7-17cb892b77bf", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3d56905e-181b-430d-b639-466130e8021b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:56 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "50cdd1e1-4f30-4a23-926d-1967a1322324", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "1b70c9b4-b9e1-4d73-a1e5-39b7b0ed7919", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:56 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "03604767-9905-4d09-be07-9f6568429493", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "23a29f98-e8ad-4498-b84d-75237b627d3b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:16:58 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "650f6d46-b212-4925-811f-f7e74d0ab770", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5328a522-671a-48bd-92be-bec53bc27a37", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:00 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "92a160c1-18a2-41c3-8433-f1089db14b46", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "95594a5d-3545-4ef1-8bb6-9507ba10ddcf", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:02 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c698b773-d883-426d-95ff-8bf95a76b8db", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5eae0d04-9a20-4d39-8e8c-57b64cded294", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:04 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "5d8d0b81-309b-4d83-aa39-ed3e42cc4736", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "7bd9ea95-e0df-4592-a2d6-46877995c013", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:06 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "4b53557b-15e8-4181-89f7-0e3f034e8749", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "8b939469-fe21-48be-84bd-5fc23a229630", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:08 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d6e66d03-baeb-4004-8c4a-25461b1b4500", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "73dce0c4-3d19-4afb-b899-02c02d305abc", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:10 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f8801eb9-de54-4074-9a82-c01a3d7f5835", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b35f5858-13df-4721-9f84-c2e123bab5ee", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:13 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "3aa74dd9-99e4-4e90-be0e-015b0df5f63c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ea9aa341-0c2c-4ddf-8763-3cfc896b2803", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:15 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "48ac5978-53e5-4037-96a4-8d10b603b40e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "21e155dd-bc84-4f0e-ad19-dda65db79394", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:17 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "4fe948f4-d2bf-4c99-9bf6-d49118472142", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "47f05fd1-c95c-465e-8ca7-8fc2f8a29620", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:19 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9eab24d8-affb-469f-9da2-6d8aaddc0d4c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5f46b22a-d967-4d72-9e05-96d410b92dc9", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:21 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "84cc8910-0487-45a9-a52c-d5e8df414075", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "367299a5-d52a-4247-9876-954c419aa1d3", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0\",\"deletedDate\":1619648216,\"scheduledPurgeDate\":1620253016,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeyspaged--0/b2bf161f2c594fb98a29a088926dad79\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"yCsIuIma2mSk2mDvH9Dtvus02YQ3f2-y252NvuT8DT9TTpk55g9lkJb5hPpMcM2XqlWJFeuEfKXNSpSGEcCW0ypXAlLpc2JSzPcP6WKxHW9OkJMn0Kz6eGJ45MGZH3E6-qkCe9tQCR-tAqCNshl8F9mWhDwRJyMb-Ah9pq-Qr4QD6F_e3P_tBAyAb-MAWuouugGZ6k1_Gc5hUd-ONPXAzCrw6I4X8skrklPKysqpaPnUVi7CGegnriqhev2-ETxS2pZOyDo-xcXAL4ysbXV6_69hr9j8kEMiN3kuXs6lehrHgKYWiKFoP5bg6fFMqjxmEN7wAUcHRwqp7CY5pd5hAQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648215,\"updated\":1619648215,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "917", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:23 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c0c9332d-028e-403f-aed0-72ef5568742a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "7f68515a-e4d1-4ec7-9659-e78b5d638896", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:17:23 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "64115594-c5be-4068-bc80-22ea28168f16", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "840719c3-dc73-4a0e-b8c0-1110356f788a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1\",\"deletedDate\":1619648244,\"scheduledPurgeDate\":1620253044,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeyspaged--1/fc03f5fa3e884db1bec9a04c02340ce2\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"vCNLf6nTTHjd7ZkzQf2fK2HtZvbteEYrTVmqz9PaMbFte7PM-Gxxvanlu_r-HQp7P3_H0iU9TBLQKdbLmbN8IXVsmNRcAS5cVhe1patxhuQOTFj9D_Wt_T88UpDcgH-2m6qUPiV3EHbhHdBRK_jTEqDLFiN9Na39XZNU6JUSlDv9SoUfQv85X5Qy4dWKYfVGahOckL1kIhc3J2TqSIos_bEDQoh24Q7CHTl5I2X_Wk-DQxoLyJB5wAt-tA3Sy7CGJFaXINp-NGgRVVEzNvFETcjiWmTmaCcE_mSG_ZNUxI-hi670MSlE5Pwjzk9RU5AP4IqQcA5_gY6R4sMhPwXoLQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648215,\"updated\":1619648215,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "917", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:23 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "cfe40a87-7853-4762-8591-95243fb4dc34", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4a3419b8-090a-434c-b37e-874d8d4689a0", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:23 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d88fcac3-a07c-4d2c-8ef5-283442bd11f4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a1bd0fed-0a64-4693-a48c-dfc55bac504e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:23 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2f3429c7-e92d-4e7c-9a7f-c6ca70126ea1", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c603582b-116b-453f-ba25-357c07eac4b1", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:26 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c2889b7b-03b4-44b7-8306-a628afc88c78", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "9a1d68bc-9602-43a8-ba1d-850ba7f3b4d5", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:28 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "a5c15a51-c362-43ea-a442-334ff9a92b35", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "51ffcc71-bdf5-4eaa-9682-e5fdc56bbc81", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:30 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "abcca202-3133-4084-84c2-78f761a34069", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e0ca44a7-6775-4b4e-9c6f-17faf97e43f9", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:32 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "50f4d582-f2a1-41d5-bfd8-2f0f0d185edb", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "9f05b229-7dac-487f-8b61-763e393d55fc", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:34 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "af77c52d-1004-4cce-a691-2f69f928cf26", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d2ebf01f-2feb-4e00-b8d3-a9733bde1c61", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:36 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "3571e36b-5eb8-4345-8542-31fcde3697e9", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "18b92eb9-2b66-4f98-ae69-f079b7cd0854", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:39 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ff9e6103-8cc4-47fb-8e59-cf053ee2ef5a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "1a26596e-a14e-43f7-b4e3-d92b6c802545", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:41 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1f8264f2-c0d8-4604-8d6f-07e296facd42", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "cabb8a59-9015-4754-8f60-7b2a328abfd1", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:42 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "fb2c445c-4d67-412c-a032-a44e00590778", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "1a5929b1-4cc2-4c75-860e-c38743658c21", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:45 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "80835a0b-502b-46ea-a422-a9e9157f76f0", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d11e988c-4c3b-4c5b-9e6a-e7fa004173ce", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangetseveralinsertedkeyspaged--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:47 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "65743f4c-dfc7-4c7d-902b-01b87b01b752", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b86cdf5d-421a-4484-a2bb-b70a6a798399", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1\",\"deletedDate\":1619648244,\"scheduledPurgeDate\":1620253044,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangetseveralinsertedkeyspaged--1/fc03f5fa3e884db1bec9a04c02340ce2\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"vCNLf6nTTHjd7ZkzQf2fK2HtZvbteEYrTVmqz9PaMbFte7PM-Gxxvanlu_r-HQp7P3_H0iU9TBLQKdbLmbN8IXVsmNRcAS5cVhe1patxhuQOTFj9D_Wt_T88UpDcgH-2m6qUPiV3EHbhHdBRK_jTEqDLFiN9Na39XZNU6JUSlDv9SoUfQv85X5Qy4dWKYfVGahOckL1kIhc3J2TqSIos_bEDQoh24Q7CHTl5I2X_Wk-DQxoLyJB5wAt-tA3Sy7CGJFaXINp-NGgRVVEzNvFETcjiWmTmaCcE_mSG_ZNUxI-hi670MSlE5Pwjzk9RU5AP4IqQcA5_gY6R4sMhPwXoLQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648215,\"updated\":1619648215,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "917", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:49 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2c047b89-d1ff-4195-90d0-996ee4c14c42", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e5847f69-7ed3-4d20-831d-094f5ab1e7aa", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangetseveralinsertedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:17:49 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d029853b-33ba-421f-b519-92a49c3e67b9", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "50e40a1c-9876-4f71-8955-c9d711c09056", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "bae83f172fec0d3cdeb7a2a10b48e457" -} \ No newline at end of file + "hash": "bae83f172fec0d3cdeb7a2a10b48e457" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_can_get_the_versions_of_a_key.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_can_get_the_versions_of_a_key.json index b01a02475ac8..bdbb59b8c131 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_can_get_the_versions_of_a_key.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_can_get_the_versions_of_a_key.json @@ -1,842 +1,842 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakey-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:21 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "60902ff9-7b12-4590-9896-df191d8cd027", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "6d5aeda2-6a2e-47e7-aaff-ea10a2fc733b", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakey-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:21 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "60902ff9-7b12-4590-9896-df191d8cd027", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "6d5aeda2-6a2e-47e7-aaff-ea10a2fc733b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:22 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - WUS2 ProdSlices", + "x-ms-request-id": "48c5329c-0596-4150-b337-49df877ff801" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakey-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\"}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakey-/b4ff7f19b9eb4a87876a35f3f5ae1d07\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"6FsoMU-VzetHv88EyrCaivM9lUAfFoWeb0UQcv5INoXv5GITnlL7Cxmf35hu-w3bG-AJbQULVvzPw0EBmXVYZdeL5yfowNvh5VeZW_V8EAw5dLiBH45Bl-etts5xuBXCwjhKA9ZNgTcO5xMNW5ySpzXao5KFK1fHxXE8Vkb9hHAqku9p5U-mcmRhedcfnCYwgLDVYtyDneu1wLAbcot3E10f3ok3cf5mjC7Xz-0_qDUR7SKfNjInC6ddBO8zsmvVJJlgsHnAmItHQJNuodU14lmr8H43wu2Vy-iIIHp_QlsOuq_5qmj2QQpdkHzDWjdMcNjiovg2VCt8BZ8pKpTXLQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648062,\"updated\":1619648062,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "727", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:22 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "60902ff9-7b12-4590-9896-df191d8cd027", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ca056d9b-d835-44a5-9f9e-86739e847181", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakey-/versions", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"value\":[{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakey-/b4ff7f19b9eb4a87876a35f3f5ae1d07\",\"attributes\":{\"enabled\":true,\"created\":1619648062,\"updated\":1619648062,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}],\"nextLink\":null}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "305", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:22 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "a98a5764-8586-4a98-a904-0ba448309de6", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e2511293-b1f2-4e28-97ed-53404185dfda", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-\",\"deletedDate\":1619648063,\"scheduledPurgeDate\":1620252863,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakey-/b4ff7f19b9eb4a87876a35f3f5ae1d07\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"6FsoMU-VzetHv88EyrCaivM9lUAfFoWeb0UQcv5INoXv5GITnlL7Cxmf35hu-w3bG-AJbQULVvzPw0EBmXVYZdeL5yfowNvh5VeZW_V8EAw5dLiBH45Bl-etts5xuBXCwjhKA9ZNgTcO5xMNW5ySpzXao5KFK1fHxXE8Vkb9hHAqku9p5U-mcmRhedcfnCYwgLDVYtyDneu1wLAbcot3E10f3ok3cf5mjC7Xz-0_qDUR7SKfNjInC6ddBO8zsmvVJJlgsHnAmItHQJNuodU14lmr8H43wu2Vy-iIIHp_QlsOuq_5qmj2QQpdkHzDWjdMcNjiovg2VCt8BZ8pKpTXLQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648062,\"updated\":1619648062,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "899", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:22 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "921f28d2-5d0e-42f8-9c81-1eea412d31b8", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f3f3be69-ec08-4767-9546-8222d555e869", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:22 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "28beb55d-1c9c-4682-884d-0ce0e9516eb6", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "92c12b60-ea1e-44fe-9526-93312f765987", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:22 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "77ceb7fc-5555-49b1-bca4-ee995539504d", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e6409a9f-8721-4520-bd1b-1b1ae47bb823", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:24 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2a37aaab-a56b-4e35-9603-6f5c4608a73e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "261767cc-4886-4faf-b674-2f9790d85131", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:26 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "60132df4-d788-4fc2-b926-8c35b5a44178", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2bae4ba4-fc56-437b-9fe6-3e9040d70f42", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:28 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "02013ce5-c53c-467b-a440-27edd4d8fda4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "1c9686cc-819b-4d7b-b338-201e141c527f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:30 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d25b2acb-3c00-4125-a015-5bbbf2a7d74a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "8ecf6395-9383-47f4-80f4-6a5279ef6496", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:33 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e5bf4beb-768b-49f9-91e5-86a5b8df60ba", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3c262214-4358-4fd5-895b-9e2f6b40f36c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:35 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "247493bf-f2db-4621-819c-6a0a8bf253ae", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4798e879-0406-44eb-8e05-71a56e9d0943", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:37 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "322cc72b-63d3-4db4-97db-84b3b13f7aa4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "7fe7dff0-3e31-4043-9028-4595b39f098c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:39 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "92c99101-a0c3-4d7f-93d0-51ae128f5e40", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ed9be963-28e4-41d7-9cc6-5bae7a3bb25e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:41 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "004504f9-b551-4295-8421-a9d81ec8df7b", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c044f784-35aa-448c-a049-0303c3c872b8", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:43 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d8920148-6191-4565-8a0b-9df664a6a253", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5610accc-d42c-4340-bdd7-1b8b840b2be4", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:45 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1755dfe2-efae-4990-a1b5-c2f4ab2b6805", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "bb616db4-e635-49b1-84a8-c50a6ba83020", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:47 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "00ce4312-adb5-4021-bb9a-03d621060aa6", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ac4aa6d6-8fa4-4103-a490-605c9840c2e7", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:49 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c29a1e5f-10ad-474f-9d0c-309c80b63795", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "0f856191-980d-426e-90a7-9755b18314ec", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:51 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "64437b21-a2af-4d87-99a2-71a36242325b", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e697aa1b-fec1-4ef3-9b78-232f789c0e88", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:53 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "478e5954-8d84-443d-bea8-3eb572618080", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d34410a1-5b64-42ef-ae0a-25c663246393", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:56 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "5948689e-b702-43f3-bfad-7a33baf23c89", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a0cf42a0-63ac-4a8c-b7b8-8d038e2aafc1", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:59 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ae70e10c-a250-4069-82b3-95873fcc5454", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "7fd2c71e-ee95-4dab-89f5-caa92e0c9eff", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:01 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "7466b039-386e-468b-9323-fa17f757647d", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "90f7109e-c42b-4813-8c56-25856200df24", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:03 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "7237b67f-6099-4544-bcbe-84ccfb9908b4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "1c3d5074-976e-4a18-b0ea-569caba7c299", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:05 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "759628f3-434b-4d3e-b5e5-d51b62d263eb", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "443d0afb-8e2a-4d4d-b12c-e838b1414e90", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:07 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "7a1e07c8-7b76-4c2f-afa3-23838d320a87", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "9234e754-0a3a-48e4-801b-65bc62269846", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "120", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:09 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "7b16a232-57bf-4374-b354-b2c1d34508cf", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "99f3a8d1-545c-4c6a-9322-afa2099ffcfc", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-\",\"deletedDate\":1619648063,\"scheduledPurgeDate\":1620252863,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakey-/b4ff7f19b9eb4a87876a35f3f5ae1d07\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"6FsoMU-VzetHv88EyrCaivM9lUAfFoWeb0UQcv5INoXv5GITnlL7Cxmf35hu-w3bG-AJbQULVvzPw0EBmXVYZdeL5yfowNvh5VeZW_V8EAw5dLiBH45Bl-etts5xuBXCwjhKA9ZNgTcO5xMNW5ySpzXao5KFK1fHxXE8Vkb9hHAqku9p5U-mcmRhedcfnCYwgLDVYtyDneu1wLAbcot3E10f3ok3cf5mjC7Xz-0_qDUR7SKfNjInC6ddBO8zsmvVJJlgsHnAmItHQJNuodU14lmr8H43wu2Vy-iIIHp_QlsOuq_5qmj2QQpdkHzDWjdMcNjiovg2VCt8BZ8pKpTXLQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648062,\"updated\":1619648062,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "899", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:11 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "641ce868-6cf8-4902-9179-68f5141b7d0f", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "8685e16a-e379-44cd-9358-59f36bbae150", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:15:11 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "913f5700-e0c2-412b-8862-2fae58270255", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a93aa326-50c9-45b1-be76-066bdd8a23f5", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:22 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - WUS2 ProdSlices", - "x-ms-request-id": "48c5329c-0596-4150-b337-49df877ff801" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakey-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\"}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakey-/b4ff7f19b9eb4a87876a35f3f5ae1d07\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"6FsoMU-VzetHv88EyrCaivM9lUAfFoWeb0UQcv5INoXv5GITnlL7Cxmf35hu-w3bG-AJbQULVvzPw0EBmXVYZdeL5yfowNvh5VeZW_V8EAw5dLiBH45Bl-etts5xuBXCwjhKA9ZNgTcO5xMNW5ySpzXao5KFK1fHxXE8Vkb9hHAqku9p5U-mcmRhedcfnCYwgLDVYtyDneu1wLAbcot3E10f3ok3cf5mjC7Xz-0_qDUR7SKfNjInC6ddBO8zsmvVJJlgsHnAmItHQJNuodU14lmr8H43wu2Vy-iIIHp_QlsOuq_5qmj2QQpdkHzDWjdMcNjiovg2VCt8BZ8pKpTXLQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648062,\"updated\":1619648062,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "727", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:22 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "60902ff9-7b12-4590-9896-df191d8cd027", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ca056d9b-d835-44a5-9f9e-86739e847181", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakey-/versions", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"value\":[{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakey-/b4ff7f19b9eb4a87876a35f3f5ae1d07\",\"attributes\":{\"enabled\":true,\"created\":1619648062,\"updated\":1619648062,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}],\"nextLink\":null}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "305", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:22 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "a98a5764-8586-4a98-a904-0ba448309de6", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e2511293-b1f2-4e28-97ed-53404185dfda", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-\",\"deletedDate\":1619648063,\"scheduledPurgeDate\":1620252863,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakey-/b4ff7f19b9eb4a87876a35f3f5ae1d07\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"6FsoMU-VzetHv88EyrCaivM9lUAfFoWeb0UQcv5INoXv5GITnlL7Cxmf35hu-w3bG-AJbQULVvzPw0EBmXVYZdeL5yfowNvh5VeZW_V8EAw5dLiBH45Bl-etts5xuBXCwjhKA9ZNgTcO5xMNW5ySpzXao5KFK1fHxXE8Vkb9hHAqku9p5U-mcmRhedcfnCYwgLDVYtyDneu1wLAbcot3E10f3ok3cf5mjC7Xz-0_qDUR7SKfNjInC6ddBO8zsmvVJJlgsHnAmItHQJNuodU14lmr8H43wu2Vy-iIIHp_QlsOuq_5qmj2QQpdkHzDWjdMcNjiovg2VCt8BZ8pKpTXLQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648062,\"updated\":1619648062,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "899", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:22 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "921f28d2-5d0e-42f8-9c81-1eea412d31b8", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f3f3be69-ec08-4767-9546-8222d555e869", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:22 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "28beb55d-1c9c-4682-884d-0ce0e9516eb6", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "92c12b60-ea1e-44fe-9526-93312f765987", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:22 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "77ceb7fc-5555-49b1-bca4-ee995539504d", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e6409a9f-8721-4520-bd1b-1b1ae47bb823", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:24 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2a37aaab-a56b-4e35-9603-6f5c4608a73e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "261767cc-4886-4faf-b674-2f9790d85131", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:26 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "60132df4-d788-4fc2-b926-8c35b5a44178", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2bae4ba4-fc56-437b-9fe6-3e9040d70f42", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:28 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "02013ce5-c53c-467b-a440-27edd4d8fda4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "1c9686cc-819b-4d7b-b338-201e141c527f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:30 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d25b2acb-3c00-4125-a015-5bbbf2a7d74a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "8ecf6395-9383-47f4-80f4-6a5279ef6496", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:33 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e5bf4beb-768b-49f9-91e5-86a5b8df60ba", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3c262214-4358-4fd5-895b-9e2f6b40f36c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:35 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "247493bf-f2db-4621-819c-6a0a8bf253ae", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4798e879-0406-44eb-8e05-71a56e9d0943", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:37 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "322cc72b-63d3-4db4-97db-84b3b13f7aa4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "7fe7dff0-3e31-4043-9028-4595b39f098c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:39 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "92c99101-a0c3-4d7f-93d0-51ae128f5e40", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ed9be963-28e4-41d7-9cc6-5bae7a3bb25e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:41 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "004504f9-b551-4295-8421-a9d81ec8df7b", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c044f784-35aa-448c-a049-0303c3c872b8", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:43 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d8920148-6191-4565-8a0b-9df664a6a253", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5610accc-d42c-4340-bdd7-1b8b840b2be4", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:45 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1755dfe2-efae-4990-a1b5-c2f4ab2b6805", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "bb616db4-e635-49b1-84a8-c50a6ba83020", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:47 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "00ce4312-adb5-4021-bb9a-03d621060aa6", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ac4aa6d6-8fa4-4103-a490-605c9840c2e7", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:49 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c29a1e5f-10ad-474f-9d0c-309c80b63795", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "0f856191-980d-426e-90a7-9755b18314ec", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:51 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "64437b21-a2af-4d87-99a2-71a36242325b", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e697aa1b-fec1-4ef3-9b78-232f789c0e88", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:53 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "478e5954-8d84-443d-bea8-3eb572618080", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d34410a1-5b64-42ef-ae0a-25c663246393", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:56 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "5948689e-b702-43f3-bfad-7a33baf23c89", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a0cf42a0-63ac-4a8c-b7b8-8d038e2aafc1", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:59 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ae70e10c-a250-4069-82b3-95873fcc5454", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "7fd2c71e-ee95-4dab-89f5-caa92e0c9eff", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:01 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "7466b039-386e-468b-9323-fa17f757647d", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "90f7109e-c42b-4813-8c56-25856200df24", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:03 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "7237b67f-6099-4544-bcbe-84ccfb9908b4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "1c3d5074-976e-4a18-b0ea-569caba7c299", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:05 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "759628f3-434b-4d3e-b5e5-d51b62d263eb", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "443d0afb-8e2a-4d4d-b12c-e838b1414e90", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:07 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "7a1e07c8-7b76-4c2f-afa3-23838d320a87", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "9234e754-0a3a-48e4-801b-65bc62269846", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "120", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:09 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "7b16a232-57bf-4374-b354-b2c1d34508cf", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "99f3a8d1-545c-4c6a-9322-afa2099ffcfc", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-\",\"deletedDate\":1619648063,\"scheduledPurgeDate\":1620252863,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakey-/b4ff7f19b9eb4a87876a35f3f5ae1d07\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"6FsoMU-VzetHv88EyrCaivM9lUAfFoWeb0UQcv5INoXv5GITnlL7Cxmf35hu-w3bG-AJbQULVvzPw0EBmXVYZdeL5yfowNvh5VeZW_V8EAw5dLiBH45Bl-etts5xuBXCwjhKA9ZNgTcO5xMNW5ySpzXao5KFK1fHxXE8Vkb9hHAqku9p5U-mcmRhedcfnCYwgLDVYtyDneu1wLAbcot3E10f3ok3cf5mjC7Xz-0_qDUR7SKfNjInC6ddBO8zsmvVJJlgsHnAmItHQJNuodU14lmr8H43wu2Vy-iIIHp_QlsOuq_5qmj2QQpdkHzDWjdMcNjiovg2VCt8BZ8pKpTXLQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648062,\"updated\":1619648062,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "899", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:11 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "641ce868-6cf8-4902-9179-68f5141b7d0f", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "8685e16a-e379-44cd-9358-59f36bbae150", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:15:11 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "913f5700-e0c2-412b-8862-2fae58270255", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a93aa326-50c9-45b1-be76-066bdd8a23f5", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "b5e0c81bb51875c8cddd5caffa17cb9b" -} \ No newline at end of file + "hash": "b5e0c81bb51875c8cddd5caffa17cb9b" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_can_get_the_versions_of_a_key_paged.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_can_get_the_versions_of_a_key_paged.json index 3331d148c412..7cacb496e254 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_can_get_the_versions_of_a_key_paged.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_can_get_the_versions_of_a_key_paged.json @@ -1,572 +1,572 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakeypaged-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:11 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "29d3c2da-9b29-4bd4-bd3f-62ff4dcf2b0c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b6e56aab-0a48-4f24-8935-5b55dff499cd", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakeypaged-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:11 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "29d3c2da-9b29-4bd4-bd3f-62ff4dcf2b0c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b6e56aab-0a48-4f24-8935-5b55dff499cd", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:11 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - WUS2 ProdSlices", + "x-ms-request-id": "fad01bb3-1fca-476e-b746-39e38ec17000" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakeypaged-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\"}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakeypaged-/44a23751df8942a6882867b3b98fcca1\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"vjRpOEojZIzTOKxnZONe1OEkVa5UtP74o2zgU7nthMybNSB6vNAvpmmx6nbDdPGEyvxFRWuy48GJaR7TyQqxGEmk94lXfjvQxt9wmKFkEQZHySi-xlL-H3sUcyeqq9J_TK3pgMpIKwhulCYb9b-fzeS8ONvDGip-kWCA1PtQ8jPJjYNYajKB15HQ1YKb_siT9sQp-8kRkmBEh6tIuroxggbxqoc-w-5JVzqYRUNHP-Fzna-KRWo0AHF6wIDsKHWFsXgbm5LPPRBgTPFysKk8KRL2h1o98UzbHsI_EB8-Tey0w5_J6RjVkMV-tg214eY1lVWpehmuglwSermT-oNMgQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648112,\"updated\":1619648112,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "733", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:11 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "29d3c2da-9b29-4bd4-bd3f-62ff4dcf2b0c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "7e10db19-690a-4a74-b646-ede663040249", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakeypaged-/versions", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"value\":[{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakeypaged-/44a23751df8942a6882867b3b98fcca1\",\"attributes\":{\"enabled\":true,\"created\":1619648112,\"updated\":1619648112,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}],\"nextLink\":null}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "311", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:11 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "4be0ed67-bb40-4d4c-8fed-416f3ebf964f", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d95aa5bc-06ca-45e7-b6e7-7d5b667f06c7", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakeypaged-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-\",\"deletedDate\":1619648112,\"scheduledPurgeDate\":1620252912,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakeypaged-/44a23751df8942a6882867b3b98fcca1\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"vjRpOEojZIzTOKxnZONe1OEkVa5UtP74o2zgU7nthMybNSB6vNAvpmmx6nbDdPGEyvxFRWuy48GJaR7TyQqxGEmk94lXfjvQxt9wmKFkEQZHySi-xlL-H3sUcyeqq9J_TK3pgMpIKwhulCYb9b-fzeS8ONvDGip-kWCA1PtQ8jPJjYNYajKB15HQ1YKb_siT9sQp-8kRkmBEh6tIuroxggbxqoc-w-5JVzqYRUNHP-Fzna-KRWo0AHF6wIDsKHWFsXgbm5LPPRBgTPFysKk8KRL2h1o98UzbHsI_EB8-Tey0w5_J6RjVkMV-tg214eY1lVWpehmuglwSermT-oNMgQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648112,\"updated\":1619648112,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "911", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:12 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9345d4e8-3b21-45db-ad81-d05ac233987f", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2caa3532-0826-4f3d-8de4-73c864a7e8af", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakeypaged-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "126", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:12 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9b383b2e-a573-49ae-b384-10d89f8059f2", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f4587ecb-670c-4786-9cb5-e00420d9a243", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakeypaged-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "126", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:12 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f758ba75-2935-41aa-a77c-a1e97183de3d", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4315f887-a288-4fc2-945e-6aa4492fd9ee", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakeypaged-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "126", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:14 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "4c1bfa65-eb43-49fc-a7e0-962686d42bf0", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "389da227-813e-4d45-b7a0-6dbfb1c2505f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakeypaged-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "126", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:16 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "7919f669-d706-45c1-8cf8-f0d384d9c2ce", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "01f6aec4-4d90-4a07-b0bf-56c1f3c3a67e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakeypaged-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "126", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:18 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ae4c50f5-b09b-453e-8bb0-dec8ee887543", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "dec487c0-8c40-4cf6-80ee-6c1bf8b4538c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakeypaged-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "126", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:20 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "fcb81e40-a684-4572-bca9-b832ace6a143", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d0c757d6-4ca5-4ac7-b935-aca47457464c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakeypaged-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "126", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:23 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "832e3aa6-4841-4940-b5cc-4a7b83f923ed", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a05a097a-030e-4226-a2bc-119ed28624d3", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakeypaged-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "126", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:25 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f572e696-b29a-497d-8bf7-d352afe07ea6", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "da22f261-1cd2-4946-8412-355b43271b25", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakeypaged-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "126", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:27 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "59f98952-82e8-435a-b504-226d2362da53", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ae81737a-8736-4944-b5c1-45b6744eace0", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakeypaged-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "126", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:29 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e517241e-d2fb-4e28-b783-1f2cbf75c1d0", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "946f079e-27c1-47c2-b206-3f5fa40d00a8", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakeypaged-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "126", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:31 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "02a15106-dc11-48e0-9201-102898ccd162", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a7ed7dc8-1f53-425f-b10a-43817310dab8", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakeypaged-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "126", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:33 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "4c1e0f2e-f548-497c-9044-1a30e39d9f71", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f3213dec-d820-4dd5-87ff-77a0396789c8", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakeypaged-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "126", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:35 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "7338a2e9-9a9e-4196-a891-af549123b55a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b62dbb47-a14a-44ec-b857-99972841fc0a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakeypaged-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "126", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:37 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "4b4179a4-6f60-4f20-b09a-c8c9f15711ab", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "7870920f-a99d-4845-bae9-ffaaffff6168", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-\",\"deletedDate\":1619648112,\"scheduledPurgeDate\":1620252912,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakeypaged-/44a23751df8942a6882867b3b98fcca1\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"vjRpOEojZIzTOKxnZONe1OEkVa5UtP74o2zgU7nthMybNSB6vNAvpmmx6nbDdPGEyvxFRWuy48GJaR7TyQqxGEmk94lXfjvQxt9wmKFkEQZHySi-xlL-H3sUcyeqq9J_TK3pgMpIKwhulCYb9b-fzeS8ONvDGip-kWCA1PtQ8jPJjYNYajKB15HQ1YKb_siT9sQp-8kRkmBEh6tIuroxggbxqoc-w-5JVzqYRUNHP-Fzna-KRWo0AHF6wIDsKHWFsXgbm5LPPRBgTPFysKk8KRL2h1o98UzbHsI_EB8-Tey0w5_J6RjVkMV-tg214eY1lVWpehmuglwSermT-oNMgQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648112,\"updated\":1619648112,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "911", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:39 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1f38951e-498d-49be-bb81-a1eb6991acb2", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d3315ea1-5e72-4e1b-9e4d-feef27b4e0bd", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:15:39 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "629556fd-0741-4b52-b5d4-a8440174f6d7", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "daf20a28-a624-41ee-9569-01178427e01f", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:11 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - WUS2 ProdSlices", - "x-ms-request-id": "fad01bb3-1fca-476e-b746-39e38ec17000" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakeypaged-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\"}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakeypaged-/44a23751df8942a6882867b3b98fcca1\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"vjRpOEojZIzTOKxnZONe1OEkVa5UtP74o2zgU7nthMybNSB6vNAvpmmx6nbDdPGEyvxFRWuy48GJaR7TyQqxGEmk94lXfjvQxt9wmKFkEQZHySi-xlL-H3sUcyeqq9J_TK3pgMpIKwhulCYb9b-fzeS8ONvDGip-kWCA1PtQ8jPJjYNYajKB15HQ1YKb_siT9sQp-8kRkmBEh6tIuroxggbxqoc-w-5JVzqYRUNHP-Fzna-KRWo0AHF6wIDsKHWFsXgbm5LPPRBgTPFysKk8KRL2h1o98UzbHsI_EB8-Tey0w5_J6RjVkMV-tg214eY1lVWpehmuglwSermT-oNMgQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648112,\"updated\":1619648112,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "733", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:11 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "29d3c2da-9b29-4bd4-bd3f-62ff4dcf2b0c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "7e10db19-690a-4a74-b646-ede663040249", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakeypaged-/versions", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"value\":[{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakeypaged-/44a23751df8942a6882867b3b98fcca1\",\"attributes\":{\"enabled\":true,\"created\":1619648112,\"updated\":1619648112,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}],\"nextLink\":null}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "311", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:11 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "4be0ed67-bb40-4d4c-8fed-416f3ebf964f", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d95aa5bc-06ca-45e7-b6e7-7d5b667f06c7", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakeypaged-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-\",\"deletedDate\":1619648112,\"scheduledPurgeDate\":1620252912,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakeypaged-/44a23751df8942a6882867b3b98fcca1\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"vjRpOEojZIzTOKxnZONe1OEkVa5UtP74o2zgU7nthMybNSB6vNAvpmmx6nbDdPGEyvxFRWuy48GJaR7TyQqxGEmk94lXfjvQxt9wmKFkEQZHySi-xlL-H3sUcyeqq9J_TK3pgMpIKwhulCYb9b-fzeS8ONvDGip-kWCA1PtQ8jPJjYNYajKB15HQ1YKb_siT9sQp-8kRkmBEh6tIuroxggbxqoc-w-5JVzqYRUNHP-Fzna-KRWo0AHF6wIDsKHWFsXgbm5LPPRBgTPFysKk8KRL2h1o98UzbHsI_EB8-Tey0w5_J6RjVkMV-tg214eY1lVWpehmuglwSermT-oNMgQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648112,\"updated\":1619648112,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "911", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:12 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9345d4e8-3b21-45db-ad81-d05ac233987f", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2caa3532-0826-4f3d-8de4-73c864a7e8af", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakeypaged-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "126", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:12 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9b383b2e-a573-49ae-b384-10d89f8059f2", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f4587ecb-670c-4786-9cb5-e00420d9a243", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakeypaged-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "126", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:12 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f758ba75-2935-41aa-a77c-a1e97183de3d", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4315f887-a288-4fc2-945e-6aa4492fd9ee", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakeypaged-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "126", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:14 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "4c1bfa65-eb43-49fc-a7e0-962686d42bf0", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "389da227-813e-4d45-b7a0-6dbfb1c2505f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakeypaged-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "126", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:16 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "7919f669-d706-45c1-8cf8-f0d384d9c2ce", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "01f6aec4-4d90-4a07-b0bf-56c1f3c3a67e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakeypaged-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "126", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:18 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ae4c50f5-b09b-453e-8bb0-dec8ee887543", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "dec487c0-8c40-4cf6-80ee-6c1bf8b4538c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakeypaged-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "126", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:20 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "fcb81e40-a684-4572-bca9-b832ace6a143", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d0c757d6-4ca5-4ac7-b935-aca47457464c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakeypaged-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "126", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:23 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "832e3aa6-4841-4940-b5cc-4a7b83f923ed", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a05a097a-030e-4226-a2bc-119ed28624d3", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakeypaged-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "126", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:25 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f572e696-b29a-497d-8bf7-d352afe07ea6", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "da22f261-1cd2-4946-8412-355b43271b25", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakeypaged-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "126", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:27 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "59f98952-82e8-435a-b504-226d2362da53", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ae81737a-8736-4944-b5c1-45b6744eace0", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakeypaged-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "126", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:29 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e517241e-d2fb-4e28-b783-1f2cbf75c1d0", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "946f079e-27c1-47c2-b206-3f5fa40d00a8", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakeypaged-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "126", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:31 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "02a15106-dc11-48e0-9201-102898ccd162", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a7ed7dc8-1f53-425f-b10a-43817310dab8", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakeypaged-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "126", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:33 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "4c1e0f2e-f548-497c-9044-1a30e39d9f71", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f3213dec-d820-4dd5-87ff-77a0396789c8", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakeypaged-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "126", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:35 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "7338a2e9-9a9e-4196-a891-af549123b55a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b62dbb47-a14a-44ec-b857-99972841fc0a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-cangettheversionsofakeypaged-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "126", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:37 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "4b4179a4-6f60-4f20-b09a-c8c9f15711ab", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "7870920f-a99d-4845-bae9-ffaaffff6168", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-\",\"deletedDate\":1619648112,\"scheduledPurgeDate\":1620252912,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-cangettheversionsofakeypaged-/44a23751df8942a6882867b3b98fcca1\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"vjRpOEojZIzTOKxnZONe1OEkVa5UtP74o2zgU7nthMybNSB6vNAvpmmx6nbDdPGEyvxFRWuy48GJaR7TyQqxGEmk94lXfjvQxt9wmKFkEQZHySi-xlL-H3sUcyeqq9J_TK3pgMpIKwhulCYb9b-fzeS8ONvDGip-kWCA1PtQ8jPJjYNYajKB15HQ1YKb_siT9sQp-8kRkmBEh6tIuroxggbxqoc-w-5JVzqYRUNHP-Fzna-KRWo0AHF6wIDsKHWFsXgbm5LPPRBgTPFysKk8KRL2h1o98UzbHsI_EB8-Tey0w5_J6RjVkMV-tg214eY1lVWpehmuglwSermT-oNMgQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648112,\"updated\":1619648112,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "911", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:39 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1f38951e-498d-49be-bb81-a1eb6991acb2", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d3315ea1-5e72-4e1b-9e4d-feef27b4e0bd", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-cangettheversionsofakeypaged-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:15:39 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "629556fd-0741-4b52-b5d4-a8440174f6d7", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "daf20a28-a624-41ee-9569-01178427e01f", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "efd19cc98f24d5ceeb684ef5986e261b" -} \ No newline at end of file + "hash": "efd19cc98f24d5ceeb684ef5986e261b" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_can_purge_all_keys.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_can_purge_all_keys.json index ad700cce471f..eaaf0eb567ad 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_can_purge_all_keys.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_can_purge_all_keys.json @@ -1,2587 +1,2587 @@ { - "recordings": [ - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:48 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d0cef045-cf61-43e7-96b8-59e12e5ecb52", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "291191ec-52ef-41c6-af0a-d58bb5e5225f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:49 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - WUS2 ProdSlices", - "x-ms-request-id": "c8b4fac2-0e48-414e-9442-21d832362b00" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"value\":[{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-supportstracing-09813470003748725\",\"attributes\":{\"enabled\":true,\"created\":1619647905,\"updated\":1619647905,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"kid\":\"https://keyvault_name.vault.azure.net/keys/importKeyName-canimportakey-3416957021747533\",\"attributes\":{\"enabled\":true,\"created\":1619647908,\"updated\":1619647908,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"kid\":\"https://keyvault_name.vault.azure.net/keys/localCryptoKeyName-beforeeachhook-7783945276930928\",\"attributes\":{\"enabled\":true,\"created\":1619645727,\"updated\":1619645727,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"kid\":\"https://keyvault_name.vault.azure.net/keys/localCryptoKeyName-beforeeachhook-9037217917778813\",\"attributes\":{\"enabled\":true,\"created\":1619645728,\"updated\":1619645728,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"kid\":\"https://keyvault_name.vault.azure.net/keys/localCryptoKeyName-beforeeachhook-9073237335553428\",\"attributes\":{\"enabled\":true,\"created\":1619645725,\"updated\":1619645725,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}],\"nextLink\":null}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "1231", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:48 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d0cef045-cf61-43e7-96b8-59e12e5ecb52", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "dbbd9861-afca-4b4e-9d06-7ac778ec1bc5", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-supportstracing-09813470003748725", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725\",\"deletedDate\":1619647909,\"scheduledPurgeDate\":1620252709,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-supportstracing-09813470003748725/39a52f116ed243bb874ce6f72ab77b5f\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wms368T499CBVEXxonmrl3XgwiKP10B4t-QOT_ZD6HgSqtb0nx4-WeTeJSA5ikBxi0-AJCPjgOfXbiYQFxFqnaWuVslYLym0ez5O7EFFGG2t2XyyyW2J6IdJQn46I1__X5IiOuoM4z7iH3QMP4mUyxJVRUiVyrKKRKoWqEPOdPzEDIYz6mo7mNhxdgX9gHloQwpThCw4vAI7j0YhNMC8uw8tqGk4Qb7i_FnXqg-h4Xt-6m4BwuvthGClHcaim44KH-2YXfeUEXmM2UmrwSa44vDlE8JIkipZbqNgrAGoiDLeT-Q6RCfNKLLCXcHVtfdSZq7S6l3zrVd5bxOWKYJmsQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647905,\"updated\":1619647905,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "885", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:48 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "20a8a69f-2754-4f2f-ae7f-ff044e199070", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "7cc9a74c-0068-4d81-9316-cc23bf2308e8", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:48 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "60d1d261-b51f-48f8-b449-2b685e950b9c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ed888acc-c513-4707-bc37-eb2bb86d318f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:48 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "0b030d52-c706-4366-b7c6-091f601a8aea", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "9e0316a3-4ef5-4bb8-8008-44445fdbcaf6", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:50 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "94b13923-3e80-4409-98aa-5adc6030d6cf", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "659da9f0-590d-444c-bb20-a31517e11ba1", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:53 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1f8cc339-4b42-4fa5-a914-7d28bf53c875", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f0e816eb-eaac-4887-a430-bf165cad6a90", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:56 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2be1b586-e6d2-40c7-ae94-6cca8392c74e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "676e7582-1342-46f6-a833-c28e9e19f42d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:57 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "b76bd8a1-8de3-4eaf-bcda-98f1487c1a26", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4bc0e84e-e896-4a29-8a06-ff438c21d84b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:11:59 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "8c0b3801-cd05-40a6-95d0-40fc5ac8d8b0", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "01b811d9-991e-4104-9bf6-c3e47b8e80ed", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:01 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "8b37d640-3a37-4f68-b892-b9e17aff7842", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b78366f9-aace-4d38-a4fb-a7bbaf04f01c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:03 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "dd2081fa-c722-4b04-b7cc-7547da566fbc", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b8df1164-edae-4363-8e11-a436070fdf4b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:05 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c35fa00e-6a4e-4766-82d5-da233b905a64", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "56adcf93-be1a-4355-b178-7cc14baf7e19", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:07 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "6d851583-fbfe-4aea-b636-d26f162845d4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b8d235e7-7d3e-4568-8751-6438d7b5f4db", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:09 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "5da6fa6b-dd5c-412f-90a1-5f74c63e3cbb", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "95c09de2-0d4c-463c-a1ae-fb49649236db", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:13 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "8469b9bc-50b1-4a66-8b3f-25121271d487", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e8961193-fdfd-4aef-b1eb-ad737ff0c699", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:15 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f2fe1beb-4bc9-41f9-bec2-beabef3711df", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "bd09f6db-bace-47c9-a1d3-d0017ea05d0d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:17 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c65d1d4c-b565-4039-aa55-a078f472ac15", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ce023aa6-771b-47e5-9201-20f75bdcae5c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:19 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "7aa45192-513e-42e0-94ed-bad3117d0c85", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "1a76275e-391f-4cd6-852b-90c98a668802", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:21 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "7c563a50-69a2-442d-99bc-e78752df93e8", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "94ea57ba-9a0c-4b5d-bf35-239c44df8d8e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:23 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "966a43e2-1286-42ba-a4a1-62b0bd028378", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a06cc72c-58bc-4f86-a761-8efca7943c6e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:25 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "34c941dd-a5eb-49ff-9326-bcbc99d7181f", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "94098e14-5146-4eee-bdd5-7b761c2c70ed", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:27 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d61a7f25-5766-40d7-ae37-bfa4a8b57edd", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d4acd58b-d34c-4b2e-a82c-897c1676d44a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:29 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "a65882fd-81c6-4524-aac4-518919f2dae7", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2305bd12-5d2a-42c2-b7e7-fa68701b3690", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:31 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e5981da3-d1ff-4b81-93fa-582078f73b34", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a7ff0de4-8ba5-448c-9863-38f979675855", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:33 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "31c080f5-33b8-4c6a-a1d8-2387b49cd9d8", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "fe4c1552-c12c-4424-84f4-3711aff8168a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "113", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:35 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "5c932de7-5db7-4288-81eb-d01de24e40c4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5113a202-d1c3-43d4-acbd-442e44491bbe", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725\",\"deletedDate\":1619647909,\"scheduledPurgeDate\":1620252709,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-supportstracing-09813470003748725/39a52f116ed243bb874ce6f72ab77b5f\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wms368T499CBVEXxonmrl3XgwiKP10B4t-QOT_ZD6HgSqtb0nx4-WeTeJSA5ikBxi0-AJCPjgOfXbiYQFxFqnaWuVslYLym0ez5O7EFFGG2t2XyyyW2J6IdJQn46I1__X5IiOuoM4z7iH3QMP4mUyxJVRUiVyrKKRKoWqEPOdPzEDIYz6mo7mNhxdgX9gHloQwpThCw4vAI7j0YhNMC8uw8tqGk4Qb7i_FnXqg-h4Xt-6m4BwuvthGClHcaim44KH-2YXfeUEXmM2UmrwSa44vDlE8JIkipZbqNgrAGoiDLeT-Q6RCfNKLLCXcHVtfdSZq7S6l3zrVd5bxOWKYJmsQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647905,\"updated\":1619647905,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "885", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:37 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "4fb680a2-a23d-438d-af00-cd9c56ef4fbd", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b24e27e4-05d8-4c25-ada0-b47a408b61a7", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:12:37 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "b6db8693-23e9-42eb-8e3a-cf36241c0138", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "88352786-11cd-461d-bd07-50f389667e7f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/importKeyName-canimportakey-3416957021747533", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533\",\"deletedDate\":1619647958,\"scheduledPurgeDate\":1620252758,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/importKeyName-canimportakey-3416957021747533/c3822ce302324dbf95b0d70f987f496d\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"oJFNACNKxoOyG0wV1b7Yh73JWcLlevVK5zTo8Acg13XSdeRVIH43hM7rYKUKRlXdcqepTScejuj3lZpmnKbndb8OI7ra6ZG0Up2XhSi0vZBSHTLdJlZ5a6gra7_HZoyPXutQU3R_0ZkxnSmoRA0I9EEtUn_5MR7acYJZILR7HEaxGrPpHXMWQH6Jx_NA97haNAQs5RdDsn1HGEA9NMe0OK9hgb4F5NEeuYXTglPX_pv1P8LxsALSLS15P6eaUEtqtC0EkoBNcHHXJ6Bs86iJOqVCsVA_gyspY3G2cH1NxuNy-P5n2N7RyQj95FzgO8CGpxSH-nXkOqDgZ5qg0g7-NQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647908,\"updated\":1619647908,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "883", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:37 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ec003bc4-6632-484a-91e8-814ad37ee541", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "7e32ce47-d6ae-43ba-a87d-66725d5a6705", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: importKeyName-canimportakey-3416957021747533\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "112", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:37 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "861ef950-e120-40c5-90f1-eae168fe0ace", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c7ebd742-4c4b-4953-96f9-1f996b4aaf16", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: importKeyName-canimportakey-3416957021747533\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "112", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:37 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c6fc3513-a771-46f6-8bd9-84c7d0f345e6", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2ee3a804-e6b6-4211-b1a4-f915db079510", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: importKeyName-canimportakey-3416957021747533\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "112", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:40 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "50663886-1220-4630-b4cb-104bb620d2ef", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "1eb95da7-2cbe-4fba-b745-34fdeae6635d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: importKeyName-canimportakey-3416957021747533\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "112", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:42 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "53cc6a60-6fd3-4a22-9d68-eaf20883ea05", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "152d57ae-ef38-4ebc-bcad-757a96536e51", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: importKeyName-canimportakey-3416957021747533\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "112", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:44 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "0c2996f6-0c47-4dab-80cd-4c0eb0cd5ddc", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "70648790-2d7b-4841-a156-3e44871b92f7", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: importKeyName-canimportakey-3416957021747533\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "112", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:46 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "3aba5f8f-21bd-4c01-a72a-20f39b8be751", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e3d3497f-e000-4f91-8b8a-035f9507ec8f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: importKeyName-canimportakey-3416957021747533\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "112", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:48 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "69afa408-3e80-489d-824e-5ae3dd525b89", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "cd5c54f5-dfc1-4f1c-a72f-c916a6e64862", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: importKeyName-canimportakey-3416957021747533\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "112", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:50 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f19fcff4-b8ce-4d98-b176-3656e3ad858d", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "740266a4-4fb6-4bbe-9052-03dff6046861", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: importKeyName-canimportakey-3416957021747533\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "112", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:52 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f6ccae59-650a-44d2-8232-1056b8b77be2", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e8cfc70a-c051-471f-9843-853ca79312d3", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: importKeyName-canimportakey-3416957021747533\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "112", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:54 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "be388970-a830-4e14-95c9-e5be239ba953", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4abe4356-df8f-4a9f-a42e-03cd4928e02a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: importKeyName-canimportakey-3416957021747533\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "112", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:56 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d7b6ed9e-62b2-4d75-bd5b-dd84abaf0820", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "49e6be1d-0cd3-4c00-a490-1b7e6efe8241", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: importKeyName-canimportakey-3416957021747533\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "112", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:12:59 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "add98db8-f4ed-4539-a43d-7957acefae15", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "065d61ac-694f-4971-a02d-9bab7bfd740c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: importKeyName-canimportakey-3416957021747533\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "112", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:01 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "6a511050-ff69-40b2-af36-c531c316ba2f", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "799fa749-b1a1-4701-845c-1065b1eff2b0", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: importKeyName-canimportakey-3416957021747533\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "112", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:03 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "13364f78-7205-451d-b961-37f1b71f8a03", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "9fc97a4b-1789-45d9-9fb7-bc1484164a5b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533\",\"deletedDate\":1619647958,\"scheduledPurgeDate\":1620252758,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/importKeyName-canimportakey-3416957021747533/c3822ce302324dbf95b0d70f987f496d\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"oJFNACNKxoOyG0wV1b7Yh73JWcLlevVK5zTo8Acg13XSdeRVIH43hM7rYKUKRlXdcqepTScejuj3lZpmnKbndb8OI7ra6ZG0Up2XhSi0vZBSHTLdJlZ5a6gra7_HZoyPXutQU3R_0ZkxnSmoRA0I9EEtUn_5MR7acYJZILR7HEaxGrPpHXMWQH6Jx_NA97haNAQs5RdDsn1HGEA9NMe0OK9hgb4F5NEeuYXTglPX_pv1P8LxsALSLS15P6eaUEtqtC0EkoBNcHHXJ6Bs86iJOqVCsVA_gyspY3G2cH1NxuNy-P5n2N7RyQj95FzgO8CGpxSH-nXkOqDgZ5qg0g7-NQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647908,\"updated\":1619647908,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "883", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:05 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "79966c4a-e3de-4474-94f1-9a91a503dd86", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "cb82dd80-e55b-4c4a-b9eb-ea674d2dc29d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:13:06 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "940a4ec2-b7d0-4a28-8c23-70ba7c8c8051", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "8b3f4bb0-acdd-462a-a3f6-a20f59e38659", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/localCryptoKeyName-beforeeachhook-7783945276930928", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928\",\"deletedDate\":1619647986,\"scheduledPurgeDate\":1620252786,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/localCryptoKeyName-beforeeachhook-7783945276930928/1c66d3badbb04461acd1ae99bb336194\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"tWrk04sKXQ5nyNkUj6qoE0x8qPhwpa4jTTJMCZyM1m5Ku1jtyOTEHHFJMPrTjT--ynai0uj9k8PtQlGL8p3AqJ7pxAOjBoc7eAwohWpRVM1zbp5UGyNqJjKJ24P6LQiOlqA2Z7Kcs-m2Tnhd76rgaMFzUcpQ2gQnLOekxHFF-Y8JDeoqjP2gmNvxKBbm1drW9tEQwngGZeNcdDZwDuism3NgJb8VXaqZlQc8mkTVTPE6ew3tWXHhMZzQ2tjHwTKLvR11FGLLdjV2P9bhTBoxQvKqXUGaNvED4IL0QOn_NyihS3UDDZwpJFZ1yv9VrWUXK8neoRNxkcB8firaRhlbWQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619645727,\"updated\":1619645727,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "895", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:06 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "56f05d3b-d5df-423a-98e9-c579ab16dc75", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4210fe91-3583-4c0c-a0db-a5a86ba9f0b5", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-7783945276930928\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:06 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1cd769fc-ae51-46b5-81e8-1545d76f47c5", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "610f7b6e-ba81-40d5-a2eb-647e701de231", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-7783945276930928\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:06 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "338591bc-e954-469a-9cf8-19b18c735233", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b987a607-5f83-43a3-a5f3-348796aafb02", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-7783945276930928\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:08 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "50a3a805-6127-4001-9811-8e5e88dc9e65", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "77a7172c-3507-4c62-9615-33eff80432d7", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-7783945276930928\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:10 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "938cdabe-c520-4805-8f90-b6a2f9c0d517", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "aad4882d-ee94-4e7f-857b-072028784d20", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-7783945276930928\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:12 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "6fae9755-f96f-4906-b902-712cef27d519", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "43f99764-c1f6-4745-9684-5a34159c926c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-7783945276930928\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:14 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "8fa55583-26f0-42cf-ba53-7cb518491caf", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4984cf1f-b0bb-4653-8262-d8f6872f15c6", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-7783945276930928\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:16 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "dca53ffd-095f-47ec-9bf6-0cb873e29407", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "1c3a4953-e3d5-4ef8-8a8e-c4f918d36e0a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-7783945276930928\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:18 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d78d8f8b-a5f2-459d-8780-996a61e788fe", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "813ee96d-72eb-4611-8d51-6577a2198213", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-7783945276930928\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:20 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "a258c308-82a1-42a6-a2bf-737249a8957e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4b4c7d44-bfcd-4a2a-a58c-2c8502758797", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-7783945276930928\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:22 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "772cc6c7-cf42-4a96-a2f5-a27d1cf2239a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2da61907-1851-4e86-8af8-7d235f0cd7b6", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-7783945276930928\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:24 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f706801d-c49b-4881-b7ae-8aa864a434c0", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "54a0ae62-82e8-41d0-a279-ee3ede4b0978", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928\",\"deletedDate\":1619647986,\"scheduledPurgeDate\":1620252786,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/localCryptoKeyName-beforeeachhook-7783945276930928/1c66d3badbb04461acd1ae99bb336194\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"tWrk04sKXQ5nyNkUj6qoE0x8qPhwpa4jTTJMCZyM1m5Ku1jtyOTEHHFJMPrTjT--ynai0uj9k8PtQlGL8p3AqJ7pxAOjBoc7eAwohWpRVM1zbp5UGyNqJjKJ24P6LQiOlqA2Z7Kcs-m2Tnhd76rgaMFzUcpQ2gQnLOekxHFF-Y8JDeoqjP2gmNvxKBbm1drW9tEQwngGZeNcdDZwDuism3NgJb8VXaqZlQc8mkTVTPE6ew3tWXHhMZzQ2tjHwTKLvR11FGLLdjV2P9bhTBoxQvKqXUGaNvED4IL0QOn_NyihS3UDDZwpJFZ1yv9VrWUXK8neoRNxkcB8firaRhlbWQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619645727,\"updated\":1619645727,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "895", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:26 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "a25cbecf-b89f-4411-be9c-85b35b179d44", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "50feb475-ef1a-4c7c-af5f-8b9437b109c6", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:13:26 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "36501895-48cb-4442-bf82-bb82193abf1c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "743ebb0a-39d6-4297-8afc-08852825a2c4", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/localCryptoKeyName-beforeeachhook-9037217917778813", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813\",\"deletedDate\":1619648007,\"scheduledPurgeDate\":1620252807,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/localCryptoKeyName-beforeeachhook-9037217917778813/96c29a4ac5664b50ba9ba73e534ab563\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"qPnqCIsNvmYrS6FaQuhC3Y7ucYIQhVsyEkNOZ8n2UxahJnIfCSXZMO1P6XDjWnIOK76SfXJ24-g573tOa8ftyAn5EEm8SAOHQgKeECk5vavQnZe7Zveh6u_V9kb7cfeSlt-gV4PxzkbAgwXFI-bVtdlJa5zpu1LHyT4WX_MnFs15BtY0AVqitzD7uRyhgaM5Se1gRuc1SB6UuM-b9qUTpGKbP1s9CRMuWCyqqfVCTyesQbHfHkRtsz88iW_ceUQwWKN36j9Xx3RE_xlvQYnQi4MWND218DMdah-g9Q1syHtOdp9urw9ofgGX6u3jEueJ7rY0Xdx362SO4er-2TV08Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619645728,\"updated\":1619645728,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "895", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:27 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1783bbbd-217f-4451-9da3-242a64dd046a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "394670ca-5210-40b9-ac61-bb4e5a51fd2a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9037217917778813\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:27 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c96551ae-dc94-42a1-9ec8-e0c27f3e94e8", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5a968a9d-4925-45db-ae21-2c7d8ec4971e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9037217917778813\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:27 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "5312f330-7645-49dd-9e1a-d32182823758", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "fb2847e1-abbc-4493-937e-6d8a373dd5d4", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9037217917778813\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:30 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "3d8eb7c0-f007-45c9-81b9-a0aec751b3b0", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4508955d-e2a0-44be-9c0d-e05f1efd8135", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9037217917778813\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:32 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e1b08cdd-026d-4450-8a8e-fad8fe8d4561", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c8e09319-42e5-4ee3-8ed6-f5635c07bc05", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9037217917778813\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:34 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "08fe7c58-85f3-436e-b186-3d68d73f79b2", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4cdce636-0d32-4e6d-9db6-7cb00bab5917", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9037217917778813\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:36 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "46f3d1c5-b566-48f1-90d1-3a9e0ae29d7a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "6f26585e-2683-4709-9ae5-a71edfdf16a8", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9037217917778813\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:38 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "a2931ba3-c59f-4148-afac-ef42c72df679", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3ca31abd-ed22-4995-861f-62f033984a6d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9037217917778813\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:40 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e99b42d5-1ad9-44e7-82a1-5903d691ffa4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "83471edd-937a-4dff-8669-b4ce14450d1e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9037217917778813\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:42 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "fa937c21-7b2a-44be-b245-d128aa2b73d8", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "6a4c04f6-ea78-4131-922a-e91eecd57c63", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9037217917778813\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:44 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "38d45d18-e002-42cc-9312-20400c4fd4f9", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d119322b-e884-44cd-9ff2-780c1c6bf7fa", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9037217917778813\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:46 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "4194c07c-ed9d-4872-bdfb-845633719263", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "39c4de19-c849-4e2b-93b9-6339b81ea076", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9037217917778813\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:48 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9ac8200a-24a3-4913-8e08-af646bca8483", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ff484d25-1b91-4a75-854b-92e3455a9d8c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9037217917778813\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:50 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "87a9bcef-00e1-4818-9ac9-6e9adae138cd", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f274e112-fbe9-4e22-a3e8-a0429138e8b5", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813\",\"deletedDate\":1619648007,\"scheduledPurgeDate\":1620252807,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/localCryptoKeyName-beforeeachhook-9037217917778813/96c29a4ac5664b50ba9ba73e534ab563\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"qPnqCIsNvmYrS6FaQuhC3Y7ucYIQhVsyEkNOZ8n2UxahJnIfCSXZMO1P6XDjWnIOK76SfXJ24-g573tOa8ftyAn5EEm8SAOHQgKeECk5vavQnZe7Zveh6u_V9kb7cfeSlt-gV4PxzkbAgwXFI-bVtdlJa5zpu1LHyT4WX_MnFs15BtY0AVqitzD7uRyhgaM5Se1gRuc1SB6UuM-b9qUTpGKbP1s9CRMuWCyqqfVCTyesQbHfHkRtsz88iW_ceUQwWKN36j9Xx3RE_xlvQYnQi4MWND218DMdah-g9Q1syHtOdp9urw9ofgGX6u3jEueJ7rY0Xdx362SO4er-2TV08Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619645728,\"updated\":1619645728,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "895", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:53 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "edb4b215-4754-470b-9fca-184e5da998f3", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "6dc312f7-499f-49d3-b7eb-6926ad82a456", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:13:53 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "b8e86a8a-be6b-4a37-925b-1d2e74fb60a7", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "87b297f4-ad21-4bf9-a36c-5b721e434235", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/localCryptoKeyName-beforeeachhook-9073237335553428", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428\",\"deletedDate\":1619648033,\"scheduledPurgeDate\":1620252833,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/localCryptoKeyName-beforeeachhook-9073237335553428/1a0bb0a886234c349bc37aaf6d4db3ae\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"zI6fd_xIbzi5yE0QqnG9Dt51LuCU0xVD9_awGSiry4ayKbX9DIL-dJW9CzH6VZHFJODOfgGtp37O-xl_aYECg8C0WseLNEzzkqjlxpVZT5vp1LVqMyxFJ4kgiWLKTJskwPzvyJMOysQhbDCgrK9KI52oWJ5UM7xjstIL8FQfve16S6Rxzwf97-7TGVCVsGjAy9BzzqnKelnpf3YkON6me9XBRWqRznZUOFcX_Z2CFZKovWWPr86whYr8esJMLe-NznSCzFpYsPFV9Rxt9560ZObZXtjAJUZKaMGy7j0ZRDh9zu-yQQJVyw1KhjrArc7hEcFZgCLI9MqwYrp-Uz6ZsQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619645725,\"updated\":1619645725,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "895", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:53 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "a9492650-f651-46b5-be85-3842ae9bdc7c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "27320958-c66a-428b-8804-df8c67d70277", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9073237335553428\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:54 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "6e6bf6fa-23a7-465a-8a09-cfbbc8db749c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b7a243aa-3428-46d5-8e00-68ef88e2c77a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9073237335553428\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:54 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "91fa8dd6-28d5-43a1-8aef-42d91c4356dd", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "92ce91aa-bbf1-4cf1-a543-10613077e703", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9073237335553428\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:56 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "bd7a2463-5a65-456f-875c-821b8c0f4258", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "313e197b-9855-450c-8d78-159362ec2f1c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9073237335553428\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:13:58 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "6e4ee143-e57c-48a6-b6c2-e3c83fe41c62", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "37a43167-ec1d-4d2c-80cb-ea728840f2bf", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9073237335553428\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:00 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f70d3eb5-ce99-4c63-a96e-3d3d36d49dbe", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3f9c1ba0-59a4-4d5e-9a21-4ad59119f2f1", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9073237335553428\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:02 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f3d64012-10df-47c8-829b-1f3a1fbefdc1", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "899a6ea2-bd4a-4b0b-b0f8-26304b3a8a9a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9073237335553428\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:04 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "38af2fa8-aeff-4048-a97d-4cd5dec41872", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "8924b4db-5104-4442-8dd8-0d94043de6ee", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9073237335553428\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:06 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "85e1818f-8750-451b-95b3-884408b5d807", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5cba5af7-5728-487d-b27a-d7981794b2aa", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9073237335553428\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:08 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "beb81697-d92d-43d1-950d-2e11391c1329", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "0d785b83-1e94-4fc9-9eab-9a9e25180087", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9073237335553428\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:10 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "074724c4-5597-4c4b-bee5-80a5b4e7e898", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "8d2bd392-ca6a-471b-97eb-e9b695b01e34", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9073237335553428\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:12 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c419846b-0a02-40d1-adee-53de885382d4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "9ca484c4-4b39-4cb9-a1a5-3d4aaa5963b2", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9073237335553428\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:14 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "654de36d-ead6-45b2-a909-9a8ef02c41b1", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "7f460756-b6f3-4af3-be7b-3b200beeca5b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9073237335553428\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:17 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2920a536-13bf-4c92-a442-41807a167290", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "62367281-66fc-4a23-b40d-69a2e00f1483", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9073237335553428\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "118", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:19 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f99a83d0-b6d3-4d7c-b482-e6902a821eb9", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d6773028-f570-4238-ae84-fe28428fe328", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428\",\"deletedDate\":1619648033,\"scheduledPurgeDate\":1620252833,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/localCryptoKeyName-beforeeachhook-9073237335553428/1a0bb0a886234c349bc37aaf6d4db3ae\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"zI6fd_xIbzi5yE0QqnG9Dt51LuCU0xVD9_awGSiry4ayKbX9DIL-dJW9CzH6VZHFJODOfgGtp37O-xl_aYECg8C0WseLNEzzkqjlxpVZT5vp1LVqMyxFJ4kgiWLKTJskwPzvyJMOysQhbDCgrK9KI52oWJ5UM7xjstIL8FQfve16S6Rxzwf97-7TGVCVsGjAy9BzzqnKelnpf3YkON6me9XBRWqRznZUOFcX_Z2CFZKovWWPr86whYr8esJMLe-NznSCzFpYsPFV9Rxt9560ZObZXtjAJUZKaMGy7j0ZRDh9zu-yQQJVyw1KhjrArc7hEcFZgCLI9MqwYrp-Uz6ZsQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619645725,\"updated\":1619645725,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "895", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:21 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2431b4ef-013f-4888-878a-ea78dfe6ceb5", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "6b94beb2-fad6-4e34-a82c-d88a104073f2", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:14:21 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d60cd5a4-2d1b-42c3-9a53-b1bb56f6397f", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "fe572a1b-8477-48ad-ad66-725d58949b28", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"value\":[{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7744818452506113\",\"deletedDate\":1619646853,\"scheduledPurgeDate\":1620251653,\"kid\":\"https://keyvault_name.vault.azure.net/keys/localCryptoKeyName-beforeeachhook-7744818452506113\",\"attributes\":{\"enabled\":true,\"created\":1619645726,\"updated\":1619645726,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}],\"nextLink\":null}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "440", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:14:21 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f034e0b4-9e62-40a4-b030-4b63114db5be", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "7aa9917a-ad28-425f-868a-dd3f974f1422", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7744818452506113", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:14:21 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "af7802cc-cc10-4f62-a0c6-8387c0e90829", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e4efb59b-ccd6-416a-b942-6141edcd5173", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "fd46c8234a64a234b57a24a6608603d7" -} \ No newline at end of file + "recordings": [ + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:48 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d0cef045-cf61-43e7-96b8-59e12e5ecb52", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "291191ec-52ef-41c6-af0a-d58bb5e5225f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:49 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - WUS2 ProdSlices", + "x-ms-request-id": "c8b4fac2-0e48-414e-9442-21d832362b00" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"value\":[{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-supportstracing-09813470003748725\",\"attributes\":{\"enabled\":true,\"created\":1619647905,\"updated\":1619647905,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"kid\":\"https://keyvault_name.vault.azure.net/keys/importKeyName-canimportakey-3416957021747533\",\"attributes\":{\"enabled\":true,\"created\":1619647908,\"updated\":1619647908,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"kid\":\"https://keyvault_name.vault.azure.net/keys/localCryptoKeyName-beforeeachhook-7783945276930928\",\"attributes\":{\"enabled\":true,\"created\":1619645727,\"updated\":1619645727,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"kid\":\"https://keyvault_name.vault.azure.net/keys/localCryptoKeyName-beforeeachhook-9037217917778813\",\"attributes\":{\"enabled\":true,\"created\":1619645728,\"updated\":1619645728,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"kid\":\"https://keyvault_name.vault.azure.net/keys/localCryptoKeyName-beforeeachhook-9073237335553428\",\"attributes\":{\"enabled\":true,\"created\":1619645725,\"updated\":1619645725,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}],\"nextLink\":null}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "1231", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:48 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d0cef045-cf61-43e7-96b8-59e12e5ecb52", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "dbbd9861-afca-4b4e-9d06-7ac778ec1bc5", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/CRUDKeyName-supportstracing-09813470003748725", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725\",\"deletedDate\":1619647909,\"scheduledPurgeDate\":1620252709,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-supportstracing-09813470003748725/39a52f116ed243bb874ce6f72ab77b5f\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wms368T499CBVEXxonmrl3XgwiKP10B4t-QOT_ZD6HgSqtb0nx4-WeTeJSA5ikBxi0-AJCPjgOfXbiYQFxFqnaWuVslYLym0ez5O7EFFGG2t2XyyyW2J6IdJQn46I1__X5IiOuoM4z7iH3QMP4mUyxJVRUiVyrKKRKoWqEPOdPzEDIYz6mo7mNhxdgX9gHloQwpThCw4vAI7j0YhNMC8uw8tqGk4Qb7i_FnXqg-h4Xt-6m4BwuvthGClHcaim44KH-2YXfeUEXmM2UmrwSa44vDlE8JIkipZbqNgrAGoiDLeT-Q6RCfNKLLCXcHVtfdSZq7S6l3zrVd5bxOWKYJmsQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647905,\"updated\":1619647905,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "885", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:48 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "20a8a69f-2754-4f2f-ae7f-ff044e199070", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "7cc9a74c-0068-4d81-9316-cc23bf2308e8", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:48 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "60d1d261-b51f-48f8-b449-2b685e950b9c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ed888acc-c513-4707-bc37-eb2bb86d318f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:48 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "0b030d52-c706-4366-b7c6-091f601a8aea", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "9e0316a3-4ef5-4bb8-8008-44445fdbcaf6", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:50 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "94b13923-3e80-4409-98aa-5adc6030d6cf", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "659da9f0-590d-444c-bb20-a31517e11ba1", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:53 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1f8cc339-4b42-4fa5-a914-7d28bf53c875", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f0e816eb-eaac-4887-a430-bf165cad6a90", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:56 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2be1b586-e6d2-40c7-ae94-6cca8392c74e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "676e7582-1342-46f6-a833-c28e9e19f42d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:57 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "b76bd8a1-8de3-4eaf-bcda-98f1487c1a26", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4bc0e84e-e896-4a29-8a06-ff438c21d84b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:11:59 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "8c0b3801-cd05-40a6-95d0-40fc5ac8d8b0", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "01b811d9-991e-4104-9bf6-c3e47b8e80ed", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:01 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "8b37d640-3a37-4f68-b892-b9e17aff7842", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b78366f9-aace-4d38-a4fb-a7bbaf04f01c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:03 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "dd2081fa-c722-4b04-b7cc-7547da566fbc", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b8df1164-edae-4363-8e11-a436070fdf4b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:05 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c35fa00e-6a4e-4766-82d5-da233b905a64", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "56adcf93-be1a-4355-b178-7cc14baf7e19", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:07 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "6d851583-fbfe-4aea-b636-d26f162845d4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b8d235e7-7d3e-4568-8751-6438d7b5f4db", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:09 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "5da6fa6b-dd5c-412f-90a1-5f74c63e3cbb", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "95c09de2-0d4c-463c-a1ae-fb49649236db", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:13 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "8469b9bc-50b1-4a66-8b3f-25121271d487", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e8961193-fdfd-4aef-b1eb-ad737ff0c699", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:15 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f2fe1beb-4bc9-41f9-bec2-beabef3711df", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "bd09f6db-bace-47c9-a1d3-d0017ea05d0d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:17 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c65d1d4c-b565-4039-aa55-a078f472ac15", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ce023aa6-771b-47e5-9201-20f75bdcae5c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:19 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "7aa45192-513e-42e0-94ed-bad3117d0c85", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "1a76275e-391f-4cd6-852b-90c98a668802", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:21 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "7c563a50-69a2-442d-99bc-e78752df93e8", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "94ea57ba-9a0c-4b5d-bf35-239c44df8d8e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:23 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "966a43e2-1286-42ba-a4a1-62b0bd028378", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a06cc72c-58bc-4f86-a761-8efca7943c6e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:25 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "34c941dd-a5eb-49ff-9326-bcbc99d7181f", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "94098e14-5146-4eee-bdd5-7b761c2c70ed", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:27 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d61a7f25-5766-40d7-ae37-bfa4a8b57edd", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d4acd58b-d34c-4b2e-a82c-897c1676d44a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:29 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "a65882fd-81c6-4524-aac4-518919f2dae7", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2305bd12-5d2a-42c2-b7e7-fa68701b3690", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:31 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e5981da3-d1ff-4b81-93fa-582078f73b34", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a7ff0de4-8ba5-448c-9863-38f979675855", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:33 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "31c080f5-33b8-4c6a-a1d8-2387b49cd9d8", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "fe4c1552-c12c-4424-84f4-3711aff8168a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: CRUDKeyName-supportstracing-09813470003748725\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "113", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:35 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "5c932de7-5db7-4288-81eb-d01de24e40c4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5113a202-d1c3-43d4-acbd-442e44491bbe", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725\",\"deletedDate\":1619647909,\"scheduledPurgeDate\":1620252709,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/CRUDKeyName-supportstracing-09813470003748725/39a52f116ed243bb874ce6f72ab77b5f\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wms368T499CBVEXxonmrl3XgwiKP10B4t-QOT_ZD6HgSqtb0nx4-WeTeJSA5ikBxi0-AJCPjgOfXbiYQFxFqnaWuVslYLym0ez5O7EFFGG2t2XyyyW2J6IdJQn46I1__X5IiOuoM4z7iH3QMP4mUyxJVRUiVyrKKRKoWqEPOdPzEDIYz6mo7mNhxdgX9gHloQwpThCw4vAI7j0YhNMC8uw8tqGk4Qb7i_FnXqg-h4Xt-6m4BwuvthGClHcaim44KH-2YXfeUEXmM2UmrwSa44vDlE8JIkipZbqNgrAGoiDLeT-Q6RCfNKLLCXcHVtfdSZq7S6l3zrVd5bxOWKYJmsQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647905,\"updated\":1619647905,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "885", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:37 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "4fb680a2-a23d-438d-af00-cd9c56ef4fbd", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b24e27e4-05d8-4c25-ada0-b47a408b61a7", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/CRUDKeyName-supportstracing-09813470003748725", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:12:37 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "b6db8693-23e9-42eb-8e3a-cf36241c0138", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "88352786-11cd-461d-bd07-50f389667e7f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/importKeyName-canimportakey-3416957021747533", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533\",\"deletedDate\":1619647958,\"scheduledPurgeDate\":1620252758,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/importKeyName-canimportakey-3416957021747533/c3822ce302324dbf95b0d70f987f496d\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"oJFNACNKxoOyG0wV1b7Yh73JWcLlevVK5zTo8Acg13XSdeRVIH43hM7rYKUKRlXdcqepTScejuj3lZpmnKbndb8OI7ra6ZG0Up2XhSi0vZBSHTLdJlZ5a6gra7_HZoyPXutQU3R_0ZkxnSmoRA0I9EEtUn_5MR7acYJZILR7HEaxGrPpHXMWQH6Jx_NA97haNAQs5RdDsn1HGEA9NMe0OK9hgb4F5NEeuYXTglPX_pv1P8LxsALSLS15P6eaUEtqtC0EkoBNcHHXJ6Bs86iJOqVCsVA_gyspY3G2cH1NxuNy-P5n2N7RyQj95FzgO8CGpxSH-nXkOqDgZ5qg0g7-NQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647908,\"updated\":1619647908,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "883", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:37 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ec003bc4-6632-484a-91e8-814ad37ee541", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "7e32ce47-d6ae-43ba-a87d-66725d5a6705", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: importKeyName-canimportakey-3416957021747533\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "112", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:37 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "861ef950-e120-40c5-90f1-eae168fe0ace", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c7ebd742-4c4b-4953-96f9-1f996b4aaf16", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: importKeyName-canimportakey-3416957021747533\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "112", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:37 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c6fc3513-a771-46f6-8bd9-84c7d0f345e6", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2ee3a804-e6b6-4211-b1a4-f915db079510", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: importKeyName-canimportakey-3416957021747533\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "112", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:40 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "50663886-1220-4630-b4cb-104bb620d2ef", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "1eb95da7-2cbe-4fba-b745-34fdeae6635d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: importKeyName-canimportakey-3416957021747533\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "112", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:42 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "53cc6a60-6fd3-4a22-9d68-eaf20883ea05", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "152d57ae-ef38-4ebc-bcad-757a96536e51", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: importKeyName-canimportakey-3416957021747533\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "112", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:44 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "0c2996f6-0c47-4dab-80cd-4c0eb0cd5ddc", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "70648790-2d7b-4841-a156-3e44871b92f7", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: importKeyName-canimportakey-3416957021747533\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "112", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:46 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "3aba5f8f-21bd-4c01-a72a-20f39b8be751", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e3d3497f-e000-4f91-8b8a-035f9507ec8f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: importKeyName-canimportakey-3416957021747533\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "112", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:48 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "69afa408-3e80-489d-824e-5ae3dd525b89", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "cd5c54f5-dfc1-4f1c-a72f-c916a6e64862", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: importKeyName-canimportakey-3416957021747533\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "112", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:50 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f19fcff4-b8ce-4d98-b176-3656e3ad858d", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "740266a4-4fb6-4bbe-9052-03dff6046861", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: importKeyName-canimportakey-3416957021747533\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "112", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:52 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f6ccae59-650a-44d2-8232-1056b8b77be2", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e8cfc70a-c051-471f-9843-853ca79312d3", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: importKeyName-canimportakey-3416957021747533\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "112", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:54 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "be388970-a830-4e14-95c9-e5be239ba953", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4abe4356-df8f-4a9f-a42e-03cd4928e02a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: importKeyName-canimportakey-3416957021747533\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "112", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:56 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d7b6ed9e-62b2-4d75-bd5b-dd84abaf0820", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "49e6be1d-0cd3-4c00-a490-1b7e6efe8241", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: importKeyName-canimportakey-3416957021747533\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "112", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:12:59 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "add98db8-f4ed-4539-a43d-7957acefae15", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "065d61ac-694f-4971-a02d-9bab7bfd740c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: importKeyName-canimportakey-3416957021747533\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "112", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:01 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "6a511050-ff69-40b2-af36-c531c316ba2f", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "799fa749-b1a1-4701-845c-1065b1eff2b0", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: importKeyName-canimportakey-3416957021747533\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "112", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:03 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "13364f78-7205-451d-b961-37f1b71f8a03", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "9fc97a4b-1789-45d9-9fb7-bc1484164a5b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533\",\"deletedDate\":1619647958,\"scheduledPurgeDate\":1620252758,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/importKeyName-canimportakey-3416957021747533/c3822ce302324dbf95b0d70f987f496d\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"oJFNACNKxoOyG0wV1b7Yh73JWcLlevVK5zTo8Acg13XSdeRVIH43hM7rYKUKRlXdcqepTScejuj3lZpmnKbndb8OI7ra6ZG0Up2XhSi0vZBSHTLdJlZ5a6gra7_HZoyPXutQU3R_0ZkxnSmoRA0I9EEtUn_5MR7acYJZILR7HEaxGrPpHXMWQH6Jx_NA97haNAQs5RdDsn1HGEA9NMe0OK9hgb4F5NEeuYXTglPX_pv1P8LxsALSLS15P6eaUEtqtC0EkoBNcHHXJ6Bs86iJOqVCsVA_gyspY3G2cH1NxuNy-P5n2N7RyQj95FzgO8CGpxSH-nXkOqDgZ5qg0g7-NQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619647908,\"updated\":1619647908,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "883", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:05 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "79966c4a-e3de-4474-94f1-9a91a503dd86", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "cb82dd80-e55b-4c4a-b9eb-ea674d2dc29d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/importKeyName-canimportakey-3416957021747533", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:13:06 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "940a4ec2-b7d0-4a28-8c23-70ba7c8c8051", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "8b3f4bb0-acdd-462a-a3f6-a20f59e38659", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/localCryptoKeyName-beforeeachhook-7783945276930928", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928\",\"deletedDate\":1619647986,\"scheduledPurgeDate\":1620252786,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/localCryptoKeyName-beforeeachhook-7783945276930928/1c66d3badbb04461acd1ae99bb336194\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"tWrk04sKXQ5nyNkUj6qoE0x8qPhwpa4jTTJMCZyM1m5Ku1jtyOTEHHFJMPrTjT--ynai0uj9k8PtQlGL8p3AqJ7pxAOjBoc7eAwohWpRVM1zbp5UGyNqJjKJ24P6LQiOlqA2Z7Kcs-m2Tnhd76rgaMFzUcpQ2gQnLOekxHFF-Y8JDeoqjP2gmNvxKBbm1drW9tEQwngGZeNcdDZwDuism3NgJb8VXaqZlQc8mkTVTPE6ew3tWXHhMZzQ2tjHwTKLvR11FGLLdjV2P9bhTBoxQvKqXUGaNvED4IL0QOn_NyihS3UDDZwpJFZ1yv9VrWUXK8neoRNxkcB8firaRhlbWQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619645727,\"updated\":1619645727,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "895", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:06 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "56f05d3b-d5df-423a-98e9-c579ab16dc75", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4210fe91-3583-4c0c-a0db-a5a86ba9f0b5", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-7783945276930928\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:06 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1cd769fc-ae51-46b5-81e8-1545d76f47c5", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "610f7b6e-ba81-40d5-a2eb-647e701de231", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-7783945276930928\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:06 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "338591bc-e954-469a-9cf8-19b18c735233", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b987a607-5f83-43a3-a5f3-348796aafb02", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-7783945276930928\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:08 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "50a3a805-6127-4001-9811-8e5e88dc9e65", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "77a7172c-3507-4c62-9615-33eff80432d7", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-7783945276930928\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:10 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "938cdabe-c520-4805-8f90-b6a2f9c0d517", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "aad4882d-ee94-4e7f-857b-072028784d20", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-7783945276930928\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:12 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "6fae9755-f96f-4906-b902-712cef27d519", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "43f99764-c1f6-4745-9684-5a34159c926c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-7783945276930928\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:14 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "8fa55583-26f0-42cf-ba53-7cb518491caf", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4984cf1f-b0bb-4653-8262-d8f6872f15c6", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-7783945276930928\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:16 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "dca53ffd-095f-47ec-9bf6-0cb873e29407", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "1c3a4953-e3d5-4ef8-8a8e-c4f918d36e0a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-7783945276930928\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:18 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d78d8f8b-a5f2-459d-8780-996a61e788fe", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "813ee96d-72eb-4611-8d51-6577a2198213", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-7783945276930928\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:20 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "a258c308-82a1-42a6-a2bf-737249a8957e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4b4c7d44-bfcd-4a2a-a58c-2c8502758797", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-7783945276930928\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:22 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "772cc6c7-cf42-4a96-a2f5-a27d1cf2239a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2da61907-1851-4e86-8af8-7d235f0cd7b6", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-7783945276930928\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:24 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f706801d-c49b-4881-b7ae-8aa864a434c0", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "54a0ae62-82e8-41d0-a279-ee3ede4b0978", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928\",\"deletedDate\":1619647986,\"scheduledPurgeDate\":1620252786,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/localCryptoKeyName-beforeeachhook-7783945276930928/1c66d3badbb04461acd1ae99bb336194\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"tWrk04sKXQ5nyNkUj6qoE0x8qPhwpa4jTTJMCZyM1m5Ku1jtyOTEHHFJMPrTjT--ynai0uj9k8PtQlGL8p3AqJ7pxAOjBoc7eAwohWpRVM1zbp5UGyNqJjKJ24P6LQiOlqA2Z7Kcs-m2Tnhd76rgaMFzUcpQ2gQnLOekxHFF-Y8JDeoqjP2gmNvxKBbm1drW9tEQwngGZeNcdDZwDuism3NgJb8VXaqZlQc8mkTVTPE6ew3tWXHhMZzQ2tjHwTKLvR11FGLLdjV2P9bhTBoxQvKqXUGaNvED4IL0QOn_NyihS3UDDZwpJFZ1yv9VrWUXK8neoRNxkcB8firaRhlbWQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619645727,\"updated\":1619645727,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "895", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:26 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "a25cbecf-b89f-4411-be9c-85b35b179d44", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "50feb475-ef1a-4c7c-af5f-8b9437b109c6", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7783945276930928", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:13:26 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "36501895-48cb-4442-bf82-bb82193abf1c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "743ebb0a-39d6-4297-8afc-08852825a2c4", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/localCryptoKeyName-beforeeachhook-9037217917778813", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813\",\"deletedDate\":1619648007,\"scheduledPurgeDate\":1620252807,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/localCryptoKeyName-beforeeachhook-9037217917778813/96c29a4ac5664b50ba9ba73e534ab563\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"qPnqCIsNvmYrS6FaQuhC3Y7ucYIQhVsyEkNOZ8n2UxahJnIfCSXZMO1P6XDjWnIOK76SfXJ24-g573tOa8ftyAn5EEm8SAOHQgKeECk5vavQnZe7Zveh6u_V9kb7cfeSlt-gV4PxzkbAgwXFI-bVtdlJa5zpu1LHyT4WX_MnFs15BtY0AVqitzD7uRyhgaM5Se1gRuc1SB6UuM-b9qUTpGKbP1s9CRMuWCyqqfVCTyesQbHfHkRtsz88iW_ceUQwWKN36j9Xx3RE_xlvQYnQi4MWND218DMdah-g9Q1syHtOdp9urw9ofgGX6u3jEueJ7rY0Xdx362SO4er-2TV08Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619645728,\"updated\":1619645728,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "895", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:27 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1783bbbd-217f-4451-9da3-242a64dd046a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "394670ca-5210-40b9-ac61-bb4e5a51fd2a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9037217917778813\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:27 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c96551ae-dc94-42a1-9ec8-e0c27f3e94e8", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5a968a9d-4925-45db-ae21-2c7d8ec4971e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9037217917778813\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:27 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "5312f330-7645-49dd-9e1a-d32182823758", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "fb2847e1-abbc-4493-937e-6d8a373dd5d4", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9037217917778813\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:30 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "3d8eb7c0-f007-45c9-81b9-a0aec751b3b0", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4508955d-e2a0-44be-9c0d-e05f1efd8135", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9037217917778813\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:32 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e1b08cdd-026d-4450-8a8e-fad8fe8d4561", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c8e09319-42e5-4ee3-8ed6-f5635c07bc05", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9037217917778813\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:34 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "08fe7c58-85f3-436e-b186-3d68d73f79b2", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4cdce636-0d32-4e6d-9db6-7cb00bab5917", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9037217917778813\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:36 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "46f3d1c5-b566-48f1-90d1-3a9e0ae29d7a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "6f26585e-2683-4709-9ae5-a71edfdf16a8", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9037217917778813\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:38 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "a2931ba3-c59f-4148-afac-ef42c72df679", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3ca31abd-ed22-4995-861f-62f033984a6d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9037217917778813\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:40 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e99b42d5-1ad9-44e7-82a1-5903d691ffa4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "83471edd-937a-4dff-8669-b4ce14450d1e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9037217917778813\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:42 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "fa937c21-7b2a-44be-b245-d128aa2b73d8", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "6a4c04f6-ea78-4131-922a-e91eecd57c63", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9037217917778813\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:44 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "38d45d18-e002-42cc-9312-20400c4fd4f9", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d119322b-e884-44cd-9ff2-780c1c6bf7fa", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9037217917778813\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:46 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "4194c07c-ed9d-4872-bdfb-845633719263", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "39c4de19-c849-4e2b-93b9-6339b81ea076", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9037217917778813\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:48 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9ac8200a-24a3-4913-8e08-af646bca8483", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ff484d25-1b91-4a75-854b-92e3455a9d8c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9037217917778813\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:50 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "87a9bcef-00e1-4818-9ac9-6e9adae138cd", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f274e112-fbe9-4e22-a3e8-a0429138e8b5", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813\",\"deletedDate\":1619648007,\"scheduledPurgeDate\":1620252807,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/localCryptoKeyName-beforeeachhook-9037217917778813/96c29a4ac5664b50ba9ba73e534ab563\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"qPnqCIsNvmYrS6FaQuhC3Y7ucYIQhVsyEkNOZ8n2UxahJnIfCSXZMO1P6XDjWnIOK76SfXJ24-g573tOa8ftyAn5EEm8SAOHQgKeECk5vavQnZe7Zveh6u_V9kb7cfeSlt-gV4PxzkbAgwXFI-bVtdlJa5zpu1LHyT4WX_MnFs15BtY0AVqitzD7uRyhgaM5Se1gRuc1SB6UuM-b9qUTpGKbP1s9CRMuWCyqqfVCTyesQbHfHkRtsz88iW_ceUQwWKN36j9Xx3RE_xlvQYnQi4MWND218DMdah-g9Q1syHtOdp9urw9ofgGX6u3jEueJ7rY0Xdx362SO4er-2TV08Q\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619645728,\"updated\":1619645728,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "895", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:53 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "edb4b215-4754-470b-9fca-184e5da998f3", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "6dc312f7-499f-49d3-b7eb-6926ad82a456", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9037217917778813", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:13:53 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "b8e86a8a-be6b-4a37-925b-1d2e74fb60a7", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "87b297f4-ad21-4bf9-a36c-5b721e434235", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/localCryptoKeyName-beforeeachhook-9073237335553428", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428\",\"deletedDate\":1619648033,\"scheduledPurgeDate\":1620252833,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/localCryptoKeyName-beforeeachhook-9073237335553428/1a0bb0a886234c349bc37aaf6d4db3ae\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"zI6fd_xIbzi5yE0QqnG9Dt51LuCU0xVD9_awGSiry4ayKbX9DIL-dJW9CzH6VZHFJODOfgGtp37O-xl_aYECg8C0WseLNEzzkqjlxpVZT5vp1LVqMyxFJ4kgiWLKTJskwPzvyJMOysQhbDCgrK9KI52oWJ5UM7xjstIL8FQfve16S6Rxzwf97-7TGVCVsGjAy9BzzqnKelnpf3YkON6me9XBRWqRznZUOFcX_Z2CFZKovWWPr86whYr8esJMLe-NznSCzFpYsPFV9Rxt9560ZObZXtjAJUZKaMGy7j0ZRDh9zu-yQQJVyw1KhjrArc7hEcFZgCLI9MqwYrp-Uz6ZsQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619645725,\"updated\":1619645725,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "895", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:53 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "a9492650-f651-46b5-be85-3842ae9bdc7c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "27320958-c66a-428b-8804-df8c67d70277", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9073237335553428\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:54 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "6e6bf6fa-23a7-465a-8a09-cfbbc8db749c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b7a243aa-3428-46d5-8e00-68ef88e2c77a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9073237335553428\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:54 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "91fa8dd6-28d5-43a1-8aef-42d91c4356dd", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "92ce91aa-bbf1-4cf1-a543-10613077e703", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9073237335553428\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:56 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "bd7a2463-5a65-456f-875c-821b8c0f4258", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "313e197b-9855-450c-8d78-159362ec2f1c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9073237335553428\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:13:58 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "6e4ee143-e57c-48a6-b6c2-e3c83fe41c62", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "37a43167-ec1d-4d2c-80cb-ea728840f2bf", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9073237335553428\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:00 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f70d3eb5-ce99-4c63-a96e-3d3d36d49dbe", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3f9c1ba0-59a4-4d5e-9a21-4ad59119f2f1", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9073237335553428\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:02 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f3d64012-10df-47c8-829b-1f3a1fbefdc1", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "899a6ea2-bd4a-4b0b-b0f8-26304b3a8a9a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9073237335553428\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:04 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "38af2fa8-aeff-4048-a97d-4cd5dec41872", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "8924b4db-5104-4442-8dd8-0d94043de6ee", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9073237335553428\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:06 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "85e1818f-8750-451b-95b3-884408b5d807", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5cba5af7-5728-487d-b27a-d7981794b2aa", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9073237335553428\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:08 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "beb81697-d92d-43d1-950d-2e11391c1329", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "0d785b83-1e94-4fc9-9eab-9a9e25180087", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9073237335553428\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:10 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "074724c4-5597-4c4b-bee5-80a5b4e7e898", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "8d2bd392-ca6a-471b-97eb-e9b695b01e34", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9073237335553428\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:12 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c419846b-0a02-40d1-adee-53de885382d4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "9ca484c4-4b39-4cb9-a1a5-3d4aaa5963b2", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9073237335553428\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:14 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "654de36d-ead6-45b2-a909-9a8ef02c41b1", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "7f460756-b6f3-4af3-be7b-3b200beeca5b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9073237335553428\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:17 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2920a536-13bf-4c92-a442-41807a167290", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "62367281-66fc-4a23-b40d-69a2e00f1483", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: localCryptoKeyName-beforeeachhook-9073237335553428\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "118", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:19 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f99a83d0-b6d3-4d7c-b482-e6902a821eb9", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d6773028-f570-4238-ae84-fe28428fe328", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428\",\"deletedDate\":1619648033,\"scheduledPurgeDate\":1620252833,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/localCryptoKeyName-beforeeachhook-9073237335553428/1a0bb0a886234c349bc37aaf6d4db3ae\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"zI6fd_xIbzi5yE0QqnG9Dt51LuCU0xVD9_awGSiry4ayKbX9DIL-dJW9CzH6VZHFJODOfgGtp37O-xl_aYECg8C0WseLNEzzkqjlxpVZT5vp1LVqMyxFJ4kgiWLKTJskwPzvyJMOysQhbDCgrK9KI52oWJ5UM7xjstIL8FQfve16S6Rxzwf97-7TGVCVsGjAy9BzzqnKelnpf3YkON6me9XBRWqRznZUOFcX_Z2CFZKovWWPr86whYr8esJMLe-NznSCzFpYsPFV9Rxt9560ZObZXtjAJUZKaMGy7j0ZRDh9zu-yQQJVyw1KhjrArc7hEcFZgCLI9MqwYrp-Uz6ZsQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619645725,\"updated\":1619645725,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "895", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:21 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2431b4ef-013f-4888-878a-ea78dfe6ceb5", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "6b94beb2-fad6-4e34-a82c-d88a104073f2", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-9073237335553428", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:14:21 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d60cd5a4-2d1b-42c3-9a53-b1bb56f6397f", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "fe572a1b-8477-48ad-ad66-725d58949b28", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"value\":[{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7744818452506113\",\"deletedDate\":1619646853,\"scheduledPurgeDate\":1620251653,\"kid\":\"https://keyvault_name.vault.azure.net/keys/localCryptoKeyName-beforeeachhook-7744818452506113\",\"attributes\":{\"enabled\":true,\"created\":1619645726,\"updated\":1619645726,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}],\"nextLink\":null}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "440", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:14:21 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f034e0b4-9e62-40a4-b030-4b63114db5be", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "7aa9917a-ad28-425f-868a-dd3f974f1422", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/localCryptoKeyName-beforeeachhook-7744818452506113", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:14:21 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "af7802cc-cc10-4f62-a0c6-8387c0e90829", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e4efb59b-ccd6-416a-b942-6141edcd5173", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "fd46c8234a64a234b57a24a6608603d7" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_list_0_versions_of_a_nonexisting_key.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_list_0_versions_of_a_nonexisting_key.json index 3eb855054d0f..d19d2ce818ed 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_list_0_versions_of_a_nonexisting_key.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_list_0_versions_of_a_nonexisting_key.json @@ -1,88 +1,88 @@ { - "recordings": [ - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-list0versionsofanon-existingkey-/versions", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:39 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "896beb57-4c31-4d57-a155-e38d742a2db1", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f536ed12-e428-4873-8e0b-2811ba61e1e6", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-list0versionsofanon-existingkey-/versions", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:39 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "896beb57-4c31-4d57-a155-e38d742a2db1", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f536ed12-e428-4873-8e0b-2811ba61e1e6", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:40 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - SCUS ProdSlices", + "x-ms-request-id": "d274ca67-cd3f-47bd-9641-f14f9c943b01" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-list0versionsofanon-existingkey-/versions", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"value\":[],\"nextLink\":null}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "28", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:39 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "896beb57-4c31-4d57-a155-e38d742a2db1", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "1816c08a-d3ae-4de6-a2e8-08d45b9cc07b", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:40 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - SCUS ProdSlices", - "x-ms-request-id": "d274ca67-cd3f-47bd-9641-f14f9c943b01" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-list0versionsofanon-existingkey-/versions", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"value\":[],\"nextLink\":null}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "28", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:39 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "896beb57-4c31-4d57-a155-e38d742a2db1", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "1816c08a-d3ae-4de6-a2e8-08d45b9cc07b", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "4b6c2d2a8d13d9abf2b34057d626f8ff" -} \ No newline at end of file + "hash": "4b6c2d2a8d13d9abf2b34057d626f8ff" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_list_0_versions_of_a_nonexisting_key_paged.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_list_0_versions_of_a_nonexisting_key_paged.json index ca103bf78d00..6a11c7c2e34b 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_list_0_versions_of_a_nonexisting_key_paged.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_list_0_versions_of_a_nonexisting_key_paged.json @@ -1,88 +1,88 @@ { - "recordings": [ - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-list0versionsofanon-existingkeypaged-/versions", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:39 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "7d839738-f33d-47b1-a697-e5d6d854c6c3", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "0c0ed797-5053-48d0-8a45-ccdc9b99a2a0", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-list0versionsofanon-existingkeypaged-/versions", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:39 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "7d839738-f33d-47b1-a697-e5d6d854c6c3", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "0c0ed797-5053-48d0-8a45-ccdc9b99a2a0", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:40 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", + "x-ms-request-id": "0f1e85ce-bad7-4108-a552-96a1be394001" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-list0versionsofanon-existingkeypaged-/versions", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"value\":[],\"nextLink\":null}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "28", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:15:41 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "7d839738-f33d-47b1-a697-e5d6d854c6c3", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e8b52c01-949e-42d5-b34d-ed708fd30c79", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:40 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", - "x-ms-request-id": "0f1e85ce-bad7-4108-a552-96a1be394001" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-list0versionsofanon-existingkeypaged-/versions", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"value\":[],\"nextLink\":null}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "28", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:15:41 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "7d839738-f33d-47b1-a697-e5d6d854c6c3", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e8b52c01-949e-42d5-b34d-ed708fd30c79", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "aa4ca058b946d0c7afd489601b0f974c" -} \ No newline at end of file + "hash": "aa4ca058b946d0c7afd489601b0f974c" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_list_deleted_keys.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_list_deleted_keys.json index e3c089d8cbea..3c7bf00c2b24 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_list_deleted_keys.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_list_deleted_keys.json @@ -1,1002 +1,1002 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeys--0/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:49 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "97136234-c493-4431-be88-888813ce86ef", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a279ae7e-2354-4ad8-87b5-6466e7602d06", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:49 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", - "x-ms-request-id": "7f75ea5c-9049-4834-a7a4-2c2b847c4a01" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeys--0/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\"}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeys--0/d380028f654446f8b6670892236c802c\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"zIWZ1JDYVEOKxYVOAWmSzkDqS0I7a6qdJHEVSYxavatqeMUd8vY_S7pCVib0MHl6AdnQQ1u42BLEjjvnmUBFxNdN-7H5vs0oZ0-9gCcJMpNvmO1pYJIyeYW1Gmobdu96u17MPgtc5OFk07Qn7BoItc7xy9jHQNQKwv-PjqVU4fdH4ppYb7Qq046nTGO1DFpoeDOTEfRH0l7WNdpl5yyOQNsPub6msMdPvGkw5zDSEZjozwpACrURT3pLyJCPu_hvNeuVwOGUh3rF9kOx5FaaGeBQlUVUV1eEfzAlY_36_gF2S1Rxrjgm_RSLBZCZUxp449Tegb7x6ibsE5nbR8TpHQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648270,\"updated\":1619648270,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "721", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:49 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "97136234-c493-4431-be88-888813ce86ef", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b6624cea-09a9-4076-a1e4-a8fd06bb83cf", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeys--1/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\"}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeys--1/5add704936aa4f60b198aa5f5bc6adbb\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"uuprEGF_9hgED7P0Jyr61XLPXscfBIni06beMxBIUyMB-LhRd7uJoy6oVw9MRph_s5o7vfSZHt7Bph8NahcVX6_wz0jptjZb7iliUXxWoP8CtYhzJ-2fp8X45XUu80CTPDkhkzJdP93E0aRQCCiJdMvuYgEWQ5qQVz7KBPOLTXn_FnpHUStAqyGPDYIZEdZ_3glPc1GzbjkS4H6C02JUh6LWYelUhrNpyKwi0kubPglr5soGdDmnWTqK3CVQuYLoSkLAqF3wbxb5m0KclbkI8xTxpBL6IbTjJhHqOzFbM2fugFfGE6AfGKPGqYaUgLX2wx_AQ905h1b-attw-wzbkQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648270,\"updated\":1619648270,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "721", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:50 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "cdfc0f21-eb73-404f-ad93-b533538a1374", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ff148cf9-1f8d-4fae-b838-c76a718c644d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0\",\"deletedDate\":1619648270,\"scheduledPurgeDate\":1620253070,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeys--0/d380028f654446f8b6670892236c802c\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"zIWZ1JDYVEOKxYVOAWmSzkDqS0I7a6qdJHEVSYxavatqeMUd8vY_S7pCVib0MHl6AdnQQ1u42BLEjjvnmUBFxNdN-7H5vs0oZ0-9gCcJMpNvmO1pYJIyeYW1Gmobdu96u17MPgtc5OFk07Qn7BoItc7xy9jHQNQKwv-PjqVU4fdH4ppYb7Qq046nTGO1DFpoeDOTEfRH0l7WNdpl5yyOQNsPub6msMdPvGkw5zDSEZjozwpACrURT3pLyJCPu_hvNeuVwOGUh3rF9kOx5FaaGeBQlUVUV1eEfzAlY_36_gF2S1Rxrjgm_RSLBZCZUxp449Tegb7x6ibsE5nbR8TpHQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648270,\"updated\":1619648270,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "887", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:50 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "376f7b7e-56c5-49ff-b793-457a282e85df", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4da4a1ee-5ec7-4cbd-84a8-0b7dcc0eb2cc", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:50 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "5a099d84-b490-4aee-a5af-c96bdbd0d4fd", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "cc4da7fd-e631-4080-aa27-84cd8c5f7cee", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:50 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9cc5e70f-deba-4a25-8229-98900d74bac4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "73c92f76-33a3-4cdd-a416-f8eaa630893a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:53 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e91c6fd2-c669-45ea-8b6b-2a412cb8ce63", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "8fb538e8-6f2f-424a-8fc7-7db1371452b5", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:55 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "060eb2f9-58fd-4e95-98a6-2472bdc0de51", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3260fd82-05a6-4e62-932b-d9de013dc5b9", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:57 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "880215c2-6174-454d-8ebf-b25a67848280", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "7e49e4e1-fcd9-4468-ab37-26d438db7da3", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:17:59 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f6e9d97e-18e3-4e0f-86d6-56ed763948cf", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4621d092-c04f-4cd7-b3ff-262ce834bf89", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:01 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "919b76b4-ee96-40f7-b3ac-9f4221b8efa7", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2728b728-fb22-45b7-9036-d643e9ac93bb", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:03 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "6df45262-ef92-42e1-bf39-a362ce28ccb9", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b2ce6178-d360-4999-bab5-f476a6ed58a0", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:05 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "df909bfd-a4c8-4316-8765-bfc9f65fc9c0", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d0985005-1fe4-4316-9884-9b2192a10d60", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:07 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f2467a58-8125-468d-9d52-fe9b66335d70", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "aef3a5ac-3991-44ee-8051-9df3b830b021", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:09 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "fce5bf1f-df9c-4157-9401-d98f258cd430", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "8855c91f-ef0c-4b59-99a5-4d316ad4931e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:11 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "405faf21-c984-4e89-9ac8-fcc6650ce7f2", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3aac5a37-ddd4-4715-8f0a-9c892f8a1c6f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0\",\"deletedDate\":1619648270,\"scheduledPurgeDate\":1620253070,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeys--0/d380028f654446f8b6670892236c802c\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"zIWZ1JDYVEOKxYVOAWmSzkDqS0I7a6qdJHEVSYxavatqeMUd8vY_S7pCVib0MHl6AdnQQ1u42BLEjjvnmUBFxNdN-7H5vs0oZ0-9gCcJMpNvmO1pYJIyeYW1Gmobdu96u17MPgtc5OFk07Qn7BoItc7xy9jHQNQKwv-PjqVU4fdH4ppYb7Qq046nTGO1DFpoeDOTEfRH0l7WNdpl5yyOQNsPub6msMdPvGkw5zDSEZjozwpACrURT3pLyJCPu_hvNeuVwOGUh3rF9kOx5FaaGeBQlUVUV1eEfzAlY_36_gF2S1Rxrjgm_RSLBZCZUxp449Tegb7x6ibsE5nbR8TpHQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648270,\"updated\":1619648270,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "887", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:13 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e8fb7690-0f63-4be4-8371-c470f1381554", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "15dbe5df-bd67-4f18-a26f-6087ef9191d6", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1\",\"deletedDate\":1619648294,\"scheduledPurgeDate\":1620253094,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeys--1/5add704936aa4f60b198aa5f5bc6adbb\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"uuprEGF_9hgED7P0Jyr61XLPXscfBIni06beMxBIUyMB-LhRd7uJoy6oVw9MRph_s5o7vfSZHt7Bph8NahcVX6_wz0jptjZb7iliUXxWoP8CtYhzJ-2fp8X45XUu80CTPDkhkzJdP93E0aRQCCiJdMvuYgEWQ5qQVz7KBPOLTXn_FnpHUStAqyGPDYIZEdZ_3glPc1GzbjkS4H6C02JUh6LWYelUhrNpyKwi0kubPglr5soGdDmnWTqK3CVQuYLoSkLAqF3wbxb5m0KclbkI8xTxpBL6IbTjJhHqOzFbM2fugFfGE6AfGKPGqYaUgLX2wx_AQ905h1b-attw-wzbkQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648270,\"updated\":1619648270,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "887", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:13 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ad34c47a-7ece-4a7e-a12f-986ece64f7af", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "fc0297b9-29ea-468c-897b-d996aad94334", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:13 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e449ffba-90ca-4011-8e22-9f8281adb9bb", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "59006829-1c03-4cfa-8fd4-7048a6f661d7", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:13 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "fa12babc-eb00-42ec-aa74-be39f619efae", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "0cb32420-12b2-4e23-b49b-a717229b9c80", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:16 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "3566f5ed-220c-4915-8607-bb7a0f946a7e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "de190058-f896-4e61-8655-f7412129cb39", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:18 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "19c92ba4-5885-40cb-9592-9bc2c0c2e112", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "90eb4f92-1c51-4268-ac4a-1aa825dec5f6", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:20 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "01766539-6cc3-47c1-b3d3-a2441aede03e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "61d641df-81cc-4fd5-aa53-53e87b88adef", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:22 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f47cebe1-19a9-4528-9560-bbef2e37f332", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2a00b31e-730c-40a7-b0f7-73ad409ab0a4", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:24 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d27e6697-913f-4fe7-8519-f57d54c72d3f", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d7edf29a-4362-484d-904d-98c1756436b0", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:26 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "32763114-6bb4-46ab-9a04-b20143cc71a3", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d2e3bb49-1b90-4aae-ac24-e89c345a3c95", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:28 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "216555b4-2f67-4612-9e32-04bfb1861c0e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "6a2ab6f9-4dfe-4a9f-9d7a-f474749372b7", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:30 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "932298da-9c05-4dcd-834f-e2f93b1b1d62", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e19c839c-4d86-44e2-8832-4be1faed2fde", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:32 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f7e89b97-e1aa-4021-adf6-c0b51c41ab58", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3f1c3764-fdbf-44be-8ad0-533c33741f79", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:35 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f9c95c4b-4b92-42de-b74f-aa7c02d9ba51", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f3c5bbec-c65d-4f0e-a1fb-c5741235619d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:37 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "0838b134-4c04-42ad-8074-6b70a1a6e53e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a0441c12-b746-4bdf-b722-599bd7792e89", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "114", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:40 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "96ab368a-c78e-41fe-8b75-e7a6d4a7390f", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "9813685d-aa31-4099-b5ce-fa6570306527", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1\",\"deletedDate\":1619648294,\"scheduledPurgeDate\":1620253094,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeys--1/5add704936aa4f60b198aa5f5bc6adbb\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"uuprEGF_9hgED7P0Jyr61XLPXscfBIni06beMxBIUyMB-LhRd7uJoy6oVw9MRph_s5o7vfSZHt7Bph8NahcVX6_wz0jptjZb7iliUXxWoP8CtYhzJ-2fp8X45XUu80CTPDkhkzJdP93E0aRQCCiJdMvuYgEWQ5qQVz7KBPOLTXn_FnpHUStAqyGPDYIZEdZ_3glPc1GzbjkS4H6C02JUh6LWYelUhrNpyKwi0kubPglr5soGdDmnWTqK3CVQuYLoSkLAqF3wbxb5m0KclbkI8xTxpBL6IbTjJhHqOzFbM2fugFfGE6AfGKPGqYaUgLX2wx_AQ905h1b-attw-wzbkQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648270,\"updated\":1619648270,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "887", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:42 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "b6e0311d-7f28-44aa-b27f-c65a8d21ee6a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "fd0ac26f-5250-410e-addc-d165455a0640", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"value\":[{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0\",\"deletedDate\":1619648270,\"scheduledPurgeDate\":1620253070,\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeys--0\",\"attributes\":{\"enabled\":true,\"created\":1619648270,\"updated\":1619648270,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1\",\"deletedDate\":1619648294,\"scheduledPurgeDate\":1620253094,\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeys--1\",\"attributes\":{\"enabled\":true,\"created\":1619648270,\"updated\":1619648270,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}],\"nextLink\":null}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "837", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:42 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f146c751-7a0d-48ee-a39a-d4aa6c3cef3b", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "81fc0be9-c1b6-4e0d-91aa-89cf6ab837d6", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:18:42 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "8baad1d8-87ed-425d-9dd4-dc1d6715fcfb", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "334b087d-9f97-4960-8a92-3c2bdba96eef", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:18:42 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ba01cc6d-694a-43e6-b32f-9da506513296", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "9ee3e30c-71ec-4760-b584-8616855e54c2", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "9ca5d65c5aa8b6556cbdcd9e578a04b1" -} \ No newline at end of file + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeys--0/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:49 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "97136234-c493-4431-be88-888813ce86ef", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a279ae7e-2354-4ad8-87b5-6466e7602d06", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:49 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", + "x-ms-request-id": "7f75ea5c-9049-4834-a7a4-2c2b847c4a01" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeys--0/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\"}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeys--0/d380028f654446f8b6670892236c802c\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"zIWZ1JDYVEOKxYVOAWmSzkDqS0I7a6qdJHEVSYxavatqeMUd8vY_S7pCVib0MHl6AdnQQ1u42BLEjjvnmUBFxNdN-7H5vs0oZ0-9gCcJMpNvmO1pYJIyeYW1Gmobdu96u17MPgtc5OFk07Qn7BoItc7xy9jHQNQKwv-PjqVU4fdH4ppYb7Qq046nTGO1DFpoeDOTEfRH0l7WNdpl5yyOQNsPub6msMdPvGkw5zDSEZjozwpACrURT3pLyJCPu_hvNeuVwOGUh3rF9kOx5FaaGeBQlUVUV1eEfzAlY_36_gF2S1Rxrjgm_RSLBZCZUxp449Tegb7x6ibsE5nbR8TpHQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648270,\"updated\":1619648270,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "721", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:49 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "97136234-c493-4431-be88-888813ce86ef", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b6624cea-09a9-4076-a1e4-a8fd06bb83cf", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeys--1/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\"}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeys--1/5add704936aa4f60b198aa5f5bc6adbb\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"uuprEGF_9hgED7P0Jyr61XLPXscfBIni06beMxBIUyMB-LhRd7uJoy6oVw9MRph_s5o7vfSZHt7Bph8NahcVX6_wz0jptjZb7iliUXxWoP8CtYhzJ-2fp8X45XUu80CTPDkhkzJdP93E0aRQCCiJdMvuYgEWQ5qQVz7KBPOLTXn_FnpHUStAqyGPDYIZEdZ_3glPc1GzbjkS4H6C02JUh6LWYelUhrNpyKwi0kubPglr5soGdDmnWTqK3CVQuYLoSkLAqF3wbxb5m0KclbkI8xTxpBL6IbTjJhHqOzFbM2fugFfGE6AfGKPGqYaUgLX2wx_AQ905h1b-attw-wzbkQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648270,\"updated\":1619648270,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "721", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:50 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "cdfc0f21-eb73-404f-ad93-b533538a1374", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ff148cf9-1f8d-4fae-b838-c76a718c644d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0\",\"deletedDate\":1619648270,\"scheduledPurgeDate\":1620253070,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeys--0/d380028f654446f8b6670892236c802c\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"zIWZ1JDYVEOKxYVOAWmSzkDqS0I7a6qdJHEVSYxavatqeMUd8vY_S7pCVib0MHl6AdnQQ1u42BLEjjvnmUBFxNdN-7H5vs0oZ0-9gCcJMpNvmO1pYJIyeYW1Gmobdu96u17MPgtc5OFk07Qn7BoItc7xy9jHQNQKwv-PjqVU4fdH4ppYb7Qq046nTGO1DFpoeDOTEfRH0l7WNdpl5yyOQNsPub6msMdPvGkw5zDSEZjozwpACrURT3pLyJCPu_hvNeuVwOGUh3rF9kOx5FaaGeBQlUVUV1eEfzAlY_36_gF2S1Rxrjgm_RSLBZCZUxp449Tegb7x6ibsE5nbR8TpHQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648270,\"updated\":1619648270,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "887", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:50 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "376f7b7e-56c5-49ff-b793-457a282e85df", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4da4a1ee-5ec7-4cbd-84a8-0b7dcc0eb2cc", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:50 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "5a099d84-b490-4aee-a5af-c96bdbd0d4fd", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "cc4da7fd-e631-4080-aa27-84cd8c5f7cee", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:50 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9cc5e70f-deba-4a25-8229-98900d74bac4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "73c92f76-33a3-4cdd-a416-f8eaa630893a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:53 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e91c6fd2-c669-45ea-8b6b-2a412cb8ce63", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "8fb538e8-6f2f-424a-8fc7-7db1371452b5", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:55 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "060eb2f9-58fd-4e95-98a6-2472bdc0de51", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3260fd82-05a6-4e62-932b-d9de013dc5b9", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:57 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "880215c2-6174-454d-8ebf-b25a67848280", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "7e49e4e1-fcd9-4468-ab37-26d438db7da3", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:17:59 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f6e9d97e-18e3-4e0f-86d6-56ed763948cf", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4621d092-c04f-4cd7-b3ff-262ce834bf89", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:01 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "919b76b4-ee96-40f7-b3ac-9f4221b8efa7", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2728b728-fb22-45b7-9036-d643e9ac93bb", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:03 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "6df45262-ef92-42e1-bf39-a362ce28ccb9", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b2ce6178-d360-4999-bab5-f476a6ed58a0", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:05 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "df909bfd-a4c8-4316-8765-bfc9f65fc9c0", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d0985005-1fe4-4316-9884-9b2192a10d60", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:07 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f2467a58-8125-468d-9d52-fe9b66335d70", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "aef3a5ac-3991-44ee-8051-9df3b830b021", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:09 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "fce5bf1f-df9c-4157-9401-d98f258cd430", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "8855c91f-ef0c-4b59-99a5-4d316ad4931e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:11 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "405faf21-c984-4e89-9ac8-fcc6650ce7f2", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3aac5a37-ddd4-4715-8f0a-9c892f8a1c6f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0\",\"deletedDate\":1619648270,\"scheduledPurgeDate\":1620253070,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeys--0/d380028f654446f8b6670892236c802c\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"zIWZ1JDYVEOKxYVOAWmSzkDqS0I7a6qdJHEVSYxavatqeMUd8vY_S7pCVib0MHl6AdnQQ1u42BLEjjvnmUBFxNdN-7H5vs0oZ0-9gCcJMpNvmO1pYJIyeYW1Gmobdu96u17MPgtc5OFk07Qn7BoItc7xy9jHQNQKwv-PjqVU4fdH4ppYb7Qq046nTGO1DFpoeDOTEfRH0l7WNdpl5yyOQNsPub6msMdPvGkw5zDSEZjozwpACrURT3pLyJCPu_hvNeuVwOGUh3rF9kOx5FaaGeBQlUVUV1eEfzAlY_36_gF2S1Rxrjgm_RSLBZCZUxp449Tegb7x6ibsE5nbR8TpHQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648270,\"updated\":1619648270,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "887", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:13 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e8fb7690-0f63-4be4-8371-c470f1381554", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "15dbe5df-bd67-4f18-a26f-6087ef9191d6", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1\",\"deletedDate\":1619648294,\"scheduledPurgeDate\":1620253094,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeys--1/5add704936aa4f60b198aa5f5bc6adbb\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"uuprEGF_9hgED7P0Jyr61XLPXscfBIni06beMxBIUyMB-LhRd7uJoy6oVw9MRph_s5o7vfSZHt7Bph8NahcVX6_wz0jptjZb7iliUXxWoP8CtYhzJ-2fp8X45XUu80CTPDkhkzJdP93E0aRQCCiJdMvuYgEWQ5qQVz7KBPOLTXn_FnpHUStAqyGPDYIZEdZ_3glPc1GzbjkS4H6C02JUh6LWYelUhrNpyKwi0kubPglr5soGdDmnWTqK3CVQuYLoSkLAqF3wbxb5m0KclbkI8xTxpBL6IbTjJhHqOzFbM2fugFfGE6AfGKPGqYaUgLX2wx_AQ905h1b-attw-wzbkQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648270,\"updated\":1619648270,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "887", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:13 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ad34c47a-7ece-4a7e-a12f-986ece64f7af", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "fc0297b9-29ea-468c-897b-d996aad94334", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:13 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e449ffba-90ca-4011-8e22-9f8281adb9bb", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "59006829-1c03-4cfa-8fd4-7048a6f661d7", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:13 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "fa12babc-eb00-42ec-aa74-be39f619efae", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "0cb32420-12b2-4e23-b49b-a717229b9c80", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:16 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "3566f5ed-220c-4915-8607-bb7a0f946a7e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "de190058-f896-4e61-8655-f7412129cb39", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:18 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "19c92ba4-5885-40cb-9592-9bc2c0c2e112", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "90eb4f92-1c51-4268-ac4a-1aa825dec5f6", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:20 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "01766539-6cc3-47c1-b3d3-a2441aede03e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "61d641df-81cc-4fd5-aa53-53e87b88adef", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:22 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f47cebe1-19a9-4528-9560-bbef2e37f332", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2a00b31e-730c-40a7-b0f7-73ad409ab0a4", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:24 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d27e6697-913f-4fe7-8519-f57d54c72d3f", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d7edf29a-4362-484d-904d-98c1756436b0", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:26 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "32763114-6bb4-46ab-9a04-b20143cc71a3", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d2e3bb49-1b90-4aae-ac24-e89c345a3c95", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:28 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "216555b4-2f67-4612-9e32-04bfb1861c0e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "6a2ab6f9-4dfe-4a9f-9d7a-f474749372b7", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:30 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "932298da-9c05-4dcd-834f-e2f93b1b1d62", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e19c839c-4d86-44e2-8832-4be1faed2fde", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:32 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f7e89b97-e1aa-4021-adf6-c0b51c41ab58", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3f1c3764-fdbf-44be-8ad0-533c33741f79", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:35 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f9c95c4b-4b92-42de-b74f-aa7c02d9ba51", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f3c5bbec-c65d-4f0e-a1fb-c5741235619d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:37 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "0838b134-4c04-42ad-8074-6b70a1a6e53e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a0441c12-b746-4bdf-b722-599bd7792e89", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeys--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "114", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:40 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "96ab368a-c78e-41fe-8b75-e7a6d4a7390f", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "9813685d-aa31-4099-b5ce-fa6570306527", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1\",\"deletedDate\":1619648294,\"scheduledPurgeDate\":1620253094,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeys--1/5add704936aa4f60b198aa5f5bc6adbb\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"uuprEGF_9hgED7P0Jyr61XLPXscfBIni06beMxBIUyMB-LhRd7uJoy6oVw9MRph_s5o7vfSZHt7Bph8NahcVX6_wz0jptjZb7iliUXxWoP8CtYhzJ-2fp8X45XUu80CTPDkhkzJdP93E0aRQCCiJdMvuYgEWQ5qQVz7KBPOLTXn_FnpHUStAqyGPDYIZEdZ_3glPc1GzbjkS4H6C02JUh6LWYelUhrNpyKwi0kubPglr5soGdDmnWTqK3CVQuYLoSkLAqF3wbxb5m0KclbkI8xTxpBL6IbTjJhHqOzFbM2fugFfGE6AfGKPGqYaUgLX2wx_AQ905h1b-attw-wzbkQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648270,\"updated\":1619648270,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "887", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:42 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "b6e0311d-7f28-44aa-b27f-c65a8d21ee6a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "fd0ac26f-5250-410e-addc-d165455a0640", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"value\":[{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0\",\"deletedDate\":1619648270,\"scheduledPurgeDate\":1620253070,\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeys--0\",\"attributes\":{\"enabled\":true,\"created\":1619648270,\"updated\":1619648270,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1\",\"deletedDate\":1619648294,\"scheduledPurgeDate\":1620253094,\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeys--1\",\"attributes\":{\"enabled\":true,\"created\":1619648270,\"updated\":1619648270,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}],\"nextLink\":null}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "837", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:42 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f146c751-7a0d-48ee-a39a-d4aa6c3cef3b", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "81fc0be9-c1b6-4e0d-91aa-89cf6ab837d6", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:18:42 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "8baad1d8-87ed-425d-9dd4-dc1d6715fcfb", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "334b087d-9f97-4960-8a92-3c2bdba96eef", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeys--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:18:42 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ba01cc6d-694a-43e6-b32f-9da506513296", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "9ee3e30c-71ec-4760-b584-8616855e54c2", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "9ca5d65c5aa8b6556cbdcd9e578a04b1" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_list_deleted_keys_paged.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_list_deleted_keys_paged.json index 7d2f642e61b8..5efe698f46fe 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_list_deleted_keys_paged.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__list_keys_in_various_ways/recording_list_deleted_keys_paged.json @@ -1,1407 +1,1407 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeyspaged--0/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:42 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2661f163-91a4-4c88-bdc7-0f529b6a008e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "cb476977-e6eb-4ff5-8db0-262c336ba036", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeyspaged--0/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:42 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2661f163-91a4-4c88-bdc7-0f529b6a008e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "cb476977-e6eb-4ff5-8db0-262c336ba036", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:42 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - WUS2 ProdSlices", + "x-ms-request-id": "48c5329c-0596-4150-b337-49df91a7f801" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeyspaged--0/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\"}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeyspaged--0/3c4781a119a54745940de8c0a3a9d090\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"rPIqwOl1wqhyjux6T3cHDYbaLsSDSN-xvI_591MTPV5b0iRubnUdHJvHPoSF0w2K3y9J5aQ7wJgJSUk26eTcka8nD0cW4PZ_HLRSXPse52rtlkgSxEMy-nueoSlrjwrUj7lT6q4Rjy5MQh5voSRJ2Ccs9Gzdb750MK50qDUuEOn71K2bH-UJH3crg4-ty7ubEpGsbzNWInxYCUu1lmNhtfvtYbMbL8e2JkYFJMPLa7J41JLIGVZKARXfgw-5d9Wnpu0KUQ8pxjEXV-7PpFZ9bxBOt-Q9REXa1JF3Yg6gRJkYIBFGZcuDcWo315WXriuZfsO3eQzn8-k_CWi2tMdNmQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648323,\"updated\":1619648323,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "728", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:42 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2661f163-91a4-4c88-bdc7-0f529b6a008e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2eee4f16-652d-45b2-9d7c-f24e4fde21c1", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeyspaged--1/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\"}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeyspaged--1/ebd372a8f6334aa69dd8c4e545adf15c\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"uC-fE13fueHIeQwn7yyaYf8DXx12z8LWQ-mALFf2p8oh9WHNGe_QfC_LC2Eq2jEdpE05qKvDa-EPD9wGWE_1BpeDUkvNkE6G0SSMmJ5QTfZ4FDYv3VLivfLQ_7UGauDNg_4CFW4fslhHigMZysT_02Tq0B1x-6vkrgWiCSA3bzqlUxYdSxF4AT4GdRJ5Ii9t2kpQeNFGKvPCpkonoIFY2-3Balc3dBAfdi1ezmozf8HWhjBibGrOFmMWj8daZ8-i2AiJxjsV2nyv7huvzSWpbRTkg0NTfjflb8S8ljIybdJ-kHKwK6gX3vmlYl18cPpTS7XFHX6BqliYAPchws4_LQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648323,\"updated\":1619648323,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "728", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:43 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "3726416a-108a-45d6-862f-5630bcc9f940", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "66b8b9df-f11c-4132-bd1b-e69ca9ab9211", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0\",\"deletedDate\":1619648323,\"scheduledPurgeDate\":1620253123,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeyspaged--0/3c4781a119a54745940de8c0a3a9d090\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"rPIqwOl1wqhyjux6T3cHDYbaLsSDSN-xvI_591MTPV5b0iRubnUdHJvHPoSF0w2K3y9J5aQ7wJgJSUk26eTcka8nD0cW4PZ_HLRSXPse52rtlkgSxEMy-nueoSlrjwrUj7lT6q4Rjy5MQh5voSRJ2Ccs9Gzdb750MK50qDUuEOn71K2bH-UJH3crg4-ty7ubEpGsbzNWInxYCUu1lmNhtfvtYbMbL8e2JkYFJMPLa7J41JLIGVZKARXfgw-5d9Wnpu0KUQ8pxjEXV-7PpFZ9bxBOt-Q9REXa1JF3Yg6gRJkYIBFGZcuDcWo315WXriuZfsO3eQzn8-k_CWi2tMdNmQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648323,\"updated\":1619648323,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "901", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:43 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "b66fa863-82c4-48ae-b867-39d243dcb4ec", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f1cda3c0-7769-4237-bb84-cb1127b90ae2", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:43 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "4b2f5e90-a786-41e5-a952-0edb49cfd543", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "500cd3a7-c3ef-4db2-9586-83c0f0d4bafe", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:43 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "496be013-e222-49b4-b975-62f4af2b43bd", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "8b1c27c1-dbef-4f46-b4a7-6ff8736dd1ea", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:45 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "fec8c0a5-5246-48e3-815c-c6fea0f38990", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "7dbc636d-a786-4492-971f-52b2fb227d82", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:47 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "6238871b-b9da-435a-a66b-6940eeb832b2", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ff9c4f01-8fd3-4621-b543-86cbf7a1afcb", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:50 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "75fe8dc1-20e1-413e-b4af-36655a922a59", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "34737acc-4f91-4451-a57f-f76bc7ed7bba", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:52 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "36ee2e09-9fa3-453d-931f-ba2540d144e1", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "deee1bdb-5d5f-4392-b6d3-15ed79713f4c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:54 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "312eac10-ac58-4388-83d7-f5dfb8bd4610", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "58eb25e4-b4dc-4e67-83b4-8eb53b325f24", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:56 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "966042c8-57bf-45bd-84e6-3a3ff6822295", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "63e58bd1-cf71-46a7-a787-e6546439f11e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:18:58 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "85b68444-0744-429a-a36b-1f54b76025dd", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2eff5af0-607a-4e95-8ac8-01baa7dc3e8f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:00 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "67c7ae41-bc3f-4a25-8370-583a6434378c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b3d01641-e366-4c75-9b61-b8e504ea3110", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:01 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "8865cdb8-2911-42d2-8804-448c761cfe5c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a75d872c-549d-430e-810e-a21044e9832e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:04 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "97d1953e-3a44-4cc4-976e-5c44bed6db77", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "43b2b250-64f0-4357-8d8b-bfcb98bf2627", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:06 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "647a1377-6063-49b1-9353-9f93c41d06a2", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "da363166-bfed-4ae0-b68a-4b61b9475d8c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:08 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "77e40681-7c2b-46dc-9ec5-d680ea4bc969", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "0559aab1-df7b-41f4-a043-f945b1f30af7", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:10 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9a64b4dd-ce82-4a3a-b9d1-9e577dacaeb7", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "7eedd179-8763-45a5-b1ea-8cd407393ec9", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:13 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1127b2a4-647b-47d6-aab3-c5544bed758b", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "95462d49-6586-46f7-a1ec-c3792d6724f0", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:15 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "16293cd2-7cec-452e-96b8-e61525bbfa64", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a958456a-2b66-4af9-8524-a6078950528b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:17 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1bd0f1f2-4288-4933-b3b7-77de2d884f48", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "15ff4de2-033d-4172-a10e-8a1840957aeb", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:19 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "bc42b7e2-3e7a-455e-af82-dec33af22239", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c6677b5f-ca61-4a69-8983-96a5d1cc5c4a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:21 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9ccbdd9f-be52-416e-becb-c831aa026e4c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3bf7bcdc-45ac-4e62-b39f-7554ba9306a8", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:23 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c9c22ea1-46d3-4930-b50c-ea3e6fb79e80", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a3f4da1f-3e5f-448f-a3a5-eaaf6195c831", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:26 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "989bef93-3331-467e-8760-3a7a5d8a57de", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "da9f9c28-25f1-4606-a74f-3434fef51b9d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:28 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9850a2a1-962c-4cdb-ae11-067df54c331c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "edaaca78-dadb-4ca9-8f15-f02a6963fd57", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:30 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "08981cf5-ce0b-462b-b2d6-d1a4e12b9fb4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a2fc533f-e20a-469a-884d-426a427022c1", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:32 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "6338daa6-96f3-4508-9ed4-8170b874edeb", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "49a17c27-f5f4-45f5-a055-c4150124703c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:34 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "a9dcc676-7e48-4212-b259-46750dc59f81", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "36ed3b60-b339-4cdf-b8a5-0e36fdd4b607", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0\",\"deletedDate\":1619648323,\"scheduledPurgeDate\":1620253123,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeyspaged--0/3c4781a119a54745940de8c0a3a9d090\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"rPIqwOl1wqhyjux6T3cHDYbaLsSDSN-xvI_591MTPV5b0iRubnUdHJvHPoSF0w2K3y9J5aQ7wJgJSUk26eTcka8nD0cW4PZ_HLRSXPse52rtlkgSxEMy-nueoSlrjwrUj7lT6q4Rjy5MQh5voSRJ2Ccs9Gzdb750MK50qDUuEOn71K2bH-UJH3crg4-ty7ubEpGsbzNWInxYCUu1lmNhtfvtYbMbL8e2JkYFJMPLa7J41JLIGVZKARXfgw-5d9Wnpu0KUQ8pxjEXV-7PpFZ9bxBOt-Q9REXa1JF3Yg6gRJkYIBFGZcuDcWo315WXriuZfsO3eQzn8-k_CWi2tMdNmQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648323,\"updated\":1619648323,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "901", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:36 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "950afb8a-fa01-4c53-b312-b745e12fc881", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "cadda2e0-b6cf-4dfc-9d0a-f59e680a048e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1\",\"deletedDate\":1619648376,\"scheduledPurgeDate\":1620253176,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeyspaged--1/ebd372a8f6334aa69dd8c4e545adf15c\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"uC-fE13fueHIeQwn7yyaYf8DXx12z8LWQ-mALFf2p8oh9WHNGe_QfC_LC2Eq2jEdpE05qKvDa-EPD9wGWE_1BpeDUkvNkE6G0SSMmJ5QTfZ4FDYv3VLivfLQ_7UGauDNg_4CFW4fslhHigMZysT_02Tq0B1x-6vkrgWiCSA3bzqlUxYdSxF4AT4GdRJ5Ii9t2kpQeNFGKvPCpkonoIFY2-3Balc3dBAfdi1ezmozf8HWhjBibGrOFmMWj8daZ8-i2AiJxjsV2nyv7huvzSWpbRTkg0NTfjflb8S8ljIybdJ-kHKwK6gX3vmlYl18cPpTS7XFHX6BqliYAPchws4_LQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648323,\"updated\":1619648323,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "901", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:36 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "793c250f-9293-4546-a7f4-883dfb945303", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "25b0adc2-054c-482e-9f21-c69409d5f062", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:36 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2d87a0f4-141f-49f6-b7a5-1068675759b2", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c82b9541-7599-4505-92a9-c840953c144a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:36 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e12afcb9-951b-45be-a593-ae053a7c8528", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a75ff7bf-ee6c-475c-b975-9f26428efa39", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:38 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "0088117a-8a89-443e-95e6-400563367034", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a7aa1cd2-d5e5-4341-a9d8-57061688d551", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:40 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "7677031e-5dd7-4d61-986a-dc2bf8754faf", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "422b23c2-054f-434f-bad6-7a28bd589a7a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:43 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "b0e3bd35-00fb-48cb-913d-1f61e32e21a9", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "6170f17c-db88-466d-b554-825aeb092bf2", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:45 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1192f4ba-8446-4187-949a-a569902eec45", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "449e0c79-6b8f-4126-a714-3cea3646fb5b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:47 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2de15694-a58e-48af-b737-cdd374bda3ef", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "6c9bc6f8-0248-4d9a-bd60-9be1329a191e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:49 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d54ebc81-e399-40ac-a772-8d21e8991a02", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "214fbb55-cca5-4c7c-b3db-2b71309c2f27", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:51 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "081bb940-4d83-4d05-b70a-dc6bcd2aa78b", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "68a155f0-1ce4-475f-b6ad-ddaa105ddf63", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:53 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "104be60b-ca94-4b5a-845d-2857be75e503", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5e875409-b603-4f42-bb18-8702a8adfef6", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:55 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "11b09c5c-fff2-4095-9366-ad3c9dbccc29", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "0aea99e1-d573-4809-81ec-4a3211f7a185", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:19:58 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "830e88b5-c795-47bd-bb07-71a6929b27e7", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a8a1fadc-394b-42f7-a592-043448f1a7ca", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:00 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "dc50fbfa-200d-4546-a09e-46dca5d454a1", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "81338abd-63ce-46dc-a618-036bc4ba520c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:02 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ff2faff9-3cc9-4423-9998-2f90deb106c1", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "fc238b81-07a4-412d-9430-fdda19578669", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "121", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:04 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "641047a0-0439-494e-840f-ed1e8ab13022", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "7fdb4354-15aa-413b-b7e8-6e4a3f54cd74", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1\",\"deletedDate\":1619648376,\"scheduledPurgeDate\":1620253176,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeyspaged--1/ebd372a8f6334aa69dd8c4e545adf15c\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"uC-fE13fueHIeQwn7yyaYf8DXx12z8LWQ-mALFf2p8oh9WHNGe_QfC_LC2Eq2jEdpE05qKvDa-EPD9wGWE_1BpeDUkvNkE6G0SSMmJ5QTfZ4FDYv3VLivfLQ_7UGauDNg_4CFW4fslhHigMZysT_02Tq0B1x-6vkrgWiCSA3bzqlUxYdSxF4AT4GdRJ5Ii9t2kpQeNFGKvPCpkonoIFY2-3Balc3dBAfdi1ezmozf8HWhjBibGrOFmMWj8daZ8-i2AiJxjsV2nyv7huvzSWpbRTkg0NTfjflb8S8ljIybdJ-kHKwK6gX3vmlYl18cPpTS7XFHX6BqliYAPchws4_LQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648323,\"updated\":1619648323,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "901", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:06 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f74fd4fc-d356-44d4-b504-caee57ea5136", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "16aa882f-934b-4046-aba4-15fd980f4735", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"value\":[{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0\",\"deletedDate\":1619648323,\"scheduledPurgeDate\":1620253123,\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeyspaged--0\",\"attributes\":{\"enabled\":true,\"created\":1619648323,\"updated\":1619648323,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1\",\"deletedDate\":1619648376,\"scheduledPurgeDate\":1620253176,\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeyspaged--1\",\"attributes\":{\"enabled\":true,\"created\":1619648323,\"updated\":1619648323,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}],\"nextLink\":null}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "865", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:06 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "742733b1-93b8-42e8-93be-22f0680d80d5", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "6f2b6672-c720-4f78-883b-1545f43422a2", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:20:06 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "29a39730-a270-410c-89ab-8e90fb4c84e2", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "7f5c601b-00cb-47c4-bb07-d83212341b75", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:20:06 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "b748f543-f9d1-4fc5-b077-62ff769fab79", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "abeeea2a-2dba-4b89-85a9-0c0f66c58431", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:42 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - WUS2 ProdSlices", - "x-ms-request-id": "48c5329c-0596-4150-b337-49df91a7f801" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeyspaged--0/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\"}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeyspaged--0/3c4781a119a54745940de8c0a3a9d090\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"rPIqwOl1wqhyjux6T3cHDYbaLsSDSN-xvI_591MTPV5b0iRubnUdHJvHPoSF0w2K3y9J5aQ7wJgJSUk26eTcka8nD0cW4PZ_HLRSXPse52rtlkgSxEMy-nueoSlrjwrUj7lT6q4Rjy5MQh5voSRJ2Ccs9Gzdb750MK50qDUuEOn71K2bH-UJH3crg4-ty7ubEpGsbzNWInxYCUu1lmNhtfvtYbMbL8e2JkYFJMPLa7J41JLIGVZKARXfgw-5d9Wnpu0KUQ8pxjEXV-7PpFZ9bxBOt-Q9REXa1JF3Yg6gRJkYIBFGZcuDcWo315WXriuZfsO3eQzn8-k_CWi2tMdNmQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648323,\"updated\":1619648323,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "728", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:42 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2661f163-91a4-4c88-bdc7-0f529b6a008e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2eee4f16-652d-45b2-9d7c-f24e4fde21c1", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeyspaged--1/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\"}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeyspaged--1/ebd372a8f6334aa69dd8c4e545adf15c\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"uC-fE13fueHIeQwn7yyaYf8DXx12z8LWQ-mALFf2p8oh9WHNGe_QfC_LC2Eq2jEdpE05qKvDa-EPD9wGWE_1BpeDUkvNkE6G0SSMmJ5QTfZ4FDYv3VLivfLQ_7UGauDNg_4CFW4fslhHigMZysT_02Tq0B1x-6vkrgWiCSA3bzqlUxYdSxF4AT4GdRJ5Ii9t2kpQeNFGKvPCpkonoIFY2-3Balc3dBAfdi1ezmozf8HWhjBibGrOFmMWj8daZ8-i2AiJxjsV2nyv7huvzSWpbRTkg0NTfjflb8S8ljIybdJ-kHKwK6gX3vmlYl18cPpTS7XFHX6BqliYAPchws4_LQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648323,\"updated\":1619648323,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "728", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:43 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "3726416a-108a-45d6-862f-5630bcc9f940", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "66b8b9df-f11c-4132-bd1b-e69ca9ab9211", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0\",\"deletedDate\":1619648323,\"scheduledPurgeDate\":1620253123,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeyspaged--0/3c4781a119a54745940de8c0a3a9d090\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"rPIqwOl1wqhyjux6T3cHDYbaLsSDSN-xvI_591MTPV5b0iRubnUdHJvHPoSF0w2K3y9J5aQ7wJgJSUk26eTcka8nD0cW4PZ_HLRSXPse52rtlkgSxEMy-nueoSlrjwrUj7lT6q4Rjy5MQh5voSRJ2Ccs9Gzdb750MK50qDUuEOn71K2bH-UJH3crg4-ty7ubEpGsbzNWInxYCUu1lmNhtfvtYbMbL8e2JkYFJMPLa7J41JLIGVZKARXfgw-5d9Wnpu0KUQ8pxjEXV-7PpFZ9bxBOt-Q9REXa1JF3Yg6gRJkYIBFGZcuDcWo315WXriuZfsO3eQzn8-k_CWi2tMdNmQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648323,\"updated\":1619648323,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "901", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:43 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "b66fa863-82c4-48ae-b867-39d243dcb4ec", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f1cda3c0-7769-4237-bb84-cb1127b90ae2", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:43 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "4b2f5e90-a786-41e5-a952-0edb49cfd543", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "500cd3a7-c3ef-4db2-9586-83c0f0d4bafe", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:43 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "496be013-e222-49b4-b975-62f4af2b43bd", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "8b1c27c1-dbef-4f46-b4a7-6ff8736dd1ea", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:45 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "fec8c0a5-5246-48e3-815c-c6fea0f38990", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "7dbc636d-a786-4492-971f-52b2fb227d82", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:47 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "6238871b-b9da-435a-a66b-6940eeb832b2", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ff9c4f01-8fd3-4621-b543-86cbf7a1afcb", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:50 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "75fe8dc1-20e1-413e-b4af-36655a922a59", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "34737acc-4f91-4451-a57f-f76bc7ed7bba", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:52 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "36ee2e09-9fa3-453d-931f-ba2540d144e1", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "deee1bdb-5d5f-4392-b6d3-15ed79713f4c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:54 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "312eac10-ac58-4388-83d7-f5dfb8bd4610", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "58eb25e4-b4dc-4e67-83b4-8eb53b325f24", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:56 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "966042c8-57bf-45bd-84e6-3a3ff6822295", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "63e58bd1-cf71-46a7-a787-e6546439f11e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:18:58 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "85b68444-0744-429a-a36b-1f54b76025dd", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2eff5af0-607a-4e95-8ac8-01baa7dc3e8f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:00 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "67c7ae41-bc3f-4a25-8370-583a6434378c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b3d01641-e366-4c75-9b61-b8e504ea3110", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:01 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "8865cdb8-2911-42d2-8804-448c761cfe5c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a75d872c-549d-430e-810e-a21044e9832e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:04 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "97d1953e-3a44-4cc4-976e-5c44bed6db77", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "43b2b250-64f0-4357-8d8b-bfcb98bf2627", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:06 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "647a1377-6063-49b1-9353-9f93c41d06a2", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "da363166-bfed-4ae0-b68a-4b61b9475d8c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:08 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "77e40681-7c2b-46dc-9ec5-d680ea4bc969", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "0559aab1-df7b-41f4-a043-f945b1f30af7", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:10 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9a64b4dd-ce82-4a3a-b9d1-9e577dacaeb7", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "7eedd179-8763-45a5-b1ea-8cd407393ec9", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:13 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1127b2a4-647b-47d6-aab3-c5544bed758b", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "95462d49-6586-46f7-a1ec-c3792d6724f0", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:15 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "16293cd2-7cec-452e-96b8-e61525bbfa64", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a958456a-2b66-4af9-8524-a6078950528b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:17 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1bd0f1f2-4288-4933-b3b7-77de2d884f48", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "15ff4de2-033d-4172-a10e-8a1840957aeb", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:19 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "bc42b7e2-3e7a-455e-af82-dec33af22239", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c6677b5f-ca61-4a69-8983-96a5d1cc5c4a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:21 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9ccbdd9f-be52-416e-becb-c831aa026e4c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3bf7bcdc-45ac-4e62-b39f-7554ba9306a8", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:23 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c9c22ea1-46d3-4930-b50c-ea3e6fb79e80", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a3f4da1f-3e5f-448f-a3a5-eaaf6195c831", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:26 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "989bef93-3331-467e-8760-3a7a5d8a57de", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "da9f9c28-25f1-4606-a74f-3434fef51b9d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:28 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9850a2a1-962c-4cdb-ae11-067df54c331c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "edaaca78-dadb-4ca9-8f15-f02a6963fd57", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:30 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "08981cf5-ce0b-462b-b2d6-d1a4e12b9fb4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a2fc533f-e20a-469a-884d-426a427022c1", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:32 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "6338daa6-96f3-4508-9ed4-8170b874edeb", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "49a17c27-f5f4-45f5-a055-c4150124703c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--0\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:34 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "a9dcc676-7e48-4212-b259-46750dc59f81", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "36ed3b60-b339-4cdf-b8a5-0e36fdd4b607", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0\",\"deletedDate\":1619648323,\"scheduledPurgeDate\":1620253123,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeyspaged--0/3c4781a119a54745940de8c0a3a9d090\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"rPIqwOl1wqhyjux6T3cHDYbaLsSDSN-xvI_591MTPV5b0iRubnUdHJvHPoSF0w2K3y9J5aQ7wJgJSUk26eTcka8nD0cW4PZ_HLRSXPse52rtlkgSxEMy-nueoSlrjwrUj7lT6q4Rjy5MQh5voSRJ2Ccs9Gzdb750MK50qDUuEOn71K2bH-UJH3crg4-ty7ubEpGsbzNWInxYCUu1lmNhtfvtYbMbL8e2JkYFJMPLa7J41JLIGVZKARXfgw-5d9Wnpu0KUQ8pxjEXV-7PpFZ9bxBOt-Q9REXa1JF3Yg6gRJkYIBFGZcuDcWo315WXriuZfsO3eQzn8-k_CWi2tMdNmQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648323,\"updated\":1619648323,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "901", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:36 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "950afb8a-fa01-4c53-b312-b745e12fc881", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "cadda2e0-b6cf-4dfc-9d0a-f59e680a048e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1\",\"deletedDate\":1619648376,\"scheduledPurgeDate\":1620253176,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeyspaged--1/ebd372a8f6334aa69dd8c4e545adf15c\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"uC-fE13fueHIeQwn7yyaYf8DXx12z8LWQ-mALFf2p8oh9WHNGe_QfC_LC2Eq2jEdpE05qKvDa-EPD9wGWE_1BpeDUkvNkE6G0SSMmJ5QTfZ4FDYv3VLivfLQ_7UGauDNg_4CFW4fslhHigMZysT_02Tq0B1x-6vkrgWiCSA3bzqlUxYdSxF4AT4GdRJ5Ii9t2kpQeNFGKvPCpkonoIFY2-3Balc3dBAfdi1ezmozf8HWhjBibGrOFmMWj8daZ8-i2AiJxjsV2nyv7huvzSWpbRTkg0NTfjflb8S8ljIybdJ-kHKwK6gX3vmlYl18cPpTS7XFHX6BqliYAPchws4_LQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648323,\"updated\":1619648323,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "901", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:36 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "793c250f-9293-4546-a7f4-883dfb945303", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "25b0adc2-054c-482e-9f21-c69409d5f062", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:36 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2d87a0f4-141f-49f6-b7a5-1068675759b2", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c82b9541-7599-4505-92a9-c840953c144a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:36 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e12afcb9-951b-45be-a593-ae053a7c8528", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a75ff7bf-ee6c-475c-b975-9f26428efa39", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:38 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "0088117a-8a89-443e-95e6-400563367034", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a7aa1cd2-d5e5-4341-a9d8-57061688d551", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:40 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "7677031e-5dd7-4d61-986a-dc2bf8754faf", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "422b23c2-054f-434f-bad6-7a28bd589a7a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:43 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "b0e3bd35-00fb-48cb-913d-1f61e32e21a9", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "6170f17c-db88-466d-b554-825aeb092bf2", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:45 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1192f4ba-8446-4187-949a-a569902eec45", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "449e0c79-6b8f-4126-a714-3cea3646fb5b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:47 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2de15694-a58e-48af-b737-cdd374bda3ef", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "6c9bc6f8-0248-4d9a-bd60-9be1329a191e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:49 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d54ebc81-e399-40ac-a772-8d21e8991a02", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "214fbb55-cca5-4c7c-b3db-2b71309c2f27", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:51 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "081bb940-4d83-4d05-b70a-dc6bcd2aa78b", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "68a155f0-1ce4-475f-b6ad-ddaa105ddf63", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:53 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "104be60b-ca94-4b5a-845d-2857be75e503", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5e875409-b603-4f42-bb18-8702a8adfef6", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:55 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "11b09c5c-fff2-4095-9366-ad3c9dbccc29", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "0aea99e1-d573-4809-81ec-4a3211f7a185", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:19:58 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "830e88b5-c795-47bd-bb07-71a6929b27e7", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a8a1fadc-394b-42f7-a592-043448f1a7ca", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:00 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "dc50fbfa-200d-4546-a09e-46dca5d454a1", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "81338abd-63ce-46dc-a618-036bc4ba520c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:02 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ff2faff9-3cc9-4423-9998-2f90deb106c1", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "fc238b81-07a4-412d-9430-fdda19578669", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: listKeyName-listdeletedkeyspaged--1\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "121", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:04 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "641047a0-0439-494e-840f-ed1e8ab13022", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "7fdb4354-15aa-413b-b7e8-6e4a3f54cd74", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1\",\"deletedDate\":1619648376,\"scheduledPurgeDate\":1620253176,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeyspaged--1/ebd372a8f6334aa69dd8c4e545adf15c\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"uC-fE13fueHIeQwn7yyaYf8DXx12z8LWQ-mALFf2p8oh9WHNGe_QfC_LC2Eq2jEdpE05qKvDa-EPD9wGWE_1BpeDUkvNkE6G0SSMmJ5QTfZ4FDYv3VLivfLQ_7UGauDNg_4CFW4fslhHigMZysT_02Tq0B1x-6vkrgWiCSA3bzqlUxYdSxF4AT4GdRJ5Ii9t2kpQeNFGKvPCpkonoIFY2-3Balc3dBAfdi1ezmozf8HWhjBibGrOFmMWj8daZ8-i2AiJxjsV2nyv7huvzSWpbRTkg0NTfjflb8S8ljIybdJ-kHKwK6gX3vmlYl18cPpTS7XFHX6BqliYAPchws4_LQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648323,\"updated\":1619648323,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "901", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:06 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f74fd4fc-d356-44d4-b504-caee57ea5136", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "16aa882f-934b-4046-aba4-15fd980f4735", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"value\":[{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0\",\"deletedDate\":1619648323,\"scheduledPurgeDate\":1620253123,\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeyspaged--0\",\"attributes\":{\"enabled\":true,\"created\":1619648323,\"updated\":1619648323,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}},{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1\",\"deletedDate\":1619648376,\"scheduledPurgeDate\":1620253176,\"kid\":\"https://keyvault_name.vault.azure.net/keys/listKeyName-listdeletedkeyspaged--1\",\"attributes\":{\"enabled\":true,\"created\":1619648323,\"updated\":1619648323,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}],\"nextLink\":null}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "865", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:06 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "742733b1-93b8-42e8-93be-22f0680d80d5", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "6f2b6672-c720-4f78-883b-1545f43422a2", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--0", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:20:06 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "29a39730-a270-410c-89ab-8e90fb4c84e2", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "7f5c601b-00cb-47c4-bb07-d83212341b75", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/listKeyName-listdeletedkeyspaged--1", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:20:06 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "b748f543-f9d1-4fc5-b077-62ff769fab79", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "abeeea2a-2dba-4b89-85a9-0c0f66c58431", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "d7f491de4b37a48d65186ef05406f37d" -} \ No newline at end of file + "hash": "d7f491de4b37a48d65186ef05406f37d" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__long_running_operations__delete/recording_can_resume_from_a_stopped_poller.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__long_running_operations__delete/recording_can_resume_from_a_stopped_poller.json index 169611f36d74..25c7d7f2dc5a 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__long_running_operations__delete/recording_can_resume_from_a_stopped_poller.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__long_running_operations__delete/recording_can_resume_from_a_stopped_poller.json @@ -1,545 +1,545 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/lroDeleteKeyName-canresumefromastoppedpoller-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:37 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "90ce34cd-e287-46d3-9f2c-a5d8b90a48ee", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a46dd0dc-6bb9-4a27-84c3-7c7c82933964", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/lroDeleteKeyName-canresumefromastoppedpoller-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:37 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "90ce34cd-e287-46d3-9f2c-a5d8b90a48ee", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a46dd0dc-6bb9-4a27-84c3-7c7c82933964", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:38 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", + "x-ms-request-id": "1682db6b-dbae-4b6b-b593-706e97514301" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/lroDeleteKeyName-canresumefromastoppedpoller-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\"}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroDeleteKeyName-canresumefromastoppedpoller-/34a9d20e690f4d3cbaa2d23c911e6770\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"tRQvUbDaHFIhc9ZZ9NJDw_11_gd-8Oor_KL2pevMm8LExwY3zAm-BEiOhRKN3h_CBh2J6LfjoSPXgVtRmkB19h0fcTlZA5K2Bm6dwbu9QaQnNZARCgMomE_AFPEkdW6ZDGPnpkExbn0Sco_DpKCDydTgXipw1b7P310b1jJsiqjlwLQ6-6iNLrNByBn0VevuY9VpGwbjSpfP5DVeugH9Pg7yZQpgHTjDmHUfhNX0C_WDYkaKO10WOSlCxRdQiKvPOv59WrvGo0Zan-dZ8wR6C3jHDg_RGgON-ZXkpba7rxPX6MtaJNwxF0A0iiM3KL4MfYoy9IXIHA3tcEMDfv64lQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648438,\"updated\":1619648438,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "736", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:38 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "90ce34cd-e287-46d3-9f2c-a5d8b90a48ee", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a61f1481-c99b-43bb-a675-a5b6daff6219", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/lroDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-\",\"deletedDate\":1619648439,\"scheduledPurgeDate\":1620253239,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroDeleteKeyName-canresumefromastoppedpoller-/34a9d20e690f4d3cbaa2d23c911e6770\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"tRQvUbDaHFIhc9ZZ9NJDw_11_gd-8Oor_KL2pevMm8LExwY3zAm-BEiOhRKN3h_CBh2J6LfjoSPXgVtRmkB19h0fcTlZA5K2Bm6dwbu9QaQnNZARCgMomE_AFPEkdW6ZDGPnpkExbn0Sco_DpKCDydTgXipw1b7P310b1jJsiqjlwLQ6-6iNLrNByBn0VevuY9VpGwbjSpfP5DVeugH9Pg7yZQpgHTjDmHUfhNX0C_WDYkaKO10WOSlCxRdQiKvPOv59WrvGo0Zan-dZ8wR6C3jHDg_RGgON-ZXkpba7rxPX6MtaJNwxF0A0iiM3KL4MfYoy9IXIHA3tcEMDfv64lQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648438,\"updated\":1619648438,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "917", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:38 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "da531c9b-203c-4a95-aa18-fa748e3f439d", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3f0b09f7-32f3-4d2b-b555-2439c6578bd3", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:38 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "0bca87fb-09d1-4aba-bfcd-f80acca9c6bd", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "497c4993-80f4-4458-a484-b240803fb2a4", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:38 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1a4c22c1-a6c4-40e1-b8b4-5818260c1116", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "950e7b15-407e-4527-9c4b-5e01dacddacc", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:38 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "97e106f0-0f5b-4df8-86a9-060b30286e4f", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f590c1f6-0575-42d9-a91a-5111d83be62b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:38 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "fd8f0977-7462-40e0-9315-8adba89300d7", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "8c03be79-c55d-49ce-9acf-00ee2ffb3a57", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:41 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "11ffb9c8-5653-4afb-a4b3-57524a4cb0f7", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "956a2ff2-a087-4b85-9dd8-01edba660d1a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:43 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "caf0465b-f4db-4bfa-90df-cd6fe8a291a3", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "49de10d5-217f-481b-895b-60c8e820dfeb", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:45 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "3626af40-1fc5-4e91-b62f-6a10fd2db982", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d7ff819f-c2ec-486d-9193-2a8ea22c490f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:47 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "3139e070-76fd-4121-9586-3ee76c43e458", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4810428c-5dd2-4fb3-9491-050a378f0638", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:49 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2c316155-d8f4-4668-9a68-c14c2b2356be", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "eab72661-b6c5-4e91-ab72-377007c5f07e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:51 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "5fe8f583-67ac-44f0-bfd2-f0e44bd92ba2", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ddc9bc6e-6a55-4e7f-924c-8df9653f22e3", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:54 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e3df38f9-0ffa-4bd7-a333-0bcc3a6a271a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c559cb66-0739-4c49-b438-b87e411dd565", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:56 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "feb4c56f-3d80-4dbc-977a-0588b3d1eb0f", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "bb0f89c0-2ef1-444e-b076-bee0005390bb", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:58 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "944c28be-4867-4351-a42f-55ac2a6ba8ca", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "db1cba88-22ef-4886-9b2f-804128cb31b7", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "129", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:00 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "6a2cba2c-6c2b-425c-a4ce-3e8d1ab31a2c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "7351c046-fd9e-4b13-93fc-be9c7c8c972a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-\",\"deletedDate\":1619648439,\"scheduledPurgeDate\":1620253239,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroDeleteKeyName-canresumefromastoppedpoller-/34a9d20e690f4d3cbaa2d23c911e6770\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"tRQvUbDaHFIhc9ZZ9NJDw_11_gd-8Oor_KL2pevMm8LExwY3zAm-BEiOhRKN3h_CBh2J6LfjoSPXgVtRmkB19h0fcTlZA5K2Bm6dwbu9QaQnNZARCgMomE_AFPEkdW6ZDGPnpkExbn0Sco_DpKCDydTgXipw1b7P310b1jJsiqjlwLQ6-6iNLrNByBn0VevuY9VpGwbjSpfP5DVeugH9Pg7yZQpgHTjDmHUfhNX0C_WDYkaKO10WOSlCxRdQiKvPOv59WrvGo0Zan-dZ8wR6C3jHDg_RGgON-ZXkpba7rxPX6MtaJNwxF0A0iiM3KL4MfYoy9IXIHA3tcEMDfv64lQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648438,\"updated\":1619648438,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "917", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:02 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "145b1f3c-b024-40d9-bd98-f359953359bf", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e25e5a35-ce60-486f-bf18-b2aa1597b773", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:21:02 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1bbfda0d-be15-4389-b94c-5526989e3faf", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "318ec06c-ca37-4038-b867-7e13701bbc98", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:38 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", - "x-ms-request-id": "1682db6b-dbae-4b6b-b593-706e97514301" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/lroDeleteKeyName-canresumefromastoppedpoller-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\"}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroDeleteKeyName-canresumefromastoppedpoller-/34a9d20e690f4d3cbaa2d23c911e6770\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"tRQvUbDaHFIhc9ZZ9NJDw_11_gd-8Oor_KL2pevMm8LExwY3zAm-BEiOhRKN3h_CBh2J6LfjoSPXgVtRmkB19h0fcTlZA5K2Bm6dwbu9QaQnNZARCgMomE_AFPEkdW6ZDGPnpkExbn0Sco_DpKCDydTgXipw1b7P310b1jJsiqjlwLQ6-6iNLrNByBn0VevuY9VpGwbjSpfP5DVeugH9Pg7yZQpgHTjDmHUfhNX0C_WDYkaKO10WOSlCxRdQiKvPOv59WrvGo0Zan-dZ8wR6C3jHDg_RGgON-ZXkpba7rxPX6MtaJNwxF0A0iiM3KL4MfYoy9IXIHA3tcEMDfv64lQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648438,\"updated\":1619648438,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "736", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:38 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "90ce34cd-e287-46d3-9f2c-a5d8b90a48ee", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a61f1481-c99b-43bb-a675-a5b6daff6219", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/lroDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-\",\"deletedDate\":1619648439,\"scheduledPurgeDate\":1620253239,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroDeleteKeyName-canresumefromastoppedpoller-/34a9d20e690f4d3cbaa2d23c911e6770\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"tRQvUbDaHFIhc9ZZ9NJDw_11_gd-8Oor_KL2pevMm8LExwY3zAm-BEiOhRKN3h_CBh2J6LfjoSPXgVtRmkB19h0fcTlZA5K2Bm6dwbu9QaQnNZARCgMomE_AFPEkdW6ZDGPnpkExbn0Sco_DpKCDydTgXipw1b7P310b1jJsiqjlwLQ6-6iNLrNByBn0VevuY9VpGwbjSpfP5DVeugH9Pg7yZQpgHTjDmHUfhNX0C_WDYkaKO10WOSlCxRdQiKvPOv59WrvGo0Zan-dZ8wR6C3jHDg_RGgON-ZXkpba7rxPX6MtaJNwxF0A0iiM3KL4MfYoy9IXIHA3tcEMDfv64lQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648438,\"updated\":1619648438,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "917", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:38 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "da531c9b-203c-4a95-aa18-fa748e3f439d", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3f0b09f7-32f3-4d2b-b555-2439c6578bd3", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:38 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "0bca87fb-09d1-4aba-bfcd-f80acca9c6bd", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "497c4993-80f4-4458-a484-b240803fb2a4", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:38 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1a4c22c1-a6c4-40e1-b8b4-5818260c1116", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "950e7b15-407e-4527-9c4b-5e01dacddacc", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:38 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "97e106f0-0f5b-4df8-86a9-060b30286e4f", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f590c1f6-0575-42d9-a91a-5111d83be62b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:38 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "fd8f0977-7462-40e0-9315-8adba89300d7", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "8c03be79-c55d-49ce-9acf-00ee2ffb3a57", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:41 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "11ffb9c8-5653-4afb-a4b3-57524a4cb0f7", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "956a2ff2-a087-4b85-9dd8-01edba660d1a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:43 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "caf0465b-f4db-4bfa-90df-cd6fe8a291a3", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "49de10d5-217f-481b-895b-60c8e820dfeb", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:45 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "3626af40-1fc5-4e91-b62f-6a10fd2db982", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d7ff819f-c2ec-486d-9193-2a8ea22c490f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:47 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "3139e070-76fd-4121-9586-3ee76c43e458", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4810428c-5dd2-4fb3-9491-050a378f0638", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:49 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2c316155-d8f4-4668-9a68-c14c2b2356be", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "eab72661-b6c5-4e91-ab72-377007c5f07e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:51 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "5fe8f583-67ac-44f0-bfd2-f0e44bd92ba2", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ddc9bc6e-6a55-4e7f-924c-8df9653f22e3", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:54 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e3df38f9-0ffa-4bd7-a333-0bcc3a6a271a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c559cb66-0739-4c49-b438-b87e411dd565", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:56 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "feb4c56f-3d80-4dbc-977a-0588b3d1eb0f", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "bb0f89c0-2ef1-444e-b076-bee0005390bb", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:58 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "944c28be-4867-4351-a42f-55ac2a6ba8ca", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "db1cba88-22ef-4886-9b2f-804128cb31b7", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "129", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:00 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "6a2cba2c-6c2b-425c-a4ce-3e8d1ab31a2c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "7351c046-fd9e-4b13-93fc-be9c7c8c972a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-\",\"deletedDate\":1619648439,\"scheduledPurgeDate\":1620253239,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroDeleteKeyName-canresumefromastoppedpoller-/34a9d20e690f4d3cbaa2d23c911e6770\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"tRQvUbDaHFIhc9ZZ9NJDw_11_gd-8Oor_KL2pevMm8LExwY3zAm-BEiOhRKN3h_CBh2J6LfjoSPXgVtRmkB19h0fcTlZA5K2Bm6dwbu9QaQnNZARCgMomE_AFPEkdW6ZDGPnpkExbn0Sco_DpKCDydTgXipw1b7P310b1jJsiqjlwLQ6-6iNLrNByBn0VevuY9VpGwbjSpfP5DVeugH9Pg7yZQpgHTjDmHUfhNX0C_WDYkaKO10WOSlCxRdQiKvPOv59WrvGo0Zan-dZ8wR6C3jHDg_RGgON-ZXkpba7rxPX6MtaJNwxF0A0iiM3KL4MfYoy9IXIHA3tcEMDfv64lQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648438,\"updated\":1619648438,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "917", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:02 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "145b1f3c-b024-40d9-bd98-f359953359bf", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e25e5a35-ce60-486f-bf18-b2aa1597b773", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:21:02 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1bbfda0d-be15-4389-b94c-5526989e3faf", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "318ec06c-ca37-4038-b867-7e13701bbc98", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "e7e130880656822249e59b8f3479f6d0" -} \ No newline at end of file + "hash": "e7e130880656822249e59b8f3479f6d0" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__long_running_operations__delete/recording_can_wait_until_a_key_is_deleted.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__long_running_operations__delete/recording_can_wait_until_a_key_is_deleted.json index 81ba0cada24d..038ef6317179 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__long_running_operations__delete/recording_can_wait_until_a_key_is_deleted.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__long_running_operations__delete/recording_can_wait_until_a_key_is_deleted.json @@ -1,572 +1,572 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/lroDeleteKeyName-canwaituntilakeyisdeleted-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:06 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c24c34ae-4842-41a1-aa5d-ea131844326c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "6475ced7-c257-4a24-945c-3c6bf4224453", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/lroDeleteKeyName-canwaituntilakeyisdeleted-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:06 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c24c34ae-4842-41a1-aa5d-ea131844326c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "6475ced7-c257-4a24-945c-3c6bf4224453", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:07 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - WUS2 ProdSlices", + "x-ms-request-id": "7b1fd219-7c2b-47b2-84ef-b97abf225000" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/lroDeleteKeyName-canwaituntilakeyisdeleted-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\"}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroDeleteKeyName-canwaituntilakeyisdeleted-/76dcc59d65174883889738480abc5034\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"6uj475qpEO8Kc8SsF8Q9tLuRxb4afrnV3mvztAS6_aTiQFyHkiq69oNi3exz0xDY8twUvCM58_jWdEc9WfKFDMMkkKfZjvymoDR8ZgmWaBsEQzZotJY4dEkuqNLWMqAUdGYiNmsxY5mIK3OpVZL5sKYSKLSsZC0GNc1wdNTK5oIJGPgx-lRudMmLdY8hv5Pqhlboi7JHqXpeACl0xUYUKVEzSXnswfW8uP1Ne0eQ86-CNL7OkOx0gLeBMKP0mkwfZEt-sZWP8vV2pDp_JkRDvIHdzhYCzzK0Lhh8sAmIrepQYaHPAIfd3KEA7w9z-LHduVvBcuIE6eJDMXydlUeKcQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648407,\"updated\":1619648407,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "734", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:07 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c24c34ae-4842-41a1-aa5d-ea131844326c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ce9c4655-ae1a-4180-a62f-53c4e910e2f5", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/lroDeleteKeyName-canwaituntilakeyisdeleted-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-\",\"deletedDate\":1619648407,\"scheduledPurgeDate\":1620253207,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroDeleteKeyName-canwaituntilakeyisdeleted-/76dcc59d65174883889738480abc5034\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"6uj475qpEO8Kc8SsF8Q9tLuRxb4afrnV3mvztAS6_aTiQFyHkiq69oNi3exz0xDY8twUvCM58_jWdEc9WfKFDMMkkKfZjvymoDR8ZgmWaBsEQzZotJY4dEkuqNLWMqAUdGYiNmsxY5mIK3OpVZL5sKYSKLSsZC0GNc1wdNTK5oIJGPgx-lRudMmLdY8hv5Pqhlboi7JHqXpeACl0xUYUKVEzSXnswfW8uP1Ne0eQ86-CNL7OkOx0gLeBMKP0mkwfZEt-sZWP8vV2pDp_JkRDvIHdzhYCzzK0Lhh8sAmIrepQYaHPAIfd3KEA7w9z-LHduVvBcuIE6eJDMXydlUeKcQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648407,\"updated\":1619648407,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "913", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:07 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "49e7aae2-ac79-4050-bd2f-7c0ba08fb32c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "7b3deba2-f50a-4455-b100-30dbbbdc5ced", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "127", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:07 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "088cc332-4a2d-4ec1-8a48-e65f1cd12e18", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "152ed1d8-069e-4049-b23c-4b3c9097258e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "127", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:07 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d5cbcea8-e897-4d9f-bbf7-285b8b7e790b", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "8947b606-eb56-496c-8112-318778dd9c14", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "127", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:09 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "49f78b64-c93e-4967-a980-f6ecba5e05e8", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "85ada8a7-c53f-4e6c-91ea-bdc5e44e6cc6", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "127", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:11 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "0aca7b38-62c9-475f-9e91-d7c384fbf24c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "038019cb-540f-4f30-8f93-2ce90fa4b7c9", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "127", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:13 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "51b5e366-03e6-4478-9774-8ab1e8df0d01", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e2c97f50-98c1-47f8-9981-7810524c77fd", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "127", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:15 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "5aec8c2f-5b08-4929-bcb3-4eca7b21f5cd", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b754e6b4-84a0-4df7-920c-64babd4f01d2", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "127", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:18 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "66a4304e-78d1-4e47-a892-0fa0c6897b3c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f529acd5-0bc2-4172-97c4-cd41569e3251", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "127", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:21 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "10acaa46-7097-41dc-b67a-0326bc3afdf7", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "32fc1085-4dc2-45e4-bb53-abc1c3dd77be", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "127", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:23 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9c79f447-681a-4d89-a2d3-a25bcefa21e4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "daff316c-f341-47ea-aae5-76ced0204b44", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "127", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:25 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9937aec2-c2ed-4bb6-9474-9c1963e16e22", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a1204ef9-f8a8-4e58-99fe-fcbe6474b34a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "127", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:27 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "cc681615-905a-43ef-9339-a5331a87b857", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "887741e6-682d-42b0-9aa2-4a7b216d3f97", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "127", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:29 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "5b865ec5-6a14-4bf9-9a34-e3351b20a812", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5de6adcc-3799-40a2-88bd-dfdc09615506", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "127", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:31 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "94b44ca5-dda1-4c7a-a568-b6317697392c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "47625920-39a5-4ab6-9ff7-ed7d85a85aa5", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "127", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:33 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9167bade-5e4e-4c44-bccd-a29c32f4023c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d8119ddf-0ffc-49cf-8583-b417fb55f520", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "127", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:35 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f3d54808-87a2-465c-8fb4-9139e7885152", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f905474f-6629-4d3b-a0fc-e7b5cdd2d2eb", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-\",\"deletedDate\":1619648407,\"scheduledPurgeDate\":1620253207,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroDeleteKeyName-canwaituntilakeyisdeleted-/76dcc59d65174883889738480abc5034\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"6uj475qpEO8Kc8SsF8Q9tLuRxb4afrnV3mvztAS6_aTiQFyHkiq69oNi3exz0xDY8twUvCM58_jWdEc9WfKFDMMkkKfZjvymoDR8ZgmWaBsEQzZotJY4dEkuqNLWMqAUdGYiNmsxY5mIK3OpVZL5sKYSKLSsZC0GNc1wdNTK5oIJGPgx-lRudMmLdY8hv5Pqhlboi7JHqXpeACl0xUYUKVEzSXnswfW8uP1Ne0eQ86-CNL7OkOx0gLeBMKP0mkwfZEt-sZWP8vV2pDp_JkRDvIHdzhYCzzK0Lhh8sAmIrepQYaHPAIfd3KEA7w9z-LHduVvBcuIE6eJDMXydlUeKcQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648407,\"updated\":1619648407,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "913", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:20:37 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "8c7d1ed9-607d-48d8-b6d3-5116e0493962", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "63a82811-52cb-47e5-846d-96a722f3afb4", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:20:37 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "db7bd395-07ca-4687-9b49-ffaa20f5f8ce", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d994a715-1cf0-444e-90a5-8f6d074fe669", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:07 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - WUS2 ProdSlices", - "x-ms-request-id": "7b1fd219-7c2b-47b2-84ef-b97abf225000" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/lroDeleteKeyName-canwaituntilakeyisdeleted-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\"}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroDeleteKeyName-canwaituntilakeyisdeleted-/76dcc59d65174883889738480abc5034\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"6uj475qpEO8Kc8SsF8Q9tLuRxb4afrnV3mvztAS6_aTiQFyHkiq69oNi3exz0xDY8twUvCM58_jWdEc9WfKFDMMkkKfZjvymoDR8ZgmWaBsEQzZotJY4dEkuqNLWMqAUdGYiNmsxY5mIK3OpVZL5sKYSKLSsZC0GNc1wdNTK5oIJGPgx-lRudMmLdY8hv5Pqhlboi7JHqXpeACl0xUYUKVEzSXnswfW8uP1Ne0eQ86-CNL7OkOx0gLeBMKP0mkwfZEt-sZWP8vV2pDp_JkRDvIHdzhYCzzK0Lhh8sAmIrepQYaHPAIfd3KEA7w9z-LHduVvBcuIE6eJDMXydlUeKcQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648407,\"updated\":1619648407,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "734", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:07 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c24c34ae-4842-41a1-aa5d-ea131844326c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ce9c4655-ae1a-4180-a62f-53c4e910e2f5", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/lroDeleteKeyName-canwaituntilakeyisdeleted-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-\",\"deletedDate\":1619648407,\"scheduledPurgeDate\":1620253207,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroDeleteKeyName-canwaituntilakeyisdeleted-/76dcc59d65174883889738480abc5034\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"6uj475qpEO8Kc8SsF8Q9tLuRxb4afrnV3mvztAS6_aTiQFyHkiq69oNi3exz0xDY8twUvCM58_jWdEc9WfKFDMMkkKfZjvymoDR8ZgmWaBsEQzZotJY4dEkuqNLWMqAUdGYiNmsxY5mIK3OpVZL5sKYSKLSsZC0GNc1wdNTK5oIJGPgx-lRudMmLdY8hv5Pqhlboi7JHqXpeACl0xUYUKVEzSXnswfW8uP1Ne0eQ86-CNL7OkOx0gLeBMKP0mkwfZEt-sZWP8vV2pDp_JkRDvIHdzhYCzzK0Lhh8sAmIrepQYaHPAIfd3KEA7w9z-LHduVvBcuIE6eJDMXydlUeKcQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648407,\"updated\":1619648407,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "913", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:07 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "49e7aae2-ac79-4050-bd2f-7c0ba08fb32c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "7b3deba2-f50a-4455-b100-30dbbbdc5ced", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "127", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:07 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "088cc332-4a2d-4ec1-8a48-e65f1cd12e18", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "152ed1d8-069e-4049-b23c-4b3c9097258e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "127", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:07 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d5cbcea8-e897-4d9f-bbf7-285b8b7e790b", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "8947b606-eb56-496c-8112-318778dd9c14", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "127", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:09 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "49f78b64-c93e-4967-a980-f6ecba5e05e8", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "85ada8a7-c53f-4e6c-91ea-bdc5e44e6cc6", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "127", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:11 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "0aca7b38-62c9-475f-9e91-d7c384fbf24c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "038019cb-540f-4f30-8f93-2ce90fa4b7c9", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "127", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:13 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "51b5e366-03e6-4478-9774-8ab1e8df0d01", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e2c97f50-98c1-47f8-9981-7810524c77fd", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "127", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:15 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "5aec8c2f-5b08-4929-bcb3-4eca7b21f5cd", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b754e6b4-84a0-4df7-920c-64babd4f01d2", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "127", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:18 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "66a4304e-78d1-4e47-a892-0fa0c6897b3c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f529acd5-0bc2-4172-97c4-cd41569e3251", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "127", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:21 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "10acaa46-7097-41dc-b67a-0326bc3afdf7", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "32fc1085-4dc2-45e4-bb53-abc1c3dd77be", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "127", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:23 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9c79f447-681a-4d89-a2d3-a25bcefa21e4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "daff316c-f341-47ea-aae5-76ced0204b44", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "127", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:25 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9937aec2-c2ed-4bb6-9474-9c1963e16e22", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a1204ef9-f8a8-4e58-99fe-fcbe6474b34a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "127", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:27 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "cc681615-905a-43ef-9339-a5331a87b857", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "887741e6-682d-42b0-9aa2-4a7b216d3f97", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "127", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:29 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "5b865ec5-6a14-4bf9-9a34-e3351b20a812", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5de6adcc-3799-40a2-88bd-dfdc09615506", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "127", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:31 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "94b44ca5-dda1-4c7a-a568-b6317697392c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "47625920-39a5-4ab6-9ff7-ed7d85a85aa5", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "127", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:33 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9167bade-5e4e-4c44-bccd-a29c32f4023c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d8119ddf-0ffc-49cf-8583-b417fb55f520", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroDeleteKeyName-canwaituntilakeyisdeleted-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "127", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:35 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f3d54808-87a2-465c-8fb4-9139e7885152", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f905474f-6629-4d3b-a0fc-e7b5cdd2d2eb", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-\",\"deletedDate\":1619648407,\"scheduledPurgeDate\":1620253207,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroDeleteKeyName-canwaituntilakeyisdeleted-/76dcc59d65174883889738480abc5034\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"6uj475qpEO8Kc8SsF8Q9tLuRxb4afrnV3mvztAS6_aTiQFyHkiq69oNi3exz0xDY8twUvCM58_jWdEc9WfKFDMMkkKfZjvymoDR8ZgmWaBsEQzZotJY4dEkuqNLWMqAUdGYiNmsxY5mIK3OpVZL5sKYSKLSsZC0GNc1wdNTK5oIJGPgx-lRudMmLdY8hv5Pqhlboi7JHqXpeACl0xUYUKVEzSXnswfW8uP1Ne0eQ86-CNL7OkOx0gLeBMKP0mkwfZEt-sZWP8vV2pDp_JkRDvIHdzhYCzzK0Lhh8sAmIrepQYaHPAIfd3KEA7w9z-LHduVvBcuIE6eJDMXydlUeKcQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648407,\"updated\":1619648407,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "913", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:20:37 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "8c7d1ed9-607d-48d8-b6d3-5116e0493962", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "63a82811-52cb-47e5-846d-96a722f3afb4", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroDeleteKeyName-canwaituntilakeyisdeleted-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:20:37 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "db7bd395-07ca-4687-9b49-ffaa20f5f8ce", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d994a715-1cf0-444e-90a5-8f6d074fe669", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "9ea58edead1293a81140c150062008c7" -} \ No newline at end of file + "hash": "9ea58edead1293a81140c150062008c7" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__long_running_operations__recoverdelete/recording_can_resume_from_a_stopped_poller.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__long_running_operations__recoverdelete/recording_can_resume_from_a_stopped_poller.json index dd93e90baf17..a223c886e615 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__long_running_operations__recoverdelete/recording_can_resume_from_a_stopped_poller.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__long_running_operations__recoverdelete/recording_can_resume_from_a_stopped_poller.json @@ -1,1436 +1,1436 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:27 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "3cbb0be7-63e7-4fea-80da-3d4807f933a5", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "360e33aa-2c11-4312-9873-dc6e5f4870a3", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:27 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "3cbb0be7-63e7-4fea-80da-3d4807f933a5", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "360e33aa-2c11-4312-9873-dc6e5f4870a3", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:28 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - WUS2 ProdSlices", + "x-ms-request-id": "ee1c71aa-506c-461b-bfc8-fcac278f7800" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\"}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/d5661a85382d4f5f8ca5aa56e5277494\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wIfL41vIUxRdUf181kQNMz9j5qTJ3orqSb8mxmQNeyRv2IsebcHUYcNFkycyOUt6QFuRj6pKhh--TRZJxwdqClGnoVB-q5_VMwHxBh6zXIdpPlFsyTSPsCo6JNbepvR6TCbAIl6Zhz-ltnbN2rtDMHpUChAfJIKqaJNTV7OCtfBk6UL8CzrRWFlmJHLBzvmQU0cchPdsdbtu7XFjRSWvqeyng_1_OmvMZUvM0n-iKkYkgLnC0oVt1umgiEl0M-Q5OwFZWlSUYhO-F9_FWRKr2W8puXvJUsluWSQY_zkUbzyvYx8-0q1zhk5jkvHiyYXb1DABNo36dnk7nUdMZJ3duQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648548,\"updated\":1619648548,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "742", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:28 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "3cbb0be7-63e7-4fea-80da-3d4807f933a5", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5ba12ee4-5595-4283-8358-e4b0912975e8", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-\",\"deletedDate\":1619648548,\"scheduledPurgeDate\":1620253348,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/d5661a85382d4f5f8ca5aa56e5277494\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wIfL41vIUxRdUf181kQNMz9j5qTJ3orqSb8mxmQNeyRv2IsebcHUYcNFkycyOUt6QFuRj6pKhh--TRZJxwdqClGnoVB-q5_VMwHxBh6zXIdpPlFsyTSPsCo6JNbepvR6TCbAIl6Zhz-ltnbN2rtDMHpUChAfJIKqaJNTV7OCtfBk6UL8CzrRWFlmJHLBzvmQU0cchPdsdbtu7XFjRSWvqeyng_1_OmvMZUvM0n-iKkYkgLnC0oVt1umgiEl0M-Q5OwFZWlSUYhO-F9_FWRKr2W8puXvJUsluWSQY_zkUbzyvYx8-0q1zhk5jkvHiyYXb1DABNo36dnk7nUdMZJ3duQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648548,\"updated\":1619648548,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "929", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:28 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "544c26ec-4537-4cad-96aa-a64167f22cfe", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "9e8dcf19-d4bc-4ea6-ab50-b2d76f08bfd2", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "135", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:28 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "3c14ecb3-456c-4326-866a-4fd7895816a4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "1aaa0524-4b2b-4bee-aff5-2624035da126", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "135", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:28 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "330d9f45-99f2-4bae-9fbc-8f35df431307", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "af23da19-7c5a-4349-99db-75d56c344c19", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "135", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:31 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "15f93b7b-59ab-4da5-80d1-d7418b2b4b8e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c3285c31-f705-4d6f-a886-24165550f49b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "135", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:32 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "aee1bd75-abd5-4979-af3a-622237816916", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "1c0f34d9-a3fe-4fd4-bfd7-ba56c2f416bd", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "135", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:34 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e97cfcb0-fc5b-4aff-b821-4dccaaf6e301", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d8d26d0a-2f60-4809-beac-557479ef502c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "135", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:36 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "198042aa-93d2-4d9f-b8df-8c3047cf7433", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "337d14a4-c050-401f-906e-d2977d28f7dd", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "135", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:38 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "68f01428-ba22-43da-8ff2-bf32f320a1f2", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2fa8c1ec-5e55-46d5-a4e2-1209ecf344b8", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "135", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:41 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "b5e053eb-1651-41a7-9a4b-456ce4e5223e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "90b81ba2-95c5-419e-9187-4df58ae2ff20", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "135", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:43 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "47e8a20b-1148-45d1-8601-07f5ad733d7b", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4ad9de1e-cd41-4975-910a-8fa8fdd06d75", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "135", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:45 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "53032c06-1268-4022-abbe-2e76e3d6666c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3764bcfa-f7a1-4ddb-8c02-236e05106270", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "135", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:47 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "dd8083d8-90bb-4c04-813f-dc703355016a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "067b50c9-a7bc-4a15-9891-5ff928fdb65e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "135", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:49 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e4a7d977-6b5b-4ab3-bd25-ea60ff50f6d9", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "de90e275-cec5-403e-8ad7-4c9eb2449f88", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "135", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:51 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f76ba49f-ae76-46a3-bcea-e5d74d8e6f0c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ead9d607-7bc4-4cbb-a437-db6e2441acf0", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "135", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:54 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "88f9a3d9-c04a-4b74-ab1d-c40777cde130", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c017bfc2-65dd-48e9-8666-806da3f7d046", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "135", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:56 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ed287781-7e48-4f3b-a7ae-f5d0990b6263", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "bb70b7e1-ab47-4704-aa5d-944ecbefeada", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "135", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:58 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2b913360-5a67-4fc7-a34f-ada341c4c689", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a9eaf4f6-0b3e-4d23-8aae-59d2cf72644e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "135", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:00 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "0ed0b7d0-c1c7-4d0d-8dfa-30bbbec48641", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "77993d4e-0f6f-4cc2-bb29-b1b5f1ade3b5", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-\",\"deletedDate\":1619648548,\"scheduledPurgeDate\":1620253348,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/d5661a85382d4f5f8ca5aa56e5277494\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wIfL41vIUxRdUf181kQNMz9j5qTJ3orqSb8mxmQNeyRv2IsebcHUYcNFkycyOUt6QFuRj6pKhh--TRZJxwdqClGnoVB-q5_VMwHxBh6zXIdpPlFsyTSPsCo6JNbepvR6TCbAIl6Zhz-ltnbN2rtDMHpUChAfJIKqaJNTV7OCtfBk6UL8CzrRWFlmJHLBzvmQU0cchPdsdbtu7XFjRSWvqeyng_1_OmvMZUvM0n-iKkYkgLnC0oVt1umgiEl0M-Q5OwFZWlSUYhO-F9_FWRKr2W8puXvJUsluWSQY_zkUbzyvYx8-0q1zhk5jkvHiyYXb1DABNo36dnk7nUdMZJ3duQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648548,\"updated\":1619648548,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "929", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:02 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d97a54c5-7167-49f7-9173-ff8dd2446663", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ffcccc10-38a1-48ae-98eb-55c2910a9d8a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "355", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:02 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "cf13f475-de5e-40f9-a6bb-f0bb0e81c4e7", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "0cf5ac61-0b8c-4a91-93e9-b287e253a695", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/recover", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/d5661a85382d4f5f8ca5aa56e5277494\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wIfL41vIUxRdUf181kQNMz9j5qTJ3orqSb8mxmQNeyRv2IsebcHUYcNFkycyOUt6QFuRj6pKhh--TRZJxwdqClGnoVB-q5_VMwHxBh6zXIdpPlFsyTSPsCo6JNbepvR6TCbAIl6Zhz-ltnbN2rtDMHpUChAfJIKqaJNTV7OCtfBk6UL8CzrRWFlmJHLBzvmQU0cchPdsdbtu7XFjRSWvqeyng_1_OmvMZUvM0n-iKkYkgLnC0oVt1umgiEl0M-Q5OwFZWlSUYhO-F9_FWRKr2W8puXvJUsluWSQY_zkUbzyvYx8-0q1zhk5jkvHiyYXb1DABNo36dnk7nUdMZJ3duQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648548,\"updated\":1619648548,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "742", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:02 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "5817ad44-0c80-4350-9f80-0f69c3c5cfb5", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a8e67373-fdb1-43ac-a785-c8345beb4dde", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "355", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:02 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "cf303d43-52ef-4b46-a5bd-8ef7ba1f3522", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c60adef8-d9ea-43ac-a4b9-46fbb4677f9f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "355", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:03 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "213a3af7-0e84-4d84-8f5d-6b331fe32957", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e8cec66d-724b-4050-bb80-0650a0ae0011", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "355", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:03 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "cc36e5f3-0b53-492d-8ed1-d83a20133179", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "6efd1f8a-6305-491e-b7b7-8f6a2241d92e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "355", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:03 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "52ebb363-60c0-4bb2-8fd2-46c33fe185a1", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b69058ce-8f81-4880-b4ec-40bd47824820", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "355", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:05 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "bb48b53e-dc7e-40de-bb74-c1a25bdf23e4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "163210ce-fbdd-4cac-be5b-2e8378b560c4", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "355", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:07 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "23808e1c-5bd7-4ea1-8e7f-602acded25da", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "52dcb26c-2d87-4d9c-a35a-cf8f703094cc", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "355", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:09 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9b15e5cc-40a1-4be1-9a06-ca5e0120407e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "6675bdf1-fa4f-4da8-9d1e-ab467a140f1d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "355", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:11 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "7a34487b-d30f-40c3-b8a4-bea10600463e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "51526475-0d73-4472-bc3e-4f1240f936f1", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "355", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:13 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "bbf138fa-09fd-4408-9731-2a85fb87541b", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "058a2bcc-b3cb-493a-8392-c8d2289db9f6", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "355", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:15 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "8029413f-6537-4b93-a834-6aa81883cfa8", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "dcfc612f-d763-4cac-97fe-37a94598805a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "355", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:17 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ff883707-d27b-4388-8549-bb8c82f32014", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4b447464-230c-490e-ab4e-baa421c7b3d6", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "355", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:20 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "068e3982-f1e6-49e0-b968-e787d19a672a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a8601242-8b1a-4694-a673-095ca813e4fd", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "355", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:22 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9aa41da6-35f7-4a9b-9abe-586cf3594138", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "51c11cb3-c243-49aa-8926-71fb9b293a96", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "355", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:24 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "0d3c84fa-6e58-4d0d-804d-50a62dc984d1", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "856a1730-cad4-4812-8904-bd63dad50174", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/d5661a85382d4f5f8ca5aa56e5277494\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wIfL41vIUxRdUf181kQNMz9j5qTJ3orqSb8mxmQNeyRv2IsebcHUYcNFkycyOUt6QFuRj6pKhh--TRZJxwdqClGnoVB-q5_VMwHxBh6zXIdpPlFsyTSPsCo6JNbepvR6TCbAIl6Zhz-ltnbN2rtDMHpUChAfJIKqaJNTV7OCtfBk6UL8CzrRWFlmJHLBzvmQU0cchPdsdbtu7XFjRSWvqeyng_1_OmvMZUvM0n-iKkYkgLnC0oVt1umgiEl0M-Q5OwFZWlSUYhO-F9_FWRKr2W8puXvJUsluWSQY_zkUbzyvYx8-0q1zhk5jkvHiyYXb1DABNo36dnk7nUdMZJ3duQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648548,\"updated\":1619648548,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "742", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:26 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f0dccc54-63aa-4bed-9f38-cdc2829dd62c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "19dd8649-4751-4f3c-96e4-96c7073f2a5a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-\",\"deletedDate\":1619648606,\"scheduledPurgeDate\":1620253406,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/d5661a85382d4f5f8ca5aa56e5277494\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wIfL41vIUxRdUf181kQNMz9j5qTJ3orqSb8mxmQNeyRv2IsebcHUYcNFkycyOUt6QFuRj6pKhh--TRZJxwdqClGnoVB-q5_VMwHxBh6zXIdpPlFsyTSPsCo6JNbepvR6TCbAIl6Zhz-ltnbN2rtDMHpUChAfJIKqaJNTV7OCtfBk6UL8CzrRWFlmJHLBzvmQU0cchPdsdbtu7XFjRSWvqeyng_1_OmvMZUvM0n-iKkYkgLnC0oVt1umgiEl0M-Q5OwFZWlSUYhO-F9_FWRKr2W8puXvJUsluWSQY_zkUbzyvYx8-0q1zhk5jkvHiyYXb1DABNo36dnk7nUdMZJ3duQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648548,\"updated\":1619648548,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "929", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:26 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "78d2167d-f269-4595-a088-94b1545f2a0e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f3a651d1-4690-42cc-80d4-1a014ecd7c05", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "135", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:26 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "4ccb338c-2219-438b-b57c-05c2a2d3cf7a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "45c73555-5b48-436a-8e6b-8fb520879500", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "135", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:26 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "dbb09060-d7ac-46b5-9c67-d3df3469c5e6", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "47b55f01-ee4e-4de4-ae0c-187001a3c9d6", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "135", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:28 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f5a13361-5f0f-4229-a385-8333eb0e7087", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ec46f846-f4f7-4459-b97f-2f7cc4f4440f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "135", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:30 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "18c7af05-be15-47d2-a239-c965c40cce7a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "10c40f43-0edd-4681-9224-cd07c287e7f6", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "135", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:32 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "33fc3a02-1157-46f7-9996-1f7c3c8c2256", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "16587810-f944-4099-9303-5057273f7bcc", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "135", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:34 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "0f3c46e5-f2db-49a7-b17a-1e458e790bcd", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5cc8d93a-ab04-4fc3-a77f-ae1b71ffc52c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "135", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:37 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "b5a5aa7a-eece-4eed-b061-d0578122d47f", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "697b2aee-071e-4bdf-97b6-ac11da2680bb", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "135", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:39 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "6909c166-36aa-45f6-9d72-975cfe07beed", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "00345ebd-53c4-455f-9328-cbe096dced88", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "135", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:41 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9e25b716-e6c1-4d91-80ff-e62b556aebbb", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3c054dc7-a032-465b-ab26-785f170d4c0b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "135", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:43 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9263b829-62e1-41a7-9d1b-d0523e6538af", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "92112398-21ea-4c05-a707-f06eaad4a24c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "135", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:45 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "684ef3c5-1e14-4e69-9fb8-44d4b105c411", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "934a3b99-e24f-4dd6-92c4-6caddadd3cb8", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-\",\"deletedDate\":1619648606,\"scheduledPurgeDate\":1620253406,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/d5661a85382d4f5f8ca5aa56e5277494\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wIfL41vIUxRdUf181kQNMz9j5qTJ3orqSb8mxmQNeyRv2IsebcHUYcNFkycyOUt6QFuRj6pKhh--TRZJxwdqClGnoVB-q5_VMwHxBh6zXIdpPlFsyTSPsCo6JNbepvR6TCbAIl6Zhz-ltnbN2rtDMHpUChAfJIKqaJNTV7OCtfBk6UL8CzrRWFlmJHLBzvmQU0cchPdsdbtu7XFjRSWvqeyng_1_OmvMZUvM0n-iKkYkgLnC0oVt1umgiEl0M-Q5OwFZWlSUYhO-F9_FWRKr2W8puXvJUsluWSQY_zkUbzyvYx8-0q1zhk5jkvHiyYXb1DABNo36dnk7nUdMZJ3duQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648548,\"updated\":1619648548,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "929", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:47 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "91016308-79fd-4ea9-be4c-5714aba3bab5", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ae7ecaf4-05a9-458d-abac-acc5b1859f8c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:23:48 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "a7bccd82-e460-40ee-b550-2f8d09de0722", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d460f094-1b75-4046-b8a7-45699057cf25", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:28 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - WUS2 ProdSlices", - "x-ms-request-id": "ee1c71aa-506c-461b-bfc8-fcac278f7800" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\"}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/d5661a85382d4f5f8ca5aa56e5277494\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wIfL41vIUxRdUf181kQNMz9j5qTJ3orqSb8mxmQNeyRv2IsebcHUYcNFkycyOUt6QFuRj6pKhh--TRZJxwdqClGnoVB-q5_VMwHxBh6zXIdpPlFsyTSPsCo6JNbepvR6TCbAIl6Zhz-ltnbN2rtDMHpUChAfJIKqaJNTV7OCtfBk6UL8CzrRWFlmJHLBzvmQU0cchPdsdbtu7XFjRSWvqeyng_1_OmvMZUvM0n-iKkYkgLnC0oVt1umgiEl0M-Q5OwFZWlSUYhO-F9_FWRKr2W8puXvJUsluWSQY_zkUbzyvYx8-0q1zhk5jkvHiyYXb1DABNo36dnk7nUdMZJ3duQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648548,\"updated\":1619648548,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "742", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:28 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "3cbb0be7-63e7-4fea-80da-3d4807f933a5", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5ba12ee4-5595-4283-8358-e4b0912975e8", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-\",\"deletedDate\":1619648548,\"scheduledPurgeDate\":1620253348,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/d5661a85382d4f5f8ca5aa56e5277494\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wIfL41vIUxRdUf181kQNMz9j5qTJ3orqSb8mxmQNeyRv2IsebcHUYcNFkycyOUt6QFuRj6pKhh--TRZJxwdqClGnoVB-q5_VMwHxBh6zXIdpPlFsyTSPsCo6JNbepvR6TCbAIl6Zhz-ltnbN2rtDMHpUChAfJIKqaJNTV7OCtfBk6UL8CzrRWFlmJHLBzvmQU0cchPdsdbtu7XFjRSWvqeyng_1_OmvMZUvM0n-iKkYkgLnC0oVt1umgiEl0M-Q5OwFZWlSUYhO-F9_FWRKr2W8puXvJUsluWSQY_zkUbzyvYx8-0q1zhk5jkvHiyYXb1DABNo36dnk7nUdMZJ3duQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648548,\"updated\":1619648548,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "929", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:28 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "544c26ec-4537-4cad-96aa-a64167f22cfe", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "9e8dcf19-d4bc-4ea6-ab50-b2d76f08bfd2", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "135", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:28 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "3c14ecb3-456c-4326-866a-4fd7895816a4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "1aaa0524-4b2b-4bee-aff5-2624035da126", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "135", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:28 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "330d9f45-99f2-4bae-9fbc-8f35df431307", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "af23da19-7c5a-4349-99db-75d56c344c19", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "135", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:31 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "15f93b7b-59ab-4da5-80d1-d7418b2b4b8e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c3285c31-f705-4d6f-a886-24165550f49b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "135", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:32 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "aee1bd75-abd5-4979-af3a-622237816916", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "1c0f34d9-a3fe-4fd4-bfd7-ba56c2f416bd", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "135", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:34 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e97cfcb0-fc5b-4aff-b821-4dccaaf6e301", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d8d26d0a-2f60-4809-beac-557479ef502c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "135", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:36 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "198042aa-93d2-4d9f-b8df-8c3047cf7433", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "337d14a4-c050-401f-906e-d2977d28f7dd", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "135", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:38 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "68f01428-ba22-43da-8ff2-bf32f320a1f2", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2fa8c1ec-5e55-46d5-a4e2-1209ecf344b8", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "135", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:41 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "b5e053eb-1651-41a7-9a4b-456ce4e5223e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "90b81ba2-95c5-419e-9187-4df58ae2ff20", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "135", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:43 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "47e8a20b-1148-45d1-8601-07f5ad733d7b", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4ad9de1e-cd41-4975-910a-8fa8fdd06d75", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "135", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:45 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "53032c06-1268-4022-abbe-2e76e3d6666c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3764bcfa-f7a1-4ddb-8c02-236e05106270", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "135", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:47 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "dd8083d8-90bb-4c04-813f-dc703355016a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "067b50c9-a7bc-4a15-9891-5ff928fdb65e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "135", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:49 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e4a7d977-6b5b-4ab3-bd25-ea60ff50f6d9", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "de90e275-cec5-403e-8ad7-4c9eb2449f88", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "135", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:51 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f76ba49f-ae76-46a3-bcea-e5d74d8e6f0c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ead9d607-7bc4-4cbb-a437-db6e2441acf0", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "135", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:54 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "88f9a3d9-c04a-4b74-ab1d-c40777cde130", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c017bfc2-65dd-48e9-8666-806da3f7d046", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "135", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:56 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ed287781-7e48-4f3b-a7ae-f5d0990b6263", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "bb70b7e1-ab47-4704-aa5d-944ecbefeada", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "135", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:58 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2b913360-5a67-4fc7-a34f-ada341c4c689", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a9eaf4f6-0b3e-4d23-8aae-59d2cf72644e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "135", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:00 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "0ed0b7d0-c1c7-4d0d-8dfa-30bbbec48641", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "77993d4e-0f6f-4cc2-bb29-b1b5f1ade3b5", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-\",\"deletedDate\":1619648548,\"scheduledPurgeDate\":1620253348,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/d5661a85382d4f5f8ca5aa56e5277494\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wIfL41vIUxRdUf181kQNMz9j5qTJ3orqSb8mxmQNeyRv2IsebcHUYcNFkycyOUt6QFuRj6pKhh--TRZJxwdqClGnoVB-q5_VMwHxBh6zXIdpPlFsyTSPsCo6JNbepvR6TCbAIl6Zhz-ltnbN2rtDMHpUChAfJIKqaJNTV7OCtfBk6UL8CzrRWFlmJHLBzvmQU0cchPdsdbtu7XFjRSWvqeyng_1_OmvMZUvM0n-iKkYkgLnC0oVt1umgiEl0M-Q5OwFZWlSUYhO-F9_FWRKr2W8puXvJUsluWSQY_zkUbzyvYx8-0q1zhk5jkvHiyYXb1DABNo36dnk7nUdMZJ3duQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648548,\"updated\":1619648548,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "929", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:02 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d97a54c5-7167-49f7-9173-ff8dd2446663", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ffcccc10-38a1-48ae-98eb-55c2910a9d8a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "355", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:02 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "cf13f475-de5e-40f9-a6bb-f0bb0e81c4e7", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "0cf5ac61-0b8c-4a91-93e9-b287e253a695", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/recover", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/d5661a85382d4f5f8ca5aa56e5277494\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wIfL41vIUxRdUf181kQNMz9j5qTJ3orqSb8mxmQNeyRv2IsebcHUYcNFkycyOUt6QFuRj6pKhh--TRZJxwdqClGnoVB-q5_VMwHxBh6zXIdpPlFsyTSPsCo6JNbepvR6TCbAIl6Zhz-ltnbN2rtDMHpUChAfJIKqaJNTV7OCtfBk6UL8CzrRWFlmJHLBzvmQU0cchPdsdbtu7XFjRSWvqeyng_1_OmvMZUvM0n-iKkYkgLnC0oVt1umgiEl0M-Q5OwFZWlSUYhO-F9_FWRKr2W8puXvJUsluWSQY_zkUbzyvYx8-0q1zhk5jkvHiyYXb1DABNo36dnk7nUdMZJ3duQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648548,\"updated\":1619648548,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "742", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:02 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "5817ad44-0c80-4350-9f80-0f69c3c5cfb5", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a8e67373-fdb1-43ac-a785-c8345beb4dde", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "355", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:02 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "cf303d43-52ef-4b46-a5bd-8ef7ba1f3522", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c60adef8-d9ea-43ac-a4b9-46fbb4677f9f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "355", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:03 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "213a3af7-0e84-4d84-8f5d-6b331fe32957", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e8cec66d-724b-4050-bb80-0650a0ae0011", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "355", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:03 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "cc36e5f3-0b53-492d-8ed1-d83a20133179", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "6efd1f8a-6305-491e-b7b7-8f6a2241d92e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "355", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:03 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "52ebb363-60c0-4bb2-8fd2-46c33fe185a1", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b69058ce-8f81-4880-b4ec-40bd47824820", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "355", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:05 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "bb48b53e-dc7e-40de-bb74-c1a25bdf23e4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "163210ce-fbdd-4cac-be5b-2e8378b560c4", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "355", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:07 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "23808e1c-5bd7-4ea1-8e7f-602acded25da", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "52dcb26c-2d87-4d9c-a35a-cf8f703094cc", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "355", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:09 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9b15e5cc-40a1-4be1-9a06-ca5e0120407e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "6675bdf1-fa4f-4da8-9d1e-ab467a140f1d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "355", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:11 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "7a34487b-d30f-40c3-b8a4-bea10600463e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "51526475-0d73-4472-bc3e-4f1240f936f1", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "355", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:13 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "bbf138fa-09fd-4408-9731-2a85fb87541b", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "058a2bcc-b3cb-493a-8392-c8d2289db9f6", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "355", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:15 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "8029413f-6537-4b93-a834-6aa81883cfa8", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "dcfc612f-d763-4cac-97fe-37a94598805a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "355", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:17 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ff883707-d27b-4388-8549-bb8c82f32014", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4b447464-230c-490e-ab4e-baa421c7b3d6", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "355", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:20 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "068e3982-f1e6-49e0-b968-e787d19a672a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a8601242-8b1a-4694-a673-095ca813e4fd", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "355", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:22 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9aa41da6-35f7-4a9b-9abe-586cf3594138", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "51c11cb3-c243-49aa-8926-71fb9b293a96", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canresumefromastoppedpoller- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "355", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:24 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "0d3c84fa-6e58-4d0d-804d-50a62dc984d1", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "856a1730-cad4-4812-8904-bd63dad50174", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/d5661a85382d4f5f8ca5aa56e5277494\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wIfL41vIUxRdUf181kQNMz9j5qTJ3orqSb8mxmQNeyRv2IsebcHUYcNFkycyOUt6QFuRj6pKhh--TRZJxwdqClGnoVB-q5_VMwHxBh6zXIdpPlFsyTSPsCo6JNbepvR6TCbAIl6Zhz-ltnbN2rtDMHpUChAfJIKqaJNTV7OCtfBk6UL8CzrRWFlmJHLBzvmQU0cchPdsdbtu7XFjRSWvqeyng_1_OmvMZUvM0n-iKkYkgLnC0oVt1umgiEl0M-Q5OwFZWlSUYhO-F9_FWRKr2W8puXvJUsluWSQY_zkUbzyvYx8-0q1zhk5jkvHiyYXb1DABNo36dnk7nUdMZJ3duQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648548,\"updated\":1619648548,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "742", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:26 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f0dccc54-63aa-4bed-9f38-cdc2829dd62c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "19dd8649-4751-4f3c-96e4-96c7073f2a5a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-\",\"deletedDate\":1619648606,\"scheduledPurgeDate\":1620253406,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/d5661a85382d4f5f8ca5aa56e5277494\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wIfL41vIUxRdUf181kQNMz9j5qTJ3orqSb8mxmQNeyRv2IsebcHUYcNFkycyOUt6QFuRj6pKhh--TRZJxwdqClGnoVB-q5_VMwHxBh6zXIdpPlFsyTSPsCo6JNbepvR6TCbAIl6Zhz-ltnbN2rtDMHpUChAfJIKqaJNTV7OCtfBk6UL8CzrRWFlmJHLBzvmQU0cchPdsdbtu7XFjRSWvqeyng_1_OmvMZUvM0n-iKkYkgLnC0oVt1umgiEl0M-Q5OwFZWlSUYhO-F9_FWRKr2W8puXvJUsluWSQY_zkUbzyvYx8-0q1zhk5jkvHiyYXb1DABNo36dnk7nUdMZJ3duQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648548,\"updated\":1619648548,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "929", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:26 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "78d2167d-f269-4595-a088-94b1545f2a0e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f3a651d1-4690-42cc-80d4-1a014ecd7c05", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "135", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:26 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "4ccb338c-2219-438b-b57c-05c2a2d3cf7a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "45c73555-5b48-436a-8e6b-8fb520879500", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "135", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:26 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "dbb09060-d7ac-46b5-9c67-d3df3469c5e6", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "47b55f01-ee4e-4de4-ae0c-187001a3c9d6", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "135", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:28 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f5a13361-5f0f-4229-a385-8333eb0e7087", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ec46f846-f4f7-4459-b97f-2f7cc4f4440f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "135", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:30 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "18c7af05-be15-47d2-a239-c965c40cce7a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "10c40f43-0edd-4681-9224-cd07c287e7f6", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "135", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:32 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "33fc3a02-1157-46f7-9996-1f7c3c8c2256", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "16587810-f944-4099-9303-5057273f7bcc", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "135", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:34 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "0f3c46e5-f2db-49a7-b17a-1e458e790bcd", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5cc8d93a-ab04-4fc3-a77f-ae1b71ffc52c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "135", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:37 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "b5a5aa7a-eece-4eed-b061-d0578122d47f", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "697b2aee-071e-4bdf-97b6-ac11da2680bb", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "135", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:39 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "6909c166-36aa-45f6-9d72-975cfe07beed", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "00345ebd-53c4-455f-9328-cbe096dced88", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "135", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:41 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9e25b716-e6c1-4d91-80ff-e62b556aebbb", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3c054dc7-a032-465b-ab26-785f170d4c0b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "135", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:43 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9263b829-62e1-41a7-9d1b-d0523e6538af", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "92112398-21ea-4c05-a707-f06eaad4a24c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canresumefromastoppedpoller-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "135", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:45 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "684ef3c5-1e14-4e69-9fb8-44d4b105c411", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "934a3b99-e24f-4dd6-92c4-6caddadd3cb8", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-\",\"deletedDate\":1619648606,\"scheduledPurgeDate\":1620253406,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-/d5661a85382d4f5f8ca5aa56e5277494\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"wIfL41vIUxRdUf181kQNMz9j5qTJ3orqSb8mxmQNeyRv2IsebcHUYcNFkycyOUt6QFuRj6pKhh--TRZJxwdqClGnoVB-q5_VMwHxBh6zXIdpPlFsyTSPsCo6JNbepvR6TCbAIl6Zhz-ltnbN2rtDMHpUChAfJIKqaJNTV7OCtfBk6UL8CzrRWFlmJHLBzvmQU0cchPdsdbtu7XFjRSWvqeyng_1_OmvMZUvM0n-iKkYkgLnC0oVt1umgiEl0M-Q5OwFZWlSUYhO-F9_FWRKr2W8puXvJUsluWSQY_zkUbzyvYx8-0q1zhk5jkvHiyYXb1DABNo36dnk7nUdMZJ3duQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648548,\"updated\":1619648548,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "929", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:47 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "91016308-79fd-4ea9-be4c-5714aba3bab5", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ae7ecaf4-05a9-458d-abac-acc5b1859f8c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canresumefromastoppedpoller-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:23:48 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "a7bccd82-e460-40ee-b550-2f8d09de0722", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d460f094-1b75-4046-b8a7-45699057cf25", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "4e008785b313f28e018d318617c4a977" -} \ No newline at end of file + "hash": "4e008785b313f28e018d318617c4a977" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__long_running_operations__recoverdelete/recording_can_wait_until_a_key_is_recovered.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__long_running_operations__recoverdelete/recording_can_wait_until_a_key_is_recovered.json index f11fa68a23e1..b2b1528b6df3 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__long_running_operations__recoverdelete/recording_can_wait_until_a_key_is_recovered.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__long_running_operations__recoverdelete/recording_can_wait_until_a_key_is_recovered.json @@ -1,1436 +1,1436 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:02 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "3a8c0f1d-4fdf-418a-8ec2-259e63128b6d", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "21dc03ed-6ec3-4327-abf3-62b973ca5dbb", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:02 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "3a8c0f1d-4fdf-418a-8ec2-259e63128b6d", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "21dc03ed-6ec3-4327-abf3-62b973ca5dbb", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:02 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", + "x-ms-request-id": "7f75ea5c-9049-4834-a7a4-2c2b98964a01" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\"}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/0ed38ffe079244e8a079845f3d760a69\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"z5aeR0hCvy28NJfGfMjgBTz3e7AStfqEZCj4ehslRlFKN6F3jc_E-VRaBHY52ZZMKgLwEKMXbOl3eEc8dI4hrRRHTq-2Xp-FlyI5lVEu_q9wg1FUHeaqdFZXgZct-D_XeE527AN68KOfxvyYcHEkoxzRFkdmS33JTWUTdc8mit2nhsoLsB7VHY6YasvWQ-YDGAjGygLKTrZMY6pxj2nTHs23PytduW-htr3GQ1DpyQBku3i-4wovMFONW6_AuECYyGiYjNFJiOKIwGmgzsYuVIx1cBr92td1JMbuGXF1lSS--_SQ2PhaqiWuNnGC6_x4-4d4DSXK0P73uLcq1Z2tkQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648463,\"updated\":1619648463,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "743", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:03 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "3a8c0f1d-4fdf-418a-8ec2-259e63128b6d", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "da305880-ad6f-4a47-ac5f-a5bda25ce3ea", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\",\"deletedDate\":1619648463,\"scheduledPurgeDate\":1620253263,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/0ed38ffe079244e8a079845f3d760a69\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"z5aeR0hCvy28NJfGfMjgBTz3e7AStfqEZCj4ehslRlFKN6F3jc_E-VRaBHY52ZZMKgLwEKMXbOl3eEc8dI4hrRRHTq-2Xp-FlyI5lVEu_q9wg1FUHeaqdFZXgZct-D_XeE527AN68KOfxvyYcHEkoxzRFkdmS33JTWUTdc8mit2nhsoLsB7VHY6YasvWQ-YDGAjGygLKTrZMY6pxj2nTHs23PytduW-htr3GQ1DpyQBku3i-4wovMFONW6_AuECYyGiYjNFJiOKIwGmgzsYuVIx1cBr92td1JMbuGXF1lSS--_SQ2PhaqiWuNnGC6_x4-4d4DSXK0P73uLcq1Z2tkQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648463,\"updated\":1619648463,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "931", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:03 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "218e6b35-8b5e-4c50-9324-32a0e3c43f89", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c6fb0c6d-770c-4072-8504-498f5830a277", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:03 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "952b478e-46d0-4de7-b19b-170adca3ae64", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "1ac9b50c-cc9f-4131-a7dc-54b063458245", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:03 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1297c9b9-2cdb-417a-b45e-abb1456ca63a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "9605d40a-a4ad-483f-a43e-205fddb319ba", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:05 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "21bb763d-4126-40d5-ae02-bf26fb9dd74b", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ffd4e35d-acbf-4ebc-9341-0b7eeb94f159", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:07 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "6173c9fb-4a01-448c-9079-4bc6619e666e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "11e08e91-50f4-471c-800b-45e236193a9c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:09 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d1d99094-8e85-4d91-bd97-7feaf5fe5d2b", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "9da36437-4fa8-402a-aaae-4c8f3b8d4d9f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:12 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1ada9e49-e119-4174-a129-9dd85d0dd8c0", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3dbfc86f-e220-41cc-917a-f30c8185830c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:14 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2dc9912c-7a36-44cc-bd7d-d83f58bb5256", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "279af879-f33a-4001-b297-ceba489d4bbe", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:16 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f42f9916-ea5b-4319-bd8f-0200490cb4fb", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "30ffafb8-5fda-4c76-9c62-fc42dd7b15be", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:18 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ca051cd6-bfd6-40ba-af05-cd83352bef67", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "88eadba6-6dd2-4436-948d-115ed347cb23", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:20 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "878ecb34-242f-46a9-841e-4ea7e2fb55bd", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "eaeec386-5bb3-485e-98d0-500b4f31399f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:23 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1bf9102a-4fe8-4cdd-ad61-6891f18c9819", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "51cd4ebd-3568-4807-be0e-e1f9f3a98e9c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:25 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "98378233-c6cc-47be-b03f-14567bedc9b0", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "75c9596e-89e4-4a22-89a8-8abfb19ccdf6", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:26 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "be9e9277-a192-4142-bd6a-e8b8756145fa", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "43f6a7e4-2694-434b-918e-307288724fbc", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\",\"deletedDate\":1619648463,\"scheduledPurgeDate\":1620253263,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/0ed38ffe079244e8a079845f3d760a69\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"z5aeR0hCvy28NJfGfMjgBTz3e7AStfqEZCj4ehslRlFKN6F3jc_E-VRaBHY52ZZMKgLwEKMXbOl3eEc8dI4hrRRHTq-2Xp-FlyI5lVEu_q9wg1FUHeaqdFZXgZct-D_XeE527AN68KOfxvyYcHEkoxzRFkdmS33JTWUTdc8mit2nhsoLsB7VHY6YasvWQ-YDGAjGygLKTrZMY6pxj2nTHs23PytduW-htr3GQ1DpyQBku3i-4wovMFONW6_AuECYyGiYjNFJiOKIwGmgzsYuVIx1cBr92td1JMbuGXF1lSS--_SQ2PhaqiWuNnGC6_x4-4d4DSXK0P73uLcq1Z2tkQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648463,\"updated\":1619648463,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "931", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:29 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "16d3f29c-044a-4764-a428-82fcaaeef639", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b11ebed7-b0d2-4d9d-a4e1-ba433f50e8fe", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "356", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:29 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "00fc920d-cdb7-4d37-89aa-cd951327cfec", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "8b98b95b-febc-49fd-adbe-b9930840c4f7", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/recover", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/0ed38ffe079244e8a079845f3d760a69\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"z5aeR0hCvy28NJfGfMjgBTz3e7AStfqEZCj4ehslRlFKN6F3jc_E-VRaBHY52ZZMKgLwEKMXbOl3eEc8dI4hrRRHTq-2Xp-FlyI5lVEu_q9wg1FUHeaqdFZXgZct-D_XeE527AN68KOfxvyYcHEkoxzRFkdmS33JTWUTdc8mit2nhsoLsB7VHY6YasvWQ-YDGAjGygLKTrZMY6pxj2nTHs23PytduW-htr3GQ1DpyQBku3i-4wovMFONW6_AuECYyGiYjNFJiOKIwGmgzsYuVIx1cBr92td1JMbuGXF1lSS--_SQ2PhaqiWuNnGC6_x4-4d4DSXK0P73uLcq1Z2tkQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648463,\"updated\":1619648463,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "743", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:29 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f2692698-753d-4f37-98fa-818c6924f1e0", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c656fa08-e8ce-4437-b9c4-55a19d2bac92", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "356", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:29 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9d8b4e7f-afbe-4249-bb80-c6fafccb3736", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2be618fe-ca7f-4833-a4b8-26aa639a2301", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "356", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:30 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e81c791a-e987-4d3b-b532-9c86ca2b3613", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5aefd12c-431b-4a84-9fe4-126eef296aff", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "356", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:32 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "b82b2d75-71cb-4c76-b01b-bb8e49e887c9", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "005a0a3d-5998-4951-8861-b86a88cc1d3e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "356", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:33 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "76a4810e-765c-4eb3-bc1a-9323ede860eb", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2650592d-186a-409c-86b0-ce974d6a765d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "356", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:35 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "daf7c8b1-e03d-4f04-b1e0-7f997957e04d", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "42035444-5ac4-4dd9-ab5b-d5117e726315", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "356", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:38 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "4f9b4bbd-fac9-4808-b630-d95ea3acea0d", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "63e696a2-f995-4bdf-bcab-54a0ee83288b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "356", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:40 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "18047c94-a681-4238-a488-18035bb69f65", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5b867b7b-dd0b-4148-89b8-0ce1221845e3", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "356", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:42 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "75b8c71d-9971-4526-9059-2212e0f0eb95", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "9176ffb4-5218-4fac-b01e-d0bfe28e68be", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "356", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:44 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2711cb39-1bf6-4e28-b4ae-0b0b34385b7a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "98d46e55-75a6-47c5-8143-05a7ac5d5d12", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "356", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:46 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d5a9c69f-669b-4509-9975-a870ad092abf", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "96578fd8-bf52-44bc-8dde-26ed5c0e671b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "356", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:48 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d222ef83-d751-4719-9228-8f0e0419890b", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "0c963888-fede-46bb-955d-292cdc2270e8", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "356", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:51 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "6fd91168-97ad-4ff3-b676-1bf47ecd1dbb", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "6351f9e6-93f7-4500-8c46-21b095bfa899", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "356", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:53 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "300522cb-13dd-4355-98bf-2a824655cb9f", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e07db861-9e98-4b8f-84d0-b8ed69c09fb9", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "356", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:55 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "a3944f51-4a87-4cb2-927e-3dcbaee681bf", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "46e4c500-1143-44a8-9852-43e05c55061b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "356", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:57 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "873c06ba-107a-41bf-a8e2-381efcb50dd2", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e8a37d56-185c-4fe0-a647-111bfd571323", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "356", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:21:59 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "621ed816-05ea-46ba-8bc1-2d746778b997", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "6ddedd9e-37e8-44a7-98b0-aeae76204ec5", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "356", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:01 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2a14ef2b-040d-4666-8c30-90c5034ae1a5", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f4814c88-7780-4723-86ab-ea9eff2e6fa9", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/0ed38ffe079244e8a079845f3d760a69\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"z5aeR0hCvy28NJfGfMjgBTz3e7AStfqEZCj4ehslRlFKN6F3jc_E-VRaBHY52ZZMKgLwEKMXbOl3eEc8dI4hrRRHTq-2Xp-FlyI5lVEu_q9wg1FUHeaqdFZXgZct-D_XeE527AN68KOfxvyYcHEkoxzRFkdmS33JTWUTdc8mit2nhsoLsB7VHY6YasvWQ-YDGAjGygLKTrZMY6pxj2nTHs23PytduW-htr3GQ1DpyQBku3i-4wovMFONW6_AuECYyGiYjNFJiOKIwGmgzsYuVIx1cBr92td1JMbuGXF1lSS--_SQ2PhaqiWuNnGC6_x4-4d4DSXK0P73uLcq1Z2tkQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648463,\"updated\":1619648463,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "743", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:02 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2900cf37-dee2-49d5-97f1-1e32a56f189e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c3765bf6-3b1a-4208-a480-d272ccfea899", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\",\"deletedDate\":1619648524,\"scheduledPurgeDate\":1620253324,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/0ed38ffe079244e8a079845f3d760a69\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"z5aeR0hCvy28NJfGfMjgBTz3e7AStfqEZCj4ehslRlFKN6F3jc_E-VRaBHY52ZZMKgLwEKMXbOl3eEc8dI4hrRRHTq-2Xp-FlyI5lVEu_q9wg1FUHeaqdFZXgZct-D_XeE527AN68KOfxvyYcHEkoxzRFkdmS33JTWUTdc8mit2nhsoLsB7VHY6YasvWQ-YDGAjGygLKTrZMY6pxj2nTHs23PytduW-htr3GQ1DpyQBku3i-4wovMFONW6_AuECYyGiYjNFJiOKIwGmgzsYuVIx1cBr92td1JMbuGXF1lSS--_SQ2PhaqiWuNnGC6_x4-4d4DSXK0P73uLcq1Z2tkQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648463,\"updated\":1619648463,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "931", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:04 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9a0210d3-1a00-4015-8775-33d65ee8840e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "581d3887-02c9-41ed-8e9c-8738f15dfb08", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:04 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "adbc92f7-c907-47f2-8f99-e83095bb9e01", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d38b6151-58b0-453c-8976-c63fc70dcc2d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:04 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f0156658-a43c-460b-bcf8-d9c3b796dc79", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "30ce6b86-0d3c-47ab-a3e4-aec5a62374b3", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:06 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d51875cc-9759-4303-99db-6d3ad52ff427", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "80058ce7-0b27-4c61-a2e7-5aabcdb3da5a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:08 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1875f02d-4931-4145-9602-9859d5bb8fc3", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e9d2bc53-22ea-48c3-895c-14116f3e2f74", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:10 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d57fde41-083b-4b67-a44e-66a59a519792", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "94f4c5ee-0a5b-4c2b-a52f-97942e9453a3", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:12 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f251c3e1-d390-455a-b2b0-efcafaf89795", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "7e172b88-b2d5-435d-ba78-ca47b2b8fe01", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:14 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "0e76338b-f21e-4594-95fc-620157a3a327", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a1d8a0a2-5310-4005-9448-e6bf875d25d0", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:16 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ffdce6d8-5bec-4a1d-bd39-5337517fb079", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "cd05493f-a6e1-430d-bc97-e1589f4f7252", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:18 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "81d746f7-5f40-4fe5-a2d7-c2bf3375836e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "22992d09-10a0-4665-b1a1-c0ba76104f02", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:20 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e39f0533-8cde-4d79-9b50-9df8e788d563", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "7d094df8-e9a2-4c76-b1fd-635075cd7776", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:22 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "fa452dc7-5054-4f9f-b20e-d7c492142975", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "6a802084-eb8d-431b-93e4-a8d6475cc133", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:25 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f09c3039-6376-4a2a-955b-1a69272482b4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c75dcfaa-58d4-4ef3-a272-cfb6a2c8f5a5", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\",\"deletedDate\":1619648524,\"scheduledPurgeDate\":1620253324,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/0ed38ffe079244e8a079845f3d760a69\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"z5aeR0hCvy28NJfGfMjgBTz3e7AStfqEZCj4ehslRlFKN6F3jc_E-VRaBHY52ZZMKgLwEKMXbOl3eEc8dI4hrRRHTq-2Xp-FlyI5lVEu_q9wg1FUHeaqdFZXgZct-D_XeE527AN68KOfxvyYcHEkoxzRFkdmS33JTWUTdc8mit2nhsoLsB7VHY6YasvWQ-YDGAjGygLKTrZMY6pxj2nTHs23PytduW-htr3GQ1DpyQBku3i-4wovMFONW6_AuECYyGiYjNFJiOKIwGmgzsYuVIx1cBr92td1JMbuGXF1lSS--_SQ2PhaqiWuNnGC6_x4-4d4DSXK0P73uLcq1Z2tkQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648463,\"updated\":1619648463,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "931", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:22:27 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ff35a069-7a59-4de7-9f19-490dc0d1f7a9", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "893deca2-fc89-42b6-96fb-0e90d7709259", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:22:27 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ac75cfb3-63fa-44b0-9d59-fab2d7083abd", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "8b64011a-ad6d-419a-a379-e79276e34285", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:02 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", - "x-ms-request-id": "7f75ea5c-9049-4834-a7a4-2c2b98964a01" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\"}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/0ed38ffe079244e8a079845f3d760a69\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"z5aeR0hCvy28NJfGfMjgBTz3e7AStfqEZCj4ehslRlFKN6F3jc_E-VRaBHY52ZZMKgLwEKMXbOl3eEc8dI4hrRRHTq-2Xp-FlyI5lVEu_q9wg1FUHeaqdFZXgZct-D_XeE527AN68KOfxvyYcHEkoxzRFkdmS33JTWUTdc8mit2nhsoLsB7VHY6YasvWQ-YDGAjGygLKTrZMY6pxj2nTHs23PytduW-htr3GQ1DpyQBku3i-4wovMFONW6_AuECYyGiYjNFJiOKIwGmgzsYuVIx1cBr92td1JMbuGXF1lSS--_SQ2PhaqiWuNnGC6_x4-4d4DSXK0P73uLcq1Z2tkQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648463,\"updated\":1619648463,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "743", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:03 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "3a8c0f1d-4fdf-418a-8ec2-259e63128b6d", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "da305880-ad6f-4a47-ac5f-a5bda25ce3ea", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\",\"deletedDate\":1619648463,\"scheduledPurgeDate\":1620253263,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/0ed38ffe079244e8a079845f3d760a69\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"z5aeR0hCvy28NJfGfMjgBTz3e7AStfqEZCj4ehslRlFKN6F3jc_E-VRaBHY52ZZMKgLwEKMXbOl3eEc8dI4hrRRHTq-2Xp-FlyI5lVEu_q9wg1FUHeaqdFZXgZct-D_XeE527AN68KOfxvyYcHEkoxzRFkdmS33JTWUTdc8mit2nhsoLsB7VHY6YasvWQ-YDGAjGygLKTrZMY6pxj2nTHs23PytduW-htr3GQ1DpyQBku3i-4wovMFONW6_AuECYyGiYjNFJiOKIwGmgzsYuVIx1cBr92td1JMbuGXF1lSS--_SQ2PhaqiWuNnGC6_x4-4d4DSXK0P73uLcq1Z2tkQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648463,\"updated\":1619648463,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "931", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:03 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "218e6b35-8b5e-4c50-9324-32a0e3c43f89", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c6fb0c6d-770c-4072-8504-498f5830a277", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:03 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "952b478e-46d0-4de7-b19b-170adca3ae64", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "1ac9b50c-cc9f-4131-a7dc-54b063458245", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:03 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1297c9b9-2cdb-417a-b45e-abb1456ca63a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "9605d40a-a4ad-483f-a43e-205fddb319ba", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:05 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "21bb763d-4126-40d5-ae02-bf26fb9dd74b", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ffd4e35d-acbf-4ebc-9341-0b7eeb94f159", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:07 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "6173c9fb-4a01-448c-9079-4bc6619e666e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "11e08e91-50f4-471c-800b-45e236193a9c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:09 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d1d99094-8e85-4d91-bd97-7feaf5fe5d2b", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "9da36437-4fa8-402a-aaae-4c8f3b8d4d9f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:12 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1ada9e49-e119-4174-a129-9dd85d0dd8c0", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3dbfc86f-e220-41cc-917a-f30c8185830c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:14 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2dc9912c-7a36-44cc-bd7d-d83f58bb5256", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "279af879-f33a-4001-b297-ceba489d4bbe", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:16 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f42f9916-ea5b-4319-bd8f-0200490cb4fb", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "30ffafb8-5fda-4c76-9c62-fc42dd7b15be", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:18 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ca051cd6-bfd6-40ba-af05-cd83352bef67", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "88eadba6-6dd2-4436-948d-115ed347cb23", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:20 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "878ecb34-242f-46a9-841e-4ea7e2fb55bd", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "eaeec386-5bb3-485e-98d0-500b4f31399f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:23 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1bf9102a-4fe8-4cdd-ad61-6891f18c9819", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "51cd4ebd-3568-4807-be0e-e1f9f3a98e9c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:25 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "98378233-c6cc-47be-b03f-14567bedc9b0", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "75c9596e-89e4-4a22-89a8-8abfb19ccdf6", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:26 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "be9e9277-a192-4142-bd6a-e8b8756145fa", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "43f6a7e4-2694-434b-918e-307288724fbc", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\",\"deletedDate\":1619648463,\"scheduledPurgeDate\":1620253263,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/0ed38ffe079244e8a079845f3d760a69\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"z5aeR0hCvy28NJfGfMjgBTz3e7AStfqEZCj4ehslRlFKN6F3jc_E-VRaBHY52ZZMKgLwEKMXbOl3eEc8dI4hrRRHTq-2Xp-FlyI5lVEu_q9wg1FUHeaqdFZXgZct-D_XeE527AN68KOfxvyYcHEkoxzRFkdmS33JTWUTdc8mit2nhsoLsB7VHY6YasvWQ-YDGAjGygLKTrZMY6pxj2nTHs23PytduW-htr3GQ1DpyQBku3i-4wovMFONW6_AuECYyGiYjNFJiOKIwGmgzsYuVIx1cBr92td1JMbuGXF1lSS--_SQ2PhaqiWuNnGC6_x4-4d4DSXK0P73uLcq1Z2tkQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648463,\"updated\":1619648463,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "931", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:29 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "16d3f29c-044a-4764-a428-82fcaaeef639", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b11ebed7-b0d2-4d9d-a4e1-ba433f50e8fe", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "356", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:29 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "00fc920d-cdb7-4d37-89aa-cd951327cfec", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "8b98b95b-febc-49fd-adbe-b9930840c4f7", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/recover", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/0ed38ffe079244e8a079845f3d760a69\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"z5aeR0hCvy28NJfGfMjgBTz3e7AStfqEZCj4ehslRlFKN6F3jc_E-VRaBHY52ZZMKgLwEKMXbOl3eEc8dI4hrRRHTq-2Xp-FlyI5lVEu_q9wg1FUHeaqdFZXgZct-D_XeE527AN68KOfxvyYcHEkoxzRFkdmS33JTWUTdc8mit2nhsoLsB7VHY6YasvWQ-YDGAjGygLKTrZMY6pxj2nTHs23PytduW-htr3GQ1DpyQBku3i-4wovMFONW6_AuECYyGiYjNFJiOKIwGmgzsYuVIx1cBr92td1JMbuGXF1lSS--_SQ2PhaqiWuNnGC6_x4-4d4DSXK0P73uLcq1Z2tkQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648463,\"updated\":1619648463,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "743", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:29 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f2692698-753d-4f37-98fa-818c6924f1e0", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c656fa08-e8ce-4437-b9c4-55a19d2bac92", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "356", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:29 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9d8b4e7f-afbe-4249-bb80-c6fafccb3736", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2be618fe-ca7f-4833-a4b8-26aa639a2301", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "356", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:30 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e81c791a-e987-4d3b-b532-9c86ca2b3613", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5aefd12c-431b-4a84-9fe4-126eef296aff", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "356", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:32 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "b82b2d75-71cb-4c76-b01b-bb8e49e887c9", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "005a0a3d-5998-4951-8861-b86a88cc1d3e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "356", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:33 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "76a4810e-765c-4eb3-bc1a-9323ede860eb", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2650592d-186a-409c-86b0-ce974d6a765d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "356", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:35 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "daf7c8b1-e03d-4f04-b1e0-7f997957e04d", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "42035444-5ac4-4dd9-ab5b-d5117e726315", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "356", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:38 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "4f9b4bbd-fac9-4808-b630-d95ea3acea0d", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "63e696a2-f995-4bdf-bcab-54a0ee83288b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "356", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:40 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "18047c94-a681-4238-a488-18035bb69f65", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5b867b7b-dd0b-4148-89b8-0ce1221845e3", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "356", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:42 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "75b8c71d-9971-4526-9059-2212e0f0eb95", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "9176ffb4-5218-4fac-b01e-d0bfe28e68be", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "356", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:44 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2711cb39-1bf6-4e28-b4ae-0b0b34385b7a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "98d46e55-75a6-47c5-8143-05a7ac5d5d12", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "356", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:46 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d5a9c69f-669b-4509-9975-a870ad092abf", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "96578fd8-bf52-44bc-8dde-26ed5c0e671b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "356", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:48 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d222ef83-d751-4719-9228-8f0e0419890b", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "0c963888-fede-46bb-955d-292cdc2270e8", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "356", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:51 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "6fd91168-97ad-4ff3-b676-1bf47ecd1dbb", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "6351f9e6-93f7-4500-8c46-21b095bfa899", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "356", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:53 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "300522cb-13dd-4355-98bf-2a824655cb9f", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e07db861-9e98-4b8f-84d0-b8ed69c09fb9", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "356", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:55 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "a3944f51-4a87-4cb2-927e-3dcbaee681bf", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "46e4c500-1143-44a8-9852-43e05c55061b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "356", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:57 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "873c06ba-107a-41bf-a8e2-381efcb50dd2", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e8a37d56-185c-4fe0-a647-111bfd571323", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "356", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:21:59 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "621ed816-05ea-46ba-8bc1-2d746778b997", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "6ddedd9e-37e8-44a7-98b0-aeae76204ec5", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) lroRecoverDeleteKeyName-canwaituntilakeyisrecovered- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "356", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:01 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2a14ef2b-040d-4666-8c30-90c5034ae1a5", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f4814c88-7780-4723-86ab-ea9eff2e6fa9", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/0ed38ffe079244e8a079845f3d760a69\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"z5aeR0hCvy28NJfGfMjgBTz3e7AStfqEZCj4ehslRlFKN6F3jc_E-VRaBHY52ZZMKgLwEKMXbOl3eEc8dI4hrRRHTq-2Xp-FlyI5lVEu_q9wg1FUHeaqdFZXgZct-D_XeE527AN68KOfxvyYcHEkoxzRFkdmS33JTWUTdc8mit2nhsoLsB7VHY6YasvWQ-YDGAjGygLKTrZMY6pxj2nTHs23PytduW-htr3GQ1DpyQBku3i-4wovMFONW6_AuECYyGiYjNFJiOKIwGmgzsYuVIx1cBr92td1JMbuGXF1lSS--_SQ2PhaqiWuNnGC6_x4-4d4DSXK0P73uLcq1Z2tkQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648463,\"updated\":1619648463,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "743", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:02 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2900cf37-dee2-49d5-97f1-1e32a56f189e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c3765bf6-3b1a-4208-a480-d272ccfea899", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\",\"deletedDate\":1619648524,\"scheduledPurgeDate\":1620253324,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/0ed38ffe079244e8a079845f3d760a69\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"z5aeR0hCvy28NJfGfMjgBTz3e7AStfqEZCj4ehslRlFKN6F3jc_E-VRaBHY52ZZMKgLwEKMXbOl3eEc8dI4hrRRHTq-2Xp-FlyI5lVEu_q9wg1FUHeaqdFZXgZct-D_XeE527AN68KOfxvyYcHEkoxzRFkdmS33JTWUTdc8mit2nhsoLsB7VHY6YasvWQ-YDGAjGygLKTrZMY6pxj2nTHs23PytduW-htr3GQ1DpyQBku3i-4wovMFONW6_AuECYyGiYjNFJiOKIwGmgzsYuVIx1cBr92td1JMbuGXF1lSS--_SQ2PhaqiWuNnGC6_x4-4d4DSXK0P73uLcq1Z2tkQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648463,\"updated\":1619648463,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "931", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:04 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9a0210d3-1a00-4015-8775-33d65ee8840e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "581d3887-02c9-41ed-8e9c-8738f15dfb08", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:04 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "adbc92f7-c907-47f2-8f99-e83095bb9e01", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d38b6151-58b0-453c-8976-c63fc70dcc2d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:04 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f0156658-a43c-460b-bcf8-d9c3b796dc79", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "30ce6b86-0d3c-47ab-a3e4-aec5a62374b3", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:06 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d51875cc-9759-4303-99db-6d3ad52ff427", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "80058ce7-0b27-4c61-a2e7-5aabcdb3da5a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:08 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1875f02d-4931-4145-9602-9859d5bb8fc3", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e9d2bc53-22ea-48c3-895c-14116f3e2f74", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:10 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d57fde41-083b-4b67-a44e-66a59a519792", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "94f4c5ee-0a5b-4c2b-a52f-97942e9453a3", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:12 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f251c3e1-d390-455a-b2b0-efcafaf89795", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "7e172b88-b2d5-435d-ba78-ca47b2b8fe01", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:14 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "0e76338b-f21e-4594-95fc-620157a3a327", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a1d8a0a2-5310-4005-9448-e6bf875d25d0", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:16 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ffdce6d8-5bec-4a1d-bd39-5337517fb079", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "cd05493f-a6e1-430d-bc97-e1589f4f7252", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:18 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "81d746f7-5f40-4fe5-a2d7-c2bf3375836e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "22992d09-10a0-4665-b1a1-c0ba76104f02", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:20 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e39f0533-8cde-4d79-9b50-9df8e788d563", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "7d094df8-e9a2-4c76-b1fd-635075cd7776", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:22 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "fa452dc7-5054-4f9f-b20e-d7c492142975", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "6a802084-eb8d-431b-93e4-a8d6475cc133", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:25 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f09c3039-6376-4a2a-955b-1a69272482b4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c75dcfaa-58d4-4ef3-a272-cfb6a2c8f5a5", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-\",\"deletedDate\":1619648524,\"scheduledPurgeDate\":1620253324,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-/0ed38ffe079244e8a079845f3d760a69\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"z5aeR0hCvy28NJfGfMjgBTz3e7AStfqEZCj4ehslRlFKN6F3jc_E-VRaBHY52ZZMKgLwEKMXbOl3eEc8dI4hrRRHTq-2Xp-FlyI5lVEu_q9wg1FUHeaqdFZXgZct-D_XeE527AN68KOfxvyYcHEkoxzRFkdmS33JTWUTdc8mit2nhsoLsB7VHY6YasvWQ-YDGAjGygLKTrZMY6pxj2nTHs23PytduW-htr3GQ1DpyQBku3i-4wovMFONW6_AuECYyGiYjNFJiOKIwGmgzsYuVIx1cBr92td1JMbuGXF1lSS--_SQ2PhaqiWuNnGC6_x4-4d4DSXK0P73uLcq1Z2tkQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648463,\"updated\":1619648463,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "931", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:22:27 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ff35a069-7a59-4de7-9f19-490dc0d1f7a9", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "893deca2-fc89-42b6-96fb-0e90d7709259", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/lroRecoverDeleteKeyName-canwaituntilakeyisrecovered-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:22:27 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ac75cfb3-63fa-44b0-9d59-fab2d7083abd", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "8b64011a-ad6d-419a-a379-e79276e34285", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "42a11946d9f4a0c18542b483921cb550" -} \ No newline at end of file + "hash": "42a11946d9f4a0c18542b483921cb550" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__restore_keys_and_recover_backups/recording_can_generate_a_backup_of_a_key.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__restore_keys_and_recover_backups/recording_can_generate_a_backup_of_a_key.json index b9156452e73e..cdd18dd62250 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__restore_keys_and_recover_backups/recording_can_generate_a_backup_of_a_key.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__restore_keys_and_recover_backups/recording_can_generate_a_backup_of_a_key.json @@ -1,707 +1,707 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-cangenerateabackupofakey-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:45 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "b8bdd786-8269-4326-99e1-2f9e5c19a06f", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "23f64cfe-3aee-4530-b302-48445da9539a", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-cangenerateabackupofakey-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:45 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "b8bdd786-8269-4326-99e1-2f9e5c19a06f", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "23f64cfe-3aee-4530-b302-48445da9539a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:45 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", + "x-ms-request-id": "af904c7c-1ddd-44a0-b636-d8b32f227001" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-cangenerateabackupofakey-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\"}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-cangenerateabackupofakey-/312de03ad301469bad13cc93e8a50b9b\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"ntEhhbJ_PUi2rtwUnDKJIa78Op6sh2U5JyN8clf5_-1CbLjnMjReFUM5mI8I3_4jddd155PyJotRbvluUY-UAXOJJVivJBqiYfXRdtxcOCPkIOIXcrU3y2ixotoVUvK5CquB3oBKd7eKZ0lDUi0P7JrewrnyfjjuUm0XxaxWASPchVx3ebiX0ih0Vdwin2jjjPrGSCjVSUanMDd_ouNz533-gML7f-50FlNvRLPbb-EIc4xuXdlJ9ug2PcGHzJX6C56Z7kLjfVJvTjWgrIrRxi1Wry-HMrvlljpDGskAn5jCJLN_GGKGmodI8GA46Ufd1XzwA0MBRKUlnFGmp5w0eQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648686,\"updated\":1619648686,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "737", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:45 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "b8bdd786-8269-4326-99e1-2f9e5c19a06f", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "8010aa6f-7604-4a5b-b646-202182eca3f6", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-cangenerateabackupofakey-/backup", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"value\":\"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUl5WVdabU5tRmhNUzAzTm1Ka0xUUTBZVGN0WVRjek5DMDJaalZoWkRCaU5XRTRPVGdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQzB5TlRZaUxDSmxibU1pT2lKQk1qVTJRMEpETFVoVE5URXlJbjAuR3ZrcTg4Mm9pTVJOMktBM244VktjeXNWRjRibE14SndVUTdncTlIcF9tSmlVX3ZOckY2eDJQbXNnVkRlSFlUQUxrNWFBV04xYnMwNWdvZ2dGb3NOcjB5YnhlbHNDb2JWRjZyTTQ2SEpTX043RHdZWm5QdVFxOTlWVkNfWEJ3UlR1REd5M25KemtaMDlFeEo1MnpsSWhfUUNYNmJlRVJveTZZTnhLd3N5dk05T1FlSV8zOHB4eVdGcm9sdG1zOHFhbVRmbHhLRHFsbDltUF9IOVNoWjFKaDEyeTZpdTV0ZlF1Q1Y5enhRN2VXcUlXOFZoQ3JwRWhRdUNDOEZqN2QwWW1jMUt1eHNFRkttQU01UVg1d3UwYTRLTVhOZkxjeVIyR0ZUODVWMjBuS3lEZ1l2ZWVDSVdvQ1ByWFpqVFlqdEQybnZlZmFaNHN1aGlXaVhlSFJicmx3LnpXOGJjQmg3LWZ2UTdYZElhT3BxVEEuYzV3TXdtWm9lLU55YkNiSnJONGNWMmdYZXF1X1FmTExydVpBWnA1UENXbVBTU3FDX0FsY0lGQ0pOR3JMaE1oMXIxRHdSWWVWZXBWLWRRV2owcml0blExZ3JSczlHUXRrWHVlYkhRY3U4Z0YtV2ZMSl83VXMzZGFZM2pQdzJlU0JiSXc1ZFRKQkQzNGJTSTBGOTlISHBFaE5INDh4anNGOHhacmlGYnk0cFFwTG4yT2tETkZTeEFQYXpSQldnSnNmSC12OHZ6blNva1lPUUlVVEVsOE9OSGxfanVxUWdkMGFCZXI3STR2ZGl2ek1hTDc0dnVGSWpvMmtLdUEtMkVjYnZUQVZ1VVNFM2kyU25jeS1Od01yTG4tWTZBcmduOFVERTRmWTE0LWtQa2s5LVZKcGhIek5veXR3bmhaQ2JSeHJTMmloQWEzN3BNWEZEWGpJbXNKZkw3bDJ2WnZBTGpVYjVLWEswVzVia3pmdDJZX1hXcVVNMjVwMWdKdlNrZUhtZjlublJOeDhHWW1oQzhKOEcxTVZxbjFZZ2tzZUhuaUZESXQ0REJTN3I3WVdJb2JBQzV1dFo0VnR0anQwb3NrZUZ4VExUOTZfMEtXbFNwb1dxbHNTMERGT09fVWpjcXA5QzZXTTBjUjVRRVBnellrZTU2anlaNTlnX1VWNDdldHBFOWl4N0t2UnBmb08wVTU0Y2ZyTi1aMjMwcWVJc1ZtVHVVWlh1LVh2OGV4c3RpV1dUa1k0Q3hWU3p6VEktNUNaRzhYNmdFSExKNjFRMjMwU0pkV2hrWjdvcFNxVndxaW9RenJZbnhnTWtINHRfUUJqUUFiSEQ2SWdNQ2UtSTB4dUlDUkd4cXZnbHI3NFBHZG00eWtDamJJa0VrQmtjcElTeGJNd3daTlZ0aEg3dmZoTFlaWnRUQU1FWmZRMTVXOU5WaWgzSEFTcGk1X2NjeWg3eHpjcU9SSXR6X25xaGE0ZDV2WEhaa0NlV3dleVhKRVc0LTVfY2MwallFUE9FY0c4b21CMkJ3dFZlUERQY0J1LUZwVnVfX2pZOXl5aXRrMmRGR041R1A2dm9jaFdWLTJ5Wk12QjZCVkZkN2NsbDhkMk9QVzN6NFY0M2pfenRDY2pTOTVmRnZSdzRGZHdjWXRmeW5lOGVWczUzQ1gyN0xQREZEd2hPZGphSWhYWmNyNWxEUmlTdHJCaEx6SnlUNzFWUFJWYlJqZjlGS3NrTUJIMGZGbms5eXF3aHozdnBKekNKanJwdGc1al81cUJpV0JmbmNYM2dTWHZHXzI3STZkb3NNUnhWOW1obmZFeWxVNHZMNXdhb2ZZeUY4YWhtdmdoWl85QnZoOWtxanRXZ2FvYUhKdW1iLUYtaExtWEpobnFUY09qY1lESzdObXhGOHliTkgycUN6VXpCQTZ0UERQLXpUR1V5RjBwSW10eUJ1Uk9BUGpPeXdaUDU5WG1VRWZRTzYzSGRoX1l0aFJJLUZjMHk5enFkVTE3TkE3b2hKVEsydWZrUjNPT21BZldtNWhwZnZSdWc3ZGNSSjgteTFVYUd3RGlEcENTNmpiaGJBYUpodGQyQVBmekMwNGZIMGkzU1ZEc2JDWnVvcnB0Wk83dEstUlJfUnI0MWlNb1NSWUMwaWpsNXRvbUNuUzdVRTVkMmw1MHowZ053N0N1MFJQWGZkdHVwRWRNWlFWaHZZeU1oU3V0N2Z2UWhwZzVwbks3SW81T0c3Vzd3ZnBvRDQ2Ykp2YXRzMzd4M0l5bzFkaW9nNmNnbUF1cTVibDBZRW1BRzFqcXZfazZjNnJDNS1tbURHRzFOVURnQUM5VGVHTm04cEhld3lPaFdqeWU4Nzc5Q0ZibjEwTS1veldGdGZta2h0NU5GckgtWC1WVGw1TzBTQ1U4Z2FkVmlEdUtUMWdHTUM1Q1Y4NDNLTXRLWFUtZDB5b2JiWmJWc2R0RldSTkZEWXdRR1VMMXliSGN0VFNmRlhuNG85NkY0eEM0SVdIWk54SEQ5ZXkxWUtEMW1WdC1xUGdWak9jbm1pNHdxNC1xdENMTGNWZzlXVUVNcERNQ3BUUUEteTVzYi1yVVk4eTRvNUlRR19MNGlZT2J4Mi1la1paOTR5TUZJOGtQYktxY2wzcXZ2S3hLMDNDVFA5REpTUHRQQS1JQ0RXSEdZNk5PNF9RNTk0NVBhTWh1VEotS004eExWemtEV2NVRXI5ZVlXQWRfb0RoWW4zOTZva0Z3ZkFub0psWjVNY0kzeWlLMWpzb0tFa1MwTFNuNG1hajBzZGRkTTFRTVYyTWR6SV9KVWRCZktGMWlnWE1tUjBNdXNpODFlaXJIREtQb3otdzgtSUlFMzFIUm5oeDJ6RWlOV19tOVF6U3N4cUpPU2MxdGE4WnpMZXpXTkRtZFRhM2VNUXJuQ21YWDl6QjZwLVpnSDBhUGlyZE1rYy1heXEzUHk2TmpVMUlxVTVhc3JMa0JXalY0YTlkdklHbkw1YVdYNWdzamNoTlZQY1kwN0ZmOURLNTlMMzVDaHJhYVd1cUllSXpyQl8xSUc0eGFGdFBWak9OeGFSRkNpbWk3eE93b0RHYldoOGJBMzhmaU5xNjdOc1MwckpIRlpPNGh3RFBHT3hRUmx2THUwZnozWTFfRWstWVpnQmtmSG00d2ZDd01wUFdmSk9zVFFLSERWaUJjQjdyamJrVHlvRlIyS3ZQb011YmNHQWNqcy1kRmdxY0tFOXdJaXIwTXFCbnpzZlNXYmlXSmpDNG1xdmN4MlJfaUdPNE5YUFFzSktrLVA3MFJsWnlNOC1ObmNvNnBsOVcxOUIxWEZfR2kxdGJFUTA0cU9RUUlzTFBXUWJSUG5GSnU0dFNIZGRoMm1fbW9yOW1EVHVNVnF4d2Y2SHlzRk5XX1ROX1c0bnZ4ME5fcUpESFlXYXpGa3JfTmphOUs0Y3cxdmlQTjFVUTdIdVo4Ti0tMnRHdkFEeDRhc3lMTTZ1YXlRSlg4ZlZXSjBKbGFwcU1YNHY3eHB0emtOb1FLbWpiaHdFaVRmTmpGOGZMMnJyMVBXSWVlZEJtN3BLcGhzd0c4ZFdFVXprUzdIbHczNThocG1zc2ZrZUIwczlhUDNKSVBpc0pMeTZ3ZXlvR2lMRFpFY3BNM1c3dTAxX3oyTEM0Vkp6Z2FXeHNGU1BFdjQ2UDJzdUdGdnd4NGdVVUNYZjhpejFwcWNuaWNZMGx4TjBXdUlYWWVQM1VLYWhRZU1iQWVwTW9waHBsMmw5alAzdTI5TGpZVVdSMm0xcGlMQmdSa1F1RWprLVA5aWN0SGI3Vzh5UXAxdVAxeGY2NGVNNzZsSk9mY2JOaGpSSXJTc2hpVkUzd3BrWGxkX1l4YThGQzcyMDNiM291SzVRNTJJbXlvYkJVa0twQzBRQjNSRW5zSzI1RlRmcVRJd2tiM05xako4bDRmd2w3RDZZU3ZrUWwwS2k0MV8tRGZvOF90SHAxR00yTzJNVXZVOHVBTXQ2VDVwX0hic0VDVFBJeWhYeE5YTFMzRzdTSkJoWVJWMjJSdnUtVWZrZ3VlMUs5eXBKM0RGNFU5Vk1uS1R1QXVLRTkyMDhmOVdRY2VfQWpaeHpiOEJ6bzBTVlNKLVlPdG9BSnlUMDhDdzJiN05QRjVMVTRkOXFEdFdydlMxSTVUUno5eGZfWlJNVEpKcVQtOWpoc2dsOHBPSmV6Y0oySTN6RUZFLU1wRHdoOFJpaDZMeEMwWWdFR2p4VEgzcG56MFAwSmhDYlUtVGtySHpMdnoxUnZIbnYtOGw4bUNRaUpPTGQzV2VlMWM2SWFKOEhjdFlMWWlKeUt2LXRpN3g3a2F0THp3SVg3U2Y5b1J5NHhKYmtzcGE3T19LZks4WDAtYkpQOGtWVktBMWFRd0xGRUFZT3gwa1lHWFpGa3FWWFIzelJvcWpXWkJ4SV9UM0o2eHFhQkVsQ1lHaEJGbl9EbjBCRi1BRVpQdTRzNFIyRXFFdmU3dWVkck9iclVRZkNUd3V4X3JORlJZRGdfRHBzcnRET3VnalRGeUNBVEJPbnc1blJicUJ2bExPVExIVzdhYlFSZVRndmZ5RE1zLXZseVotR3VMSkVYcmV5VHA0d0FjMUpvMHdrSHZRMm9xd1JZRk85Z05vZkp0cldfR1kzaXh1aDRPWWM5bmpwOGd5T3ZldHh5TW9uR3RFd2U4cEdjaTVVSG5BTTdoenhFWTR5cnFpT0RGMTdfU1ZhRldDQkx4dmVrU0JqWnFCbjRXZFhFZEtPT0Z2Y3FUZVB5WDlKeGJ1OE93clRXa1A5ZkpnOENPckhnRUhoTGZmczJYMXRrajZUUUQ5OTJrc0E5RWQyS28zNV9EOWJSTnp5THJhTkFLTEF0Qk9ZZGotMUZpTC03eWZFd2NXZXVUREtaRnJMY1BuNTB4VHN1cHJNcjRqRVNRYmtiTkFRU2tzMGszcHc2RXhSODJTallTbVZIcm5wY3dPNFFjNjR2MExjQWdvTzlGd2Q4SUNyNm5IMlMxY2tTMXBSaFNDYzlJZUlQa3BaeEQzclFaLXkwYVhQYTFtcnhobmdONThpdjdQdEN2a3dOWUNXLUF3MjZZbHlqTGFyRllmOC1QSWF1YlpNTGo4WmFUdUlDQ0tGMV84c3BvWmlicUlSRnpvY19jY1BxY1MyOXZqdlBiaWFiNFRUZngtWHZsZFBFcFhvMEc3MTNiOGw3ZWFJOVhWTGtXcXV1LV9TSkNOdWpfU0loWm9rVW0xU3BydjN4ZzVXaXZMVkZjM1ExamRJT2t5OGplUkdSZDNpTFcxMzZ3ZnZEc043dks1eFhZRkVET1gxRUtOcmR6WkVkMnUwcXpPeTdRRVNjaVRNLTU5NlZMV2pBVjhkV0RuT3FnVzR1TWNGR1NrN0pSSE5EZEhxVUZzR04yLVlUMlZXTnZNYnVTTVV0OURjQ3dmd0QzTFdnV0EzdmU1X0wtWkhraVp3bWxNX1JhQm5vT1lIV0J1ODhTR0l6OE9sMzRCQ0MxT1hOdGY1WjZkNnRTeW00V1JaS3AyMF80c2JDbVpQc1N0WWktMDVvMmhINVhURWxuTG1lVTl0LTVWTVV5Rk9xRG9SMHRwaDZuWmVqbDNDOUFUVDlUdF9vVldGWFl3VTRackh4V0ZjVEpfM1JxbWpZd3lXazdwdldNdjBKZ1padkRVUGZ2SUhuX0lvYTM0UjFaSjZ2ekRaenRNcVVJbkJGZWR6QmFIaTVocDRNdml6YV9WblVOR05RWFZvRVdLd0ZzWWtxRnNZSVJSMkt6T2RoWHlwU3lvb0hkU0xLdkxjZlRtRGlBaDlDRzFZenpqREFKWllka3pHUENqTzZNZnpwcTdfR1FWTmhFVzROX3Y1eW96NExVUlVLV0tGb2dhblpVVUVmQlM5MXMxUS1RZFN1bnpxX01tQjRCQ0R4MGVhc2FhRXJSbThVN1Z2a2Y4UUwzNW9xWmowRlFKejItU19rSWhnREZzYnh3MHdhRkFfRGNrMzNKRDBGekFCT1lQMTM2ck1ram41QUlfdEJrenJyeFQwVGpfZ3ZGdGNCeDdmNC12aWtzdk94RDFINk40M1BhRk9nZksta0VqRUkzbjV2YlpFbmZGUk8tZ1k0R1JEaWRxNGJnakU3Uk5oMHF6TDJXQzRSYnhVRFhhLTZBN2I2UFRtSkpjZWo0MHdNT3I0NGhQc25OZU96TVZOcDhpV0FBckNNelFPSDBfM3dCUjU5aExmV3VFVVN0YVd3cFNvMlRPSzlHeDdheVllR1E5SEV5NnM1dkZJTTc1MjRNUmZaXzE5Y2YzbU5helVLRkJEMVlaZnVfdFVoLTBwRFZHNnd0WFg1b0tpZXk4T0R3WGtJRjhFUnc0b0hxcUdPUERDa0xXdkRTa2hvWkNJSFhZV3RPdkthc0dZNDdHRUdjUlYxSjNRMEU5ZVdyT2V2Umc1VzIydGw3VXRGNXhZV2ZYclNSd2dJQ0NLN055RlJSV1BteWdBbklHRm9acUg4dkZGT2RUNnJWSE52OW9RY0xraUY1NTd3SlcxUmZPRnowbnRlU1UtdktrZ2dQV1psNXBfWldna29IbkF4SURSQlZHa3htX3FoNkRBRnhVcmtORDVVOU5PVXFlRWI1cWltU1R0d0RDeXotOUhrcXVSMnZxVy1zNFJuOXowMmh1QUVLNWJqYU0zN0VkREdVVXRSR2V6Wk1qY1dXS2w2b0drczRrdXhIMXVWRGNaTmxFdVpYX3RZalBKNThjdzhIR1NuX1JNeTJYcEhwcmhidm9tZFQ3ZHJQSEItVGVQX29meERKbU1vZjBwSnVUeXkyUXpYRkNVanYtUW1fOS1aemFGREhwNTlLZ1VtaTlGZW11V09BZEQtQ3NWTEhLNF90NzhWTUtoUmc3ZEN6eWFua0pUN053LXJfcVBzTzdlRzhzSm82c1JzOWdNdi1wTmtKV3QzanZRNXhUMG5zMHhZS3BRbm1fZHp5QUFwd0tvSHZneGlhUlVUTjlnVWxxOXM1X1lCSXM4UFdpUml5VXl5S0E4cW5jTWZDaVlQd3YwS3RMWDlkNFVBeWFsMDJyRFBvbkRLZHF6TWFpbmVsTHNISFJXdjdxLXRPcDFXWDhiY0o4T0s3V0NjeENJQmVZX3lVVE1wYWQtcVBRSndnT0twTXNJMjluSTBvbExGSEZsZ3RtclpCbHdlVUxMVmN6OW5mOURucWc1eGhTYTFzeU90MmZxWVRiNXI5NDN4UTlCbHk5b1pkRVg5bFBqVnh1VFlJY0dvODM1VWhZSU10ZWlEMDNkNHFMQlNWR0g5RmlfX2NRU2xKZ29GckN1cUtYVVlpalJKUkgxTzB0ZGlCYU9BLXloSFhWNUNZaUd6YjdjdkI3RGtWdTF5UzA4dEdqZktKelVFRFJOd1V5LVpjWDFYVjk4SW1TdHNqUjJnRW9kQzRRdFd0b3VpWkZ3MjZ1czBzeG5sOGt0eC13NVFzNnNhYTZCSUZvaVBET1lnUllJMXpnNlotdE40Xy1GUDNmcEQxUkNRMGJoZDdxelk5SlpVbU9WbnBSSS1OaHhDc0p5VTV3Ui1vcVRUam1PQzZyM2FRTGhjUGhnZFlMQ0h2Y3NYT0JMTTRkUlh4VU45SVhfb2p2LUhlcmhSUjQ1RG44emRoR0VMOGdKamN6OW9kU0JqcUE5TUFmb1d3eDQ5ZzJYVnlGZ19PSDU0cGY3bVI4SlVHSFZzOG8wMmloal9KYVlUSDg3b2dtYXNuVHNJbGRYYm5pVDhyaUlOYkdRR196OS0wWWkyRUVpZEF0TWNWSkZQY1E5RWJPTTlhcDJ3X0xKbjhURWRHQ1R1blg3NUJMS0xwckFwbUNMX1NzRVRpMFIxTDZKVUN2eW41MUNWcDVzVnNkeXdSaDN2SWxZMEZoQ2ZVOExsYWZaLUp2SVpqZV9LSDlRQXNlSVg5T2RkNGxQSm5vRmVlLVFkWGlpMjd4WkhsbmNRWURIRXBXWHlQaVdEZ01rQWZVRVVHWmhMWTBxMGpibktDM0ktTlY1QkVDa0xEdEo4dVZKVEJ1Y2dFb05PZktsMzlDdF9VODdSb1dsZXQ5bUNxTDJkbzRoYmFBTklNR01SdHlZQUlpTW4zamtqTjBENFhxdUwzSFlITnFJM2hlQzFPNGFOVDVKRG9IUWRWNWFLNHJXS1VMOFd2YjdrbmdCMHNJZkNGLV9IYU9uclNCMmdPUFAzNS03T3ltX0tVQlJZVVFFaWJPSzgySnloMmV6cGlpclBkdENpTHVNZjRENGltUFhxbk5iMklqc2ZoZDJIRUZycmsxanM3V2RZQUM4WGdqTWxYUUx2Q1NLVllqak1MdTA1ZS11U2VyUEh3MzR0VGNhSWc0SXp6TzNZVnFaQnQ4OGszY3pLc1Npb0F4NHd2OEtiN2NmMmxQakFWM2MwbmlicVlfZV9RRndSV3JNSkZNSnpaOXZSeHl0dDRyWUZrai1Mdlg0Ylh0U1pLNVFKSlcza1RycUtrcVpReERnVDc2d2lGbnpNZ1RhbHQyaHVKVGZKOVpaUXFkMFZxTFVGQVhVUzRLRjhBZFlIZl9kZktlY0tWcU5WS0cyb21LSHJvUC1RYUZtc0d2U3dyLTFtb0NMZlVYWmQzZ2cxQ0NicU9kY0U0cThHdHpGY3FEX25oUkx3Si1lbjNiUHJWYmFhTElDZTVvYVMzSFdtYnJPT0VhdldZWFFqTERvWHNla0pzRWRRclZOak1FRUR1emF2R3dkVUZTekhxcFFfckI2aWh1V3NxczdxLVk0OVB5ZlBfcm0xVVVXd3I1NkhXcEF3Y2ZYX0ZneTFsRHlwZ04wUERadTdmVDA0VC12VGk0MUExaG9xaGN2VXZyaThjeEkyV2E2Um9sMkhkSWtRRG1HQmxJbFJEVHIwQUpYbWZrUEk4THg0YjU0cVk3VlRVemJfdDJOZm5oc2hnOWgyamdYOGNDTU5LNzRlV0t2cUU1ZFF5ZnN5c1gzRTREN0hmOURjdFBDaVB6S1V4dlM5QjdQd3BmY3VvR1d0aTJvVjFOSDJsdFFMbFhDR0JBYkRfcGZDb3pTekY0QmxuQjNGWDJXNk4tUjF3ZlFrM2lDSkV3bGVjbUl3Z2tmUE5XVVd4R3lMb2o1alBQMkh4X1Y0MzgwN2lfZElFNDRqOWxFcW9rTnphdGNodGVWTHdkbUdpd05Peks3Xzl4cUdMaU5mbU9oUVZ5N2swd0IzZXhHamd6OEotXzl2cVBpeU9ENU9XVE5RbjdiOHp5UGl5ZkkzOVpQT0V5ck8yaWlUNDVVR2J2blZIRXJWc202UFdEdHNmczR3bDZiNXJkaWc0ZlluWkZFX0MtanRfcXRKdnFwRmUtX1ZXWF9xQlhjRC1XQ2FyX2JWTkw4ZFVvOWs3cFN0TjdUd1ZpdExKanpyT1hhdzJXVWVIa2hRbk00aGtCRzE3Yy1mVDZBM294bnZFU1daVmtZWkRHbEFYWU5PX21IbzFSUWdxM1R2Q28yNmdtUEZhS2FXcDZmcWhBMmQtT2prSzJLdElrdnNMd1ZsT2FSam1CekhXSVZXS2xrZDJqN3A5NzZHMnR2MHl1UnVrWTBpMzNJRHJzQ2hoOWI1aEV5QjcwN3pEMXFwbVF3TUtlMW8zSVllZ1lpUkZEUjRES2ZXU293QTFDdWZOVkJ1ei0wNWd6UFVlSV80aWdfY2Fpd2JDUDFyNExrMEFBN0puajFhZGI5TUVPMmY4amczV0NuWmVKMGtBaEt4UmN6d2p3cTBmbHotbjFCUlRrRXNDdDNYSm4tTzZNLUZFRldkQmM0bHF2LTBWeThLaUFHVlRGaGdYZmhzM2JFblNBTXNKdGJCYTN6cTNFVVc1QjhXaUphTXdSVktXZDdSWVFDQ1dpWThibnJDVkkzaWJ4RmlRN2xhT2paM0d5UVpRZy02cVBmN3dlaEYzOWUyc1g1aWVFemM4bTJNbkVsa2hzMlZISUNPcWZIb002X3NieVhMSHlTMHQwRnVYSzJMSDRuR0xIY3hUVk5xX1VaeTRjXzFBVS1yOEpCdFEwQ2hyVDV2TENEdC1odi1KZEYyS2lnaTVxbG54c3BvcFhCOGE1bnd1TnB3VzQxRm5KN0Z6MzhtaW9jMjFIQnZuWWNYMDhvRkliNjZPQkw0T05VRHFlMUtURlEtMFBRLkZvb2Z5WDdKOHFETkN6bkdPclphNkgzRm9XQXJPeTYzbWpwaW54bFVOQUE\"}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "10443", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:45 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1eced0e5-002c-4d7e-be85-64864cde91a9", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "741228c9-c243-4e20-8979-1fffe8935822", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-cangenerateabackupofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-\",\"deletedDate\":1619648686,\"scheduledPurgeDate\":1620253486,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-cangenerateabackupofakey-/312de03ad301469bad13cc93e8a50b9b\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"ntEhhbJ_PUi2rtwUnDKJIa78Op6sh2U5JyN8clf5_-1CbLjnMjReFUM5mI8I3_4jddd155PyJotRbvluUY-UAXOJJVivJBqiYfXRdtxcOCPkIOIXcrU3y2ixotoVUvK5CquB3oBKd7eKZ0lDUi0P7JrewrnyfjjuUm0XxaxWASPchVx3ebiX0ih0Vdwin2jjjPrGSCjVSUanMDd_ouNz533-gML7f-50FlNvRLPbb-EIc4xuXdlJ9ug2PcGHzJX6C56Z7kLjfVJvTjWgrIrRxi1Wry-HMrvlljpDGskAn5jCJLN_GGKGmodI8GA46Ufd1XzwA0MBRKUlnFGmp5w0eQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648686,\"updated\":1619648686,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "919", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:45 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d0e09ec6-e7d8-426a-bc97-c433bccb3a4e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4304dc82-66e2-4c0a-a5eb-217b57e27b16", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "130", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:45 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "4dfd2188-711c-4285-a585-c38c811e26d7", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3e7221ed-09ff-4cf6-8e19-e3fe560415a9", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "130", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:45 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9ec4bfa8-ded5-44cd-8730-2b1c06c50315", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "126823a1-5356-4159-9667-1889e31ccc6e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "130", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:47 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "8a48b7d2-2227-441e-9708-ad572e59330e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c775369c-6eeb-4a1a-8bee-d469d4044534", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "130", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:50 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2c72b2e4-a7c9-40ce-b347-88ef64f469e6", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "17b49dc4-1e27-4ad5-abfe-fbb8f8b3d167", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "130", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:52 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "5bccf1a7-6aeb-408a-821a-5c2f31ccc3b9", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "dd682437-71df-4290-b4c3-3d4d14d76ac7", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "130", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:55 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d0705a65-8a26-487d-bfa5-77c52ac6d6bc", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "15578d23-a156-47b7-aa66-03971c859160", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "130", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:57 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "6e308520-ed44-42ae-89cb-2888ea662002", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "03e0cdb3-c099-4408-8441-76583744e1a5", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "130", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:59 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "adb0a2b5-3c6d-4e12-873e-1d263c27b524", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c869060e-230e-490e-a5de-3b224da34ef4", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "130", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:01 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "08d945fb-e070-458b-8e84-2130c7a40eaa", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d47eb9d1-05ff-4d60-bfb2-b4f530ad7334", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "130", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:03 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f45f8499-bbe6-43c9-bb8b-cc0bbda49d3e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "629adea0-98f1-4576-8592-e0508d6b6e01", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "130", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:05 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "94cd3716-63d7-4f33-bab9-239cd6179129", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5e97205e-dc8e-4c53-b55f-92c98ad554bd", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "130", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:07 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c5aa25db-e49c-4278-9134-c11737752f34", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "769e9758-e4f0-44f2-9dca-3825ef51081d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "130", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:09 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d22fd446-c71f-4a89-9ab3-6692ac5566e2", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b9343de8-2128-4c9a-9d07-613bd083956f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "130", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:11 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "3951d7a5-5a95-497a-bb79-43270d204dd0", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3e69999b-ddb6-491f-b716-42d7e01330ff", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "130", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:13 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9e8f4895-17be-4a33-90b5-b7a75671e2d8", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "787566e0-d412-4818-ae00-43cf58d5e188", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "130", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:15 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e36bb334-2eda-4878-983a-5cbe20b8e5d5", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "cd209fcc-f52c-4cfe-a8b3-9e6b3cf7cde5", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "130", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:17 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "40e54b99-9a9d-4b1f-b2f1-a157b4153517", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c5f9730e-27f0-48bf-9247-0db21b7d6218", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "130", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:20 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "7679bdd3-b91c-4574-95fc-80f953fb0229", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5981808a-8bc1-47fd-b7f3-e5cec74cd460", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "130", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:22 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "798288f7-af3b-463d-b477-55264879d262", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "fbb6df55-5c40-4b9d-8b34-0ee319419b50", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-\",\"deletedDate\":1619648686,\"scheduledPurgeDate\":1620253486,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-cangenerateabackupofakey-/312de03ad301469bad13cc93e8a50b9b\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"ntEhhbJ_PUi2rtwUnDKJIa78Op6sh2U5JyN8clf5_-1CbLjnMjReFUM5mI8I3_4jddd155PyJotRbvluUY-UAXOJJVivJBqiYfXRdtxcOCPkIOIXcrU3y2ixotoVUvK5CquB3oBKd7eKZ0lDUi0P7JrewrnyfjjuUm0XxaxWASPchVx3ebiX0ih0Vdwin2jjjPrGSCjVSUanMDd_ouNz533-gML7f-50FlNvRLPbb-EIc4xuXdlJ9ug2PcGHzJX6C56Z7kLjfVJvTjWgrIrRxi1Wry-HMrvlljpDGskAn5jCJLN_GGKGmodI8GA46Ufd1XzwA0MBRKUlnFGmp5w0eQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648686,\"updated\":1619648686,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "919", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:24 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1f128848-7771-4bf8-b207-a63ba2b0e95e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c0c3a2b4-e321-4506-a976-00356309dedb", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:25:24 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "4d7cc733-e549-4a5f-8c04-f199bb62df86", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "802cbf62-a820-4fcc-9910-62a25d0ed9a7", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:45 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", - "x-ms-request-id": "af904c7c-1ddd-44a0-b636-d8b32f227001" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-cangenerateabackupofakey-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\"}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-cangenerateabackupofakey-/312de03ad301469bad13cc93e8a50b9b\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"ntEhhbJ_PUi2rtwUnDKJIa78Op6sh2U5JyN8clf5_-1CbLjnMjReFUM5mI8I3_4jddd155PyJotRbvluUY-UAXOJJVivJBqiYfXRdtxcOCPkIOIXcrU3y2ixotoVUvK5CquB3oBKd7eKZ0lDUi0P7JrewrnyfjjuUm0XxaxWASPchVx3ebiX0ih0Vdwin2jjjPrGSCjVSUanMDd_ouNz533-gML7f-50FlNvRLPbb-EIc4xuXdlJ9ug2PcGHzJX6C56Z7kLjfVJvTjWgrIrRxi1Wry-HMrvlljpDGskAn5jCJLN_GGKGmodI8GA46Ufd1XzwA0MBRKUlnFGmp5w0eQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648686,\"updated\":1619648686,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "737", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:45 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "b8bdd786-8269-4326-99e1-2f9e5c19a06f", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "8010aa6f-7604-4a5b-b646-202182eca3f6", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-cangenerateabackupofakey-/backup", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"value\":\"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUl5WVdabU5tRmhNUzAzTm1Ka0xUUTBZVGN0WVRjek5DMDJaalZoWkRCaU5XRTRPVGdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQzB5TlRZaUxDSmxibU1pT2lKQk1qVTJRMEpETFVoVE5URXlJbjAuR3ZrcTg4Mm9pTVJOMktBM244VktjeXNWRjRibE14SndVUTdncTlIcF9tSmlVX3ZOckY2eDJQbXNnVkRlSFlUQUxrNWFBV04xYnMwNWdvZ2dGb3NOcjB5YnhlbHNDb2JWRjZyTTQ2SEpTX043RHdZWm5QdVFxOTlWVkNfWEJ3UlR1REd5M25KemtaMDlFeEo1MnpsSWhfUUNYNmJlRVJveTZZTnhLd3N5dk05T1FlSV8zOHB4eVdGcm9sdG1zOHFhbVRmbHhLRHFsbDltUF9IOVNoWjFKaDEyeTZpdTV0ZlF1Q1Y5enhRN2VXcUlXOFZoQ3JwRWhRdUNDOEZqN2QwWW1jMUt1eHNFRkttQU01UVg1d3UwYTRLTVhOZkxjeVIyR0ZUODVWMjBuS3lEZ1l2ZWVDSVdvQ1ByWFpqVFlqdEQybnZlZmFaNHN1aGlXaVhlSFJicmx3LnpXOGJjQmg3LWZ2UTdYZElhT3BxVEEuYzV3TXdtWm9lLU55YkNiSnJONGNWMmdYZXF1X1FmTExydVpBWnA1UENXbVBTU3FDX0FsY0lGQ0pOR3JMaE1oMXIxRHdSWWVWZXBWLWRRV2owcml0blExZ3JSczlHUXRrWHVlYkhRY3U4Z0YtV2ZMSl83VXMzZGFZM2pQdzJlU0JiSXc1ZFRKQkQzNGJTSTBGOTlISHBFaE5INDh4anNGOHhacmlGYnk0cFFwTG4yT2tETkZTeEFQYXpSQldnSnNmSC12OHZ6blNva1lPUUlVVEVsOE9OSGxfanVxUWdkMGFCZXI3STR2ZGl2ek1hTDc0dnVGSWpvMmtLdUEtMkVjYnZUQVZ1VVNFM2kyU25jeS1Od01yTG4tWTZBcmduOFVERTRmWTE0LWtQa2s5LVZKcGhIek5veXR3bmhaQ2JSeHJTMmloQWEzN3BNWEZEWGpJbXNKZkw3bDJ2WnZBTGpVYjVLWEswVzVia3pmdDJZX1hXcVVNMjVwMWdKdlNrZUhtZjlublJOeDhHWW1oQzhKOEcxTVZxbjFZZ2tzZUhuaUZESXQ0REJTN3I3WVdJb2JBQzV1dFo0VnR0anQwb3NrZUZ4VExUOTZfMEtXbFNwb1dxbHNTMERGT09fVWpjcXA5QzZXTTBjUjVRRVBnellrZTU2anlaNTlnX1VWNDdldHBFOWl4N0t2UnBmb08wVTU0Y2ZyTi1aMjMwcWVJc1ZtVHVVWlh1LVh2OGV4c3RpV1dUa1k0Q3hWU3p6VEktNUNaRzhYNmdFSExKNjFRMjMwU0pkV2hrWjdvcFNxVndxaW9RenJZbnhnTWtINHRfUUJqUUFiSEQ2SWdNQ2UtSTB4dUlDUkd4cXZnbHI3NFBHZG00eWtDamJJa0VrQmtjcElTeGJNd3daTlZ0aEg3dmZoTFlaWnRUQU1FWmZRMTVXOU5WaWgzSEFTcGk1X2NjeWg3eHpjcU9SSXR6X25xaGE0ZDV2WEhaa0NlV3dleVhKRVc0LTVfY2MwallFUE9FY0c4b21CMkJ3dFZlUERQY0J1LUZwVnVfX2pZOXl5aXRrMmRGR041R1A2dm9jaFdWLTJ5Wk12QjZCVkZkN2NsbDhkMk9QVzN6NFY0M2pfenRDY2pTOTVmRnZSdzRGZHdjWXRmeW5lOGVWczUzQ1gyN0xQREZEd2hPZGphSWhYWmNyNWxEUmlTdHJCaEx6SnlUNzFWUFJWYlJqZjlGS3NrTUJIMGZGbms5eXF3aHozdnBKekNKanJwdGc1al81cUJpV0JmbmNYM2dTWHZHXzI3STZkb3NNUnhWOW1obmZFeWxVNHZMNXdhb2ZZeUY4YWhtdmdoWl85QnZoOWtxanRXZ2FvYUhKdW1iLUYtaExtWEpobnFUY09qY1lESzdObXhGOHliTkgycUN6VXpCQTZ0UERQLXpUR1V5RjBwSW10eUJ1Uk9BUGpPeXdaUDU5WG1VRWZRTzYzSGRoX1l0aFJJLUZjMHk5enFkVTE3TkE3b2hKVEsydWZrUjNPT21BZldtNWhwZnZSdWc3ZGNSSjgteTFVYUd3RGlEcENTNmpiaGJBYUpodGQyQVBmekMwNGZIMGkzU1ZEc2JDWnVvcnB0Wk83dEstUlJfUnI0MWlNb1NSWUMwaWpsNXRvbUNuUzdVRTVkMmw1MHowZ053N0N1MFJQWGZkdHVwRWRNWlFWaHZZeU1oU3V0N2Z2UWhwZzVwbks3SW81T0c3Vzd3ZnBvRDQ2Ykp2YXRzMzd4M0l5bzFkaW9nNmNnbUF1cTVibDBZRW1BRzFqcXZfazZjNnJDNS1tbURHRzFOVURnQUM5VGVHTm04cEhld3lPaFdqeWU4Nzc5Q0ZibjEwTS1veldGdGZta2h0NU5GckgtWC1WVGw1TzBTQ1U4Z2FkVmlEdUtUMWdHTUM1Q1Y4NDNLTXRLWFUtZDB5b2JiWmJWc2R0RldSTkZEWXdRR1VMMXliSGN0VFNmRlhuNG85NkY0eEM0SVdIWk54SEQ5ZXkxWUtEMW1WdC1xUGdWak9jbm1pNHdxNC1xdENMTGNWZzlXVUVNcERNQ3BUUUEteTVzYi1yVVk4eTRvNUlRR19MNGlZT2J4Mi1la1paOTR5TUZJOGtQYktxY2wzcXZ2S3hLMDNDVFA5REpTUHRQQS1JQ0RXSEdZNk5PNF9RNTk0NVBhTWh1VEotS004eExWemtEV2NVRXI5ZVlXQWRfb0RoWW4zOTZva0Z3ZkFub0psWjVNY0kzeWlLMWpzb0tFa1MwTFNuNG1hajBzZGRkTTFRTVYyTWR6SV9KVWRCZktGMWlnWE1tUjBNdXNpODFlaXJIREtQb3otdzgtSUlFMzFIUm5oeDJ6RWlOV19tOVF6U3N4cUpPU2MxdGE4WnpMZXpXTkRtZFRhM2VNUXJuQ21YWDl6QjZwLVpnSDBhUGlyZE1rYy1heXEzUHk2TmpVMUlxVTVhc3JMa0JXalY0YTlkdklHbkw1YVdYNWdzamNoTlZQY1kwN0ZmOURLNTlMMzVDaHJhYVd1cUllSXpyQl8xSUc0eGFGdFBWak9OeGFSRkNpbWk3eE93b0RHYldoOGJBMzhmaU5xNjdOc1MwckpIRlpPNGh3RFBHT3hRUmx2THUwZnozWTFfRWstWVpnQmtmSG00d2ZDd01wUFdmSk9zVFFLSERWaUJjQjdyamJrVHlvRlIyS3ZQb011YmNHQWNqcy1kRmdxY0tFOXdJaXIwTXFCbnpzZlNXYmlXSmpDNG1xdmN4MlJfaUdPNE5YUFFzSktrLVA3MFJsWnlNOC1ObmNvNnBsOVcxOUIxWEZfR2kxdGJFUTA0cU9RUUlzTFBXUWJSUG5GSnU0dFNIZGRoMm1fbW9yOW1EVHVNVnF4d2Y2SHlzRk5XX1ROX1c0bnZ4ME5fcUpESFlXYXpGa3JfTmphOUs0Y3cxdmlQTjFVUTdIdVo4Ti0tMnRHdkFEeDRhc3lMTTZ1YXlRSlg4ZlZXSjBKbGFwcU1YNHY3eHB0emtOb1FLbWpiaHdFaVRmTmpGOGZMMnJyMVBXSWVlZEJtN3BLcGhzd0c4ZFdFVXprUzdIbHczNThocG1zc2ZrZUIwczlhUDNKSVBpc0pMeTZ3ZXlvR2lMRFpFY3BNM1c3dTAxX3oyTEM0Vkp6Z2FXeHNGU1BFdjQ2UDJzdUdGdnd4NGdVVUNYZjhpejFwcWNuaWNZMGx4TjBXdUlYWWVQM1VLYWhRZU1iQWVwTW9waHBsMmw5alAzdTI5TGpZVVdSMm0xcGlMQmdSa1F1RWprLVA5aWN0SGI3Vzh5UXAxdVAxeGY2NGVNNzZsSk9mY2JOaGpSSXJTc2hpVkUzd3BrWGxkX1l4YThGQzcyMDNiM291SzVRNTJJbXlvYkJVa0twQzBRQjNSRW5zSzI1RlRmcVRJd2tiM05xako4bDRmd2w3RDZZU3ZrUWwwS2k0MV8tRGZvOF90SHAxR00yTzJNVXZVOHVBTXQ2VDVwX0hic0VDVFBJeWhYeE5YTFMzRzdTSkJoWVJWMjJSdnUtVWZrZ3VlMUs5eXBKM0RGNFU5Vk1uS1R1QXVLRTkyMDhmOVdRY2VfQWpaeHpiOEJ6bzBTVlNKLVlPdG9BSnlUMDhDdzJiN05QRjVMVTRkOXFEdFdydlMxSTVUUno5eGZfWlJNVEpKcVQtOWpoc2dsOHBPSmV6Y0oySTN6RUZFLU1wRHdoOFJpaDZMeEMwWWdFR2p4VEgzcG56MFAwSmhDYlUtVGtySHpMdnoxUnZIbnYtOGw4bUNRaUpPTGQzV2VlMWM2SWFKOEhjdFlMWWlKeUt2LXRpN3g3a2F0THp3SVg3U2Y5b1J5NHhKYmtzcGE3T19LZks4WDAtYkpQOGtWVktBMWFRd0xGRUFZT3gwa1lHWFpGa3FWWFIzelJvcWpXWkJ4SV9UM0o2eHFhQkVsQ1lHaEJGbl9EbjBCRi1BRVpQdTRzNFIyRXFFdmU3dWVkck9iclVRZkNUd3V4X3JORlJZRGdfRHBzcnRET3VnalRGeUNBVEJPbnc1blJicUJ2bExPVExIVzdhYlFSZVRndmZ5RE1zLXZseVotR3VMSkVYcmV5VHA0d0FjMUpvMHdrSHZRMm9xd1JZRk85Z05vZkp0cldfR1kzaXh1aDRPWWM5bmpwOGd5T3ZldHh5TW9uR3RFd2U4cEdjaTVVSG5BTTdoenhFWTR5cnFpT0RGMTdfU1ZhRldDQkx4dmVrU0JqWnFCbjRXZFhFZEtPT0Z2Y3FUZVB5WDlKeGJ1OE93clRXa1A5ZkpnOENPckhnRUhoTGZmczJYMXRrajZUUUQ5OTJrc0E5RWQyS28zNV9EOWJSTnp5THJhTkFLTEF0Qk9ZZGotMUZpTC03eWZFd2NXZXVUREtaRnJMY1BuNTB4VHN1cHJNcjRqRVNRYmtiTkFRU2tzMGszcHc2RXhSODJTallTbVZIcm5wY3dPNFFjNjR2MExjQWdvTzlGd2Q4SUNyNm5IMlMxY2tTMXBSaFNDYzlJZUlQa3BaeEQzclFaLXkwYVhQYTFtcnhobmdONThpdjdQdEN2a3dOWUNXLUF3MjZZbHlqTGFyRllmOC1QSWF1YlpNTGo4WmFUdUlDQ0tGMV84c3BvWmlicUlSRnpvY19jY1BxY1MyOXZqdlBiaWFiNFRUZngtWHZsZFBFcFhvMEc3MTNiOGw3ZWFJOVhWTGtXcXV1LV9TSkNOdWpfU0loWm9rVW0xU3BydjN4ZzVXaXZMVkZjM1ExamRJT2t5OGplUkdSZDNpTFcxMzZ3ZnZEc043dks1eFhZRkVET1gxRUtOcmR6WkVkMnUwcXpPeTdRRVNjaVRNLTU5NlZMV2pBVjhkV0RuT3FnVzR1TWNGR1NrN0pSSE5EZEhxVUZzR04yLVlUMlZXTnZNYnVTTVV0OURjQ3dmd0QzTFdnV0EzdmU1X0wtWkhraVp3bWxNX1JhQm5vT1lIV0J1ODhTR0l6OE9sMzRCQ0MxT1hOdGY1WjZkNnRTeW00V1JaS3AyMF80c2JDbVpQc1N0WWktMDVvMmhINVhURWxuTG1lVTl0LTVWTVV5Rk9xRG9SMHRwaDZuWmVqbDNDOUFUVDlUdF9vVldGWFl3VTRackh4V0ZjVEpfM1JxbWpZd3lXazdwdldNdjBKZ1padkRVUGZ2SUhuX0lvYTM0UjFaSjZ2ekRaenRNcVVJbkJGZWR6QmFIaTVocDRNdml6YV9WblVOR05RWFZvRVdLd0ZzWWtxRnNZSVJSMkt6T2RoWHlwU3lvb0hkU0xLdkxjZlRtRGlBaDlDRzFZenpqREFKWllka3pHUENqTzZNZnpwcTdfR1FWTmhFVzROX3Y1eW96NExVUlVLV0tGb2dhblpVVUVmQlM5MXMxUS1RZFN1bnpxX01tQjRCQ0R4MGVhc2FhRXJSbThVN1Z2a2Y4UUwzNW9xWmowRlFKejItU19rSWhnREZzYnh3MHdhRkFfRGNrMzNKRDBGekFCT1lQMTM2ck1ram41QUlfdEJrenJyeFQwVGpfZ3ZGdGNCeDdmNC12aWtzdk94RDFINk40M1BhRk9nZksta0VqRUkzbjV2YlpFbmZGUk8tZ1k0R1JEaWRxNGJnakU3Uk5oMHF6TDJXQzRSYnhVRFhhLTZBN2I2UFRtSkpjZWo0MHdNT3I0NGhQc25OZU96TVZOcDhpV0FBckNNelFPSDBfM3dCUjU5aExmV3VFVVN0YVd3cFNvMlRPSzlHeDdheVllR1E5SEV5NnM1dkZJTTc1MjRNUmZaXzE5Y2YzbU5helVLRkJEMVlaZnVfdFVoLTBwRFZHNnd0WFg1b0tpZXk4T0R3WGtJRjhFUnc0b0hxcUdPUERDa0xXdkRTa2hvWkNJSFhZV3RPdkthc0dZNDdHRUdjUlYxSjNRMEU5ZVdyT2V2Umc1VzIydGw3VXRGNXhZV2ZYclNSd2dJQ0NLN055RlJSV1BteWdBbklHRm9acUg4dkZGT2RUNnJWSE52OW9RY0xraUY1NTd3SlcxUmZPRnowbnRlU1UtdktrZ2dQV1psNXBfWldna29IbkF4SURSQlZHa3htX3FoNkRBRnhVcmtORDVVOU5PVXFlRWI1cWltU1R0d0RDeXotOUhrcXVSMnZxVy1zNFJuOXowMmh1QUVLNWJqYU0zN0VkREdVVXRSR2V6Wk1qY1dXS2w2b0drczRrdXhIMXVWRGNaTmxFdVpYX3RZalBKNThjdzhIR1NuX1JNeTJYcEhwcmhidm9tZFQ3ZHJQSEItVGVQX29meERKbU1vZjBwSnVUeXkyUXpYRkNVanYtUW1fOS1aemFGREhwNTlLZ1VtaTlGZW11V09BZEQtQ3NWTEhLNF90NzhWTUtoUmc3ZEN6eWFua0pUN053LXJfcVBzTzdlRzhzSm82c1JzOWdNdi1wTmtKV3QzanZRNXhUMG5zMHhZS3BRbm1fZHp5QUFwd0tvSHZneGlhUlVUTjlnVWxxOXM1X1lCSXM4UFdpUml5VXl5S0E4cW5jTWZDaVlQd3YwS3RMWDlkNFVBeWFsMDJyRFBvbkRLZHF6TWFpbmVsTHNISFJXdjdxLXRPcDFXWDhiY0o4T0s3V0NjeENJQmVZX3lVVE1wYWQtcVBRSndnT0twTXNJMjluSTBvbExGSEZsZ3RtclpCbHdlVUxMVmN6OW5mOURucWc1eGhTYTFzeU90MmZxWVRiNXI5NDN4UTlCbHk5b1pkRVg5bFBqVnh1VFlJY0dvODM1VWhZSU10ZWlEMDNkNHFMQlNWR0g5RmlfX2NRU2xKZ29GckN1cUtYVVlpalJKUkgxTzB0ZGlCYU9BLXloSFhWNUNZaUd6YjdjdkI3RGtWdTF5UzA4dEdqZktKelVFRFJOd1V5LVpjWDFYVjk4SW1TdHNqUjJnRW9kQzRRdFd0b3VpWkZ3MjZ1czBzeG5sOGt0eC13NVFzNnNhYTZCSUZvaVBET1lnUllJMXpnNlotdE40Xy1GUDNmcEQxUkNRMGJoZDdxelk5SlpVbU9WbnBSSS1OaHhDc0p5VTV3Ui1vcVRUam1PQzZyM2FRTGhjUGhnZFlMQ0h2Y3NYT0JMTTRkUlh4VU45SVhfb2p2LUhlcmhSUjQ1RG44emRoR0VMOGdKamN6OW9kU0JqcUE5TUFmb1d3eDQ5ZzJYVnlGZ19PSDU0cGY3bVI4SlVHSFZzOG8wMmloal9KYVlUSDg3b2dtYXNuVHNJbGRYYm5pVDhyaUlOYkdRR196OS0wWWkyRUVpZEF0TWNWSkZQY1E5RWJPTTlhcDJ3X0xKbjhURWRHQ1R1blg3NUJMS0xwckFwbUNMX1NzRVRpMFIxTDZKVUN2eW41MUNWcDVzVnNkeXdSaDN2SWxZMEZoQ2ZVOExsYWZaLUp2SVpqZV9LSDlRQXNlSVg5T2RkNGxQSm5vRmVlLVFkWGlpMjd4WkhsbmNRWURIRXBXWHlQaVdEZ01rQWZVRVVHWmhMWTBxMGpibktDM0ktTlY1QkVDa0xEdEo4dVZKVEJ1Y2dFb05PZktsMzlDdF9VODdSb1dsZXQ5bUNxTDJkbzRoYmFBTklNR01SdHlZQUlpTW4zamtqTjBENFhxdUwzSFlITnFJM2hlQzFPNGFOVDVKRG9IUWRWNWFLNHJXS1VMOFd2YjdrbmdCMHNJZkNGLV9IYU9uclNCMmdPUFAzNS03T3ltX0tVQlJZVVFFaWJPSzgySnloMmV6cGlpclBkdENpTHVNZjRENGltUFhxbk5iMklqc2ZoZDJIRUZycmsxanM3V2RZQUM4WGdqTWxYUUx2Q1NLVllqak1MdTA1ZS11U2VyUEh3MzR0VGNhSWc0SXp6TzNZVnFaQnQ4OGszY3pLc1Npb0F4NHd2OEtiN2NmMmxQakFWM2MwbmlicVlfZV9RRndSV3JNSkZNSnpaOXZSeHl0dDRyWUZrai1Mdlg0Ylh0U1pLNVFKSlcza1RycUtrcVpReERnVDc2d2lGbnpNZ1RhbHQyaHVKVGZKOVpaUXFkMFZxTFVGQVhVUzRLRjhBZFlIZl9kZktlY0tWcU5WS0cyb21LSHJvUC1RYUZtc0d2U3dyLTFtb0NMZlVYWmQzZ2cxQ0NicU9kY0U0cThHdHpGY3FEX25oUkx3Si1lbjNiUHJWYmFhTElDZTVvYVMzSFdtYnJPT0VhdldZWFFqTERvWHNla0pzRWRRclZOak1FRUR1emF2R3dkVUZTekhxcFFfckI2aWh1V3NxczdxLVk0OVB5ZlBfcm0xVVVXd3I1NkhXcEF3Y2ZYX0ZneTFsRHlwZ04wUERadTdmVDA0VC12VGk0MUExaG9xaGN2VXZyaThjeEkyV2E2Um9sMkhkSWtRRG1HQmxJbFJEVHIwQUpYbWZrUEk4THg0YjU0cVk3VlRVemJfdDJOZm5oc2hnOWgyamdYOGNDTU5LNzRlV0t2cUU1ZFF5ZnN5c1gzRTREN0hmOURjdFBDaVB6S1V4dlM5QjdQd3BmY3VvR1d0aTJvVjFOSDJsdFFMbFhDR0JBYkRfcGZDb3pTekY0QmxuQjNGWDJXNk4tUjF3ZlFrM2lDSkV3bGVjbUl3Z2tmUE5XVVd4R3lMb2o1alBQMkh4X1Y0MzgwN2lfZElFNDRqOWxFcW9rTnphdGNodGVWTHdkbUdpd05Peks3Xzl4cUdMaU5mbU9oUVZ5N2swd0IzZXhHamd6OEotXzl2cVBpeU9ENU9XVE5RbjdiOHp5UGl5ZkkzOVpQT0V5ck8yaWlUNDVVR2J2blZIRXJWc202UFdEdHNmczR3bDZiNXJkaWc0ZlluWkZFX0MtanRfcXRKdnFwRmUtX1ZXWF9xQlhjRC1XQ2FyX2JWTkw4ZFVvOWs3cFN0TjdUd1ZpdExKanpyT1hhdzJXVWVIa2hRbk00aGtCRzE3Yy1mVDZBM294bnZFU1daVmtZWkRHbEFYWU5PX21IbzFSUWdxM1R2Q28yNmdtUEZhS2FXcDZmcWhBMmQtT2prSzJLdElrdnNMd1ZsT2FSam1CekhXSVZXS2xrZDJqN3A5NzZHMnR2MHl1UnVrWTBpMzNJRHJzQ2hoOWI1aEV5QjcwN3pEMXFwbVF3TUtlMW8zSVllZ1lpUkZEUjRES2ZXU293QTFDdWZOVkJ1ei0wNWd6UFVlSV80aWdfY2Fpd2JDUDFyNExrMEFBN0puajFhZGI5TUVPMmY4amczV0NuWmVKMGtBaEt4UmN6d2p3cTBmbHotbjFCUlRrRXNDdDNYSm4tTzZNLUZFRldkQmM0bHF2LTBWeThLaUFHVlRGaGdYZmhzM2JFblNBTXNKdGJCYTN6cTNFVVc1QjhXaUphTXdSVktXZDdSWVFDQ1dpWThibnJDVkkzaWJ4RmlRN2xhT2paM0d5UVpRZy02cVBmN3dlaEYzOWUyc1g1aWVFemM4bTJNbkVsa2hzMlZISUNPcWZIb002X3NieVhMSHlTMHQwRnVYSzJMSDRuR0xIY3hUVk5xX1VaeTRjXzFBVS1yOEpCdFEwQ2hyVDV2TENEdC1odi1KZEYyS2lnaTVxbG54c3BvcFhCOGE1bnd1TnB3VzQxRm5KN0Z6MzhtaW9jMjFIQnZuWWNYMDhvRkliNjZPQkw0T05VRHFlMUtURlEtMFBRLkZvb2Z5WDdKOHFETkN6bkdPclphNkgzRm9XQXJPeTYzbWpwaW54bFVOQUE\"}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "10443", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:45 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1eced0e5-002c-4d7e-be85-64864cde91a9", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "741228c9-c243-4e20-8979-1fffe8935822", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-cangenerateabackupofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-\",\"deletedDate\":1619648686,\"scheduledPurgeDate\":1620253486,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-cangenerateabackupofakey-/312de03ad301469bad13cc93e8a50b9b\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"ntEhhbJ_PUi2rtwUnDKJIa78Op6sh2U5JyN8clf5_-1CbLjnMjReFUM5mI8I3_4jddd155PyJotRbvluUY-UAXOJJVivJBqiYfXRdtxcOCPkIOIXcrU3y2ixotoVUvK5CquB3oBKd7eKZ0lDUi0P7JrewrnyfjjuUm0XxaxWASPchVx3ebiX0ih0Vdwin2jjjPrGSCjVSUanMDd_ouNz533-gML7f-50FlNvRLPbb-EIc4xuXdlJ9ug2PcGHzJX6C56Z7kLjfVJvTjWgrIrRxi1Wry-HMrvlljpDGskAn5jCJLN_GGKGmodI8GA46Ufd1XzwA0MBRKUlnFGmp5w0eQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648686,\"updated\":1619648686,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "919", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:45 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d0e09ec6-e7d8-426a-bc97-c433bccb3a4e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4304dc82-66e2-4c0a-a5eb-217b57e27b16", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "130", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:45 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "4dfd2188-711c-4285-a585-c38c811e26d7", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3e7221ed-09ff-4cf6-8e19-e3fe560415a9", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "130", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:45 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9ec4bfa8-ded5-44cd-8730-2b1c06c50315", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "126823a1-5356-4159-9667-1889e31ccc6e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "130", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:47 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "8a48b7d2-2227-441e-9708-ad572e59330e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c775369c-6eeb-4a1a-8bee-d469d4044534", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "130", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:50 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2c72b2e4-a7c9-40ce-b347-88ef64f469e6", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "17b49dc4-1e27-4ad5-abfe-fbb8f8b3d167", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "130", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:52 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "5bccf1a7-6aeb-408a-821a-5c2f31ccc3b9", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "dd682437-71df-4290-b4c3-3d4d14d76ac7", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "130", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:55 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d0705a65-8a26-487d-bfa5-77c52ac6d6bc", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "15578d23-a156-47b7-aa66-03971c859160", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "130", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:57 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "6e308520-ed44-42ae-89cb-2888ea662002", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "03e0cdb3-c099-4408-8441-76583744e1a5", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "130", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:59 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "adb0a2b5-3c6d-4e12-873e-1d263c27b524", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c869060e-230e-490e-a5de-3b224da34ef4", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "130", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:01 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "08d945fb-e070-458b-8e84-2130c7a40eaa", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d47eb9d1-05ff-4d60-bfb2-b4f530ad7334", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "130", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:03 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f45f8499-bbe6-43c9-bb8b-cc0bbda49d3e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "629adea0-98f1-4576-8592-e0508d6b6e01", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "130", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:05 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "94cd3716-63d7-4f33-bab9-239cd6179129", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5e97205e-dc8e-4c53-b55f-92c98ad554bd", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "130", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:07 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c5aa25db-e49c-4278-9134-c11737752f34", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "769e9758-e4f0-44f2-9dca-3825ef51081d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "130", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:09 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d22fd446-c71f-4a89-9ab3-6692ac5566e2", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b9343de8-2128-4c9a-9d07-613bd083956f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "130", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:11 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "3951d7a5-5a95-497a-bb79-43270d204dd0", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3e69999b-ddb6-491f-b716-42d7e01330ff", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "130", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:13 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9e8f4895-17be-4a33-90b5-b7a75671e2d8", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "787566e0-d412-4818-ae00-43cf58d5e188", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "130", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:15 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e36bb334-2eda-4878-983a-5cbe20b8e5d5", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "cd209fcc-f52c-4cfe-a8b3-9e6b3cf7cde5", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "130", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:17 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "40e54b99-9a9d-4b1f-b2f1-a157b4153517", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c5f9730e-27f0-48bf-9247-0db21b7d6218", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "130", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:20 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "7679bdd3-b91c-4574-95fc-80f953fb0229", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5981808a-8bc1-47fd-b7f3-e5cec74cd460", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-cangenerateabackupofakey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "130", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:22 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "798288f7-af3b-463d-b477-55264879d262", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "fbb6df55-5c40-4b9d-8b34-0ee319419b50", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-\",\"deletedDate\":1619648686,\"scheduledPurgeDate\":1620253486,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-cangenerateabackupofakey-/312de03ad301469bad13cc93e8a50b9b\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"ntEhhbJ_PUi2rtwUnDKJIa78Op6sh2U5JyN8clf5_-1CbLjnMjReFUM5mI8I3_4jddd155PyJotRbvluUY-UAXOJJVivJBqiYfXRdtxcOCPkIOIXcrU3y2ixotoVUvK5CquB3oBKd7eKZ0lDUi0P7JrewrnyfjjuUm0XxaxWASPchVx3ebiX0ih0Vdwin2jjjPrGSCjVSUanMDd_ouNz533-gML7f-50FlNvRLPbb-EIc4xuXdlJ9ug2PcGHzJX6C56Z7kLjfVJvTjWgrIrRxi1Wry-HMrvlljpDGskAn5jCJLN_GGKGmodI8GA46Ufd1XzwA0MBRKUlnFGmp5w0eQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648686,\"updated\":1619648686,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "919", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:24 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1f128848-7771-4bf8-b207-a63ba2b0e95e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c0c3a2b4-e321-4506-a976-00356309dedb", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-cangenerateabackupofakey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:25:24 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "4d7cc733-e549-4a5f-8c04-f199bb62df86", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "802cbf62-a820-4fcc-9910-62a25d0ed9a7", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "63b865fc060254efc9635b78a6559082" -} \ No newline at end of file + "hash": "63b865fc060254efc9635b78a6559082" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__restore_keys_and_recover_backups/recording_can_recover_a_deleted_key.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__restore_keys_and_recover_backups/recording_can_recover_a_deleted_key.json index ac2ffe9afdad..5a8782b8abb0 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__restore_keys_and_recover_backups/recording_can_recover_a_deleted_key.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__restore_keys_and_recover_backups/recording_can_recover_a_deleted_key.json @@ -1,1112 +1,1112 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:48 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "562156dc-3654-4c1f-ae38-83436229bd4c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "99fca579-aaff-41b2-aa98-8be78729fca1", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:48 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "562156dc-3654-4c1f-ae38-83436229bd4c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "99fca579-aaff-41b2-aa98-8be78729fca1", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:48 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - SCUS ProdSlices", + "x-ms-request-id": "d274ca67-cd3f-47bd-9641-f14f48e43b01" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\"}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/7c8e0317e80f491fa55907cd0b3fae64\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"9rEPx4OGGcEcvmGZiujH-S2uxEkIxjVYmqEohlViooayyQYoUkV9ppDpka_qudXvbQBFda3k7ZWpcth8BEhwRjDWIcdUCakLjPi0SMb7dUh4KAlh1S9XGj-DGanaKVkAQKKkKLbx8PdiU77S6kzEPP0EAFI2ZiRDsPFQVHPBQdGX8sGrj2yPDH1ygIwOkhsA3EOzEG-AC2pqRR4F_V-3-5vvOdqyi8mZaYkHmaq02SFB_3TUHeXiOeTSeF1EN8Ekb5y30VEWLECLX8nvDNLl71Ch3kf0ZwaDZw1pUwtmqcQLgBJ3PtWdzxXHttGZU-6OdI4v6Of_LSsCBoS8NX5cVQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648628,\"updated\":1619648628,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "735", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:48 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "562156dc-3654-4c1f-ae38-83436229bd4c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "7d756c84-8f45-4640-ad7d-e93777ea6569", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-\",\"deletedDate\":1619648629,\"scheduledPurgeDate\":1620253429,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/7c8e0317e80f491fa55907cd0b3fae64\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"9rEPx4OGGcEcvmGZiujH-S2uxEkIxjVYmqEohlViooayyQYoUkV9ppDpka_qudXvbQBFda3k7ZWpcth8BEhwRjDWIcdUCakLjPi0SMb7dUh4KAlh1S9XGj-DGanaKVkAQKKkKLbx8PdiU77S6kzEPP0EAFI2ZiRDsPFQVHPBQdGX8sGrj2yPDH1ygIwOkhsA3EOzEG-AC2pqRR4F_V-3-5vvOdqyi8mZaYkHmaq02SFB_3TUHeXiOeTSeF1EN8Ekb5y30VEWLECLX8nvDNLl71Ch3kf0ZwaDZw1pUwtmqcQLgBJ3PtWdzxXHttGZU-6OdI4v6Of_LSsCBoS8NX5cVQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648628,\"updated\":1619648628,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "915", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:48 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "cd70699c-0f73-4ae5-ab7a-f690ac242de2", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "56d002b7-ffbf-4c73-9dd1-31e91cc3b027", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "128", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:48 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c345966e-bd07-49c9-bd66-7a7a51a90973", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2949c600-a4b4-476f-b695-5e63d69910a2", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "128", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:49 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "019bd997-cb62-4966-961f-0318605e25a5", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "7ccfbab8-5d4b-42fd-b119-604d01dfa66d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "128", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:51 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "5355afe6-6d5b-4e4a-beb0-18522766e9e9", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ae825dd5-6691-404d-a3a1-695184244873", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "128", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:52 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "3c955a02-3e34-4dfd-8a6e-2b6bee0fc1bd", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "928b66cb-298a-4988-bd22-b56b681eed44", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "128", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:54 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "6590c439-589a-4afa-8804-6db2c65620cb", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "778a100d-d05e-46cb-bddc-d9bf477941ef", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "128", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:57 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "4bb3e803-83d4-4e6c-a8aa-86533df85e61", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a3bfce37-a0f2-46b0-9d83-1b6766989581", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "128", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:23:59 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "5f6df722-70db-4d61-b18f-e2a2eadec9a8", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e8ccab62-d414-4137-9728-dd7fb8361a46", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "128", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:01 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "031e4548-bf73-4d42-af88-689380914183", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "6a6de12f-be96-4b6c-9dc3-90c23077c703", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "128", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:03 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "471660e0-2d68-493b-85c4-a068c709fd7b", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "1293a8f5-836c-4385-8b92-aee8a930dd64", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-\",\"deletedDate\":1619648629,\"scheduledPurgeDate\":1620253429,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/7c8e0317e80f491fa55907cd0b3fae64\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"9rEPx4OGGcEcvmGZiujH-S2uxEkIxjVYmqEohlViooayyQYoUkV9ppDpka_qudXvbQBFda3k7ZWpcth8BEhwRjDWIcdUCakLjPi0SMb7dUh4KAlh1S9XGj-DGanaKVkAQKKkKLbx8PdiU77S6kzEPP0EAFI2ZiRDsPFQVHPBQdGX8sGrj2yPDH1ygIwOkhsA3EOzEG-AC2pqRR4F_V-3-5vvOdqyi8mZaYkHmaq02SFB_3TUHeXiOeTSeF1EN8Ekb5y30VEWLECLX8nvDNLl71Ch3kf0ZwaDZw1pUwtmqcQLgBJ3PtWdzxXHttGZU-6OdI4v6Of_LSsCBoS8NX5cVQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648628,\"updated\":1619648628,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "915", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:05 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1e467eb0-317d-4395-b837-77c263009a91", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "037f94bb-80ca-41b0-bc66-3bf741995edd", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-canrecoveradeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "348", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:05 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e0465c65-facf-4798-b282-e21c63ca256c", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3c96d43a-751a-4e2b-8363-a86c889bb503", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-/recover", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/7c8e0317e80f491fa55907cd0b3fae64\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"9rEPx4OGGcEcvmGZiujH-S2uxEkIxjVYmqEohlViooayyQYoUkV9ppDpka_qudXvbQBFda3k7ZWpcth8BEhwRjDWIcdUCakLjPi0SMb7dUh4KAlh1S9XGj-DGanaKVkAQKKkKLbx8PdiU77S6kzEPP0EAFI2ZiRDsPFQVHPBQdGX8sGrj2yPDH1ygIwOkhsA3EOzEG-AC2pqRR4F_V-3-5vvOdqyi8mZaYkHmaq02SFB_3TUHeXiOeTSeF1EN8Ekb5y30VEWLECLX8nvDNLl71Ch3kf0ZwaDZw1pUwtmqcQLgBJ3PtWdzxXHttGZU-6OdI4v6Of_LSsCBoS8NX5cVQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648628,\"updated\":1619648628,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "735", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:05 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ad7f7747-9ff6-431d-8523-fca9708b3152", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "6f2a8fb1-f8cb-4b18-9ee0-4f48d309ab73", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-canrecoveradeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "348", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:05 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c51ff253-b8b5-4400-b48b-bf3a325fd6d0", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "7017be50-26d1-4bef-9259-da76ed350f2c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-canrecoveradeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "348", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:05 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "efb3f546-58b5-4aea-8a75-589383cd8f25", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "bd65ea52-370f-4ae0-ab44-550ad244e496", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-canrecoveradeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "348", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:08 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "29c9baa4-5711-41b7-b12f-2d182ed4ab70", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c67ca0e6-0701-4cc1-ba06-b204b0588167", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-canrecoveradeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "348", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:10 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "02320bcf-0852-44ec-863e-9186133a5634", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "7a8e8d6f-cee4-4276-be98-0f2f88e688eb", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-canrecoveradeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "348", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:12 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e382e8aa-ab82-4569-87e0-e4eb056d1469", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "82101f36-0731-472a-8af2-734e2bd28370", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-canrecoveradeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "348", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:14 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e2b61aed-da58-4237-8399-38758cf43f24", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "69ffb37a-af09-4c7d-9e28-a21d4b37f981", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-canrecoveradeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "348", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:16 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9b7c5ddb-a98e-45e6-8b87-7384b0559b5b", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ba925d6e-1c95-402e-958b-180604f225a5", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-canrecoveradeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "348", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:18 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9dff6889-0fed-488c-8fd6-914c53a1b79d", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "1a021237-029f-4cc6-b073-724da7afefb5", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-canrecoveradeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "348", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:21 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "6e495620-89b2-4a26-881c-99e6fdba214d", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b00990c1-9d49-4c6f-bf22-8102de62fc77", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-canrecoveradeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "348", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:23 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "00bdf0c7-9fbf-4d41-a825-ac87c2dc962d", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "fcc97047-338e-40f8-990a-98296fe99d3f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-canrecoveradeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "348", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:25 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1976b16a-120e-4bef-aae4-029087d41671", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "056905e3-d3df-4ba4-bd73-799cd2519ed3", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-canrecoveradeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "348", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:27 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2403257c-67e5-4e74-9524-c9d9d1d05c6a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "114831b3-6046-4866-bdc8-12bd91e12c0a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-canrecoveradeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "348", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:29 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "7970ffe0-6655-403b-9c98-c49cc66ad4d8", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a609e469-3ad9-438c-8cd2-599cb746d545", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/7c8e0317e80f491fa55907cd0b3fae64\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"9rEPx4OGGcEcvmGZiujH-S2uxEkIxjVYmqEohlViooayyQYoUkV9ppDpka_qudXvbQBFda3k7ZWpcth8BEhwRjDWIcdUCakLjPi0SMb7dUh4KAlh1S9XGj-DGanaKVkAQKKkKLbx8PdiU77S6kzEPP0EAFI2ZiRDsPFQVHPBQdGX8sGrj2yPDH1ygIwOkhsA3EOzEG-AC2pqRR4F_V-3-5vvOdqyi8mZaYkHmaq02SFB_3TUHeXiOeTSeF1EN8Ekb5y30VEWLECLX8nvDNLl71Ch3kf0ZwaDZw1pUwtmqcQLgBJ3PtWdzxXHttGZU-6OdI4v6Of_LSsCBoS8NX5cVQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648628,\"updated\":1619648628,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "735", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:31 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9def2d97-fa1d-498a-b0b6-698d0bd92ee3", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "fbe3894b-bf14-4d5c-bcc9-bae4089ab04c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/7c8e0317e80f491fa55907cd0b3fae64\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"9rEPx4OGGcEcvmGZiujH-S2uxEkIxjVYmqEohlViooayyQYoUkV9ppDpka_qudXvbQBFda3k7ZWpcth8BEhwRjDWIcdUCakLjPi0SMb7dUh4KAlh1S9XGj-DGanaKVkAQKKkKLbx8PdiU77S6kzEPP0EAFI2ZiRDsPFQVHPBQdGX8sGrj2yPDH1ygIwOkhsA3EOzEG-AC2pqRR4F_V-3-5vvOdqyi8mZaYkHmaq02SFB_3TUHeXiOeTSeF1EN8Ekb5y30VEWLECLX8nvDNLl71Ch3kf0ZwaDZw1pUwtmqcQLgBJ3PtWdzxXHttGZU-6OdI4v6Of_LSsCBoS8NX5cVQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648628,\"updated\":1619648628,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "735", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:31 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "e9ad1cba-8ebe-4f4b-aee5-df92d2176e4e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c39a41bc-0799-4965-94c1-9c9d53cedc58", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-\",\"deletedDate\":1619648672,\"scheduledPurgeDate\":1620253472,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/7c8e0317e80f491fa55907cd0b3fae64\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"9rEPx4OGGcEcvmGZiujH-S2uxEkIxjVYmqEohlViooayyQYoUkV9ppDpka_qudXvbQBFda3k7ZWpcth8BEhwRjDWIcdUCakLjPi0SMb7dUh4KAlh1S9XGj-DGanaKVkAQKKkKLbx8PdiU77S6kzEPP0EAFI2ZiRDsPFQVHPBQdGX8sGrj2yPDH1ygIwOkhsA3EOzEG-AC2pqRR4F_V-3-5vvOdqyi8mZaYkHmaq02SFB_3TUHeXiOeTSeF1EN8Ekb5y30VEWLECLX8nvDNLl71Ch3kf0ZwaDZw1pUwtmqcQLgBJ3PtWdzxXHttGZU-6OdI4v6Of_LSsCBoS8NX5cVQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648628,\"updated\":1619648628,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "915", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:31 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "85ed4eb8-1c2d-49ae-b3aa-01f2505b61c7", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4ab2676b-9c1a-4b79-bad4-b8766b1b3874", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "128", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:31 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "202ae572-ce68-40fa-b703-16fbd3d19416", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4ac3febd-9e50-40d2-b154-cebda263418a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "128", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:31 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "eeada30b-acc1-47f3-9d73-c077a3981994", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "59a54084-0c5c-4598-a990-c37e89406ffb", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "128", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:33 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9a78d613-852f-41ba-93e6-034bbe25c2c1", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c680ec1b-a75d-4e3f-98cd-bb0ae0f09785", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "128", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:35 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "8beeb1e5-68d3-42e0-b691-4e5ae2fd2860", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "dd1bf039-4dfd-4c7d-9a8f-de732c8a0d92", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "128", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:38 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "cbd66715-8b3c-4a04-8cd4-faa5f58928ce", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "dfeeb05e-63fd-4933-a8b4-06943eb28420", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "128", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:40 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "cfda17ca-3c89-4d9a-8a4f-d3c27a028a82", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "02f9d3bb-190f-4062-8325-61a3b2c89c83", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "128", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:42 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "99fc444a-4a59-45e1-8eec-4e5f40377292", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d9aa2e9d-5c64-4908-8414-b6b4114fdc4f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-\",\"deletedDate\":1619648672,\"scheduledPurgeDate\":1620253472,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/7c8e0317e80f491fa55907cd0b3fae64\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"9rEPx4OGGcEcvmGZiujH-S2uxEkIxjVYmqEohlViooayyQYoUkV9ppDpka_qudXvbQBFda3k7ZWpcth8BEhwRjDWIcdUCakLjPi0SMb7dUh4KAlh1S9XGj-DGanaKVkAQKKkKLbx8PdiU77S6kzEPP0EAFI2ZiRDsPFQVHPBQdGX8sGrj2yPDH1ygIwOkhsA3EOzEG-AC2pqRR4F_V-3-5vvOdqyi8mZaYkHmaq02SFB_3TUHeXiOeTSeF1EN8Ekb5y30VEWLECLX8nvDNLl71Ch3kf0ZwaDZw1pUwtmqcQLgBJ3PtWdzxXHttGZU-6OdI4v6Of_LSsCBoS8NX5cVQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648628,\"updated\":1619648628,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "915", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:44 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "954bd4d9-77ec-4a3e-a9e4-ac03751c96b4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a5d8cc43-7326-440f-a2ee-4b05d5e17b8f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:24:44 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "1357bd68-19e2-4007-a595-f6cdac999081", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "8e6aaade-e001-41b2-a660-463bd847fb48", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:48 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - SCUS ProdSlices", - "x-ms-request-id": "d274ca67-cd3f-47bd-9641-f14f48e43b01" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\"}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/7c8e0317e80f491fa55907cd0b3fae64\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"9rEPx4OGGcEcvmGZiujH-S2uxEkIxjVYmqEohlViooayyQYoUkV9ppDpka_qudXvbQBFda3k7ZWpcth8BEhwRjDWIcdUCakLjPi0SMb7dUh4KAlh1S9XGj-DGanaKVkAQKKkKLbx8PdiU77S6kzEPP0EAFI2ZiRDsPFQVHPBQdGX8sGrj2yPDH1ygIwOkhsA3EOzEG-AC2pqRR4F_V-3-5vvOdqyi8mZaYkHmaq02SFB_3TUHeXiOeTSeF1EN8Ekb5y30VEWLECLX8nvDNLl71Ch3kf0ZwaDZw1pUwtmqcQLgBJ3PtWdzxXHttGZU-6OdI4v6Of_LSsCBoS8NX5cVQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648628,\"updated\":1619648628,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "735", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:48 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "562156dc-3654-4c1f-ae38-83436229bd4c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "7d756c84-8f45-4640-ad7d-e93777ea6569", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-\",\"deletedDate\":1619648629,\"scheduledPurgeDate\":1620253429,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/7c8e0317e80f491fa55907cd0b3fae64\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"9rEPx4OGGcEcvmGZiujH-S2uxEkIxjVYmqEohlViooayyQYoUkV9ppDpka_qudXvbQBFda3k7ZWpcth8BEhwRjDWIcdUCakLjPi0SMb7dUh4KAlh1S9XGj-DGanaKVkAQKKkKLbx8PdiU77S6kzEPP0EAFI2ZiRDsPFQVHPBQdGX8sGrj2yPDH1ygIwOkhsA3EOzEG-AC2pqRR4F_V-3-5vvOdqyi8mZaYkHmaq02SFB_3TUHeXiOeTSeF1EN8Ekb5y30VEWLECLX8nvDNLl71Ch3kf0ZwaDZw1pUwtmqcQLgBJ3PtWdzxXHttGZU-6OdI4v6Of_LSsCBoS8NX5cVQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648628,\"updated\":1619648628,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "915", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:48 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "cd70699c-0f73-4ae5-ab7a-f690ac242de2", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "56d002b7-ffbf-4c73-9dd1-31e91cc3b027", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "128", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:48 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c345966e-bd07-49c9-bd66-7a7a51a90973", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2949c600-a4b4-476f-b695-5e63d69910a2", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "128", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:49 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "019bd997-cb62-4966-961f-0318605e25a5", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "7ccfbab8-5d4b-42fd-b119-604d01dfa66d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "128", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:51 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "5355afe6-6d5b-4e4a-beb0-18522766e9e9", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ae825dd5-6691-404d-a3a1-695184244873", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "128", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:52 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "3c955a02-3e34-4dfd-8a6e-2b6bee0fc1bd", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "928b66cb-298a-4988-bd22-b56b681eed44", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "128", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:54 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "6590c439-589a-4afa-8804-6db2c65620cb", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "778a100d-d05e-46cb-bddc-d9bf477941ef", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "128", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:57 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "4bb3e803-83d4-4e6c-a8aa-86533df85e61", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a3bfce37-a0f2-46b0-9d83-1b6766989581", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "128", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:23:59 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "5f6df722-70db-4d61-b18f-e2a2eadec9a8", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e8ccab62-d414-4137-9728-dd7fb8361a46", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "128", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:01 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "031e4548-bf73-4d42-af88-689380914183", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "6a6de12f-be96-4b6c-9dc3-90c23077c703", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "128", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:03 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "471660e0-2d68-493b-85c4-a068c709fd7b", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "1293a8f5-836c-4385-8b92-aee8a930dd64", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-\",\"deletedDate\":1619648629,\"scheduledPurgeDate\":1620253429,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/7c8e0317e80f491fa55907cd0b3fae64\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"9rEPx4OGGcEcvmGZiujH-S2uxEkIxjVYmqEohlViooayyQYoUkV9ppDpka_qudXvbQBFda3k7ZWpcth8BEhwRjDWIcdUCakLjPi0SMb7dUh4KAlh1S9XGj-DGanaKVkAQKKkKLbx8PdiU77S6kzEPP0EAFI2ZiRDsPFQVHPBQdGX8sGrj2yPDH1ygIwOkhsA3EOzEG-AC2pqRR4F_V-3-5vvOdqyi8mZaYkHmaq02SFB_3TUHeXiOeTSeF1EN8Ekb5y30VEWLECLX8nvDNLl71Ch3kf0ZwaDZw1pUwtmqcQLgBJ3PtWdzxXHttGZU-6OdI4v6Of_LSsCBoS8NX5cVQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648628,\"updated\":1619648628,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "915", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:05 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1e467eb0-317d-4395-b837-77c263009a91", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "037f94bb-80ca-41b0-bc66-3bf741995edd", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-canrecoveradeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "348", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:05 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e0465c65-facf-4798-b282-e21c63ca256c", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3c96d43a-751a-4e2b-8363-a86c889bb503", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-/recover", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/7c8e0317e80f491fa55907cd0b3fae64\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"9rEPx4OGGcEcvmGZiujH-S2uxEkIxjVYmqEohlViooayyQYoUkV9ppDpka_qudXvbQBFda3k7ZWpcth8BEhwRjDWIcdUCakLjPi0SMb7dUh4KAlh1S9XGj-DGanaKVkAQKKkKLbx8PdiU77S6kzEPP0EAFI2ZiRDsPFQVHPBQdGX8sGrj2yPDH1ygIwOkhsA3EOzEG-AC2pqRR4F_V-3-5vvOdqyi8mZaYkHmaq02SFB_3TUHeXiOeTSeF1EN8Ekb5y30VEWLECLX8nvDNLl71Ch3kf0ZwaDZw1pUwtmqcQLgBJ3PtWdzxXHttGZU-6OdI4v6Of_LSsCBoS8NX5cVQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648628,\"updated\":1619648628,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "735", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:05 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ad7f7747-9ff6-431d-8523-fca9708b3152", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "6f2a8fb1-f8cb-4b18-9ee0-4f48d309ab73", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-canrecoveradeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "348", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:05 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c51ff253-b8b5-4400-b48b-bf3a325fd6d0", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "7017be50-26d1-4bef-9259-da76ed350f2c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-canrecoveradeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "348", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:05 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "efb3f546-58b5-4aea-8a75-589383cd8f25", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "bd65ea52-370f-4ae0-ab44-550ad244e496", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-canrecoveradeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "348", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:08 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "29c9baa4-5711-41b7-b12f-2d182ed4ab70", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c67ca0e6-0701-4cc1-ba06-b204b0588167", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-canrecoveradeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "348", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:10 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "02320bcf-0852-44ec-863e-9186133a5634", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "7a8e8d6f-cee4-4276-be98-0f2f88e688eb", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-canrecoveradeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "348", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:12 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e382e8aa-ab82-4569-87e0-e4eb056d1469", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "82101f36-0731-472a-8af2-734e2bd28370", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-canrecoveradeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "348", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:14 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e2b61aed-da58-4237-8399-38758cf43f24", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "69ffb37a-af09-4c7d-9e28-a21d4b37f981", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-canrecoveradeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "348", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:16 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9b7c5ddb-a98e-45e6-8b87-7384b0559b5b", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ba925d6e-1c95-402e-958b-180604f225a5", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-canrecoveradeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "348", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:18 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9dff6889-0fed-488c-8fd6-914c53a1b79d", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "1a021237-029f-4cc6-b073-724da7afefb5", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-canrecoveradeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "348", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:21 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "6e495620-89b2-4a26-881c-99e6fdba214d", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b00990c1-9d49-4c6f-bf22-8102de62fc77", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-canrecoveradeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "348", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:23 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "00bdf0c7-9fbf-4d41-a825-ac87c2dc962d", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "fcc97047-338e-40f8-990a-98296fe99d3f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-canrecoveradeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "348", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:25 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1976b16a-120e-4bef-aae4-029087d41671", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "056905e3-d3df-4ba4-bd73-799cd2519ed3", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-canrecoveradeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "348", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:27 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2403257c-67e5-4e74-9524-c9d9d1d05c6a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "114831b3-6046-4866-bdc8-12bd91e12c0a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-canrecoveradeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "348", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:29 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "7970ffe0-6655-403b-9c98-c49cc66ad4d8", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a609e469-3ad9-438c-8cd2-599cb746d545", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/7c8e0317e80f491fa55907cd0b3fae64\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"9rEPx4OGGcEcvmGZiujH-S2uxEkIxjVYmqEohlViooayyQYoUkV9ppDpka_qudXvbQBFda3k7ZWpcth8BEhwRjDWIcdUCakLjPi0SMb7dUh4KAlh1S9XGj-DGanaKVkAQKKkKLbx8PdiU77S6kzEPP0EAFI2ZiRDsPFQVHPBQdGX8sGrj2yPDH1ygIwOkhsA3EOzEG-AC2pqRR4F_V-3-5vvOdqyi8mZaYkHmaq02SFB_3TUHeXiOeTSeF1EN8Ekb5y30VEWLECLX8nvDNLl71Ch3kf0ZwaDZw1pUwtmqcQLgBJ3PtWdzxXHttGZU-6OdI4v6Of_LSsCBoS8NX5cVQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648628,\"updated\":1619648628,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "735", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:31 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9def2d97-fa1d-498a-b0b6-698d0bd92ee3", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "fbe3894b-bf14-4d5c-bcc9-bae4089ab04c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/7c8e0317e80f491fa55907cd0b3fae64\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"9rEPx4OGGcEcvmGZiujH-S2uxEkIxjVYmqEohlViooayyQYoUkV9ppDpka_qudXvbQBFda3k7ZWpcth8BEhwRjDWIcdUCakLjPi0SMb7dUh4KAlh1S9XGj-DGanaKVkAQKKkKLbx8PdiU77S6kzEPP0EAFI2ZiRDsPFQVHPBQdGX8sGrj2yPDH1ygIwOkhsA3EOzEG-AC2pqRR4F_V-3-5vvOdqyi8mZaYkHmaq02SFB_3TUHeXiOeTSeF1EN8Ekb5y30VEWLECLX8nvDNLl71Ch3kf0ZwaDZw1pUwtmqcQLgBJ3PtWdzxXHttGZU-6OdI4v6Of_LSsCBoS8NX5cVQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648628,\"updated\":1619648628,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "735", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:31 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "e9ad1cba-8ebe-4f4b-aee5-df92d2176e4e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c39a41bc-0799-4965-94c1-9c9d53cedc58", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-\",\"deletedDate\":1619648672,\"scheduledPurgeDate\":1620253472,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/7c8e0317e80f491fa55907cd0b3fae64\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"9rEPx4OGGcEcvmGZiujH-S2uxEkIxjVYmqEohlViooayyQYoUkV9ppDpka_qudXvbQBFda3k7ZWpcth8BEhwRjDWIcdUCakLjPi0SMb7dUh4KAlh1S9XGj-DGanaKVkAQKKkKLbx8PdiU77S6kzEPP0EAFI2ZiRDsPFQVHPBQdGX8sGrj2yPDH1ygIwOkhsA3EOzEG-AC2pqRR4F_V-3-5vvOdqyi8mZaYkHmaq02SFB_3TUHeXiOeTSeF1EN8Ekb5y30VEWLECLX8nvDNLl71Ch3kf0ZwaDZw1pUwtmqcQLgBJ3PtWdzxXHttGZU-6OdI4v6Of_LSsCBoS8NX5cVQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648628,\"updated\":1619648628,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "915", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:31 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "85ed4eb8-1c2d-49ae-b3aa-01f2505b61c7", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4ab2676b-9c1a-4b79-bad4-b8766b1b3874", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "128", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:31 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "202ae572-ce68-40fa-b703-16fbd3d19416", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4ac3febd-9e50-40d2-b154-cebda263418a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "128", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:31 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "eeada30b-acc1-47f3-9d73-c077a3981994", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "59a54084-0c5c-4598-a990-c37e89406ffb", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "128", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:33 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9a78d613-852f-41ba-93e6-034bbe25c2c1", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c680ec1b-a75d-4e3f-98cd-bb0ae0f09785", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "128", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:35 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "8beeb1e5-68d3-42e0-b691-4e5ae2fd2860", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "dd1bf039-4dfd-4c7d-9a8f-de732c8a0d92", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "128", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:38 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "cbd66715-8b3c-4a04-8cd4-faa5f58928ce", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "dfeeb05e-63fd-4933-a8b4-06943eb28420", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "128", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:40 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "cfda17ca-3c89-4d9a-8a4f-d3c27a028a82", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "02f9d3bb-190f-4062-8325-61a3b2c89c83", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrecoveradeletedkey-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "128", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:42 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "99fc444a-4a59-45e1-8eec-4e5f40377292", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d9aa2e9d-5c64-4908-8414-b6b4114fdc4f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-\",\"deletedDate\":1619648672,\"scheduledPurgeDate\":1620253472,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrecoveradeletedkey-/7c8e0317e80f491fa55907cd0b3fae64\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"9rEPx4OGGcEcvmGZiujH-S2uxEkIxjVYmqEohlViooayyQYoUkV9ppDpka_qudXvbQBFda3k7ZWpcth8BEhwRjDWIcdUCakLjPi0SMb7dUh4KAlh1S9XGj-DGanaKVkAQKKkKLbx8PdiU77S6kzEPP0EAFI2ZiRDsPFQVHPBQdGX8sGrj2yPDH1ygIwOkhsA3EOzEG-AC2pqRR4F_V-3-5vvOdqyi8mZaYkHmaq02SFB_3TUHeXiOeTSeF1EN8Ekb5y30VEWLECLX8nvDNLl71Ch3kf0ZwaDZw1pUwtmqcQLgBJ3PtWdzxXHttGZU-6OdI4v6Of_LSsCBoS8NX5cVQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648628,\"updated\":1619648628,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "915", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:44 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "954bd4d9-77ec-4a3e-a9e4-ac03751c96b4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a5d8cc43-7326-440f-a2ee-4b05d5e17b8f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrecoveradeletedkey-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:24:44 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "1357bd68-19e2-4007-a595-f6cdac999081", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "8e6aaade-e001-41b2-a660-463bd847fb48", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "74c6eddae33029a6d92ee9e504faafe6" -} \ No newline at end of file + "hash": "74c6eddae33029a6d92ee9e504faafe6" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__restore_keys_and_recover_backups/recording_can_restore_a_key_with_a_given_backup.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__restore_keys_and_recover_backups/recording_can_restore_a_key_with_a_given_backup.json index 95321146a35c..7296ad5649fd 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__restore_keys_and_recover_backups/recording_can_restore_a_key_with_a_given_backup.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__restore_keys_and_recover_backups/recording_can_restore_a_key_with_a_given_backup.json @@ -1,1083 +1,1083 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:25 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "99a75f10-df36-4059-a711-bd693842fa6e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "22b6fcc6-c305-4bdf-b3c4-84e7ff1cd8d4", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:25 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "99a75f10-df36-4059-a711-bd693842fa6e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "22b6fcc6-c305-4bdf-b3c4-84e7ff1cd8d4", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:24 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - WUS2 ProdSlices", + "x-ms-request-id": "fad01bb3-1fca-476e-b746-39e3c3167100" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/create", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"kty\":\"RSA\"}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/0f21985e3d2d42ed899ba2b76e892011\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"-pIR3W-OUcEZgrO4h8F7dAIRen4t7QW_d6oO6jSd28-dXPqUUEPNlEsgdtdXbqqhWLDN4w5LOWOLDgQ5TcXC-kw1wK2j5tAPO_YA11c-2cgI45cWlwuW0RLFuiXYuW3gult68a82fAGQmwe82bxs3pYwJQXdMT7x6aJwmqnVsqOc8aJP0BZM-Gacp-CRCHXRcs7_r8WPOMw4tMPrg_lI5b99Ctqy0693nlWE1-jNeCdtz5YhQuICK8bwwJnOruoadkgliPZWN4NEvsjeJOzY3AXUrOrciWVgW6LeLCvMDiJ39Ca0PkgEVFbKypOUeEPAQT5yNDgF7hXEx6HRdvdalQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648725,\"updated\":1619648725,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "743", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:25 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "99a75f10-df36-4059-a711-bd693842fa6e", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c5293834-89a1-4855-9867-8b7b5e75538c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/backup", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"value\":\"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUl5WVdabU5tRmhNUzAzTm1Ka0xUUTBZVGN0WVRjek5DMDJaalZoWkRCaU5XRTRPVGdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQzB5TlRZaUxDSmxibU1pT2lKQk1qVTJRMEpETFVoVE5URXlJbjAuY2lEMjFBc2YzaFZwVjc4dVFMV1RsUzdxZ1c5Wkp2UWhWZ3lGbzF2Y3Z5enZGdDFTUnlJVXdCekI5OTJsOVNhUF90REdXbEx6QURXTjFicFJweVp2STlBeHlIdEFkTWRxSTB0eGhLdHhGMmNOXzEtUGRVYUt4MWowRllKb3Mybm5UcjEwMnN6VGR1ZTdHY1dnb1BUTHRuc3llcVhCdkdVSGcyVnZOdjh0V1JQQV9WTjRKWWtfS2pqdGc0WmF0VW0tUk81VnNPZW13RXBaNU9NVndjRG8yTkd2emdVVkFERGtvc3dSYzZ3RVlxU0NHbkEzWkxtVnlJRVczcjZYd1Z3SWx2TkJhZUxGOXY0Ml8ycjUtc3VneDA0WUlZRnc4a0tSZEp5OUI0ZU9KXzRHa0stZm50X3Y4UFFlTEdGaVlkRkFZUVc2Q1pkVEh6akZFRG9QaWphYWx3LmxCRHNtSWt6MU1fMEpfMGdCakMxLWcuajNYZVQ5TlM5LVAyWjhPQTFlUW5TSEhvem01N0czaXhYeHRGWUtBU05WSTM1cFBPbUswdEVJMzltY0FRLUZtRGV4cVdWbUw3QWxYWUk1M3ZTaXEzWGtOMG5PLWdvSkhsdXNXM3BVemthRG9PWlNxY25QV0FxVXFwZi1zZVZCdkJqMXRBb2dsa2dTZ2psbUk0UlQwVFJJbkYzaEhXd3BIQVRzbWd6WnMxMVlpdlZ4RTlpbTkzNXplQVdaRXFRRFlncGJNZDdLdDN6ZlpJLTN4M05YelpZXzQ0NUptNGd0bzdLTDNEbENIbFpSU0lnZnhQc3Q3VW1RWC1FNk5oWklNWUlfMzNRNkdtTFBVNTk0QVozaERBcWlZXzFQeFdqdV9KY3dWcVdqLVE1TjVqWk5sYmo3UGw2MjhXMEVpOUF4R1FfQkFrLWJpYngxbHM2WWIwS05Oa2J6d1pPdjF4ZVUtYTRCVGFGZWNWS2QxR1dBM2pzZV9PSjNYcEV1ZlNzSEU1TktQeF82azVUMnFLMUliV0JHd3ZFb1R6NjFWZEpseGZacXdtczZjNGU3cHE0MHhnQU03M0xNakVqdlcwYjAwbHFHZGxBc1hEcnZMMDl0ZlRrRThIaHFfTlIzVFpGMFBtSGZrLUxRNVpMVlRLSFF3TkxtVVR2bkFLeWY0UFk0b1hCbmJzWm1OdDdaalFOUTFMOE1FNzJfQ0dPVmxuZjEwOWhDZHpud2dNWjh0cjdYNTVFbHIzUVdoR2FXSTZlc3FVZkNSbnZHZk80T1NjTU1QNlZ2UGtUdThMb3hKVzZ2X3hKZVpJUWlEcEloVnFGcE5UZ21PQXN3WlJYcmZhQ0ZqTkE0cDVfVUp0aW91aWUxOG10V2ZRQ2lyeGhHNTMwTFJHWEZLTkdkMzVpbkw4WklnUnRJQmtRR3NNZ3Z2dDZ5NnJiam5JV3ZEYmd1S0F5d2lmQk4xWm5pSHZYY0ZhUkYxZVJaU1NhM1BidkVSTHhoR3VmeGZfQzVYQjVzNXk4M2ktQkUtUEVFN19Ub0Y2YU1LWkU5aExXLThOR21XUFgxSVBqeG5OUFpNZE5wM3dkaTJyekJxLW9IMHlVNHFZX1hJZFIyYjU3STYwY2J3TThrS1NKcWhnS1pyRW4ySHR6cG5lWF9pei1jSHlnaHBSb0xQd0dMTWd1V0RqTUhOY0duZlFISFZhUER1cl85S3VsTnNZSDNLR3R1YlpTZUt6ZHM5ZWxrSGRJMWFuVG1lVnphZTFaZXRLOW81R1dQSEx3bUN5RGRXWlBYbDNRN0E3NEl4YkNoUFVvd0ZVOEVGbnJ6Yi16clBDOGNMNTBtZ0dIQVdwMDk4WEltSFZSZ2l0QWoxbXJycWhuejZYMjNqZkZVWGtfT1VDQ25KUC1BX0UwTXQ5dkg4dTJUb0hURnRqTElIQms5bzlyTEU3a3FWek9YZXFpOTlNekFhZUVEUnRLSF9FMzdxc0tSQWRORlRHUDVveTJtMXd1MTkwREdrQzU5aW9Ld2J6SkNOVjdOdmJmSGFrc1MzQmlzUFUwbzc3UjlDaHpEMjk3czZVUEdFbHJpQkR2LXRDRFFGYXlNRXNMeWxoZ3hQMEttbEczTFhtQmIteXd2aWVPOVBWbVU3TnZIQ0dlcEZzVTFMd3NabnRkSWZoQUpWRXppMThydktEaUhBSUlTZ045LWJLMTV2ZjFpOGNzNm9mMGRudDRyYWRmb1pvR1hla2VoUV9RdHJHRXNPdFNxRi10NXpCVXlCSjJMeGlfd0VyV3ViV3hkdk9YNjc5WVduaHdpbnR2aFZZbnpGTng3YS14c3hqelVXR3dCSFowTjllN2VnUjNjRHhqdjBlNzMzTTVBdUhmU3I3djY1S3hITkxQMmVXS2QydkhlQmRVWjlOdkdYamhxTno2eWVfNzFibUpjMW9fQWNiUHRKTGY2d2NhN2h4T05HakZla0dxM1Z1b1FOc2lnQkVhRkxwb3ZUMHllNkVTOTdkTWRPcDFjXzRTZF9WZ052U1NCMGFPYW1zY0lsMjJaM1JzczlZSkt3WkNlbEx1dkhCdTZtQXlOaUFTbEpXZFRJenNQR3hMUV9GclBJX2x1d1p4dG9HaDZTX0FNWW80NDBqS0RmbW9CdzQzTUJiMjNVTXhJWU5DMHY4THdXUTFuUkdhU1hzVDI3Uk14ajhCY25UTkRWWjN0SGF4WlNuRTRuRVFuQnRyUWJnaHpCdjBLSTRUbDVnRnp2Skd3TnZQakExcXl5dGFHTGU0aTNzeWNoSVRjY0VZWEt6ZkQxVmRKQWFQVWRtSFV5Z251NzNkNjhOcWk4VVQ4cWNaRVFlcU5tMnZ6cFhZUU5xb2ZwTmdBYnhBaWJXOWJXejJBUG0xNndDYU1Ka0VRSkQ1MlF0cmQ3WjNvQkMxazZfZVF0YlNjZGlKWUxlN1NRcFlWZGUyMUZOdDJGaXBIbDc2ZnJ0a2lwb1R4VHEwbHMwWjEzY05ETUF3dlc3eGgyN0ZqS2JGT01SN0pUMkVCMkpaVjBmcDd6d2hXSHRZN3R1NTFSYnQtM2E2b2s5LTZvRnUtdlB0Nm5KXzVZTTRpSjFmbEZNZWN0aU9UNThHQ09BbGNfZ0JhRU00d18yQm1pN2xadzlsOEx3X2t1WjdRdEpyUDQxWjNyLTY0QlBiTHJPY1NKT1hsN2xzMGZyc2MyeFlBVFdVbktpUGxqdnJUU3hTSDFwWi1va0FleDd2Wml0RjlHTUh4dFB4a2hGd1B4UUNhNkN1LXdscWNGYjJSRHR1YlBuWlVNV2VLYS1ud3ZUcjFIVFFKbVBuZHctOWpFUmo0b2tLb2ZudnJLbHhZNDVPU0ZqdDhoS0dwM2RTbjJ6emV6RWx5V0hFWnhla1V5ZXdVR1YybnFhWU83UXpvamdMM3hJbmoxMXRSSzVDVF9iQXVLd3BoOC1FSDMtWmJ2R3FURW45eXNIQ3Zsbi1PODRiWUlqYnBZdzdRLTRYWTkxVmJlOXJrSDV4M1UyZnZyeEdlQ241Wkk2WFBzVlBycGdXTy1DT0lBOWV1Q0RzcHB0alVfbUFBc1QwTVM0VFM1bVdkcGhBdm5xS2VaQS1tQ0FYOERjQXVieTkzMmdRUEp3SUFZaWJKNE1JVGQ0OXhkbzFQZjd0Wm5oME5vRFA0cjJ4R2ExSW1nVXE3SkhiYy1jV3prS1g1OVNxUzFSOGlTaFVGWWlCVUQwOGFoNFVLcjZWbjF5MWdaNUJWd043bU9Ub05pV3d3djdvaEp2YUtsSkJFQnNvZEs5Ti03ZXp0YjJ1STZjaHBxcXVoRkhTeGlZQ29KclhLWEhHQ0VzdC1Id1AzRmFPdXoxVTIwRFNHQkE1dTd3cHJ5U1k1Y0dZMzhmcVFHYzFqU21FU0dZVzdTNWxXbld3SEh0ejlEVjljZ1BnX3dXQm1LczkxVGJrUWtBOTZLbjljeXh2ZjEzamtwT0habUs2ZFBCZzNOZHQ1Vm0xTk9WSllYWVM2T3dzeThUVW54SnkyMjVFMklSV2xNU0E2bDBySWFVZXh6V1FSYWFDZWsteVJTMGwxZmJXME16V0w3bDNKRWxCNjk2bjM3NGlmR2dsb3h5RW1JTUl3TzF3QTRfa3Y1Q2RVSjk0Nk9OT0wzc3ZUSzBod24xZjZ3SEppT1lQYlFUTXp3LVdNR1p0RHRSM1hjNTRQa013LVhzWUE5RkNNMkxEOElDUGE5LThwV1hpNmZzWlpGVXVvcXpzLUNLaUREVi1IRXVpYnRGcVlXeHNfeV9RaHdIRHpCMjhZNHptUTNpQXdnMUZmNjFSUGNHQnlFMVdTeU96c0NyQkpRblE2ZHBKYW5MLWRHUmVPc0pENEVoWW42Rkk2QWhaNjE5NnBfV2pEWFl3Z2YyWkVsZWRKS25EeFlWZFg4NzRwdy0xbEFKNGVpZ3JpS1ZxVENzckhXWkhFQnVrT0FaNlR2bmZWenlqcTV5TnpqUWR3UzVXMlZKMDRZcy1LZDdmcDM0NE9GUDBtaVpONkNWeVJOQ3RyTEJZSVpQbmdXRVktUDRBOUhiXzN5VWdyX3dSTlQ4ZlE1Qnl4VnhwRjVSVFdudi1pWTNXSWQwaFMxa2sxb2x2WEhPa1l6Z3hsSW5zaWtLc1Z0RVdySVRURE1iNGJlSUNzMnZVTkxHNnJyZ0hMRUszY0RYOFRjaGc1YnE4QXYydS1uZm5vQ0syV0JoSDhWS0lWT2Y1ejBtY1kxY0NSb2Y0UTZXNGRQeXM0RFV6S1JXS0x1T0RCYlMtYzdxTlNuN0M1c0hVR0dRLVdrNnlnUXZTTTk4SDdsOG1BckRNdXQ5YzUzZk1FNVlHOTRUanlGemdsOGNxdVlCQVBqYWVQdldlOFdYNHBKb2NUZnVzdjlZMklfY1hNQktEbVc4WHlNRTFPaEhDSzBXbTJORGlBem5nX2t6ZmlFYTgtSThXWUJ0OGI1Vk5QQW85bm55TFJfNXRCRkdGV2NoLTJkYUxGQnR6S3NUQkxRZm5pQ2tVdXItQUdVUk1XN1FmRE1vSmR0a3lCR2tmRFVheXlBYWQ5ZEpfSE1hZUxDaVE0UWhpRnpNVHF5ZzYxQmwyXzkyMi1PY09HU1BSRElXeFNZRWRfUWtKb29mN3ptXzR1bWRVOUVBRk5vYUxxcERoY2lCa3NfNEhUM1diVXAzQ25jb3phd3JfZFlRRTVYOXpIWS0yUl9WdzZXVTZMdTYtaV9jNjBmQXZEX2lISklzU3d0bnF2WVEtenl3djVLNWJXUFdyV2ZnMzBrMV9sbFNsazktYjJCNUZmWVZBUUJsMkRaVG9VdlJzaDVZVHhiYm5EbGFzOEJVRE1XV0hSSEotZF9pZUNad2VIbGdWVkktT1lWV1NCLXAtSjk1akZuVmJnUEdiVjJSSE53US1IdkNrRDBpZElDTklEY2h4UnFGZUQ4Z2dFaTdfcnd6N1d1ZXpZS3V5aFNHa1hhVWMtbmUxdHRrRmRsYWJ5SEt1b1FJWDZ2Snp1cEpjWUo1OEMxd0kwUXBIcjY4U3poekpjMjBUVGk2VWc3T1FtVHpncy1JNDVKVGFuSW5NdHk0MmlubjdqU3daWXQtMERWTXZPZ2RZeEVVRk9UZE5vWmFWMTI0QjdfS0c3bGxmY1o4TXUwNkR3M3FXWklUSExpcmZhZjhnU0tNRm41b1dfVjdCSWJXR2xiOTg0QkNjRExTOXRuaEllQnp5akRUcmhFOXZwdDNtNnJaMGpjcTFjdEVkZ0xFM2NwR0ZYX3lHOEJoenVKSk9jNTNyWkpydVY2TVNzSTlRYllNd0pUcmJuLXdMYVN0ZWx5b0JTUVl3NndDWmVxMGwtQ2VxX1kycExhQVkxb1JRajN1LTBrVHlEcXl6N2lSaTJqcXN4TW9sQTdmTE5USEZQbi0tNUNZTnB0c0paM2tlSjRINmdkc1phTHFvMTFYZ1hnWFJVcEFrb1BYbGJhdU96LWQzUFpNdXBUaGJZNF9Obi1Va3RrdGhYTV9IbTQ2S2JkQkFrY3J1UGhiRTZMMDN3OGVSaFhBdU9ZR0ZvamZlZFdQZ0R6YjZuQm1vSnhudHZ6UjNuZmliYWQ0M0VXZ2RmMThkQVBncHhzaTVuWF8zUElfaW5qSVVHdlh1aGl1TDVvOW9TOFpCQ0dsaGdWWnFKN1hMUzFIREJjVnhHT2hCUDB5b1ZUTXM0cFZBaWl0Tm0wVFRrU3hPT0RNQnBZRFFCd1dURWRGTFdMbkNGWVQ1a1RjUENoeGkwZnFTRUstXzJkemNCNXRxWk54U203T2oxSGpGMGUtZENUdU5TcS1xNFVRQXptQWgyNG45WHBlRE9Ea0VULTdwZGxxcGZXZ1FEU3NMV0U2UDdYZWNyR2R2N3hJaVRoVEZ6R0FTVnZ0QnJrLVRISVRuRURhWkZTaVBieTZPcUJlMG5wRlA4bzJxZHNNSnZmTnQ0Q1FvTVpPRlJ0NEk2cWpVbEtBcm92Q1c4eDBmYVdFdVpGd3Rjek9jNS1pOUt2VFdhcFhzVlFOR0NrMHY0UTFmQ2x5cDVpbzdCUTVvXzFWOHNtUDBITlBSMTZXalVGazE2a0N6WTA3YVpocjhNdUZ1cE9WdGdiR01WRWlpQkNQMjZ2TUVfeENOSDVmVE9uNFM1a2xKVFcya0VZb05VRldhYVJOUXdkajF4bkk2Q0hZSXNSbDZMRkFENVJLOGlMYWxCNE9fd1VOdVRBYVkzbE5xUVVCRDNtM25FNUE3TGx0eVA2M3JoR3pHdHBXOGVvOXphNFNiTl9QbHFMMVdRY1VnTWxreG5PcTNqRFdiQnJic0RUekEwN3pRTVhUTEhKMEhSMHQ5RG5ONkwyVXphb2VYNmtUV1VteU54WUNfUHY0aHhfRGVoYjVnS2ZSc3Vha25HSm85b0R0TDNkcHViZzV2ZS01WWdhZ0pjWVR1T1laLWsxdUNnYzZlLVdjWVNGdndfY0YwMDdmR2xnLXFkbW1vM2dZeVJxT1dkT0FDT05iUFFvaWxISll4RHhCTldqOGg1Qi1hUENxejJTX0hwU3JwUzF2QzJIeHd3bnpSXzJSenJFbkNHUElmSDJYNVhEczV2c3FYOFN4Y3hTVmdKOVBEbTlkR29HOG1GT25YejVLWDFobWI2eTBoSzhhZFNVWnoyQXFKYzBQVkszWWVJcHZLblQyY19mclNocXJzU2tDR29VblV4NkpMWHhBQVdSOUJBVGo5N1FlX0paU19hVTZvZk1yNFlYdGdlYUNaY1JSNEQ0X194TWV3ZGxMSUlJUWFZWW5MaFNFUVBPaUJFYnYtQ1RaeUtVdTFidFYySVA4aWU0YmstOFB1Vi00RVFlM3VwN1hMb0lFMmNHbUFIYmtLTFFudzNiSldqWWo5Vm5mazFRZEFMdnJpUnBpRnotSGRlbVUycUxsMVl1WE9sMUZuRVFEaFFTRUtfbS1CTHNEZ0FtUk10d0FFMGhhazhHb29JSDZfQjEyZHF4OExGSUR5TV8zdWwwWkNNaVg4LWExT05xVzhRanhoTUhNTHhTZWQtQTJtOXZnbGVuaXR6R1RLUUVUcU9yOElkOF9xSDFRWE9GR2JCeXZ6eVJWUEw1UEViQUY5WFM3V2FMY3BTSGw3bG1HRngzQ1JOcldxdGQzTl9OMHZWMlpDdFpFYnJMcm02YmlQMmJLM2czLTZmSHdjdVBibmk3cGdnT0ROd1VHZkVLVnFtT1RYTlFwYTJ1eHZwd0c4WEowV0tUVVF6RXhDUkVKcERRcEFnbjYwNUlDWS1CS0xqaXNCRDI4U2NiamF5LWR6UnhmQTRxVVFYTl9rS3RJOUs2U0o2RmxCV1NmdmRJa21OWEExZF9vdGRIRFdNZ3FYUXB3YkdXazBhMFpiUWx5SllpWWd0UHpNNHBxWk1tVkVNYmkxMFpQUFE0Z29YZzFlSUVFNkRoWmZEMGFFd3hvLUN6TXBYU1lHd0FNY1VxWXhZZ3FmV0NXbkQ2eFZnUGo1ZHpUR1YwUVluVGxCQ0NnTDZMd1dxVGdqYzZiYkU4Z1Z6cGlRVU9Mck40NDk5UmNJelFwMk1GTFNPUUl2aGVsSllCWVlwRGNYODdNd2VjeVphTE5UVjFKM2ZPeUYyYnI4N2tzLUtqMEM1YjF0ajdpemdITUtnT3ZBZlZjYkEtR2k0VXFfeVhqNFFaTGloaThJSmdHd0VVU3hPaGU0T1dQaWlZS1EyUG9pQlhSdmlqaTJVQXd0UHR5X3hDekJ1NExKMU1mQ1REc2JnWS10Y2FldVdfYW9CT0I2Y3RZYU9jMXBrT3ZDX1ViYWphdktUdHVWcHMxUTBfZkFubjdCYVM3VHpTRXNhVjZ2cExIb2g0MVp2emQ2VGpzTzVlQi1ldWZzZDhUMUpxZnBLeXhYQUJRSTVPRHk3SW1mZW01VEpsWjdqY2diT0lpLWxYZS00R1ZjSVRoSkpPOVNaSDl4c0RJSnp2MU4yaGEtZWd2ME9Za2R5b0xOMEFrSzgyd3VEZlNDcV82Y2pGUzc1M3lVZHJ5Y0JsYVVOczFIVERHa3hJdUNiX3NsVjdNdXlhV1V2cEg5UW9BTVNuRm4xcUpQMmJLbW9LM1RfLTB3RzBPUzZZd2JQNUh1QzZlV0wwdDVpUENlbFRiNS1KRnlQZUhCY1FEb2xyY0UwbjZ6NUhEcHNzU0xndHZYRnNoekh2bmdjXzk4UjlSNTNCMlZsTURQX25pYnVVTUk4MTdUaWNvV1puUUhESExqVFBWNi1uR3hHMjFMcjhMUjRrWE12VmpBSXFwZzE3bUNncjg3U0luU0tDSDN5RlBCeVRyTW9oWVcwX1hCOEJJbVBwZlRLZ2N4by1IU0N3WFJWaXNkOHdPWUZfeGpGcVI0Q19xVXQ1bWVfQTVlTEdGUTFHOHd4Mk5FVUEySWI2a1hLZ1NSZE9WMEZqdHlfdGlIRlg3LW1qQ2IzZVdhUW1aa3BkNVZjSHZmT0d2S3JQMmRTWHlYemlnSElRalc2X1NfdG1ScHVWXzJsSGdaTE5LRVV3dXRidUJtaHpQeDBIRlJZUE54VGg4TnRjVVpUbmhpSEExaFZlOVNsS1hFQXBXRV9fYnJQbXJ4Yi1Qd1VzTG9WY0ZvMkJicW1zNjZxaURnUjNXemtKLXFpclZsaHM3NlBWRE8xaUJLdHlCSDdpLTJ5OG5qY2UwN1dFLUY0b0tiLXhwR1RIT1VRdDJxdG1GR1hKeURxcUlveEs4MEJZb1hZd1BaWGpvdWQwSEU0cUNPSE90YS16S3VyY09MOGQzT01GNXFielFGLWZrUjA1Uk92RVU4VGszMS1pMUpkN3hHc0FMa3VDcVowckZYQ21jQTVaTzVuc2F0WnNxcVhlQ09VYzdidFpXbzZvbHUzc1JDVHZ5Q2RlWXR2RllHNnBtR2F0aHlKZGlzazBwT3BsMXdoUWU1dThMZk0yV2JIbG1mSzVjQlI0ZlhEVDU3MmxkOGM5c3llLXZiYUc0S1VCY2ZvT1JyMklpRTNlRzdCN0FCSTcyRjZ4N2pRR1VYRG1aLU9MZlh4Wi0xZGJyUmhvZ1dqT0RudUpBYTRtWnMyenVDMzBpOWZUMDRKdElpeTJFXzJFQ2lMWVd4V041WnViUnhZbmtlNTh0bW04ZHpXTDloaTlta081ZkhwUjR3eVRYbFBOLTZqTy0xdm5PZWVMWl9EUlRDXzhFQks2WFZDTTk3WE9jSnhFUEtkWFh0MnNwVC01Rmx6T3Y2WHNIV1pDVzcxaE9NcV9qb3NBLXVqZENUdm56YVk3MkI1d1F5RjlsbDBGNVdtcnMwc2dpNW5MWU9nMXFaQ01ydDRKMUdkcEpzdXN3QVFwdm1DQVhuLTAydk9XRnRSX0s3QXkwOTFkQmxkNEZTVXBQTzhVbUJuNG8yTWViSHBtclozSjJqa0VLdkpmMHAxaFp3MzNPNl9GRlVpM1FxMTdXUmJUNEExVUZ6U1VpNU42VXJjWTQ0Z2FkMnBPNi1xVFJuMXljTUE4U29FVm9SVWJaczJEZ3FyLU53RVMySmsyRzl4c0dpWkhla1VqdjlyWGw5c2tWbGI5V2RYSTBoLXJ5TzFfUU0xUUNHYldsX2xCaEdBdlZjMExqQ1I3d3lpeG1BRHVJMHc3Wlc3NHlDQUpKdUtJT0xyNTd1bzYxQmYzLXFYWXRIWDh2c0xPamc5N1IyTExHeUpKMWhVcVZlQU5sa3B3LkhsQXBVUTQ1YTdxRDRiRUVJWlRmR3B6b3lBNi12UlZQVkhlV000eUZVV3c\"}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "10471", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:25 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d722a30e-7166-4b77-ac8b-d10da0d0cd51", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "13c9f757-cfa5-4034-aca3-9f349e36f94d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-\",\"deletedDate\":1619648725,\"scheduledPurgeDate\":1620253525,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/0f21985e3d2d42ed899ba2b76e892011\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"-pIR3W-OUcEZgrO4h8F7dAIRen4t7QW_d6oO6jSd28-dXPqUUEPNlEsgdtdXbqqhWLDN4w5LOWOLDgQ5TcXC-kw1wK2j5tAPO_YA11c-2cgI45cWlwuW0RLFuiXYuW3gult68a82fAGQmwe82bxs3pYwJQXdMT7x6aJwmqnVsqOc8aJP0BZM-Gacp-CRCHXRcs7_r8WPOMw4tMPrg_lI5b99Ctqy0693nlWE1-jNeCdtz5YhQuICK8bwwJnOruoadkgliPZWN4NEvsjeJOzY3AXUrOrciWVgW6LeLCvMDiJ39Ca0PkgEVFbKypOUeEPAQT5yNDgF7hXEx6HRdvdalQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648725,\"updated\":1619648725,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "931", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:25 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d825075e-87d5-4ed1-b6e9-f51a1c283ff4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "9f865f03-d1d6-43a6-84e3-f3fabd1ce26a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:25 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "47309e6e-046d-4cce-950e-4db9197259a6", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d0c10c91-ab19-4528-889c-6f7e634a9500", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:26 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "f29f925e-6b4c-475f-a7df-7e84595d76a8", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "9f8cb011-8694-4bff-b2d0-d6f6b8ac846d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:28 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "5d5666b1-fc77-4316-8a55-c741c6150a3d", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ce055ff3-57b2-4ecb-a4a5-1b98b63bc25c", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:30 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "bbd9e2d3-33c9-4bb3-a821-10a921564444", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b01d7471-367e-49bc-ac8e-6818410e7164", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:32 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "9a92098f-b039-4256-bb1c-024c1ad7eaa4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a3201081-2694-45d0-9811-dd0d39242bfe", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:34 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d9c17e4f-0698-4f35-b6ec-9b36faf73eb5", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c3b706bb-41af-4b7f-a84a-927cd1846d39", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:36 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "159c667d-1baf-46be-ab15-6c96a01339bb", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a3841b95-0a34-42b3-8743-100567df6cd6", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:38 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "36ebf897-67d1-4756-a2c6-9863f99ea6e8", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b61af0f7-f574-4a38-b476-2df62e677743", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:40 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "26c9f835-3b7c-4ba4-a341-b5ed85772517", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "a915f95f-b580-498d-95cf-c049eafd62cd", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-\",\"deletedDate\":1619648725,\"scheduledPurgeDate\":1620253525,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/0f21985e3d2d42ed899ba2b76e892011\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"-pIR3W-OUcEZgrO4h8F7dAIRen4t7QW_d6oO6jSd28-dXPqUUEPNlEsgdtdXbqqhWLDN4w5LOWOLDgQ5TcXC-kw1wK2j5tAPO_YA11c-2cgI45cWlwuW0RLFuiXYuW3gult68a82fAGQmwe82bxs3pYwJQXdMT7x6aJwmqnVsqOc8aJP0BZM-Gacp-CRCHXRcs7_r8WPOMw4tMPrg_lI5b99Ctqy0693nlWE1-jNeCdtz5YhQuICK8bwwJnOruoadkgliPZWN4NEvsjeJOzY3AXUrOrciWVgW6LeLCvMDiJ39Ca0PkgEVFbKypOUeEPAQT5yNDgF7hXEx6HRdvdalQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648725,\"updated\":1619648725,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "931", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:42 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d441eefd-1472-4fe4-80c9-b02ffddbea59", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "cd6742bd-b131-4f7e-b9ed-5b298e4855dc", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:25:43 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "fbc05c60-69fd-4763-8573-cd557b7e22ee", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "31523367-9a04-46e4-af2e-d2a7f5e448b6", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/restore", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"value\":\"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUl5WVdabU5tRmhNUzAzTm1Ka0xUUTBZVGN0WVRjek5DMDJaalZoWkRCaU5XRTRPVGdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQzB5TlRZaUxDSmxibU1pT2lKQk1qVTJRMEpETFVoVE5URXlJbjAuY2lEMjFBc2YzaFZwVjc4dVFMV1RsUzdxZ1c5Wkp2UWhWZ3lGbzF2Y3Z5enZGdDFTUnlJVXdCekI5OTJsOVNhUF90REdXbEx6QURXTjFicFJweVp2STlBeHlIdEFkTWRxSTB0eGhLdHhGMmNOXzEtUGRVYUt4MWowRllKb3Mybm5UcjEwMnN6VGR1ZTdHY1dnb1BUTHRuc3llcVhCdkdVSGcyVnZOdjh0V1JQQV9WTjRKWWtfS2pqdGc0WmF0VW0tUk81VnNPZW13RXBaNU9NVndjRG8yTkd2emdVVkFERGtvc3dSYzZ3RVlxU0NHbkEzWkxtVnlJRVczcjZYd1Z3SWx2TkJhZUxGOXY0Ml8ycjUtc3VneDA0WUlZRnc4a0tSZEp5OUI0ZU9KXzRHa0stZm50X3Y4UFFlTEdGaVlkRkFZUVc2Q1pkVEh6akZFRG9QaWphYWx3LmxCRHNtSWt6MU1fMEpfMGdCakMxLWcuajNYZVQ5TlM5LVAyWjhPQTFlUW5TSEhvem01N0czaXhYeHRGWUtBU05WSTM1cFBPbUswdEVJMzltY0FRLUZtRGV4cVdWbUw3QWxYWUk1M3ZTaXEzWGtOMG5PLWdvSkhsdXNXM3BVemthRG9PWlNxY25QV0FxVXFwZi1zZVZCdkJqMXRBb2dsa2dTZ2psbUk0UlQwVFJJbkYzaEhXd3BIQVRzbWd6WnMxMVlpdlZ4RTlpbTkzNXplQVdaRXFRRFlncGJNZDdLdDN6ZlpJLTN4M05YelpZXzQ0NUptNGd0bzdLTDNEbENIbFpSU0lnZnhQc3Q3VW1RWC1FNk5oWklNWUlfMzNRNkdtTFBVNTk0QVozaERBcWlZXzFQeFdqdV9KY3dWcVdqLVE1TjVqWk5sYmo3UGw2MjhXMEVpOUF4R1FfQkFrLWJpYngxbHM2WWIwS05Oa2J6d1pPdjF4ZVUtYTRCVGFGZWNWS2QxR1dBM2pzZV9PSjNYcEV1ZlNzSEU1TktQeF82azVUMnFLMUliV0JHd3ZFb1R6NjFWZEpseGZacXdtczZjNGU3cHE0MHhnQU03M0xNakVqdlcwYjAwbHFHZGxBc1hEcnZMMDl0ZlRrRThIaHFfTlIzVFpGMFBtSGZrLUxRNVpMVlRLSFF3TkxtVVR2bkFLeWY0UFk0b1hCbmJzWm1OdDdaalFOUTFMOE1FNzJfQ0dPVmxuZjEwOWhDZHpud2dNWjh0cjdYNTVFbHIzUVdoR2FXSTZlc3FVZkNSbnZHZk80T1NjTU1QNlZ2UGtUdThMb3hKVzZ2X3hKZVpJUWlEcEloVnFGcE5UZ21PQXN3WlJYcmZhQ0ZqTkE0cDVfVUp0aW91aWUxOG10V2ZRQ2lyeGhHNTMwTFJHWEZLTkdkMzVpbkw4WklnUnRJQmtRR3NNZ3Z2dDZ5NnJiam5JV3ZEYmd1S0F5d2lmQk4xWm5pSHZYY0ZhUkYxZVJaU1NhM1BidkVSTHhoR3VmeGZfQzVYQjVzNXk4M2ktQkUtUEVFN19Ub0Y2YU1LWkU5aExXLThOR21XUFgxSVBqeG5OUFpNZE5wM3dkaTJyekJxLW9IMHlVNHFZX1hJZFIyYjU3STYwY2J3TThrS1NKcWhnS1pyRW4ySHR6cG5lWF9pei1jSHlnaHBSb0xQd0dMTWd1V0RqTUhOY0duZlFISFZhUER1cl85S3VsTnNZSDNLR3R1YlpTZUt6ZHM5ZWxrSGRJMWFuVG1lVnphZTFaZXRLOW81R1dQSEx3bUN5RGRXWlBYbDNRN0E3NEl4YkNoUFVvd0ZVOEVGbnJ6Yi16clBDOGNMNTBtZ0dIQVdwMDk4WEltSFZSZ2l0QWoxbXJycWhuejZYMjNqZkZVWGtfT1VDQ25KUC1BX0UwTXQ5dkg4dTJUb0hURnRqTElIQms5bzlyTEU3a3FWek9YZXFpOTlNekFhZUVEUnRLSF9FMzdxc0tSQWRORlRHUDVveTJtMXd1MTkwREdrQzU5aW9Ld2J6SkNOVjdOdmJmSGFrc1MzQmlzUFUwbzc3UjlDaHpEMjk3czZVUEdFbHJpQkR2LXRDRFFGYXlNRXNMeWxoZ3hQMEttbEczTFhtQmIteXd2aWVPOVBWbVU3TnZIQ0dlcEZzVTFMd3NabnRkSWZoQUpWRXppMThydktEaUhBSUlTZ045LWJLMTV2ZjFpOGNzNm9mMGRudDRyYWRmb1pvR1hla2VoUV9RdHJHRXNPdFNxRi10NXpCVXlCSjJMeGlfd0VyV3ViV3hkdk9YNjc5WVduaHdpbnR2aFZZbnpGTng3YS14c3hqelVXR3dCSFowTjllN2VnUjNjRHhqdjBlNzMzTTVBdUhmU3I3djY1S3hITkxQMmVXS2QydkhlQmRVWjlOdkdYamhxTno2eWVfNzFibUpjMW9fQWNiUHRKTGY2d2NhN2h4T05HakZla0dxM1Z1b1FOc2lnQkVhRkxwb3ZUMHllNkVTOTdkTWRPcDFjXzRTZF9WZ052U1NCMGFPYW1zY0lsMjJaM1JzczlZSkt3WkNlbEx1dkhCdTZtQXlOaUFTbEpXZFRJenNQR3hMUV9GclBJX2x1d1p4dG9HaDZTX0FNWW80NDBqS0RmbW9CdzQzTUJiMjNVTXhJWU5DMHY4THdXUTFuUkdhU1hzVDI3Uk14ajhCY25UTkRWWjN0SGF4WlNuRTRuRVFuQnRyUWJnaHpCdjBLSTRUbDVnRnp2Skd3TnZQakExcXl5dGFHTGU0aTNzeWNoSVRjY0VZWEt6ZkQxVmRKQWFQVWRtSFV5Z251NzNkNjhOcWk4VVQ4cWNaRVFlcU5tMnZ6cFhZUU5xb2ZwTmdBYnhBaWJXOWJXejJBUG0xNndDYU1Ka0VRSkQ1MlF0cmQ3WjNvQkMxazZfZVF0YlNjZGlKWUxlN1NRcFlWZGUyMUZOdDJGaXBIbDc2ZnJ0a2lwb1R4VHEwbHMwWjEzY05ETUF3dlc3eGgyN0ZqS2JGT01SN0pUMkVCMkpaVjBmcDd6d2hXSHRZN3R1NTFSYnQtM2E2b2s5LTZvRnUtdlB0Nm5KXzVZTTRpSjFmbEZNZWN0aU9UNThHQ09BbGNfZ0JhRU00d18yQm1pN2xadzlsOEx3X2t1WjdRdEpyUDQxWjNyLTY0QlBiTHJPY1NKT1hsN2xzMGZyc2MyeFlBVFdVbktpUGxqdnJUU3hTSDFwWi1va0FleDd2Wml0RjlHTUh4dFB4a2hGd1B4UUNhNkN1LXdscWNGYjJSRHR1YlBuWlVNV2VLYS1ud3ZUcjFIVFFKbVBuZHctOWpFUmo0b2tLb2ZudnJLbHhZNDVPU0ZqdDhoS0dwM2RTbjJ6emV6RWx5V0hFWnhla1V5ZXdVR1YybnFhWU83UXpvamdMM3hJbmoxMXRSSzVDVF9iQXVLd3BoOC1FSDMtWmJ2R3FURW45eXNIQ3Zsbi1PODRiWUlqYnBZdzdRLTRYWTkxVmJlOXJrSDV4M1UyZnZyeEdlQ241Wkk2WFBzVlBycGdXTy1DT0lBOWV1Q0RzcHB0alVfbUFBc1QwTVM0VFM1bVdkcGhBdm5xS2VaQS1tQ0FYOERjQXVieTkzMmdRUEp3SUFZaWJKNE1JVGQ0OXhkbzFQZjd0Wm5oME5vRFA0cjJ4R2ExSW1nVXE3SkhiYy1jV3prS1g1OVNxUzFSOGlTaFVGWWlCVUQwOGFoNFVLcjZWbjF5MWdaNUJWd043bU9Ub05pV3d3djdvaEp2YUtsSkJFQnNvZEs5Ti03ZXp0YjJ1STZjaHBxcXVoRkhTeGlZQ29KclhLWEhHQ0VzdC1Id1AzRmFPdXoxVTIwRFNHQkE1dTd3cHJ5U1k1Y0dZMzhmcVFHYzFqU21FU0dZVzdTNWxXbld3SEh0ejlEVjljZ1BnX3dXQm1LczkxVGJrUWtBOTZLbjljeXh2ZjEzamtwT0habUs2ZFBCZzNOZHQ1Vm0xTk9WSllYWVM2T3dzeThUVW54SnkyMjVFMklSV2xNU0E2bDBySWFVZXh6V1FSYWFDZWsteVJTMGwxZmJXME16V0w3bDNKRWxCNjk2bjM3NGlmR2dsb3h5RW1JTUl3TzF3QTRfa3Y1Q2RVSjk0Nk9OT0wzc3ZUSzBod24xZjZ3SEppT1lQYlFUTXp3LVdNR1p0RHRSM1hjNTRQa013LVhzWUE5RkNNMkxEOElDUGE5LThwV1hpNmZzWlpGVXVvcXpzLUNLaUREVi1IRXVpYnRGcVlXeHNfeV9RaHdIRHpCMjhZNHptUTNpQXdnMUZmNjFSUGNHQnlFMVdTeU96c0NyQkpRblE2ZHBKYW5MLWRHUmVPc0pENEVoWW42Rkk2QWhaNjE5NnBfV2pEWFl3Z2YyWkVsZWRKS25EeFlWZFg4NzRwdy0xbEFKNGVpZ3JpS1ZxVENzckhXWkhFQnVrT0FaNlR2bmZWenlqcTV5TnpqUWR3UzVXMlZKMDRZcy1LZDdmcDM0NE9GUDBtaVpONkNWeVJOQ3RyTEJZSVpQbmdXRVktUDRBOUhiXzN5VWdyX3dSTlQ4ZlE1Qnl4VnhwRjVSVFdudi1pWTNXSWQwaFMxa2sxb2x2WEhPa1l6Z3hsSW5zaWtLc1Z0RVdySVRURE1iNGJlSUNzMnZVTkxHNnJyZ0hMRUszY0RYOFRjaGc1YnE4QXYydS1uZm5vQ0syV0JoSDhWS0lWT2Y1ejBtY1kxY0NSb2Y0UTZXNGRQeXM0RFV6S1JXS0x1T0RCYlMtYzdxTlNuN0M1c0hVR0dRLVdrNnlnUXZTTTk4SDdsOG1BckRNdXQ5YzUzZk1FNVlHOTRUanlGemdsOGNxdVlCQVBqYWVQdldlOFdYNHBKb2NUZnVzdjlZMklfY1hNQktEbVc4WHlNRTFPaEhDSzBXbTJORGlBem5nX2t6ZmlFYTgtSThXWUJ0OGI1Vk5QQW85bm55TFJfNXRCRkdGV2NoLTJkYUxGQnR6S3NUQkxRZm5pQ2tVdXItQUdVUk1XN1FmRE1vSmR0a3lCR2tmRFVheXlBYWQ5ZEpfSE1hZUxDaVE0UWhpRnpNVHF5ZzYxQmwyXzkyMi1PY09HU1BSRElXeFNZRWRfUWtKb29mN3ptXzR1bWRVOUVBRk5vYUxxcERoY2lCa3NfNEhUM1diVXAzQ25jb3phd3JfZFlRRTVYOXpIWS0yUl9WdzZXVTZMdTYtaV9jNjBmQXZEX2lISklzU3d0bnF2WVEtenl3djVLNWJXUFdyV2ZnMzBrMV9sbFNsazktYjJCNUZmWVZBUUJsMkRaVG9VdlJzaDVZVHhiYm5EbGFzOEJVRE1XV0hSSEotZF9pZUNad2VIbGdWVkktT1lWV1NCLXAtSjk1akZuVmJnUEdiVjJSSE53US1IdkNrRDBpZElDTklEY2h4UnFGZUQ4Z2dFaTdfcnd6N1d1ZXpZS3V5aFNHa1hhVWMtbmUxdHRrRmRsYWJ5SEt1b1FJWDZ2Snp1cEpjWUo1OEMxd0kwUXBIcjY4U3poekpjMjBUVGk2VWc3T1FtVHpncy1JNDVKVGFuSW5NdHk0MmlubjdqU3daWXQtMERWTXZPZ2RZeEVVRk9UZE5vWmFWMTI0QjdfS0c3bGxmY1o4TXUwNkR3M3FXWklUSExpcmZhZjhnU0tNRm41b1dfVjdCSWJXR2xiOTg0QkNjRExTOXRuaEllQnp5akRUcmhFOXZwdDNtNnJaMGpjcTFjdEVkZ0xFM2NwR0ZYX3lHOEJoenVKSk9jNTNyWkpydVY2TVNzSTlRYllNd0pUcmJuLXdMYVN0ZWx5b0JTUVl3NndDWmVxMGwtQ2VxX1kycExhQVkxb1JRajN1LTBrVHlEcXl6N2lSaTJqcXN4TW9sQTdmTE5USEZQbi0tNUNZTnB0c0paM2tlSjRINmdkc1phTHFvMTFYZ1hnWFJVcEFrb1BYbGJhdU96LWQzUFpNdXBUaGJZNF9Obi1Va3RrdGhYTV9IbTQ2S2JkQkFrY3J1UGhiRTZMMDN3OGVSaFhBdU9ZR0ZvamZlZFdQZ0R6YjZuQm1vSnhudHZ6UjNuZmliYWQ0M0VXZ2RmMThkQVBncHhzaTVuWF8zUElfaW5qSVVHdlh1aGl1TDVvOW9TOFpCQ0dsaGdWWnFKN1hMUzFIREJjVnhHT2hCUDB5b1ZUTXM0cFZBaWl0Tm0wVFRrU3hPT0RNQnBZRFFCd1dURWRGTFdMbkNGWVQ1a1RjUENoeGkwZnFTRUstXzJkemNCNXRxWk54U203T2oxSGpGMGUtZENUdU5TcS1xNFVRQXptQWgyNG45WHBlRE9Ea0VULTdwZGxxcGZXZ1FEU3NMV0U2UDdYZWNyR2R2N3hJaVRoVEZ6R0FTVnZ0QnJrLVRISVRuRURhWkZTaVBieTZPcUJlMG5wRlA4bzJxZHNNSnZmTnQ0Q1FvTVpPRlJ0NEk2cWpVbEtBcm92Q1c4eDBmYVdFdVpGd3Rjek9jNS1pOUt2VFdhcFhzVlFOR0NrMHY0UTFmQ2x5cDVpbzdCUTVvXzFWOHNtUDBITlBSMTZXalVGazE2a0N6WTA3YVpocjhNdUZ1cE9WdGdiR01WRWlpQkNQMjZ2TUVfeENOSDVmVE9uNFM1a2xKVFcya0VZb05VRldhYVJOUXdkajF4bkk2Q0hZSXNSbDZMRkFENVJLOGlMYWxCNE9fd1VOdVRBYVkzbE5xUVVCRDNtM25FNUE3TGx0eVA2M3JoR3pHdHBXOGVvOXphNFNiTl9QbHFMMVdRY1VnTWxreG5PcTNqRFdiQnJic0RUekEwN3pRTVhUTEhKMEhSMHQ5RG5ONkwyVXphb2VYNmtUV1VteU54WUNfUHY0aHhfRGVoYjVnS2ZSc3Vha25HSm85b0R0TDNkcHViZzV2ZS01WWdhZ0pjWVR1T1laLWsxdUNnYzZlLVdjWVNGdndfY0YwMDdmR2xnLXFkbW1vM2dZeVJxT1dkT0FDT05iUFFvaWxISll4RHhCTldqOGg1Qi1hUENxejJTX0hwU3JwUzF2QzJIeHd3bnpSXzJSenJFbkNHUElmSDJYNVhEczV2c3FYOFN4Y3hTVmdKOVBEbTlkR29HOG1GT25YejVLWDFobWI2eTBoSzhhZFNVWnoyQXFKYzBQVkszWWVJcHZLblQyY19mclNocXJzU2tDR29VblV4NkpMWHhBQVdSOUJBVGo5N1FlX0paU19hVTZvZk1yNFlYdGdlYUNaY1JSNEQ0X194TWV3ZGxMSUlJUWFZWW5MaFNFUVBPaUJFYnYtQ1RaeUtVdTFidFYySVA4aWU0YmstOFB1Vi00RVFlM3VwN1hMb0lFMmNHbUFIYmtLTFFudzNiSldqWWo5Vm5mazFRZEFMdnJpUnBpRnotSGRlbVUycUxsMVl1WE9sMUZuRVFEaFFTRUtfbS1CTHNEZ0FtUk10d0FFMGhhazhHb29JSDZfQjEyZHF4OExGSUR5TV8zdWwwWkNNaVg4LWExT05xVzhRanhoTUhNTHhTZWQtQTJtOXZnbGVuaXR6R1RLUUVUcU9yOElkOF9xSDFRWE9GR2JCeXZ6eVJWUEw1UEViQUY5WFM3V2FMY3BTSGw3bG1HRngzQ1JOcldxdGQzTl9OMHZWMlpDdFpFYnJMcm02YmlQMmJLM2czLTZmSHdjdVBibmk3cGdnT0ROd1VHZkVLVnFtT1RYTlFwYTJ1eHZwd0c4WEowV0tUVVF6RXhDUkVKcERRcEFnbjYwNUlDWS1CS0xqaXNCRDI4U2NiamF5LWR6UnhmQTRxVVFYTl9rS3RJOUs2U0o2RmxCV1NmdmRJa21OWEExZF9vdGRIRFdNZ3FYUXB3YkdXazBhMFpiUWx5SllpWWd0UHpNNHBxWk1tVkVNYmkxMFpQUFE0Z29YZzFlSUVFNkRoWmZEMGFFd3hvLUN6TXBYU1lHd0FNY1VxWXhZZ3FmV0NXbkQ2eFZnUGo1ZHpUR1YwUVluVGxCQ0NnTDZMd1dxVGdqYzZiYkU4Z1Z6cGlRVU9Mck40NDk5UmNJelFwMk1GTFNPUUl2aGVsSllCWVlwRGNYODdNd2VjeVphTE5UVjFKM2ZPeUYyYnI4N2tzLUtqMEM1YjF0ajdpemdITUtnT3ZBZlZjYkEtR2k0VXFfeVhqNFFaTGloaThJSmdHd0VVU3hPaGU0T1dQaWlZS1EyUG9pQlhSdmlqaTJVQXd0UHR5X3hDekJ1NExKMU1mQ1REc2JnWS10Y2FldVdfYW9CT0I2Y3RZYU9jMXBrT3ZDX1ViYWphdktUdHVWcHMxUTBfZkFubjdCYVM3VHpTRXNhVjZ2cExIb2g0MVp2emQ2VGpzTzVlQi1ldWZzZDhUMUpxZnBLeXhYQUJRSTVPRHk3SW1mZW01VEpsWjdqY2diT0lpLWxYZS00R1ZjSVRoSkpPOVNaSDl4c0RJSnp2MU4yaGEtZWd2ME9Za2R5b0xOMEFrSzgyd3VEZlNDcV82Y2pGUzc1M3lVZHJ5Y0JsYVVOczFIVERHa3hJdUNiX3NsVjdNdXlhV1V2cEg5UW9BTVNuRm4xcUpQMmJLbW9LM1RfLTB3RzBPUzZZd2JQNUh1QzZlV0wwdDVpUENlbFRiNS1KRnlQZUhCY1FEb2xyY0UwbjZ6NUhEcHNzU0xndHZYRnNoekh2bmdjXzk4UjlSNTNCMlZsTURQX25pYnVVTUk4MTdUaWNvV1puUUhESExqVFBWNi1uR3hHMjFMcjhMUjRrWE12VmpBSXFwZzE3bUNncjg3U0luU0tDSDN5RlBCeVRyTW9oWVcwX1hCOEJJbVBwZlRLZ2N4by1IU0N3WFJWaXNkOHdPWUZfeGpGcVI0Q19xVXQ1bWVfQTVlTEdGUTFHOHd4Mk5FVUEySWI2a1hLZ1NSZE9WMEZqdHlfdGlIRlg3LW1qQ2IzZVdhUW1aa3BkNVZjSHZmT0d2S3JQMmRTWHlYemlnSElRalc2X1NfdG1ScHVWXzJsSGdaTE5LRVV3dXRidUJtaHpQeDBIRlJZUE54VGg4TnRjVVpUbmhpSEExaFZlOVNsS1hFQXBXRV9fYnJQbXJ4Yi1Qd1VzTG9WY0ZvMkJicW1zNjZxaURnUjNXemtKLXFpclZsaHM3NlBWRE8xaUJLdHlCSDdpLTJ5OG5qY2UwN1dFLUY0b0tiLXhwR1RIT1VRdDJxdG1GR1hKeURxcUlveEs4MEJZb1hZd1BaWGpvdWQwSEU0cUNPSE90YS16S3VyY09MOGQzT01GNXFielFGLWZrUjA1Uk92RVU4VGszMS1pMUpkN3hHc0FMa3VDcVowckZYQ21jQTVaTzVuc2F0WnNxcVhlQ09VYzdidFpXbzZvbHUzc1JDVHZ5Q2RlWXR2RllHNnBtR2F0aHlKZGlzazBwT3BsMXdoUWU1dThMZk0yV2JIbG1mSzVjQlI0ZlhEVDU3MmxkOGM5c3llLXZiYUc0S1VCY2ZvT1JyMklpRTNlRzdCN0FCSTcyRjZ4N2pRR1VYRG1aLU9MZlh4Wi0xZGJyUmhvZ1dqT0RudUpBYTRtWnMyenVDMzBpOWZUMDRKdElpeTJFXzJFQ2lMWVd4V041WnViUnhZbmtlNTh0bW04ZHpXTDloaTlta081ZkhwUjR3eVRYbFBOLTZqTy0xdm5PZWVMWl9EUlRDXzhFQks2WFZDTTk3WE9jSnhFUEtkWFh0MnNwVC01Rmx6T3Y2WHNIV1pDVzcxaE9NcV9qb3NBLXVqZENUdm56YVk3MkI1d1F5RjlsbDBGNVdtcnMwc2dpNW5MWU9nMXFaQ01ydDRKMUdkcEpzdXN3QVFwdm1DQVhuLTAydk9XRnRSX0s3QXkwOTFkQmxkNEZTVXBQTzhVbUJuNG8yTWViSHBtclozSjJqa0VLdkpmMHAxaFp3MzNPNl9GRlVpM1FxMTdXUmJUNEExVUZ6U1VpNU42VXJjWTQ0Z2FkMnBPNi1xVFJuMXljTUE4U29FVm9SVWJaczJEZ3FyLU53RVMySmsyRzl4c0dpWkhla1VqdjlyWGw5c2tWbGI5V2RYSTBoLXJ5TzFfUU0xUUNHYldsX2xCaEdBdlZjMExqQ1I3d3lpeG1BRHVJMHc3Wlc3NHlDQUpKdUtJT0xyNTd1bzYxQmYzLXFYWXRIWDh2c0xPamc5N1IyTExHeUpKMWhVcVZlQU5sa3B3LkhsQXBVUTQ1YTdxRDRiRUVJWlRmR3B6b3lBNi12UlZQVkhlV000eUZVV3c\"}", + "status": 409, + "response": "{\"error\":{\"code\":\"Conflict\",\"message\":\"There was a conflict restoring the key 'https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/0f21985e3d2d42ed899ba2b76e892011'. This can happen if either: a second key with the same name was created after the first key was deleted; thus trying to restore a key whose name is already in use. To fix this, rename the second key to something else so that the restore works. The second probable cause of this exception is when multiple operations are performed in parallel against the key. To avoid this error, perform operations against a key in a sequential manner.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "661", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:43 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "409", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "44f94d1c-6a5f-4bc8-9dfb-c5a22de23946", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "f43da90f-8bc0-4780-a9a3-953aeca447a5", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/restore", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"value\":\"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUl5WVdabU5tRmhNUzAzTm1Ka0xUUTBZVGN0WVRjek5DMDJaalZoWkRCaU5XRTRPVGdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQzB5TlRZaUxDSmxibU1pT2lKQk1qVTJRMEpETFVoVE5URXlJbjAuY2lEMjFBc2YzaFZwVjc4dVFMV1RsUzdxZ1c5Wkp2UWhWZ3lGbzF2Y3Z5enZGdDFTUnlJVXdCekI5OTJsOVNhUF90REdXbEx6QURXTjFicFJweVp2STlBeHlIdEFkTWRxSTB0eGhLdHhGMmNOXzEtUGRVYUt4MWowRllKb3Mybm5UcjEwMnN6VGR1ZTdHY1dnb1BUTHRuc3llcVhCdkdVSGcyVnZOdjh0V1JQQV9WTjRKWWtfS2pqdGc0WmF0VW0tUk81VnNPZW13RXBaNU9NVndjRG8yTkd2emdVVkFERGtvc3dSYzZ3RVlxU0NHbkEzWkxtVnlJRVczcjZYd1Z3SWx2TkJhZUxGOXY0Ml8ycjUtc3VneDA0WUlZRnc4a0tSZEp5OUI0ZU9KXzRHa0stZm50X3Y4UFFlTEdGaVlkRkFZUVc2Q1pkVEh6akZFRG9QaWphYWx3LmxCRHNtSWt6MU1fMEpfMGdCakMxLWcuajNYZVQ5TlM5LVAyWjhPQTFlUW5TSEhvem01N0czaXhYeHRGWUtBU05WSTM1cFBPbUswdEVJMzltY0FRLUZtRGV4cVdWbUw3QWxYWUk1M3ZTaXEzWGtOMG5PLWdvSkhsdXNXM3BVemthRG9PWlNxY25QV0FxVXFwZi1zZVZCdkJqMXRBb2dsa2dTZ2psbUk0UlQwVFJJbkYzaEhXd3BIQVRzbWd6WnMxMVlpdlZ4RTlpbTkzNXplQVdaRXFRRFlncGJNZDdLdDN6ZlpJLTN4M05YelpZXzQ0NUptNGd0bzdLTDNEbENIbFpSU0lnZnhQc3Q3VW1RWC1FNk5oWklNWUlfMzNRNkdtTFBVNTk0QVozaERBcWlZXzFQeFdqdV9KY3dWcVdqLVE1TjVqWk5sYmo3UGw2MjhXMEVpOUF4R1FfQkFrLWJpYngxbHM2WWIwS05Oa2J6d1pPdjF4ZVUtYTRCVGFGZWNWS2QxR1dBM2pzZV9PSjNYcEV1ZlNzSEU1TktQeF82azVUMnFLMUliV0JHd3ZFb1R6NjFWZEpseGZacXdtczZjNGU3cHE0MHhnQU03M0xNakVqdlcwYjAwbHFHZGxBc1hEcnZMMDl0ZlRrRThIaHFfTlIzVFpGMFBtSGZrLUxRNVpMVlRLSFF3TkxtVVR2bkFLeWY0UFk0b1hCbmJzWm1OdDdaalFOUTFMOE1FNzJfQ0dPVmxuZjEwOWhDZHpud2dNWjh0cjdYNTVFbHIzUVdoR2FXSTZlc3FVZkNSbnZHZk80T1NjTU1QNlZ2UGtUdThMb3hKVzZ2X3hKZVpJUWlEcEloVnFGcE5UZ21PQXN3WlJYcmZhQ0ZqTkE0cDVfVUp0aW91aWUxOG10V2ZRQ2lyeGhHNTMwTFJHWEZLTkdkMzVpbkw4WklnUnRJQmtRR3NNZ3Z2dDZ5NnJiam5JV3ZEYmd1S0F5d2lmQk4xWm5pSHZYY0ZhUkYxZVJaU1NhM1BidkVSTHhoR3VmeGZfQzVYQjVzNXk4M2ktQkUtUEVFN19Ub0Y2YU1LWkU5aExXLThOR21XUFgxSVBqeG5OUFpNZE5wM3dkaTJyekJxLW9IMHlVNHFZX1hJZFIyYjU3STYwY2J3TThrS1NKcWhnS1pyRW4ySHR6cG5lWF9pei1jSHlnaHBSb0xQd0dMTWd1V0RqTUhOY0duZlFISFZhUER1cl85S3VsTnNZSDNLR3R1YlpTZUt6ZHM5ZWxrSGRJMWFuVG1lVnphZTFaZXRLOW81R1dQSEx3bUN5RGRXWlBYbDNRN0E3NEl4YkNoUFVvd0ZVOEVGbnJ6Yi16clBDOGNMNTBtZ0dIQVdwMDk4WEltSFZSZ2l0QWoxbXJycWhuejZYMjNqZkZVWGtfT1VDQ25KUC1BX0UwTXQ5dkg4dTJUb0hURnRqTElIQms5bzlyTEU3a3FWek9YZXFpOTlNekFhZUVEUnRLSF9FMzdxc0tSQWRORlRHUDVveTJtMXd1MTkwREdrQzU5aW9Ld2J6SkNOVjdOdmJmSGFrc1MzQmlzUFUwbzc3UjlDaHpEMjk3czZVUEdFbHJpQkR2LXRDRFFGYXlNRXNMeWxoZ3hQMEttbEczTFhtQmIteXd2aWVPOVBWbVU3TnZIQ0dlcEZzVTFMd3NabnRkSWZoQUpWRXppMThydktEaUhBSUlTZ045LWJLMTV2ZjFpOGNzNm9mMGRudDRyYWRmb1pvR1hla2VoUV9RdHJHRXNPdFNxRi10NXpCVXlCSjJMeGlfd0VyV3ViV3hkdk9YNjc5WVduaHdpbnR2aFZZbnpGTng3YS14c3hqelVXR3dCSFowTjllN2VnUjNjRHhqdjBlNzMzTTVBdUhmU3I3djY1S3hITkxQMmVXS2QydkhlQmRVWjlOdkdYamhxTno2eWVfNzFibUpjMW9fQWNiUHRKTGY2d2NhN2h4T05HakZla0dxM1Z1b1FOc2lnQkVhRkxwb3ZUMHllNkVTOTdkTWRPcDFjXzRTZF9WZ052U1NCMGFPYW1zY0lsMjJaM1JzczlZSkt3WkNlbEx1dkhCdTZtQXlOaUFTbEpXZFRJenNQR3hMUV9GclBJX2x1d1p4dG9HaDZTX0FNWW80NDBqS0RmbW9CdzQzTUJiMjNVTXhJWU5DMHY4THdXUTFuUkdhU1hzVDI3Uk14ajhCY25UTkRWWjN0SGF4WlNuRTRuRVFuQnRyUWJnaHpCdjBLSTRUbDVnRnp2Skd3TnZQakExcXl5dGFHTGU0aTNzeWNoSVRjY0VZWEt6ZkQxVmRKQWFQVWRtSFV5Z251NzNkNjhOcWk4VVQ4cWNaRVFlcU5tMnZ6cFhZUU5xb2ZwTmdBYnhBaWJXOWJXejJBUG0xNndDYU1Ka0VRSkQ1MlF0cmQ3WjNvQkMxazZfZVF0YlNjZGlKWUxlN1NRcFlWZGUyMUZOdDJGaXBIbDc2ZnJ0a2lwb1R4VHEwbHMwWjEzY05ETUF3dlc3eGgyN0ZqS2JGT01SN0pUMkVCMkpaVjBmcDd6d2hXSHRZN3R1NTFSYnQtM2E2b2s5LTZvRnUtdlB0Nm5KXzVZTTRpSjFmbEZNZWN0aU9UNThHQ09BbGNfZ0JhRU00d18yQm1pN2xadzlsOEx3X2t1WjdRdEpyUDQxWjNyLTY0QlBiTHJPY1NKT1hsN2xzMGZyc2MyeFlBVFdVbktpUGxqdnJUU3hTSDFwWi1va0FleDd2Wml0RjlHTUh4dFB4a2hGd1B4UUNhNkN1LXdscWNGYjJSRHR1YlBuWlVNV2VLYS1ud3ZUcjFIVFFKbVBuZHctOWpFUmo0b2tLb2ZudnJLbHhZNDVPU0ZqdDhoS0dwM2RTbjJ6emV6RWx5V0hFWnhla1V5ZXdVR1YybnFhWU83UXpvamdMM3hJbmoxMXRSSzVDVF9iQXVLd3BoOC1FSDMtWmJ2R3FURW45eXNIQ3Zsbi1PODRiWUlqYnBZdzdRLTRYWTkxVmJlOXJrSDV4M1UyZnZyeEdlQ241Wkk2WFBzVlBycGdXTy1DT0lBOWV1Q0RzcHB0alVfbUFBc1QwTVM0VFM1bVdkcGhBdm5xS2VaQS1tQ0FYOERjQXVieTkzMmdRUEp3SUFZaWJKNE1JVGQ0OXhkbzFQZjd0Wm5oME5vRFA0cjJ4R2ExSW1nVXE3SkhiYy1jV3prS1g1OVNxUzFSOGlTaFVGWWlCVUQwOGFoNFVLcjZWbjF5MWdaNUJWd043bU9Ub05pV3d3djdvaEp2YUtsSkJFQnNvZEs5Ti03ZXp0YjJ1STZjaHBxcXVoRkhTeGlZQ29KclhLWEhHQ0VzdC1Id1AzRmFPdXoxVTIwRFNHQkE1dTd3cHJ5U1k1Y0dZMzhmcVFHYzFqU21FU0dZVzdTNWxXbld3SEh0ejlEVjljZ1BnX3dXQm1LczkxVGJrUWtBOTZLbjljeXh2ZjEzamtwT0habUs2ZFBCZzNOZHQ1Vm0xTk9WSllYWVM2T3dzeThUVW54SnkyMjVFMklSV2xNU0E2bDBySWFVZXh6V1FSYWFDZWsteVJTMGwxZmJXME16V0w3bDNKRWxCNjk2bjM3NGlmR2dsb3h5RW1JTUl3TzF3QTRfa3Y1Q2RVSjk0Nk9OT0wzc3ZUSzBod24xZjZ3SEppT1lQYlFUTXp3LVdNR1p0RHRSM1hjNTRQa013LVhzWUE5RkNNMkxEOElDUGE5LThwV1hpNmZzWlpGVXVvcXpzLUNLaUREVi1IRXVpYnRGcVlXeHNfeV9RaHdIRHpCMjhZNHptUTNpQXdnMUZmNjFSUGNHQnlFMVdTeU96c0NyQkpRblE2ZHBKYW5MLWRHUmVPc0pENEVoWW42Rkk2QWhaNjE5NnBfV2pEWFl3Z2YyWkVsZWRKS25EeFlWZFg4NzRwdy0xbEFKNGVpZ3JpS1ZxVENzckhXWkhFQnVrT0FaNlR2bmZWenlqcTV5TnpqUWR3UzVXMlZKMDRZcy1LZDdmcDM0NE9GUDBtaVpONkNWeVJOQ3RyTEJZSVpQbmdXRVktUDRBOUhiXzN5VWdyX3dSTlQ4ZlE1Qnl4VnhwRjVSVFdudi1pWTNXSWQwaFMxa2sxb2x2WEhPa1l6Z3hsSW5zaWtLc1Z0RVdySVRURE1iNGJlSUNzMnZVTkxHNnJyZ0hMRUszY0RYOFRjaGc1YnE4QXYydS1uZm5vQ0syV0JoSDhWS0lWT2Y1ejBtY1kxY0NSb2Y0UTZXNGRQeXM0RFV6S1JXS0x1T0RCYlMtYzdxTlNuN0M1c0hVR0dRLVdrNnlnUXZTTTk4SDdsOG1BckRNdXQ5YzUzZk1FNVlHOTRUanlGemdsOGNxdVlCQVBqYWVQdldlOFdYNHBKb2NUZnVzdjlZMklfY1hNQktEbVc4WHlNRTFPaEhDSzBXbTJORGlBem5nX2t6ZmlFYTgtSThXWUJ0OGI1Vk5QQW85bm55TFJfNXRCRkdGV2NoLTJkYUxGQnR6S3NUQkxRZm5pQ2tVdXItQUdVUk1XN1FmRE1vSmR0a3lCR2tmRFVheXlBYWQ5ZEpfSE1hZUxDaVE0UWhpRnpNVHF5ZzYxQmwyXzkyMi1PY09HU1BSRElXeFNZRWRfUWtKb29mN3ptXzR1bWRVOUVBRk5vYUxxcERoY2lCa3NfNEhUM1diVXAzQ25jb3phd3JfZFlRRTVYOXpIWS0yUl9WdzZXVTZMdTYtaV9jNjBmQXZEX2lISklzU3d0bnF2WVEtenl3djVLNWJXUFdyV2ZnMzBrMV9sbFNsazktYjJCNUZmWVZBUUJsMkRaVG9VdlJzaDVZVHhiYm5EbGFzOEJVRE1XV0hSSEotZF9pZUNad2VIbGdWVkktT1lWV1NCLXAtSjk1akZuVmJnUEdiVjJSSE53US1IdkNrRDBpZElDTklEY2h4UnFGZUQ4Z2dFaTdfcnd6N1d1ZXpZS3V5aFNHa1hhVWMtbmUxdHRrRmRsYWJ5SEt1b1FJWDZ2Snp1cEpjWUo1OEMxd0kwUXBIcjY4U3poekpjMjBUVGk2VWc3T1FtVHpncy1JNDVKVGFuSW5NdHk0MmlubjdqU3daWXQtMERWTXZPZ2RZeEVVRk9UZE5vWmFWMTI0QjdfS0c3bGxmY1o4TXUwNkR3M3FXWklUSExpcmZhZjhnU0tNRm41b1dfVjdCSWJXR2xiOTg0QkNjRExTOXRuaEllQnp5akRUcmhFOXZwdDNtNnJaMGpjcTFjdEVkZ0xFM2NwR0ZYX3lHOEJoenVKSk9jNTNyWkpydVY2TVNzSTlRYllNd0pUcmJuLXdMYVN0ZWx5b0JTUVl3NndDWmVxMGwtQ2VxX1kycExhQVkxb1JRajN1LTBrVHlEcXl6N2lSaTJqcXN4TW9sQTdmTE5USEZQbi0tNUNZTnB0c0paM2tlSjRINmdkc1phTHFvMTFYZ1hnWFJVcEFrb1BYbGJhdU96LWQzUFpNdXBUaGJZNF9Obi1Va3RrdGhYTV9IbTQ2S2JkQkFrY3J1UGhiRTZMMDN3OGVSaFhBdU9ZR0ZvamZlZFdQZ0R6YjZuQm1vSnhudHZ6UjNuZmliYWQ0M0VXZ2RmMThkQVBncHhzaTVuWF8zUElfaW5qSVVHdlh1aGl1TDVvOW9TOFpCQ0dsaGdWWnFKN1hMUzFIREJjVnhHT2hCUDB5b1ZUTXM0cFZBaWl0Tm0wVFRrU3hPT0RNQnBZRFFCd1dURWRGTFdMbkNGWVQ1a1RjUENoeGkwZnFTRUstXzJkemNCNXRxWk54U203T2oxSGpGMGUtZENUdU5TcS1xNFVRQXptQWgyNG45WHBlRE9Ea0VULTdwZGxxcGZXZ1FEU3NMV0U2UDdYZWNyR2R2N3hJaVRoVEZ6R0FTVnZ0QnJrLVRISVRuRURhWkZTaVBieTZPcUJlMG5wRlA4bzJxZHNNSnZmTnQ0Q1FvTVpPRlJ0NEk2cWpVbEtBcm92Q1c4eDBmYVdFdVpGd3Rjek9jNS1pOUt2VFdhcFhzVlFOR0NrMHY0UTFmQ2x5cDVpbzdCUTVvXzFWOHNtUDBITlBSMTZXalVGazE2a0N6WTA3YVpocjhNdUZ1cE9WdGdiR01WRWlpQkNQMjZ2TUVfeENOSDVmVE9uNFM1a2xKVFcya0VZb05VRldhYVJOUXdkajF4bkk2Q0hZSXNSbDZMRkFENVJLOGlMYWxCNE9fd1VOdVRBYVkzbE5xUVVCRDNtM25FNUE3TGx0eVA2M3JoR3pHdHBXOGVvOXphNFNiTl9QbHFMMVdRY1VnTWxreG5PcTNqRFdiQnJic0RUekEwN3pRTVhUTEhKMEhSMHQ5RG5ONkwyVXphb2VYNmtUV1VteU54WUNfUHY0aHhfRGVoYjVnS2ZSc3Vha25HSm85b0R0TDNkcHViZzV2ZS01WWdhZ0pjWVR1T1laLWsxdUNnYzZlLVdjWVNGdndfY0YwMDdmR2xnLXFkbW1vM2dZeVJxT1dkT0FDT05iUFFvaWxISll4RHhCTldqOGg1Qi1hUENxejJTX0hwU3JwUzF2QzJIeHd3bnpSXzJSenJFbkNHUElmSDJYNVhEczV2c3FYOFN4Y3hTVmdKOVBEbTlkR29HOG1GT25YejVLWDFobWI2eTBoSzhhZFNVWnoyQXFKYzBQVkszWWVJcHZLblQyY19mclNocXJzU2tDR29VblV4NkpMWHhBQVdSOUJBVGo5N1FlX0paU19hVTZvZk1yNFlYdGdlYUNaY1JSNEQ0X194TWV3ZGxMSUlJUWFZWW5MaFNFUVBPaUJFYnYtQ1RaeUtVdTFidFYySVA4aWU0YmstOFB1Vi00RVFlM3VwN1hMb0lFMmNHbUFIYmtLTFFudzNiSldqWWo5Vm5mazFRZEFMdnJpUnBpRnotSGRlbVUycUxsMVl1WE9sMUZuRVFEaFFTRUtfbS1CTHNEZ0FtUk10d0FFMGhhazhHb29JSDZfQjEyZHF4OExGSUR5TV8zdWwwWkNNaVg4LWExT05xVzhRanhoTUhNTHhTZWQtQTJtOXZnbGVuaXR6R1RLUUVUcU9yOElkOF9xSDFRWE9GR2JCeXZ6eVJWUEw1UEViQUY5WFM3V2FMY3BTSGw3bG1HRngzQ1JOcldxdGQzTl9OMHZWMlpDdFpFYnJMcm02YmlQMmJLM2czLTZmSHdjdVBibmk3cGdnT0ROd1VHZkVLVnFtT1RYTlFwYTJ1eHZwd0c4WEowV0tUVVF6RXhDUkVKcERRcEFnbjYwNUlDWS1CS0xqaXNCRDI4U2NiamF5LWR6UnhmQTRxVVFYTl9rS3RJOUs2U0o2RmxCV1NmdmRJa21OWEExZF9vdGRIRFdNZ3FYUXB3YkdXazBhMFpiUWx5SllpWWd0UHpNNHBxWk1tVkVNYmkxMFpQUFE0Z29YZzFlSUVFNkRoWmZEMGFFd3hvLUN6TXBYU1lHd0FNY1VxWXhZZ3FmV0NXbkQ2eFZnUGo1ZHpUR1YwUVluVGxCQ0NnTDZMd1dxVGdqYzZiYkU4Z1Z6cGlRVU9Mck40NDk5UmNJelFwMk1GTFNPUUl2aGVsSllCWVlwRGNYODdNd2VjeVphTE5UVjFKM2ZPeUYyYnI4N2tzLUtqMEM1YjF0ajdpemdITUtnT3ZBZlZjYkEtR2k0VXFfeVhqNFFaTGloaThJSmdHd0VVU3hPaGU0T1dQaWlZS1EyUG9pQlhSdmlqaTJVQXd0UHR5X3hDekJ1NExKMU1mQ1REc2JnWS10Y2FldVdfYW9CT0I2Y3RZYU9jMXBrT3ZDX1ViYWphdktUdHVWcHMxUTBfZkFubjdCYVM3VHpTRXNhVjZ2cExIb2g0MVp2emQ2VGpzTzVlQi1ldWZzZDhUMUpxZnBLeXhYQUJRSTVPRHk3SW1mZW01VEpsWjdqY2diT0lpLWxYZS00R1ZjSVRoSkpPOVNaSDl4c0RJSnp2MU4yaGEtZWd2ME9Za2R5b0xOMEFrSzgyd3VEZlNDcV82Y2pGUzc1M3lVZHJ5Y0JsYVVOczFIVERHa3hJdUNiX3NsVjdNdXlhV1V2cEg5UW9BTVNuRm4xcUpQMmJLbW9LM1RfLTB3RzBPUzZZd2JQNUh1QzZlV0wwdDVpUENlbFRiNS1KRnlQZUhCY1FEb2xyY0UwbjZ6NUhEcHNzU0xndHZYRnNoekh2bmdjXzk4UjlSNTNCMlZsTURQX25pYnVVTUk4MTdUaWNvV1puUUhESExqVFBWNi1uR3hHMjFMcjhMUjRrWE12VmpBSXFwZzE3bUNncjg3U0luU0tDSDN5RlBCeVRyTW9oWVcwX1hCOEJJbVBwZlRLZ2N4by1IU0N3WFJWaXNkOHdPWUZfeGpGcVI0Q19xVXQ1bWVfQTVlTEdGUTFHOHd4Mk5FVUEySWI2a1hLZ1NSZE9WMEZqdHlfdGlIRlg3LW1qQ2IzZVdhUW1aa3BkNVZjSHZmT0d2S3JQMmRTWHlYemlnSElRalc2X1NfdG1ScHVWXzJsSGdaTE5LRVV3dXRidUJtaHpQeDBIRlJZUE54VGg4TnRjVVpUbmhpSEExaFZlOVNsS1hFQXBXRV9fYnJQbXJ4Yi1Qd1VzTG9WY0ZvMkJicW1zNjZxaURnUjNXemtKLXFpclZsaHM3NlBWRE8xaUJLdHlCSDdpLTJ5OG5qY2UwN1dFLUY0b0tiLXhwR1RIT1VRdDJxdG1GR1hKeURxcUlveEs4MEJZb1hZd1BaWGpvdWQwSEU0cUNPSE90YS16S3VyY09MOGQzT01GNXFielFGLWZrUjA1Uk92RVU4VGszMS1pMUpkN3hHc0FMa3VDcVowckZYQ21jQTVaTzVuc2F0WnNxcVhlQ09VYzdidFpXbzZvbHUzc1JDVHZ5Q2RlWXR2RllHNnBtR2F0aHlKZGlzazBwT3BsMXdoUWU1dThMZk0yV2JIbG1mSzVjQlI0ZlhEVDU3MmxkOGM5c3llLXZiYUc0S1VCY2ZvT1JyMklpRTNlRzdCN0FCSTcyRjZ4N2pRR1VYRG1aLU9MZlh4Wi0xZGJyUmhvZ1dqT0RudUpBYTRtWnMyenVDMzBpOWZUMDRKdElpeTJFXzJFQ2lMWVd4V041WnViUnhZbmtlNTh0bW04ZHpXTDloaTlta081ZkhwUjR3eVRYbFBOLTZqTy0xdm5PZWVMWl9EUlRDXzhFQks2WFZDTTk3WE9jSnhFUEtkWFh0MnNwVC01Rmx6T3Y2WHNIV1pDVzcxaE9NcV9qb3NBLXVqZENUdm56YVk3MkI1d1F5RjlsbDBGNVdtcnMwc2dpNW5MWU9nMXFaQ01ydDRKMUdkcEpzdXN3QVFwdm1DQVhuLTAydk9XRnRSX0s3QXkwOTFkQmxkNEZTVXBQTzhVbUJuNG8yTWViSHBtclozSjJqa0VLdkpmMHAxaFp3MzNPNl9GRlVpM1FxMTdXUmJUNEExVUZ6U1VpNU42VXJjWTQ0Z2FkMnBPNi1xVFJuMXljTUE4U29FVm9SVWJaczJEZ3FyLU53RVMySmsyRzl4c0dpWkhla1VqdjlyWGw5c2tWbGI5V2RYSTBoLXJ5TzFfUU0xUUNHYldsX2xCaEdBdlZjMExqQ1I3d3lpeG1BRHVJMHc3Wlc3NHlDQUpKdUtJT0xyNTd1bzYxQmYzLXFYWXRIWDh2c0xPamc5N1IyTExHeUpKMWhVcVZlQU5sa3B3LkhsQXBVUTQ1YTdxRDRiRUVJWlRmR3B6b3lBNi12UlZQVkhlV000eUZVV3c\"}", + "status": 409, + "response": "{\"error\":{\"code\":\"Conflict\",\"message\":\"There was a conflict restoring the key 'https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/0f21985e3d2d42ed899ba2b76e892011'. This can happen if either: a second key with the same name was created after the first key was deleted; thus trying to restore a key whose name is already in use. To fix this, rename the second key to something else so that the restore works. The second probable cause of this exception is when multiple operations are performed in parallel against the key. To avoid this error, perform operations against a key in a sequential manner.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "661", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:43 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "409", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "eda99da9-df70-4730-a502-58ece47551c5", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "321a41f3-ee98-4df1-bc48-48f23d4e7f37", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/restore", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"value\":\"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUl5WVdabU5tRmhNUzAzTm1Ka0xUUTBZVGN0WVRjek5DMDJaalZoWkRCaU5XRTRPVGdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQzB5TlRZaUxDSmxibU1pT2lKQk1qVTJRMEpETFVoVE5URXlJbjAuY2lEMjFBc2YzaFZwVjc4dVFMV1RsUzdxZ1c5Wkp2UWhWZ3lGbzF2Y3Z5enZGdDFTUnlJVXdCekI5OTJsOVNhUF90REdXbEx6QURXTjFicFJweVp2STlBeHlIdEFkTWRxSTB0eGhLdHhGMmNOXzEtUGRVYUt4MWowRllKb3Mybm5UcjEwMnN6VGR1ZTdHY1dnb1BUTHRuc3llcVhCdkdVSGcyVnZOdjh0V1JQQV9WTjRKWWtfS2pqdGc0WmF0VW0tUk81VnNPZW13RXBaNU9NVndjRG8yTkd2emdVVkFERGtvc3dSYzZ3RVlxU0NHbkEzWkxtVnlJRVczcjZYd1Z3SWx2TkJhZUxGOXY0Ml8ycjUtc3VneDA0WUlZRnc4a0tSZEp5OUI0ZU9KXzRHa0stZm50X3Y4UFFlTEdGaVlkRkFZUVc2Q1pkVEh6akZFRG9QaWphYWx3LmxCRHNtSWt6MU1fMEpfMGdCakMxLWcuajNYZVQ5TlM5LVAyWjhPQTFlUW5TSEhvem01N0czaXhYeHRGWUtBU05WSTM1cFBPbUswdEVJMzltY0FRLUZtRGV4cVdWbUw3QWxYWUk1M3ZTaXEzWGtOMG5PLWdvSkhsdXNXM3BVemthRG9PWlNxY25QV0FxVXFwZi1zZVZCdkJqMXRBb2dsa2dTZ2psbUk0UlQwVFJJbkYzaEhXd3BIQVRzbWd6WnMxMVlpdlZ4RTlpbTkzNXplQVdaRXFRRFlncGJNZDdLdDN6ZlpJLTN4M05YelpZXzQ0NUptNGd0bzdLTDNEbENIbFpSU0lnZnhQc3Q3VW1RWC1FNk5oWklNWUlfMzNRNkdtTFBVNTk0QVozaERBcWlZXzFQeFdqdV9KY3dWcVdqLVE1TjVqWk5sYmo3UGw2MjhXMEVpOUF4R1FfQkFrLWJpYngxbHM2WWIwS05Oa2J6d1pPdjF4ZVUtYTRCVGFGZWNWS2QxR1dBM2pzZV9PSjNYcEV1ZlNzSEU1TktQeF82azVUMnFLMUliV0JHd3ZFb1R6NjFWZEpseGZacXdtczZjNGU3cHE0MHhnQU03M0xNakVqdlcwYjAwbHFHZGxBc1hEcnZMMDl0ZlRrRThIaHFfTlIzVFpGMFBtSGZrLUxRNVpMVlRLSFF3TkxtVVR2bkFLeWY0UFk0b1hCbmJzWm1OdDdaalFOUTFMOE1FNzJfQ0dPVmxuZjEwOWhDZHpud2dNWjh0cjdYNTVFbHIzUVdoR2FXSTZlc3FVZkNSbnZHZk80T1NjTU1QNlZ2UGtUdThMb3hKVzZ2X3hKZVpJUWlEcEloVnFGcE5UZ21PQXN3WlJYcmZhQ0ZqTkE0cDVfVUp0aW91aWUxOG10V2ZRQ2lyeGhHNTMwTFJHWEZLTkdkMzVpbkw4WklnUnRJQmtRR3NNZ3Z2dDZ5NnJiam5JV3ZEYmd1S0F5d2lmQk4xWm5pSHZYY0ZhUkYxZVJaU1NhM1BidkVSTHhoR3VmeGZfQzVYQjVzNXk4M2ktQkUtUEVFN19Ub0Y2YU1LWkU5aExXLThOR21XUFgxSVBqeG5OUFpNZE5wM3dkaTJyekJxLW9IMHlVNHFZX1hJZFIyYjU3STYwY2J3TThrS1NKcWhnS1pyRW4ySHR6cG5lWF9pei1jSHlnaHBSb0xQd0dMTWd1V0RqTUhOY0duZlFISFZhUER1cl85S3VsTnNZSDNLR3R1YlpTZUt6ZHM5ZWxrSGRJMWFuVG1lVnphZTFaZXRLOW81R1dQSEx3bUN5RGRXWlBYbDNRN0E3NEl4YkNoUFVvd0ZVOEVGbnJ6Yi16clBDOGNMNTBtZ0dIQVdwMDk4WEltSFZSZ2l0QWoxbXJycWhuejZYMjNqZkZVWGtfT1VDQ25KUC1BX0UwTXQ5dkg4dTJUb0hURnRqTElIQms5bzlyTEU3a3FWek9YZXFpOTlNekFhZUVEUnRLSF9FMzdxc0tSQWRORlRHUDVveTJtMXd1MTkwREdrQzU5aW9Ld2J6SkNOVjdOdmJmSGFrc1MzQmlzUFUwbzc3UjlDaHpEMjk3czZVUEdFbHJpQkR2LXRDRFFGYXlNRXNMeWxoZ3hQMEttbEczTFhtQmIteXd2aWVPOVBWbVU3TnZIQ0dlcEZzVTFMd3NabnRkSWZoQUpWRXppMThydktEaUhBSUlTZ045LWJLMTV2ZjFpOGNzNm9mMGRudDRyYWRmb1pvR1hla2VoUV9RdHJHRXNPdFNxRi10NXpCVXlCSjJMeGlfd0VyV3ViV3hkdk9YNjc5WVduaHdpbnR2aFZZbnpGTng3YS14c3hqelVXR3dCSFowTjllN2VnUjNjRHhqdjBlNzMzTTVBdUhmU3I3djY1S3hITkxQMmVXS2QydkhlQmRVWjlOdkdYamhxTno2eWVfNzFibUpjMW9fQWNiUHRKTGY2d2NhN2h4T05HakZla0dxM1Z1b1FOc2lnQkVhRkxwb3ZUMHllNkVTOTdkTWRPcDFjXzRTZF9WZ052U1NCMGFPYW1zY0lsMjJaM1JzczlZSkt3WkNlbEx1dkhCdTZtQXlOaUFTbEpXZFRJenNQR3hMUV9GclBJX2x1d1p4dG9HaDZTX0FNWW80NDBqS0RmbW9CdzQzTUJiMjNVTXhJWU5DMHY4THdXUTFuUkdhU1hzVDI3Uk14ajhCY25UTkRWWjN0SGF4WlNuRTRuRVFuQnRyUWJnaHpCdjBLSTRUbDVnRnp2Skd3TnZQakExcXl5dGFHTGU0aTNzeWNoSVRjY0VZWEt6ZkQxVmRKQWFQVWRtSFV5Z251NzNkNjhOcWk4VVQ4cWNaRVFlcU5tMnZ6cFhZUU5xb2ZwTmdBYnhBaWJXOWJXejJBUG0xNndDYU1Ka0VRSkQ1MlF0cmQ3WjNvQkMxazZfZVF0YlNjZGlKWUxlN1NRcFlWZGUyMUZOdDJGaXBIbDc2ZnJ0a2lwb1R4VHEwbHMwWjEzY05ETUF3dlc3eGgyN0ZqS2JGT01SN0pUMkVCMkpaVjBmcDd6d2hXSHRZN3R1NTFSYnQtM2E2b2s5LTZvRnUtdlB0Nm5KXzVZTTRpSjFmbEZNZWN0aU9UNThHQ09BbGNfZ0JhRU00d18yQm1pN2xadzlsOEx3X2t1WjdRdEpyUDQxWjNyLTY0QlBiTHJPY1NKT1hsN2xzMGZyc2MyeFlBVFdVbktpUGxqdnJUU3hTSDFwWi1va0FleDd2Wml0RjlHTUh4dFB4a2hGd1B4UUNhNkN1LXdscWNGYjJSRHR1YlBuWlVNV2VLYS1ud3ZUcjFIVFFKbVBuZHctOWpFUmo0b2tLb2ZudnJLbHhZNDVPU0ZqdDhoS0dwM2RTbjJ6emV6RWx5V0hFWnhla1V5ZXdVR1YybnFhWU83UXpvamdMM3hJbmoxMXRSSzVDVF9iQXVLd3BoOC1FSDMtWmJ2R3FURW45eXNIQ3Zsbi1PODRiWUlqYnBZdzdRLTRYWTkxVmJlOXJrSDV4M1UyZnZyeEdlQ241Wkk2WFBzVlBycGdXTy1DT0lBOWV1Q0RzcHB0alVfbUFBc1QwTVM0VFM1bVdkcGhBdm5xS2VaQS1tQ0FYOERjQXVieTkzMmdRUEp3SUFZaWJKNE1JVGQ0OXhkbzFQZjd0Wm5oME5vRFA0cjJ4R2ExSW1nVXE3SkhiYy1jV3prS1g1OVNxUzFSOGlTaFVGWWlCVUQwOGFoNFVLcjZWbjF5MWdaNUJWd043bU9Ub05pV3d3djdvaEp2YUtsSkJFQnNvZEs5Ti03ZXp0YjJ1STZjaHBxcXVoRkhTeGlZQ29KclhLWEhHQ0VzdC1Id1AzRmFPdXoxVTIwRFNHQkE1dTd3cHJ5U1k1Y0dZMzhmcVFHYzFqU21FU0dZVzdTNWxXbld3SEh0ejlEVjljZ1BnX3dXQm1LczkxVGJrUWtBOTZLbjljeXh2ZjEzamtwT0habUs2ZFBCZzNOZHQ1Vm0xTk9WSllYWVM2T3dzeThUVW54SnkyMjVFMklSV2xNU0E2bDBySWFVZXh6V1FSYWFDZWsteVJTMGwxZmJXME16V0w3bDNKRWxCNjk2bjM3NGlmR2dsb3h5RW1JTUl3TzF3QTRfa3Y1Q2RVSjk0Nk9OT0wzc3ZUSzBod24xZjZ3SEppT1lQYlFUTXp3LVdNR1p0RHRSM1hjNTRQa013LVhzWUE5RkNNMkxEOElDUGE5LThwV1hpNmZzWlpGVXVvcXpzLUNLaUREVi1IRXVpYnRGcVlXeHNfeV9RaHdIRHpCMjhZNHptUTNpQXdnMUZmNjFSUGNHQnlFMVdTeU96c0NyQkpRblE2ZHBKYW5MLWRHUmVPc0pENEVoWW42Rkk2QWhaNjE5NnBfV2pEWFl3Z2YyWkVsZWRKS25EeFlWZFg4NzRwdy0xbEFKNGVpZ3JpS1ZxVENzckhXWkhFQnVrT0FaNlR2bmZWenlqcTV5TnpqUWR3UzVXMlZKMDRZcy1LZDdmcDM0NE9GUDBtaVpONkNWeVJOQ3RyTEJZSVpQbmdXRVktUDRBOUhiXzN5VWdyX3dSTlQ4ZlE1Qnl4VnhwRjVSVFdudi1pWTNXSWQwaFMxa2sxb2x2WEhPa1l6Z3hsSW5zaWtLc1Z0RVdySVRURE1iNGJlSUNzMnZVTkxHNnJyZ0hMRUszY0RYOFRjaGc1YnE4QXYydS1uZm5vQ0syV0JoSDhWS0lWT2Y1ejBtY1kxY0NSb2Y0UTZXNGRQeXM0RFV6S1JXS0x1T0RCYlMtYzdxTlNuN0M1c0hVR0dRLVdrNnlnUXZTTTk4SDdsOG1BckRNdXQ5YzUzZk1FNVlHOTRUanlGemdsOGNxdVlCQVBqYWVQdldlOFdYNHBKb2NUZnVzdjlZMklfY1hNQktEbVc4WHlNRTFPaEhDSzBXbTJORGlBem5nX2t6ZmlFYTgtSThXWUJ0OGI1Vk5QQW85bm55TFJfNXRCRkdGV2NoLTJkYUxGQnR6S3NUQkxRZm5pQ2tVdXItQUdVUk1XN1FmRE1vSmR0a3lCR2tmRFVheXlBYWQ5ZEpfSE1hZUxDaVE0UWhpRnpNVHF5ZzYxQmwyXzkyMi1PY09HU1BSRElXeFNZRWRfUWtKb29mN3ptXzR1bWRVOUVBRk5vYUxxcERoY2lCa3NfNEhUM1diVXAzQ25jb3phd3JfZFlRRTVYOXpIWS0yUl9WdzZXVTZMdTYtaV9jNjBmQXZEX2lISklzU3d0bnF2WVEtenl3djVLNWJXUFdyV2ZnMzBrMV9sbFNsazktYjJCNUZmWVZBUUJsMkRaVG9VdlJzaDVZVHhiYm5EbGFzOEJVRE1XV0hSSEotZF9pZUNad2VIbGdWVkktT1lWV1NCLXAtSjk1akZuVmJnUEdiVjJSSE53US1IdkNrRDBpZElDTklEY2h4UnFGZUQ4Z2dFaTdfcnd6N1d1ZXpZS3V5aFNHa1hhVWMtbmUxdHRrRmRsYWJ5SEt1b1FJWDZ2Snp1cEpjWUo1OEMxd0kwUXBIcjY4U3poekpjMjBUVGk2VWc3T1FtVHpncy1JNDVKVGFuSW5NdHk0MmlubjdqU3daWXQtMERWTXZPZ2RZeEVVRk9UZE5vWmFWMTI0QjdfS0c3bGxmY1o4TXUwNkR3M3FXWklUSExpcmZhZjhnU0tNRm41b1dfVjdCSWJXR2xiOTg0QkNjRExTOXRuaEllQnp5akRUcmhFOXZwdDNtNnJaMGpjcTFjdEVkZ0xFM2NwR0ZYX3lHOEJoenVKSk9jNTNyWkpydVY2TVNzSTlRYllNd0pUcmJuLXdMYVN0ZWx5b0JTUVl3NndDWmVxMGwtQ2VxX1kycExhQVkxb1JRajN1LTBrVHlEcXl6N2lSaTJqcXN4TW9sQTdmTE5USEZQbi0tNUNZTnB0c0paM2tlSjRINmdkc1phTHFvMTFYZ1hnWFJVcEFrb1BYbGJhdU96LWQzUFpNdXBUaGJZNF9Obi1Va3RrdGhYTV9IbTQ2S2JkQkFrY3J1UGhiRTZMMDN3OGVSaFhBdU9ZR0ZvamZlZFdQZ0R6YjZuQm1vSnhudHZ6UjNuZmliYWQ0M0VXZ2RmMThkQVBncHhzaTVuWF8zUElfaW5qSVVHdlh1aGl1TDVvOW9TOFpCQ0dsaGdWWnFKN1hMUzFIREJjVnhHT2hCUDB5b1ZUTXM0cFZBaWl0Tm0wVFRrU3hPT0RNQnBZRFFCd1dURWRGTFdMbkNGWVQ1a1RjUENoeGkwZnFTRUstXzJkemNCNXRxWk54U203T2oxSGpGMGUtZENUdU5TcS1xNFVRQXptQWgyNG45WHBlRE9Ea0VULTdwZGxxcGZXZ1FEU3NMV0U2UDdYZWNyR2R2N3hJaVRoVEZ6R0FTVnZ0QnJrLVRISVRuRURhWkZTaVBieTZPcUJlMG5wRlA4bzJxZHNNSnZmTnQ0Q1FvTVpPRlJ0NEk2cWpVbEtBcm92Q1c4eDBmYVdFdVpGd3Rjek9jNS1pOUt2VFdhcFhzVlFOR0NrMHY0UTFmQ2x5cDVpbzdCUTVvXzFWOHNtUDBITlBSMTZXalVGazE2a0N6WTA3YVpocjhNdUZ1cE9WdGdiR01WRWlpQkNQMjZ2TUVfeENOSDVmVE9uNFM1a2xKVFcya0VZb05VRldhYVJOUXdkajF4bkk2Q0hZSXNSbDZMRkFENVJLOGlMYWxCNE9fd1VOdVRBYVkzbE5xUVVCRDNtM25FNUE3TGx0eVA2M3JoR3pHdHBXOGVvOXphNFNiTl9QbHFMMVdRY1VnTWxreG5PcTNqRFdiQnJic0RUekEwN3pRTVhUTEhKMEhSMHQ5RG5ONkwyVXphb2VYNmtUV1VteU54WUNfUHY0aHhfRGVoYjVnS2ZSc3Vha25HSm85b0R0TDNkcHViZzV2ZS01WWdhZ0pjWVR1T1laLWsxdUNnYzZlLVdjWVNGdndfY0YwMDdmR2xnLXFkbW1vM2dZeVJxT1dkT0FDT05iUFFvaWxISll4RHhCTldqOGg1Qi1hUENxejJTX0hwU3JwUzF2QzJIeHd3bnpSXzJSenJFbkNHUElmSDJYNVhEczV2c3FYOFN4Y3hTVmdKOVBEbTlkR29HOG1GT25YejVLWDFobWI2eTBoSzhhZFNVWnoyQXFKYzBQVkszWWVJcHZLblQyY19mclNocXJzU2tDR29VblV4NkpMWHhBQVdSOUJBVGo5N1FlX0paU19hVTZvZk1yNFlYdGdlYUNaY1JSNEQ0X194TWV3ZGxMSUlJUWFZWW5MaFNFUVBPaUJFYnYtQ1RaeUtVdTFidFYySVA4aWU0YmstOFB1Vi00RVFlM3VwN1hMb0lFMmNHbUFIYmtLTFFudzNiSldqWWo5Vm5mazFRZEFMdnJpUnBpRnotSGRlbVUycUxsMVl1WE9sMUZuRVFEaFFTRUtfbS1CTHNEZ0FtUk10d0FFMGhhazhHb29JSDZfQjEyZHF4OExGSUR5TV8zdWwwWkNNaVg4LWExT05xVzhRanhoTUhNTHhTZWQtQTJtOXZnbGVuaXR6R1RLUUVUcU9yOElkOF9xSDFRWE9GR2JCeXZ6eVJWUEw1UEViQUY5WFM3V2FMY3BTSGw3bG1HRngzQ1JOcldxdGQzTl9OMHZWMlpDdFpFYnJMcm02YmlQMmJLM2czLTZmSHdjdVBibmk3cGdnT0ROd1VHZkVLVnFtT1RYTlFwYTJ1eHZwd0c4WEowV0tUVVF6RXhDUkVKcERRcEFnbjYwNUlDWS1CS0xqaXNCRDI4U2NiamF5LWR6UnhmQTRxVVFYTl9rS3RJOUs2U0o2RmxCV1NmdmRJa21OWEExZF9vdGRIRFdNZ3FYUXB3YkdXazBhMFpiUWx5SllpWWd0UHpNNHBxWk1tVkVNYmkxMFpQUFE0Z29YZzFlSUVFNkRoWmZEMGFFd3hvLUN6TXBYU1lHd0FNY1VxWXhZZ3FmV0NXbkQ2eFZnUGo1ZHpUR1YwUVluVGxCQ0NnTDZMd1dxVGdqYzZiYkU4Z1Z6cGlRVU9Mck40NDk5UmNJelFwMk1GTFNPUUl2aGVsSllCWVlwRGNYODdNd2VjeVphTE5UVjFKM2ZPeUYyYnI4N2tzLUtqMEM1YjF0ajdpemdITUtnT3ZBZlZjYkEtR2k0VXFfeVhqNFFaTGloaThJSmdHd0VVU3hPaGU0T1dQaWlZS1EyUG9pQlhSdmlqaTJVQXd0UHR5X3hDekJ1NExKMU1mQ1REc2JnWS10Y2FldVdfYW9CT0I2Y3RZYU9jMXBrT3ZDX1ViYWphdktUdHVWcHMxUTBfZkFubjdCYVM3VHpTRXNhVjZ2cExIb2g0MVp2emQ2VGpzTzVlQi1ldWZzZDhUMUpxZnBLeXhYQUJRSTVPRHk3SW1mZW01VEpsWjdqY2diT0lpLWxYZS00R1ZjSVRoSkpPOVNaSDl4c0RJSnp2MU4yaGEtZWd2ME9Za2R5b0xOMEFrSzgyd3VEZlNDcV82Y2pGUzc1M3lVZHJ5Y0JsYVVOczFIVERHa3hJdUNiX3NsVjdNdXlhV1V2cEg5UW9BTVNuRm4xcUpQMmJLbW9LM1RfLTB3RzBPUzZZd2JQNUh1QzZlV0wwdDVpUENlbFRiNS1KRnlQZUhCY1FEb2xyY0UwbjZ6NUhEcHNzU0xndHZYRnNoekh2bmdjXzk4UjlSNTNCMlZsTURQX25pYnVVTUk4MTdUaWNvV1puUUhESExqVFBWNi1uR3hHMjFMcjhMUjRrWE12VmpBSXFwZzE3bUNncjg3U0luU0tDSDN5RlBCeVRyTW9oWVcwX1hCOEJJbVBwZlRLZ2N4by1IU0N3WFJWaXNkOHdPWUZfeGpGcVI0Q19xVXQ1bWVfQTVlTEdGUTFHOHd4Mk5FVUEySWI2a1hLZ1NSZE9WMEZqdHlfdGlIRlg3LW1qQ2IzZVdhUW1aa3BkNVZjSHZmT0d2S3JQMmRTWHlYemlnSElRalc2X1NfdG1ScHVWXzJsSGdaTE5LRVV3dXRidUJtaHpQeDBIRlJZUE54VGg4TnRjVVpUbmhpSEExaFZlOVNsS1hFQXBXRV9fYnJQbXJ4Yi1Qd1VzTG9WY0ZvMkJicW1zNjZxaURnUjNXemtKLXFpclZsaHM3NlBWRE8xaUJLdHlCSDdpLTJ5OG5qY2UwN1dFLUY0b0tiLXhwR1RIT1VRdDJxdG1GR1hKeURxcUlveEs4MEJZb1hZd1BaWGpvdWQwSEU0cUNPSE90YS16S3VyY09MOGQzT01GNXFielFGLWZrUjA1Uk92RVU4VGszMS1pMUpkN3hHc0FMa3VDcVowckZYQ21jQTVaTzVuc2F0WnNxcVhlQ09VYzdidFpXbzZvbHUzc1JDVHZ5Q2RlWXR2RllHNnBtR2F0aHlKZGlzazBwT3BsMXdoUWU1dThMZk0yV2JIbG1mSzVjQlI0ZlhEVDU3MmxkOGM5c3llLXZiYUc0S1VCY2ZvT1JyMklpRTNlRzdCN0FCSTcyRjZ4N2pRR1VYRG1aLU9MZlh4Wi0xZGJyUmhvZ1dqT0RudUpBYTRtWnMyenVDMzBpOWZUMDRKdElpeTJFXzJFQ2lMWVd4V041WnViUnhZbmtlNTh0bW04ZHpXTDloaTlta081ZkhwUjR3eVRYbFBOLTZqTy0xdm5PZWVMWl9EUlRDXzhFQks2WFZDTTk3WE9jSnhFUEtkWFh0MnNwVC01Rmx6T3Y2WHNIV1pDVzcxaE9NcV9qb3NBLXVqZENUdm56YVk3MkI1d1F5RjlsbDBGNVdtcnMwc2dpNW5MWU9nMXFaQ01ydDRKMUdkcEpzdXN3QVFwdm1DQVhuLTAydk9XRnRSX0s3QXkwOTFkQmxkNEZTVXBQTzhVbUJuNG8yTWViSHBtclozSjJqa0VLdkpmMHAxaFp3MzNPNl9GRlVpM1FxMTdXUmJUNEExVUZ6U1VpNU42VXJjWTQ0Z2FkMnBPNi1xVFJuMXljTUE4U29FVm9SVWJaczJEZ3FyLU53RVMySmsyRzl4c0dpWkhla1VqdjlyWGw5c2tWbGI5V2RYSTBoLXJ5TzFfUU0xUUNHYldsX2xCaEdBdlZjMExqQ1I3d3lpeG1BRHVJMHc3Wlc3NHlDQUpKdUtJT0xyNTd1bzYxQmYzLXFYWXRIWDh2c0xPamc5N1IyTExHeUpKMWhVcVZlQU5sa3B3LkhsQXBVUTQ1YTdxRDRiRUVJWlRmR3B6b3lBNi12UlZQVkhlV000eUZVV3c\"}", + "status": 409, + "response": "{\"error\":{\"code\":\"Conflict\",\"message\":\"There was a conflict restoring the key 'https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/0f21985e3d2d42ed899ba2b76e892011'. This can happen if either: a second key with the same name was created after the first key was deleted; thus trying to restore a key whose name is already in use. To fix this, rename the second key to something else so that the restore works. The second probable cause of this exception is when multiple operations are performed in parallel against the key. To avoid this error, perform operations against a key in a sequential manner.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "661", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:45 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "409", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "c4de887c-1c9c-4f7f-99eb-47539f6231ef", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "37f7673a-89c6-4090-aac9-969801807d3f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/restore", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"value\":\"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUl5WVdabU5tRmhNUzAzTm1Ka0xUUTBZVGN0WVRjek5DMDJaalZoWkRCaU5XRTRPVGdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQzB5TlRZaUxDSmxibU1pT2lKQk1qVTJRMEpETFVoVE5URXlJbjAuY2lEMjFBc2YzaFZwVjc4dVFMV1RsUzdxZ1c5Wkp2UWhWZ3lGbzF2Y3Z5enZGdDFTUnlJVXdCekI5OTJsOVNhUF90REdXbEx6QURXTjFicFJweVp2STlBeHlIdEFkTWRxSTB0eGhLdHhGMmNOXzEtUGRVYUt4MWowRllKb3Mybm5UcjEwMnN6VGR1ZTdHY1dnb1BUTHRuc3llcVhCdkdVSGcyVnZOdjh0V1JQQV9WTjRKWWtfS2pqdGc0WmF0VW0tUk81VnNPZW13RXBaNU9NVndjRG8yTkd2emdVVkFERGtvc3dSYzZ3RVlxU0NHbkEzWkxtVnlJRVczcjZYd1Z3SWx2TkJhZUxGOXY0Ml8ycjUtc3VneDA0WUlZRnc4a0tSZEp5OUI0ZU9KXzRHa0stZm50X3Y4UFFlTEdGaVlkRkFZUVc2Q1pkVEh6akZFRG9QaWphYWx3LmxCRHNtSWt6MU1fMEpfMGdCakMxLWcuajNYZVQ5TlM5LVAyWjhPQTFlUW5TSEhvem01N0czaXhYeHRGWUtBU05WSTM1cFBPbUswdEVJMzltY0FRLUZtRGV4cVdWbUw3QWxYWUk1M3ZTaXEzWGtOMG5PLWdvSkhsdXNXM3BVemthRG9PWlNxY25QV0FxVXFwZi1zZVZCdkJqMXRBb2dsa2dTZ2psbUk0UlQwVFJJbkYzaEhXd3BIQVRzbWd6WnMxMVlpdlZ4RTlpbTkzNXplQVdaRXFRRFlncGJNZDdLdDN6ZlpJLTN4M05YelpZXzQ0NUptNGd0bzdLTDNEbENIbFpSU0lnZnhQc3Q3VW1RWC1FNk5oWklNWUlfMzNRNkdtTFBVNTk0QVozaERBcWlZXzFQeFdqdV9KY3dWcVdqLVE1TjVqWk5sYmo3UGw2MjhXMEVpOUF4R1FfQkFrLWJpYngxbHM2WWIwS05Oa2J6d1pPdjF4ZVUtYTRCVGFGZWNWS2QxR1dBM2pzZV9PSjNYcEV1ZlNzSEU1TktQeF82azVUMnFLMUliV0JHd3ZFb1R6NjFWZEpseGZacXdtczZjNGU3cHE0MHhnQU03M0xNakVqdlcwYjAwbHFHZGxBc1hEcnZMMDl0ZlRrRThIaHFfTlIzVFpGMFBtSGZrLUxRNVpMVlRLSFF3TkxtVVR2bkFLeWY0UFk0b1hCbmJzWm1OdDdaalFOUTFMOE1FNzJfQ0dPVmxuZjEwOWhDZHpud2dNWjh0cjdYNTVFbHIzUVdoR2FXSTZlc3FVZkNSbnZHZk80T1NjTU1QNlZ2UGtUdThMb3hKVzZ2X3hKZVpJUWlEcEloVnFGcE5UZ21PQXN3WlJYcmZhQ0ZqTkE0cDVfVUp0aW91aWUxOG10V2ZRQ2lyeGhHNTMwTFJHWEZLTkdkMzVpbkw4WklnUnRJQmtRR3NNZ3Z2dDZ5NnJiam5JV3ZEYmd1S0F5d2lmQk4xWm5pSHZYY0ZhUkYxZVJaU1NhM1BidkVSTHhoR3VmeGZfQzVYQjVzNXk4M2ktQkUtUEVFN19Ub0Y2YU1LWkU5aExXLThOR21XUFgxSVBqeG5OUFpNZE5wM3dkaTJyekJxLW9IMHlVNHFZX1hJZFIyYjU3STYwY2J3TThrS1NKcWhnS1pyRW4ySHR6cG5lWF9pei1jSHlnaHBSb0xQd0dMTWd1V0RqTUhOY0duZlFISFZhUER1cl85S3VsTnNZSDNLR3R1YlpTZUt6ZHM5ZWxrSGRJMWFuVG1lVnphZTFaZXRLOW81R1dQSEx3bUN5RGRXWlBYbDNRN0E3NEl4YkNoUFVvd0ZVOEVGbnJ6Yi16clBDOGNMNTBtZ0dIQVdwMDk4WEltSFZSZ2l0QWoxbXJycWhuejZYMjNqZkZVWGtfT1VDQ25KUC1BX0UwTXQ5dkg4dTJUb0hURnRqTElIQms5bzlyTEU3a3FWek9YZXFpOTlNekFhZUVEUnRLSF9FMzdxc0tSQWRORlRHUDVveTJtMXd1MTkwREdrQzU5aW9Ld2J6SkNOVjdOdmJmSGFrc1MzQmlzUFUwbzc3UjlDaHpEMjk3czZVUEdFbHJpQkR2LXRDRFFGYXlNRXNMeWxoZ3hQMEttbEczTFhtQmIteXd2aWVPOVBWbVU3TnZIQ0dlcEZzVTFMd3NabnRkSWZoQUpWRXppMThydktEaUhBSUlTZ045LWJLMTV2ZjFpOGNzNm9mMGRudDRyYWRmb1pvR1hla2VoUV9RdHJHRXNPdFNxRi10NXpCVXlCSjJMeGlfd0VyV3ViV3hkdk9YNjc5WVduaHdpbnR2aFZZbnpGTng3YS14c3hqelVXR3dCSFowTjllN2VnUjNjRHhqdjBlNzMzTTVBdUhmU3I3djY1S3hITkxQMmVXS2QydkhlQmRVWjlOdkdYamhxTno2eWVfNzFibUpjMW9fQWNiUHRKTGY2d2NhN2h4T05HakZla0dxM1Z1b1FOc2lnQkVhRkxwb3ZUMHllNkVTOTdkTWRPcDFjXzRTZF9WZ052U1NCMGFPYW1zY0lsMjJaM1JzczlZSkt3WkNlbEx1dkhCdTZtQXlOaUFTbEpXZFRJenNQR3hMUV9GclBJX2x1d1p4dG9HaDZTX0FNWW80NDBqS0RmbW9CdzQzTUJiMjNVTXhJWU5DMHY4THdXUTFuUkdhU1hzVDI3Uk14ajhCY25UTkRWWjN0SGF4WlNuRTRuRVFuQnRyUWJnaHpCdjBLSTRUbDVnRnp2Skd3TnZQakExcXl5dGFHTGU0aTNzeWNoSVRjY0VZWEt6ZkQxVmRKQWFQVWRtSFV5Z251NzNkNjhOcWk4VVQ4cWNaRVFlcU5tMnZ6cFhZUU5xb2ZwTmdBYnhBaWJXOWJXejJBUG0xNndDYU1Ka0VRSkQ1MlF0cmQ3WjNvQkMxazZfZVF0YlNjZGlKWUxlN1NRcFlWZGUyMUZOdDJGaXBIbDc2ZnJ0a2lwb1R4VHEwbHMwWjEzY05ETUF3dlc3eGgyN0ZqS2JGT01SN0pUMkVCMkpaVjBmcDd6d2hXSHRZN3R1NTFSYnQtM2E2b2s5LTZvRnUtdlB0Nm5KXzVZTTRpSjFmbEZNZWN0aU9UNThHQ09BbGNfZ0JhRU00d18yQm1pN2xadzlsOEx3X2t1WjdRdEpyUDQxWjNyLTY0QlBiTHJPY1NKT1hsN2xzMGZyc2MyeFlBVFdVbktpUGxqdnJUU3hTSDFwWi1va0FleDd2Wml0RjlHTUh4dFB4a2hGd1B4UUNhNkN1LXdscWNGYjJSRHR1YlBuWlVNV2VLYS1ud3ZUcjFIVFFKbVBuZHctOWpFUmo0b2tLb2ZudnJLbHhZNDVPU0ZqdDhoS0dwM2RTbjJ6emV6RWx5V0hFWnhla1V5ZXdVR1YybnFhWU83UXpvamdMM3hJbmoxMXRSSzVDVF9iQXVLd3BoOC1FSDMtWmJ2R3FURW45eXNIQ3Zsbi1PODRiWUlqYnBZdzdRLTRYWTkxVmJlOXJrSDV4M1UyZnZyeEdlQ241Wkk2WFBzVlBycGdXTy1DT0lBOWV1Q0RzcHB0alVfbUFBc1QwTVM0VFM1bVdkcGhBdm5xS2VaQS1tQ0FYOERjQXVieTkzMmdRUEp3SUFZaWJKNE1JVGQ0OXhkbzFQZjd0Wm5oME5vRFA0cjJ4R2ExSW1nVXE3SkhiYy1jV3prS1g1OVNxUzFSOGlTaFVGWWlCVUQwOGFoNFVLcjZWbjF5MWdaNUJWd043bU9Ub05pV3d3djdvaEp2YUtsSkJFQnNvZEs5Ti03ZXp0YjJ1STZjaHBxcXVoRkhTeGlZQ29KclhLWEhHQ0VzdC1Id1AzRmFPdXoxVTIwRFNHQkE1dTd3cHJ5U1k1Y0dZMzhmcVFHYzFqU21FU0dZVzdTNWxXbld3SEh0ejlEVjljZ1BnX3dXQm1LczkxVGJrUWtBOTZLbjljeXh2ZjEzamtwT0habUs2ZFBCZzNOZHQ1Vm0xTk9WSllYWVM2T3dzeThUVW54SnkyMjVFMklSV2xNU0E2bDBySWFVZXh6V1FSYWFDZWsteVJTMGwxZmJXME16V0w3bDNKRWxCNjk2bjM3NGlmR2dsb3h5RW1JTUl3TzF3QTRfa3Y1Q2RVSjk0Nk9OT0wzc3ZUSzBod24xZjZ3SEppT1lQYlFUTXp3LVdNR1p0RHRSM1hjNTRQa013LVhzWUE5RkNNMkxEOElDUGE5LThwV1hpNmZzWlpGVXVvcXpzLUNLaUREVi1IRXVpYnRGcVlXeHNfeV9RaHdIRHpCMjhZNHptUTNpQXdnMUZmNjFSUGNHQnlFMVdTeU96c0NyQkpRblE2ZHBKYW5MLWRHUmVPc0pENEVoWW42Rkk2QWhaNjE5NnBfV2pEWFl3Z2YyWkVsZWRKS25EeFlWZFg4NzRwdy0xbEFKNGVpZ3JpS1ZxVENzckhXWkhFQnVrT0FaNlR2bmZWenlqcTV5TnpqUWR3UzVXMlZKMDRZcy1LZDdmcDM0NE9GUDBtaVpONkNWeVJOQ3RyTEJZSVpQbmdXRVktUDRBOUhiXzN5VWdyX3dSTlQ4ZlE1Qnl4VnhwRjVSVFdudi1pWTNXSWQwaFMxa2sxb2x2WEhPa1l6Z3hsSW5zaWtLc1Z0RVdySVRURE1iNGJlSUNzMnZVTkxHNnJyZ0hMRUszY0RYOFRjaGc1YnE4QXYydS1uZm5vQ0syV0JoSDhWS0lWT2Y1ejBtY1kxY0NSb2Y0UTZXNGRQeXM0RFV6S1JXS0x1T0RCYlMtYzdxTlNuN0M1c0hVR0dRLVdrNnlnUXZTTTk4SDdsOG1BckRNdXQ5YzUzZk1FNVlHOTRUanlGemdsOGNxdVlCQVBqYWVQdldlOFdYNHBKb2NUZnVzdjlZMklfY1hNQktEbVc4WHlNRTFPaEhDSzBXbTJORGlBem5nX2t6ZmlFYTgtSThXWUJ0OGI1Vk5QQW85bm55TFJfNXRCRkdGV2NoLTJkYUxGQnR6S3NUQkxRZm5pQ2tVdXItQUdVUk1XN1FmRE1vSmR0a3lCR2tmRFVheXlBYWQ5ZEpfSE1hZUxDaVE0UWhpRnpNVHF5ZzYxQmwyXzkyMi1PY09HU1BSRElXeFNZRWRfUWtKb29mN3ptXzR1bWRVOUVBRk5vYUxxcERoY2lCa3NfNEhUM1diVXAzQ25jb3phd3JfZFlRRTVYOXpIWS0yUl9WdzZXVTZMdTYtaV9jNjBmQXZEX2lISklzU3d0bnF2WVEtenl3djVLNWJXUFdyV2ZnMzBrMV9sbFNsazktYjJCNUZmWVZBUUJsMkRaVG9VdlJzaDVZVHhiYm5EbGFzOEJVRE1XV0hSSEotZF9pZUNad2VIbGdWVkktT1lWV1NCLXAtSjk1akZuVmJnUEdiVjJSSE53US1IdkNrRDBpZElDTklEY2h4UnFGZUQ4Z2dFaTdfcnd6N1d1ZXpZS3V5aFNHa1hhVWMtbmUxdHRrRmRsYWJ5SEt1b1FJWDZ2Snp1cEpjWUo1OEMxd0kwUXBIcjY4U3poekpjMjBUVGk2VWc3T1FtVHpncy1JNDVKVGFuSW5NdHk0MmlubjdqU3daWXQtMERWTXZPZ2RZeEVVRk9UZE5vWmFWMTI0QjdfS0c3bGxmY1o4TXUwNkR3M3FXWklUSExpcmZhZjhnU0tNRm41b1dfVjdCSWJXR2xiOTg0QkNjRExTOXRuaEllQnp5akRUcmhFOXZwdDNtNnJaMGpjcTFjdEVkZ0xFM2NwR0ZYX3lHOEJoenVKSk9jNTNyWkpydVY2TVNzSTlRYllNd0pUcmJuLXdMYVN0ZWx5b0JTUVl3NndDWmVxMGwtQ2VxX1kycExhQVkxb1JRajN1LTBrVHlEcXl6N2lSaTJqcXN4TW9sQTdmTE5USEZQbi0tNUNZTnB0c0paM2tlSjRINmdkc1phTHFvMTFYZ1hnWFJVcEFrb1BYbGJhdU96LWQzUFpNdXBUaGJZNF9Obi1Va3RrdGhYTV9IbTQ2S2JkQkFrY3J1UGhiRTZMMDN3OGVSaFhBdU9ZR0ZvamZlZFdQZ0R6YjZuQm1vSnhudHZ6UjNuZmliYWQ0M0VXZ2RmMThkQVBncHhzaTVuWF8zUElfaW5qSVVHdlh1aGl1TDVvOW9TOFpCQ0dsaGdWWnFKN1hMUzFIREJjVnhHT2hCUDB5b1ZUTXM0cFZBaWl0Tm0wVFRrU3hPT0RNQnBZRFFCd1dURWRGTFdMbkNGWVQ1a1RjUENoeGkwZnFTRUstXzJkemNCNXRxWk54U203T2oxSGpGMGUtZENUdU5TcS1xNFVRQXptQWgyNG45WHBlRE9Ea0VULTdwZGxxcGZXZ1FEU3NMV0U2UDdYZWNyR2R2N3hJaVRoVEZ6R0FTVnZ0QnJrLVRISVRuRURhWkZTaVBieTZPcUJlMG5wRlA4bzJxZHNNSnZmTnQ0Q1FvTVpPRlJ0NEk2cWpVbEtBcm92Q1c4eDBmYVdFdVpGd3Rjek9jNS1pOUt2VFdhcFhzVlFOR0NrMHY0UTFmQ2x5cDVpbzdCUTVvXzFWOHNtUDBITlBSMTZXalVGazE2a0N6WTA3YVpocjhNdUZ1cE9WdGdiR01WRWlpQkNQMjZ2TUVfeENOSDVmVE9uNFM1a2xKVFcya0VZb05VRldhYVJOUXdkajF4bkk2Q0hZSXNSbDZMRkFENVJLOGlMYWxCNE9fd1VOdVRBYVkzbE5xUVVCRDNtM25FNUE3TGx0eVA2M3JoR3pHdHBXOGVvOXphNFNiTl9QbHFMMVdRY1VnTWxreG5PcTNqRFdiQnJic0RUekEwN3pRTVhUTEhKMEhSMHQ5RG5ONkwyVXphb2VYNmtUV1VteU54WUNfUHY0aHhfRGVoYjVnS2ZSc3Vha25HSm85b0R0TDNkcHViZzV2ZS01WWdhZ0pjWVR1T1laLWsxdUNnYzZlLVdjWVNGdndfY0YwMDdmR2xnLXFkbW1vM2dZeVJxT1dkT0FDT05iUFFvaWxISll4RHhCTldqOGg1Qi1hUENxejJTX0hwU3JwUzF2QzJIeHd3bnpSXzJSenJFbkNHUElmSDJYNVhEczV2c3FYOFN4Y3hTVmdKOVBEbTlkR29HOG1GT25YejVLWDFobWI2eTBoSzhhZFNVWnoyQXFKYzBQVkszWWVJcHZLblQyY19mclNocXJzU2tDR29VblV4NkpMWHhBQVdSOUJBVGo5N1FlX0paU19hVTZvZk1yNFlYdGdlYUNaY1JSNEQ0X194TWV3ZGxMSUlJUWFZWW5MaFNFUVBPaUJFYnYtQ1RaeUtVdTFidFYySVA4aWU0YmstOFB1Vi00RVFlM3VwN1hMb0lFMmNHbUFIYmtLTFFudzNiSldqWWo5Vm5mazFRZEFMdnJpUnBpRnotSGRlbVUycUxsMVl1WE9sMUZuRVFEaFFTRUtfbS1CTHNEZ0FtUk10d0FFMGhhazhHb29JSDZfQjEyZHF4OExGSUR5TV8zdWwwWkNNaVg4LWExT05xVzhRanhoTUhNTHhTZWQtQTJtOXZnbGVuaXR6R1RLUUVUcU9yOElkOF9xSDFRWE9GR2JCeXZ6eVJWUEw1UEViQUY5WFM3V2FMY3BTSGw3bG1HRngzQ1JOcldxdGQzTl9OMHZWMlpDdFpFYnJMcm02YmlQMmJLM2czLTZmSHdjdVBibmk3cGdnT0ROd1VHZkVLVnFtT1RYTlFwYTJ1eHZwd0c4WEowV0tUVVF6RXhDUkVKcERRcEFnbjYwNUlDWS1CS0xqaXNCRDI4U2NiamF5LWR6UnhmQTRxVVFYTl9rS3RJOUs2U0o2RmxCV1NmdmRJa21OWEExZF9vdGRIRFdNZ3FYUXB3YkdXazBhMFpiUWx5SllpWWd0UHpNNHBxWk1tVkVNYmkxMFpQUFE0Z29YZzFlSUVFNkRoWmZEMGFFd3hvLUN6TXBYU1lHd0FNY1VxWXhZZ3FmV0NXbkQ2eFZnUGo1ZHpUR1YwUVluVGxCQ0NnTDZMd1dxVGdqYzZiYkU4Z1Z6cGlRVU9Mck40NDk5UmNJelFwMk1GTFNPUUl2aGVsSllCWVlwRGNYODdNd2VjeVphTE5UVjFKM2ZPeUYyYnI4N2tzLUtqMEM1YjF0ajdpemdITUtnT3ZBZlZjYkEtR2k0VXFfeVhqNFFaTGloaThJSmdHd0VVU3hPaGU0T1dQaWlZS1EyUG9pQlhSdmlqaTJVQXd0UHR5X3hDekJ1NExKMU1mQ1REc2JnWS10Y2FldVdfYW9CT0I2Y3RZYU9jMXBrT3ZDX1ViYWphdktUdHVWcHMxUTBfZkFubjdCYVM3VHpTRXNhVjZ2cExIb2g0MVp2emQ2VGpzTzVlQi1ldWZzZDhUMUpxZnBLeXhYQUJRSTVPRHk3SW1mZW01VEpsWjdqY2diT0lpLWxYZS00R1ZjSVRoSkpPOVNaSDl4c0RJSnp2MU4yaGEtZWd2ME9Za2R5b0xOMEFrSzgyd3VEZlNDcV82Y2pGUzc1M3lVZHJ5Y0JsYVVOczFIVERHa3hJdUNiX3NsVjdNdXlhV1V2cEg5UW9BTVNuRm4xcUpQMmJLbW9LM1RfLTB3RzBPUzZZd2JQNUh1QzZlV0wwdDVpUENlbFRiNS1KRnlQZUhCY1FEb2xyY0UwbjZ6NUhEcHNzU0xndHZYRnNoekh2bmdjXzk4UjlSNTNCMlZsTURQX25pYnVVTUk4MTdUaWNvV1puUUhESExqVFBWNi1uR3hHMjFMcjhMUjRrWE12VmpBSXFwZzE3bUNncjg3U0luU0tDSDN5RlBCeVRyTW9oWVcwX1hCOEJJbVBwZlRLZ2N4by1IU0N3WFJWaXNkOHdPWUZfeGpGcVI0Q19xVXQ1bWVfQTVlTEdGUTFHOHd4Mk5FVUEySWI2a1hLZ1NSZE9WMEZqdHlfdGlIRlg3LW1qQ2IzZVdhUW1aa3BkNVZjSHZmT0d2S3JQMmRTWHlYemlnSElRalc2X1NfdG1ScHVWXzJsSGdaTE5LRVV3dXRidUJtaHpQeDBIRlJZUE54VGg4TnRjVVpUbmhpSEExaFZlOVNsS1hFQXBXRV9fYnJQbXJ4Yi1Qd1VzTG9WY0ZvMkJicW1zNjZxaURnUjNXemtKLXFpclZsaHM3NlBWRE8xaUJLdHlCSDdpLTJ5OG5qY2UwN1dFLUY0b0tiLXhwR1RIT1VRdDJxdG1GR1hKeURxcUlveEs4MEJZb1hZd1BaWGpvdWQwSEU0cUNPSE90YS16S3VyY09MOGQzT01GNXFielFGLWZrUjA1Uk92RVU4VGszMS1pMUpkN3hHc0FMa3VDcVowckZYQ21jQTVaTzVuc2F0WnNxcVhlQ09VYzdidFpXbzZvbHUzc1JDVHZ5Q2RlWXR2RllHNnBtR2F0aHlKZGlzazBwT3BsMXdoUWU1dThMZk0yV2JIbG1mSzVjQlI0ZlhEVDU3MmxkOGM5c3llLXZiYUc0S1VCY2ZvT1JyMklpRTNlRzdCN0FCSTcyRjZ4N2pRR1VYRG1aLU9MZlh4Wi0xZGJyUmhvZ1dqT0RudUpBYTRtWnMyenVDMzBpOWZUMDRKdElpeTJFXzJFQ2lMWVd4V041WnViUnhZbmtlNTh0bW04ZHpXTDloaTlta081ZkhwUjR3eVRYbFBOLTZqTy0xdm5PZWVMWl9EUlRDXzhFQks2WFZDTTk3WE9jSnhFUEtkWFh0MnNwVC01Rmx6T3Y2WHNIV1pDVzcxaE9NcV9qb3NBLXVqZENUdm56YVk3MkI1d1F5RjlsbDBGNVdtcnMwc2dpNW5MWU9nMXFaQ01ydDRKMUdkcEpzdXN3QVFwdm1DQVhuLTAydk9XRnRSX0s3QXkwOTFkQmxkNEZTVXBQTzhVbUJuNG8yTWViSHBtclozSjJqa0VLdkpmMHAxaFp3MzNPNl9GRlVpM1FxMTdXUmJUNEExVUZ6U1VpNU42VXJjWTQ0Z2FkMnBPNi1xVFJuMXljTUE4U29FVm9SVWJaczJEZ3FyLU53RVMySmsyRzl4c0dpWkhla1VqdjlyWGw5c2tWbGI5V2RYSTBoLXJ5TzFfUU0xUUNHYldsX2xCaEdBdlZjMExqQ1I3d3lpeG1BRHVJMHc3Wlc3NHlDQUpKdUtJT0xyNTd1bzYxQmYzLXFYWXRIWDh2c0xPamc5N1IyTExHeUpKMWhVcVZlQU5sa3B3LkhsQXBVUTQ1YTdxRDRiRUVJWlRmR3B6b3lBNi12UlZQVkhlV000eUZVV3c\"}", + "status": 409, + "response": "{\"error\":{\"code\":\"Conflict\",\"message\":\"There was a conflict restoring the key 'https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/0f21985e3d2d42ed899ba2b76e892011'. This can happen if either: a second key with the same name was created after the first key was deleted; thus trying to restore a key whose name is already in use. To fix this, rename the second key to something else so that the restore works. The second probable cause of this exception is when multiple operations are performed in parallel against the key. To avoid this error, perform operations against a key in a sequential manner.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "661", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:47 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "409", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "03eac2a4-7f4b-47a1-8694-4adaad7eb3ff", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2516374b-d909-4c89-8a88-af2b61222e7f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/restore", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"value\":\"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUl5WVdabU5tRmhNUzAzTm1Ka0xUUTBZVGN0WVRjek5DMDJaalZoWkRCaU5XRTRPVGdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQzB5TlRZaUxDSmxibU1pT2lKQk1qVTJRMEpETFVoVE5URXlJbjAuY2lEMjFBc2YzaFZwVjc4dVFMV1RsUzdxZ1c5Wkp2UWhWZ3lGbzF2Y3Z5enZGdDFTUnlJVXdCekI5OTJsOVNhUF90REdXbEx6QURXTjFicFJweVp2STlBeHlIdEFkTWRxSTB0eGhLdHhGMmNOXzEtUGRVYUt4MWowRllKb3Mybm5UcjEwMnN6VGR1ZTdHY1dnb1BUTHRuc3llcVhCdkdVSGcyVnZOdjh0V1JQQV9WTjRKWWtfS2pqdGc0WmF0VW0tUk81VnNPZW13RXBaNU9NVndjRG8yTkd2emdVVkFERGtvc3dSYzZ3RVlxU0NHbkEzWkxtVnlJRVczcjZYd1Z3SWx2TkJhZUxGOXY0Ml8ycjUtc3VneDA0WUlZRnc4a0tSZEp5OUI0ZU9KXzRHa0stZm50X3Y4UFFlTEdGaVlkRkFZUVc2Q1pkVEh6akZFRG9QaWphYWx3LmxCRHNtSWt6MU1fMEpfMGdCakMxLWcuajNYZVQ5TlM5LVAyWjhPQTFlUW5TSEhvem01N0czaXhYeHRGWUtBU05WSTM1cFBPbUswdEVJMzltY0FRLUZtRGV4cVdWbUw3QWxYWUk1M3ZTaXEzWGtOMG5PLWdvSkhsdXNXM3BVemthRG9PWlNxY25QV0FxVXFwZi1zZVZCdkJqMXRBb2dsa2dTZ2psbUk0UlQwVFJJbkYzaEhXd3BIQVRzbWd6WnMxMVlpdlZ4RTlpbTkzNXplQVdaRXFRRFlncGJNZDdLdDN6ZlpJLTN4M05YelpZXzQ0NUptNGd0bzdLTDNEbENIbFpSU0lnZnhQc3Q3VW1RWC1FNk5oWklNWUlfMzNRNkdtTFBVNTk0QVozaERBcWlZXzFQeFdqdV9KY3dWcVdqLVE1TjVqWk5sYmo3UGw2MjhXMEVpOUF4R1FfQkFrLWJpYngxbHM2WWIwS05Oa2J6d1pPdjF4ZVUtYTRCVGFGZWNWS2QxR1dBM2pzZV9PSjNYcEV1ZlNzSEU1TktQeF82azVUMnFLMUliV0JHd3ZFb1R6NjFWZEpseGZacXdtczZjNGU3cHE0MHhnQU03M0xNakVqdlcwYjAwbHFHZGxBc1hEcnZMMDl0ZlRrRThIaHFfTlIzVFpGMFBtSGZrLUxRNVpMVlRLSFF3TkxtVVR2bkFLeWY0UFk0b1hCbmJzWm1OdDdaalFOUTFMOE1FNzJfQ0dPVmxuZjEwOWhDZHpud2dNWjh0cjdYNTVFbHIzUVdoR2FXSTZlc3FVZkNSbnZHZk80T1NjTU1QNlZ2UGtUdThMb3hKVzZ2X3hKZVpJUWlEcEloVnFGcE5UZ21PQXN3WlJYcmZhQ0ZqTkE0cDVfVUp0aW91aWUxOG10V2ZRQ2lyeGhHNTMwTFJHWEZLTkdkMzVpbkw4WklnUnRJQmtRR3NNZ3Z2dDZ5NnJiam5JV3ZEYmd1S0F5d2lmQk4xWm5pSHZYY0ZhUkYxZVJaU1NhM1BidkVSTHhoR3VmeGZfQzVYQjVzNXk4M2ktQkUtUEVFN19Ub0Y2YU1LWkU5aExXLThOR21XUFgxSVBqeG5OUFpNZE5wM3dkaTJyekJxLW9IMHlVNHFZX1hJZFIyYjU3STYwY2J3TThrS1NKcWhnS1pyRW4ySHR6cG5lWF9pei1jSHlnaHBSb0xQd0dMTWd1V0RqTUhOY0duZlFISFZhUER1cl85S3VsTnNZSDNLR3R1YlpTZUt6ZHM5ZWxrSGRJMWFuVG1lVnphZTFaZXRLOW81R1dQSEx3bUN5RGRXWlBYbDNRN0E3NEl4YkNoUFVvd0ZVOEVGbnJ6Yi16clBDOGNMNTBtZ0dIQVdwMDk4WEltSFZSZ2l0QWoxbXJycWhuejZYMjNqZkZVWGtfT1VDQ25KUC1BX0UwTXQ5dkg4dTJUb0hURnRqTElIQms5bzlyTEU3a3FWek9YZXFpOTlNekFhZUVEUnRLSF9FMzdxc0tSQWRORlRHUDVveTJtMXd1MTkwREdrQzU5aW9Ld2J6SkNOVjdOdmJmSGFrc1MzQmlzUFUwbzc3UjlDaHpEMjk3czZVUEdFbHJpQkR2LXRDRFFGYXlNRXNMeWxoZ3hQMEttbEczTFhtQmIteXd2aWVPOVBWbVU3TnZIQ0dlcEZzVTFMd3NabnRkSWZoQUpWRXppMThydktEaUhBSUlTZ045LWJLMTV2ZjFpOGNzNm9mMGRudDRyYWRmb1pvR1hla2VoUV9RdHJHRXNPdFNxRi10NXpCVXlCSjJMeGlfd0VyV3ViV3hkdk9YNjc5WVduaHdpbnR2aFZZbnpGTng3YS14c3hqelVXR3dCSFowTjllN2VnUjNjRHhqdjBlNzMzTTVBdUhmU3I3djY1S3hITkxQMmVXS2QydkhlQmRVWjlOdkdYamhxTno2eWVfNzFibUpjMW9fQWNiUHRKTGY2d2NhN2h4T05HakZla0dxM1Z1b1FOc2lnQkVhRkxwb3ZUMHllNkVTOTdkTWRPcDFjXzRTZF9WZ052U1NCMGFPYW1zY0lsMjJaM1JzczlZSkt3WkNlbEx1dkhCdTZtQXlOaUFTbEpXZFRJenNQR3hMUV9GclBJX2x1d1p4dG9HaDZTX0FNWW80NDBqS0RmbW9CdzQzTUJiMjNVTXhJWU5DMHY4THdXUTFuUkdhU1hzVDI3Uk14ajhCY25UTkRWWjN0SGF4WlNuRTRuRVFuQnRyUWJnaHpCdjBLSTRUbDVnRnp2Skd3TnZQakExcXl5dGFHTGU0aTNzeWNoSVRjY0VZWEt6ZkQxVmRKQWFQVWRtSFV5Z251NzNkNjhOcWk4VVQ4cWNaRVFlcU5tMnZ6cFhZUU5xb2ZwTmdBYnhBaWJXOWJXejJBUG0xNndDYU1Ka0VRSkQ1MlF0cmQ3WjNvQkMxazZfZVF0YlNjZGlKWUxlN1NRcFlWZGUyMUZOdDJGaXBIbDc2ZnJ0a2lwb1R4VHEwbHMwWjEzY05ETUF3dlc3eGgyN0ZqS2JGT01SN0pUMkVCMkpaVjBmcDd6d2hXSHRZN3R1NTFSYnQtM2E2b2s5LTZvRnUtdlB0Nm5KXzVZTTRpSjFmbEZNZWN0aU9UNThHQ09BbGNfZ0JhRU00d18yQm1pN2xadzlsOEx3X2t1WjdRdEpyUDQxWjNyLTY0QlBiTHJPY1NKT1hsN2xzMGZyc2MyeFlBVFdVbktpUGxqdnJUU3hTSDFwWi1va0FleDd2Wml0RjlHTUh4dFB4a2hGd1B4UUNhNkN1LXdscWNGYjJSRHR1YlBuWlVNV2VLYS1ud3ZUcjFIVFFKbVBuZHctOWpFUmo0b2tLb2ZudnJLbHhZNDVPU0ZqdDhoS0dwM2RTbjJ6emV6RWx5V0hFWnhla1V5ZXdVR1YybnFhWU83UXpvamdMM3hJbmoxMXRSSzVDVF9iQXVLd3BoOC1FSDMtWmJ2R3FURW45eXNIQ3Zsbi1PODRiWUlqYnBZdzdRLTRYWTkxVmJlOXJrSDV4M1UyZnZyeEdlQ241Wkk2WFBzVlBycGdXTy1DT0lBOWV1Q0RzcHB0alVfbUFBc1QwTVM0VFM1bVdkcGhBdm5xS2VaQS1tQ0FYOERjQXVieTkzMmdRUEp3SUFZaWJKNE1JVGQ0OXhkbzFQZjd0Wm5oME5vRFA0cjJ4R2ExSW1nVXE3SkhiYy1jV3prS1g1OVNxUzFSOGlTaFVGWWlCVUQwOGFoNFVLcjZWbjF5MWdaNUJWd043bU9Ub05pV3d3djdvaEp2YUtsSkJFQnNvZEs5Ti03ZXp0YjJ1STZjaHBxcXVoRkhTeGlZQ29KclhLWEhHQ0VzdC1Id1AzRmFPdXoxVTIwRFNHQkE1dTd3cHJ5U1k1Y0dZMzhmcVFHYzFqU21FU0dZVzdTNWxXbld3SEh0ejlEVjljZ1BnX3dXQm1LczkxVGJrUWtBOTZLbjljeXh2ZjEzamtwT0habUs2ZFBCZzNOZHQ1Vm0xTk9WSllYWVM2T3dzeThUVW54SnkyMjVFMklSV2xNU0E2bDBySWFVZXh6V1FSYWFDZWsteVJTMGwxZmJXME16V0w3bDNKRWxCNjk2bjM3NGlmR2dsb3h5RW1JTUl3TzF3QTRfa3Y1Q2RVSjk0Nk9OT0wzc3ZUSzBod24xZjZ3SEppT1lQYlFUTXp3LVdNR1p0RHRSM1hjNTRQa013LVhzWUE5RkNNMkxEOElDUGE5LThwV1hpNmZzWlpGVXVvcXpzLUNLaUREVi1IRXVpYnRGcVlXeHNfeV9RaHdIRHpCMjhZNHptUTNpQXdnMUZmNjFSUGNHQnlFMVdTeU96c0NyQkpRblE2ZHBKYW5MLWRHUmVPc0pENEVoWW42Rkk2QWhaNjE5NnBfV2pEWFl3Z2YyWkVsZWRKS25EeFlWZFg4NzRwdy0xbEFKNGVpZ3JpS1ZxVENzckhXWkhFQnVrT0FaNlR2bmZWenlqcTV5TnpqUWR3UzVXMlZKMDRZcy1LZDdmcDM0NE9GUDBtaVpONkNWeVJOQ3RyTEJZSVpQbmdXRVktUDRBOUhiXzN5VWdyX3dSTlQ4ZlE1Qnl4VnhwRjVSVFdudi1pWTNXSWQwaFMxa2sxb2x2WEhPa1l6Z3hsSW5zaWtLc1Z0RVdySVRURE1iNGJlSUNzMnZVTkxHNnJyZ0hMRUszY0RYOFRjaGc1YnE4QXYydS1uZm5vQ0syV0JoSDhWS0lWT2Y1ejBtY1kxY0NSb2Y0UTZXNGRQeXM0RFV6S1JXS0x1T0RCYlMtYzdxTlNuN0M1c0hVR0dRLVdrNnlnUXZTTTk4SDdsOG1BckRNdXQ5YzUzZk1FNVlHOTRUanlGemdsOGNxdVlCQVBqYWVQdldlOFdYNHBKb2NUZnVzdjlZMklfY1hNQktEbVc4WHlNRTFPaEhDSzBXbTJORGlBem5nX2t6ZmlFYTgtSThXWUJ0OGI1Vk5QQW85bm55TFJfNXRCRkdGV2NoLTJkYUxGQnR6S3NUQkxRZm5pQ2tVdXItQUdVUk1XN1FmRE1vSmR0a3lCR2tmRFVheXlBYWQ5ZEpfSE1hZUxDaVE0UWhpRnpNVHF5ZzYxQmwyXzkyMi1PY09HU1BSRElXeFNZRWRfUWtKb29mN3ptXzR1bWRVOUVBRk5vYUxxcERoY2lCa3NfNEhUM1diVXAzQ25jb3phd3JfZFlRRTVYOXpIWS0yUl9WdzZXVTZMdTYtaV9jNjBmQXZEX2lISklzU3d0bnF2WVEtenl3djVLNWJXUFdyV2ZnMzBrMV9sbFNsazktYjJCNUZmWVZBUUJsMkRaVG9VdlJzaDVZVHhiYm5EbGFzOEJVRE1XV0hSSEotZF9pZUNad2VIbGdWVkktT1lWV1NCLXAtSjk1akZuVmJnUEdiVjJSSE53US1IdkNrRDBpZElDTklEY2h4UnFGZUQ4Z2dFaTdfcnd6N1d1ZXpZS3V5aFNHa1hhVWMtbmUxdHRrRmRsYWJ5SEt1b1FJWDZ2Snp1cEpjWUo1OEMxd0kwUXBIcjY4U3poekpjMjBUVGk2VWc3T1FtVHpncy1JNDVKVGFuSW5NdHk0MmlubjdqU3daWXQtMERWTXZPZ2RZeEVVRk9UZE5vWmFWMTI0QjdfS0c3bGxmY1o4TXUwNkR3M3FXWklUSExpcmZhZjhnU0tNRm41b1dfVjdCSWJXR2xiOTg0QkNjRExTOXRuaEllQnp5akRUcmhFOXZwdDNtNnJaMGpjcTFjdEVkZ0xFM2NwR0ZYX3lHOEJoenVKSk9jNTNyWkpydVY2TVNzSTlRYllNd0pUcmJuLXdMYVN0ZWx5b0JTUVl3NndDWmVxMGwtQ2VxX1kycExhQVkxb1JRajN1LTBrVHlEcXl6N2lSaTJqcXN4TW9sQTdmTE5USEZQbi0tNUNZTnB0c0paM2tlSjRINmdkc1phTHFvMTFYZ1hnWFJVcEFrb1BYbGJhdU96LWQzUFpNdXBUaGJZNF9Obi1Va3RrdGhYTV9IbTQ2S2JkQkFrY3J1UGhiRTZMMDN3OGVSaFhBdU9ZR0ZvamZlZFdQZ0R6YjZuQm1vSnhudHZ6UjNuZmliYWQ0M0VXZ2RmMThkQVBncHhzaTVuWF8zUElfaW5qSVVHdlh1aGl1TDVvOW9TOFpCQ0dsaGdWWnFKN1hMUzFIREJjVnhHT2hCUDB5b1ZUTXM0cFZBaWl0Tm0wVFRrU3hPT0RNQnBZRFFCd1dURWRGTFdMbkNGWVQ1a1RjUENoeGkwZnFTRUstXzJkemNCNXRxWk54U203T2oxSGpGMGUtZENUdU5TcS1xNFVRQXptQWgyNG45WHBlRE9Ea0VULTdwZGxxcGZXZ1FEU3NMV0U2UDdYZWNyR2R2N3hJaVRoVEZ6R0FTVnZ0QnJrLVRISVRuRURhWkZTaVBieTZPcUJlMG5wRlA4bzJxZHNNSnZmTnQ0Q1FvTVpPRlJ0NEk2cWpVbEtBcm92Q1c4eDBmYVdFdVpGd3Rjek9jNS1pOUt2VFdhcFhzVlFOR0NrMHY0UTFmQ2x5cDVpbzdCUTVvXzFWOHNtUDBITlBSMTZXalVGazE2a0N6WTA3YVpocjhNdUZ1cE9WdGdiR01WRWlpQkNQMjZ2TUVfeENOSDVmVE9uNFM1a2xKVFcya0VZb05VRldhYVJOUXdkajF4bkk2Q0hZSXNSbDZMRkFENVJLOGlMYWxCNE9fd1VOdVRBYVkzbE5xUVVCRDNtM25FNUE3TGx0eVA2M3JoR3pHdHBXOGVvOXphNFNiTl9QbHFMMVdRY1VnTWxreG5PcTNqRFdiQnJic0RUekEwN3pRTVhUTEhKMEhSMHQ5RG5ONkwyVXphb2VYNmtUV1VteU54WUNfUHY0aHhfRGVoYjVnS2ZSc3Vha25HSm85b0R0TDNkcHViZzV2ZS01WWdhZ0pjWVR1T1laLWsxdUNnYzZlLVdjWVNGdndfY0YwMDdmR2xnLXFkbW1vM2dZeVJxT1dkT0FDT05iUFFvaWxISll4RHhCTldqOGg1Qi1hUENxejJTX0hwU3JwUzF2QzJIeHd3bnpSXzJSenJFbkNHUElmSDJYNVhEczV2c3FYOFN4Y3hTVmdKOVBEbTlkR29HOG1GT25YejVLWDFobWI2eTBoSzhhZFNVWnoyQXFKYzBQVkszWWVJcHZLblQyY19mclNocXJzU2tDR29VblV4NkpMWHhBQVdSOUJBVGo5N1FlX0paU19hVTZvZk1yNFlYdGdlYUNaY1JSNEQ0X194TWV3ZGxMSUlJUWFZWW5MaFNFUVBPaUJFYnYtQ1RaeUtVdTFidFYySVA4aWU0YmstOFB1Vi00RVFlM3VwN1hMb0lFMmNHbUFIYmtLTFFudzNiSldqWWo5Vm5mazFRZEFMdnJpUnBpRnotSGRlbVUycUxsMVl1WE9sMUZuRVFEaFFTRUtfbS1CTHNEZ0FtUk10d0FFMGhhazhHb29JSDZfQjEyZHF4OExGSUR5TV8zdWwwWkNNaVg4LWExT05xVzhRanhoTUhNTHhTZWQtQTJtOXZnbGVuaXR6R1RLUUVUcU9yOElkOF9xSDFRWE9GR2JCeXZ6eVJWUEw1UEViQUY5WFM3V2FMY3BTSGw3bG1HRngzQ1JOcldxdGQzTl9OMHZWMlpDdFpFYnJMcm02YmlQMmJLM2czLTZmSHdjdVBibmk3cGdnT0ROd1VHZkVLVnFtT1RYTlFwYTJ1eHZwd0c4WEowV0tUVVF6RXhDUkVKcERRcEFnbjYwNUlDWS1CS0xqaXNCRDI4U2NiamF5LWR6UnhmQTRxVVFYTl9rS3RJOUs2U0o2RmxCV1NmdmRJa21OWEExZF9vdGRIRFdNZ3FYUXB3YkdXazBhMFpiUWx5SllpWWd0UHpNNHBxWk1tVkVNYmkxMFpQUFE0Z29YZzFlSUVFNkRoWmZEMGFFd3hvLUN6TXBYU1lHd0FNY1VxWXhZZ3FmV0NXbkQ2eFZnUGo1ZHpUR1YwUVluVGxCQ0NnTDZMd1dxVGdqYzZiYkU4Z1Z6cGlRVU9Mck40NDk5UmNJelFwMk1GTFNPUUl2aGVsSllCWVlwRGNYODdNd2VjeVphTE5UVjFKM2ZPeUYyYnI4N2tzLUtqMEM1YjF0ajdpemdITUtnT3ZBZlZjYkEtR2k0VXFfeVhqNFFaTGloaThJSmdHd0VVU3hPaGU0T1dQaWlZS1EyUG9pQlhSdmlqaTJVQXd0UHR5X3hDekJ1NExKMU1mQ1REc2JnWS10Y2FldVdfYW9CT0I2Y3RZYU9jMXBrT3ZDX1ViYWphdktUdHVWcHMxUTBfZkFubjdCYVM3VHpTRXNhVjZ2cExIb2g0MVp2emQ2VGpzTzVlQi1ldWZzZDhUMUpxZnBLeXhYQUJRSTVPRHk3SW1mZW01VEpsWjdqY2diT0lpLWxYZS00R1ZjSVRoSkpPOVNaSDl4c0RJSnp2MU4yaGEtZWd2ME9Za2R5b0xOMEFrSzgyd3VEZlNDcV82Y2pGUzc1M3lVZHJ5Y0JsYVVOczFIVERHa3hJdUNiX3NsVjdNdXlhV1V2cEg5UW9BTVNuRm4xcUpQMmJLbW9LM1RfLTB3RzBPUzZZd2JQNUh1QzZlV0wwdDVpUENlbFRiNS1KRnlQZUhCY1FEb2xyY0UwbjZ6NUhEcHNzU0xndHZYRnNoekh2bmdjXzk4UjlSNTNCMlZsTURQX25pYnVVTUk4MTdUaWNvV1puUUhESExqVFBWNi1uR3hHMjFMcjhMUjRrWE12VmpBSXFwZzE3bUNncjg3U0luU0tDSDN5RlBCeVRyTW9oWVcwX1hCOEJJbVBwZlRLZ2N4by1IU0N3WFJWaXNkOHdPWUZfeGpGcVI0Q19xVXQ1bWVfQTVlTEdGUTFHOHd4Mk5FVUEySWI2a1hLZ1NSZE9WMEZqdHlfdGlIRlg3LW1qQ2IzZVdhUW1aa3BkNVZjSHZmT0d2S3JQMmRTWHlYemlnSElRalc2X1NfdG1ScHVWXzJsSGdaTE5LRVV3dXRidUJtaHpQeDBIRlJZUE54VGg4TnRjVVpUbmhpSEExaFZlOVNsS1hFQXBXRV9fYnJQbXJ4Yi1Qd1VzTG9WY0ZvMkJicW1zNjZxaURnUjNXemtKLXFpclZsaHM3NlBWRE8xaUJLdHlCSDdpLTJ5OG5qY2UwN1dFLUY0b0tiLXhwR1RIT1VRdDJxdG1GR1hKeURxcUlveEs4MEJZb1hZd1BaWGpvdWQwSEU0cUNPSE90YS16S3VyY09MOGQzT01GNXFielFGLWZrUjA1Uk92RVU4VGszMS1pMUpkN3hHc0FMa3VDcVowckZYQ21jQTVaTzVuc2F0WnNxcVhlQ09VYzdidFpXbzZvbHUzc1JDVHZ5Q2RlWXR2RllHNnBtR2F0aHlKZGlzazBwT3BsMXdoUWU1dThMZk0yV2JIbG1mSzVjQlI0ZlhEVDU3MmxkOGM5c3llLXZiYUc0S1VCY2ZvT1JyMklpRTNlRzdCN0FCSTcyRjZ4N2pRR1VYRG1aLU9MZlh4Wi0xZGJyUmhvZ1dqT0RudUpBYTRtWnMyenVDMzBpOWZUMDRKdElpeTJFXzJFQ2lMWVd4V041WnViUnhZbmtlNTh0bW04ZHpXTDloaTlta081ZkhwUjR3eVRYbFBOLTZqTy0xdm5PZWVMWl9EUlRDXzhFQks2WFZDTTk3WE9jSnhFUEtkWFh0MnNwVC01Rmx6T3Y2WHNIV1pDVzcxaE9NcV9qb3NBLXVqZENUdm56YVk3MkI1d1F5RjlsbDBGNVdtcnMwc2dpNW5MWU9nMXFaQ01ydDRKMUdkcEpzdXN3QVFwdm1DQVhuLTAydk9XRnRSX0s3QXkwOTFkQmxkNEZTVXBQTzhVbUJuNG8yTWViSHBtclozSjJqa0VLdkpmMHAxaFp3MzNPNl9GRlVpM1FxMTdXUmJUNEExVUZ6U1VpNU42VXJjWTQ0Z2FkMnBPNi1xVFJuMXljTUE4U29FVm9SVWJaczJEZ3FyLU53RVMySmsyRzl4c0dpWkhla1VqdjlyWGw5c2tWbGI5V2RYSTBoLXJ5TzFfUU0xUUNHYldsX2xCaEdBdlZjMExqQ1I3d3lpeG1BRHVJMHc3Wlc3NHlDQUpKdUtJT0xyNTd1bzYxQmYzLXFYWXRIWDh2c0xPamc5N1IyTExHeUpKMWhVcVZlQU5sa3B3LkhsQXBVUTQ1YTdxRDRiRUVJWlRmR3B6b3lBNi12UlZQVkhlV000eUZVV3c\"}", + "status": 409, + "response": "{\"error\":{\"code\":\"Conflict\",\"message\":\"There was a conflict restoring the key 'https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/0f21985e3d2d42ed899ba2b76e892011'. This can happen if either: a second key with the same name was created after the first key was deleted; thus trying to restore a key whose name is already in use. To fix this, rename the second key to something else so that the restore works. The second probable cause of this exception is when multiple operations are performed in parallel against the key. To avoid this error, perform operations against a key in a sequential manner.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "661", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:48 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "409", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "22e50000-5ea9-429c-a731-68595f105112", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "9d9b39af-ab2f-4150-b9b1-727c931b6238", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/restore", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"value\":\"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUl5WVdabU5tRmhNUzAzTm1Ka0xUUTBZVGN0WVRjek5DMDJaalZoWkRCaU5XRTRPVGdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQzB5TlRZaUxDSmxibU1pT2lKQk1qVTJRMEpETFVoVE5URXlJbjAuY2lEMjFBc2YzaFZwVjc4dVFMV1RsUzdxZ1c5Wkp2UWhWZ3lGbzF2Y3Z5enZGdDFTUnlJVXdCekI5OTJsOVNhUF90REdXbEx6QURXTjFicFJweVp2STlBeHlIdEFkTWRxSTB0eGhLdHhGMmNOXzEtUGRVYUt4MWowRllKb3Mybm5UcjEwMnN6VGR1ZTdHY1dnb1BUTHRuc3llcVhCdkdVSGcyVnZOdjh0V1JQQV9WTjRKWWtfS2pqdGc0WmF0VW0tUk81VnNPZW13RXBaNU9NVndjRG8yTkd2emdVVkFERGtvc3dSYzZ3RVlxU0NHbkEzWkxtVnlJRVczcjZYd1Z3SWx2TkJhZUxGOXY0Ml8ycjUtc3VneDA0WUlZRnc4a0tSZEp5OUI0ZU9KXzRHa0stZm50X3Y4UFFlTEdGaVlkRkFZUVc2Q1pkVEh6akZFRG9QaWphYWx3LmxCRHNtSWt6MU1fMEpfMGdCakMxLWcuajNYZVQ5TlM5LVAyWjhPQTFlUW5TSEhvem01N0czaXhYeHRGWUtBU05WSTM1cFBPbUswdEVJMzltY0FRLUZtRGV4cVdWbUw3QWxYWUk1M3ZTaXEzWGtOMG5PLWdvSkhsdXNXM3BVemthRG9PWlNxY25QV0FxVXFwZi1zZVZCdkJqMXRBb2dsa2dTZ2psbUk0UlQwVFJJbkYzaEhXd3BIQVRzbWd6WnMxMVlpdlZ4RTlpbTkzNXplQVdaRXFRRFlncGJNZDdLdDN6ZlpJLTN4M05YelpZXzQ0NUptNGd0bzdLTDNEbENIbFpSU0lnZnhQc3Q3VW1RWC1FNk5oWklNWUlfMzNRNkdtTFBVNTk0QVozaERBcWlZXzFQeFdqdV9KY3dWcVdqLVE1TjVqWk5sYmo3UGw2MjhXMEVpOUF4R1FfQkFrLWJpYngxbHM2WWIwS05Oa2J6d1pPdjF4ZVUtYTRCVGFGZWNWS2QxR1dBM2pzZV9PSjNYcEV1ZlNzSEU1TktQeF82azVUMnFLMUliV0JHd3ZFb1R6NjFWZEpseGZacXdtczZjNGU3cHE0MHhnQU03M0xNakVqdlcwYjAwbHFHZGxBc1hEcnZMMDl0ZlRrRThIaHFfTlIzVFpGMFBtSGZrLUxRNVpMVlRLSFF3TkxtVVR2bkFLeWY0UFk0b1hCbmJzWm1OdDdaalFOUTFMOE1FNzJfQ0dPVmxuZjEwOWhDZHpud2dNWjh0cjdYNTVFbHIzUVdoR2FXSTZlc3FVZkNSbnZHZk80T1NjTU1QNlZ2UGtUdThMb3hKVzZ2X3hKZVpJUWlEcEloVnFGcE5UZ21PQXN3WlJYcmZhQ0ZqTkE0cDVfVUp0aW91aWUxOG10V2ZRQ2lyeGhHNTMwTFJHWEZLTkdkMzVpbkw4WklnUnRJQmtRR3NNZ3Z2dDZ5NnJiam5JV3ZEYmd1S0F5d2lmQk4xWm5pSHZYY0ZhUkYxZVJaU1NhM1BidkVSTHhoR3VmeGZfQzVYQjVzNXk4M2ktQkUtUEVFN19Ub0Y2YU1LWkU5aExXLThOR21XUFgxSVBqeG5OUFpNZE5wM3dkaTJyekJxLW9IMHlVNHFZX1hJZFIyYjU3STYwY2J3TThrS1NKcWhnS1pyRW4ySHR6cG5lWF9pei1jSHlnaHBSb0xQd0dMTWd1V0RqTUhOY0duZlFISFZhUER1cl85S3VsTnNZSDNLR3R1YlpTZUt6ZHM5ZWxrSGRJMWFuVG1lVnphZTFaZXRLOW81R1dQSEx3bUN5RGRXWlBYbDNRN0E3NEl4YkNoUFVvd0ZVOEVGbnJ6Yi16clBDOGNMNTBtZ0dIQVdwMDk4WEltSFZSZ2l0QWoxbXJycWhuejZYMjNqZkZVWGtfT1VDQ25KUC1BX0UwTXQ5dkg4dTJUb0hURnRqTElIQms5bzlyTEU3a3FWek9YZXFpOTlNekFhZUVEUnRLSF9FMzdxc0tSQWRORlRHUDVveTJtMXd1MTkwREdrQzU5aW9Ld2J6SkNOVjdOdmJmSGFrc1MzQmlzUFUwbzc3UjlDaHpEMjk3czZVUEdFbHJpQkR2LXRDRFFGYXlNRXNMeWxoZ3hQMEttbEczTFhtQmIteXd2aWVPOVBWbVU3TnZIQ0dlcEZzVTFMd3NabnRkSWZoQUpWRXppMThydktEaUhBSUlTZ045LWJLMTV2ZjFpOGNzNm9mMGRudDRyYWRmb1pvR1hla2VoUV9RdHJHRXNPdFNxRi10NXpCVXlCSjJMeGlfd0VyV3ViV3hkdk9YNjc5WVduaHdpbnR2aFZZbnpGTng3YS14c3hqelVXR3dCSFowTjllN2VnUjNjRHhqdjBlNzMzTTVBdUhmU3I3djY1S3hITkxQMmVXS2QydkhlQmRVWjlOdkdYamhxTno2eWVfNzFibUpjMW9fQWNiUHRKTGY2d2NhN2h4T05HakZla0dxM1Z1b1FOc2lnQkVhRkxwb3ZUMHllNkVTOTdkTWRPcDFjXzRTZF9WZ052U1NCMGFPYW1zY0lsMjJaM1JzczlZSkt3WkNlbEx1dkhCdTZtQXlOaUFTbEpXZFRJenNQR3hMUV9GclBJX2x1d1p4dG9HaDZTX0FNWW80NDBqS0RmbW9CdzQzTUJiMjNVTXhJWU5DMHY4THdXUTFuUkdhU1hzVDI3Uk14ajhCY25UTkRWWjN0SGF4WlNuRTRuRVFuQnRyUWJnaHpCdjBLSTRUbDVnRnp2Skd3TnZQakExcXl5dGFHTGU0aTNzeWNoSVRjY0VZWEt6ZkQxVmRKQWFQVWRtSFV5Z251NzNkNjhOcWk4VVQ4cWNaRVFlcU5tMnZ6cFhZUU5xb2ZwTmdBYnhBaWJXOWJXejJBUG0xNndDYU1Ka0VRSkQ1MlF0cmQ3WjNvQkMxazZfZVF0YlNjZGlKWUxlN1NRcFlWZGUyMUZOdDJGaXBIbDc2ZnJ0a2lwb1R4VHEwbHMwWjEzY05ETUF3dlc3eGgyN0ZqS2JGT01SN0pUMkVCMkpaVjBmcDd6d2hXSHRZN3R1NTFSYnQtM2E2b2s5LTZvRnUtdlB0Nm5KXzVZTTRpSjFmbEZNZWN0aU9UNThHQ09BbGNfZ0JhRU00d18yQm1pN2xadzlsOEx3X2t1WjdRdEpyUDQxWjNyLTY0QlBiTHJPY1NKT1hsN2xzMGZyc2MyeFlBVFdVbktpUGxqdnJUU3hTSDFwWi1va0FleDd2Wml0RjlHTUh4dFB4a2hGd1B4UUNhNkN1LXdscWNGYjJSRHR1YlBuWlVNV2VLYS1ud3ZUcjFIVFFKbVBuZHctOWpFUmo0b2tLb2ZudnJLbHhZNDVPU0ZqdDhoS0dwM2RTbjJ6emV6RWx5V0hFWnhla1V5ZXdVR1YybnFhWU83UXpvamdMM3hJbmoxMXRSSzVDVF9iQXVLd3BoOC1FSDMtWmJ2R3FURW45eXNIQ3Zsbi1PODRiWUlqYnBZdzdRLTRYWTkxVmJlOXJrSDV4M1UyZnZyeEdlQ241Wkk2WFBzVlBycGdXTy1DT0lBOWV1Q0RzcHB0alVfbUFBc1QwTVM0VFM1bVdkcGhBdm5xS2VaQS1tQ0FYOERjQXVieTkzMmdRUEp3SUFZaWJKNE1JVGQ0OXhkbzFQZjd0Wm5oME5vRFA0cjJ4R2ExSW1nVXE3SkhiYy1jV3prS1g1OVNxUzFSOGlTaFVGWWlCVUQwOGFoNFVLcjZWbjF5MWdaNUJWd043bU9Ub05pV3d3djdvaEp2YUtsSkJFQnNvZEs5Ti03ZXp0YjJ1STZjaHBxcXVoRkhTeGlZQ29KclhLWEhHQ0VzdC1Id1AzRmFPdXoxVTIwRFNHQkE1dTd3cHJ5U1k1Y0dZMzhmcVFHYzFqU21FU0dZVzdTNWxXbld3SEh0ejlEVjljZ1BnX3dXQm1LczkxVGJrUWtBOTZLbjljeXh2ZjEzamtwT0habUs2ZFBCZzNOZHQ1Vm0xTk9WSllYWVM2T3dzeThUVW54SnkyMjVFMklSV2xNU0E2bDBySWFVZXh6V1FSYWFDZWsteVJTMGwxZmJXME16V0w3bDNKRWxCNjk2bjM3NGlmR2dsb3h5RW1JTUl3TzF3QTRfa3Y1Q2RVSjk0Nk9OT0wzc3ZUSzBod24xZjZ3SEppT1lQYlFUTXp3LVdNR1p0RHRSM1hjNTRQa013LVhzWUE5RkNNMkxEOElDUGE5LThwV1hpNmZzWlpGVXVvcXpzLUNLaUREVi1IRXVpYnRGcVlXeHNfeV9RaHdIRHpCMjhZNHptUTNpQXdnMUZmNjFSUGNHQnlFMVdTeU96c0NyQkpRblE2ZHBKYW5MLWRHUmVPc0pENEVoWW42Rkk2QWhaNjE5NnBfV2pEWFl3Z2YyWkVsZWRKS25EeFlWZFg4NzRwdy0xbEFKNGVpZ3JpS1ZxVENzckhXWkhFQnVrT0FaNlR2bmZWenlqcTV5TnpqUWR3UzVXMlZKMDRZcy1LZDdmcDM0NE9GUDBtaVpONkNWeVJOQ3RyTEJZSVpQbmdXRVktUDRBOUhiXzN5VWdyX3dSTlQ4ZlE1Qnl4VnhwRjVSVFdudi1pWTNXSWQwaFMxa2sxb2x2WEhPa1l6Z3hsSW5zaWtLc1Z0RVdySVRURE1iNGJlSUNzMnZVTkxHNnJyZ0hMRUszY0RYOFRjaGc1YnE4QXYydS1uZm5vQ0syV0JoSDhWS0lWT2Y1ejBtY1kxY0NSb2Y0UTZXNGRQeXM0RFV6S1JXS0x1T0RCYlMtYzdxTlNuN0M1c0hVR0dRLVdrNnlnUXZTTTk4SDdsOG1BckRNdXQ5YzUzZk1FNVlHOTRUanlGemdsOGNxdVlCQVBqYWVQdldlOFdYNHBKb2NUZnVzdjlZMklfY1hNQktEbVc4WHlNRTFPaEhDSzBXbTJORGlBem5nX2t6ZmlFYTgtSThXWUJ0OGI1Vk5QQW85bm55TFJfNXRCRkdGV2NoLTJkYUxGQnR6S3NUQkxRZm5pQ2tVdXItQUdVUk1XN1FmRE1vSmR0a3lCR2tmRFVheXlBYWQ5ZEpfSE1hZUxDaVE0UWhpRnpNVHF5ZzYxQmwyXzkyMi1PY09HU1BSRElXeFNZRWRfUWtKb29mN3ptXzR1bWRVOUVBRk5vYUxxcERoY2lCa3NfNEhUM1diVXAzQ25jb3phd3JfZFlRRTVYOXpIWS0yUl9WdzZXVTZMdTYtaV9jNjBmQXZEX2lISklzU3d0bnF2WVEtenl3djVLNWJXUFdyV2ZnMzBrMV9sbFNsazktYjJCNUZmWVZBUUJsMkRaVG9VdlJzaDVZVHhiYm5EbGFzOEJVRE1XV0hSSEotZF9pZUNad2VIbGdWVkktT1lWV1NCLXAtSjk1akZuVmJnUEdiVjJSSE53US1IdkNrRDBpZElDTklEY2h4UnFGZUQ4Z2dFaTdfcnd6N1d1ZXpZS3V5aFNHa1hhVWMtbmUxdHRrRmRsYWJ5SEt1b1FJWDZ2Snp1cEpjWUo1OEMxd0kwUXBIcjY4U3poekpjMjBUVGk2VWc3T1FtVHpncy1JNDVKVGFuSW5NdHk0MmlubjdqU3daWXQtMERWTXZPZ2RZeEVVRk9UZE5vWmFWMTI0QjdfS0c3bGxmY1o4TXUwNkR3M3FXWklUSExpcmZhZjhnU0tNRm41b1dfVjdCSWJXR2xiOTg0QkNjRExTOXRuaEllQnp5akRUcmhFOXZwdDNtNnJaMGpjcTFjdEVkZ0xFM2NwR0ZYX3lHOEJoenVKSk9jNTNyWkpydVY2TVNzSTlRYllNd0pUcmJuLXdMYVN0ZWx5b0JTUVl3NndDWmVxMGwtQ2VxX1kycExhQVkxb1JRajN1LTBrVHlEcXl6N2lSaTJqcXN4TW9sQTdmTE5USEZQbi0tNUNZTnB0c0paM2tlSjRINmdkc1phTHFvMTFYZ1hnWFJVcEFrb1BYbGJhdU96LWQzUFpNdXBUaGJZNF9Obi1Va3RrdGhYTV9IbTQ2S2JkQkFrY3J1UGhiRTZMMDN3OGVSaFhBdU9ZR0ZvamZlZFdQZ0R6YjZuQm1vSnhudHZ6UjNuZmliYWQ0M0VXZ2RmMThkQVBncHhzaTVuWF8zUElfaW5qSVVHdlh1aGl1TDVvOW9TOFpCQ0dsaGdWWnFKN1hMUzFIREJjVnhHT2hCUDB5b1ZUTXM0cFZBaWl0Tm0wVFRrU3hPT0RNQnBZRFFCd1dURWRGTFdMbkNGWVQ1a1RjUENoeGkwZnFTRUstXzJkemNCNXRxWk54U203T2oxSGpGMGUtZENUdU5TcS1xNFVRQXptQWgyNG45WHBlRE9Ea0VULTdwZGxxcGZXZ1FEU3NMV0U2UDdYZWNyR2R2N3hJaVRoVEZ6R0FTVnZ0QnJrLVRISVRuRURhWkZTaVBieTZPcUJlMG5wRlA4bzJxZHNNSnZmTnQ0Q1FvTVpPRlJ0NEk2cWpVbEtBcm92Q1c4eDBmYVdFdVpGd3Rjek9jNS1pOUt2VFdhcFhzVlFOR0NrMHY0UTFmQ2x5cDVpbzdCUTVvXzFWOHNtUDBITlBSMTZXalVGazE2a0N6WTA3YVpocjhNdUZ1cE9WdGdiR01WRWlpQkNQMjZ2TUVfeENOSDVmVE9uNFM1a2xKVFcya0VZb05VRldhYVJOUXdkajF4bkk2Q0hZSXNSbDZMRkFENVJLOGlMYWxCNE9fd1VOdVRBYVkzbE5xUVVCRDNtM25FNUE3TGx0eVA2M3JoR3pHdHBXOGVvOXphNFNiTl9QbHFMMVdRY1VnTWxreG5PcTNqRFdiQnJic0RUekEwN3pRTVhUTEhKMEhSMHQ5RG5ONkwyVXphb2VYNmtUV1VteU54WUNfUHY0aHhfRGVoYjVnS2ZSc3Vha25HSm85b0R0TDNkcHViZzV2ZS01WWdhZ0pjWVR1T1laLWsxdUNnYzZlLVdjWVNGdndfY0YwMDdmR2xnLXFkbW1vM2dZeVJxT1dkT0FDT05iUFFvaWxISll4RHhCTldqOGg1Qi1hUENxejJTX0hwU3JwUzF2QzJIeHd3bnpSXzJSenJFbkNHUElmSDJYNVhEczV2c3FYOFN4Y3hTVmdKOVBEbTlkR29HOG1GT25YejVLWDFobWI2eTBoSzhhZFNVWnoyQXFKYzBQVkszWWVJcHZLblQyY19mclNocXJzU2tDR29VblV4NkpMWHhBQVdSOUJBVGo5N1FlX0paU19hVTZvZk1yNFlYdGdlYUNaY1JSNEQ0X194TWV3ZGxMSUlJUWFZWW5MaFNFUVBPaUJFYnYtQ1RaeUtVdTFidFYySVA4aWU0YmstOFB1Vi00RVFlM3VwN1hMb0lFMmNHbUFIYmtLTFFudzNiSldqWWo5Vm5mazFRZEFMdnJpUnBpRnotSGRlbVUycUxsMVl1WE9sMUZuRVFEaFFTRUtfbS1CTHNEZ0FtUk10d0FFMGhhazhHb29JSDZfQjEyZHF4OExGSUR5TV8zdWwwWkNNaVg4LWExT05xVzhRanhoTUhNTHhTZWQtQTJtOXZnbGVuaXR6R1RLUUVUcU9yOElkOF9xSDFRWE9GR2JCeXZ6eVJWUEw1UEViQUY5WFM3V2FMY3BTSGw3bG1HRngzQ1JOcldxdGQzTl9OMHZWMlpDdFpFYnJMcm02YmlQMmJLM2czLTZmSHdjdVBibmk3cGdnT0ROd1VHZkVLVnFtT1RYTlFwYTJ1eHZwd0c4WEowV0tUVVF6RXhDUkVKcERRcEFnbjYwNUlDWS1CS0xqaXNCRDI4U2NiamF5LWR6UnhmQTRxVVFYTl9rS3RJOUs2U0o2RmxCV1NmdmRJa21OWEExZF9vdGRIRFdNZ3FYUXB3YkdXazBhMFpiUWx5SllpWWd0UHpNNHBxWk1tVkVNYmkxMFpQUFE0Z29YZzFlSUVFNkRoWmZEMGFFd3hvLUN6TXBYU1lHd0FNY1VxWXhZZ3FmV0NXbkQ2eFZnUGo1ZHpUR1YwUVluVGxCQ0NnTDZMd1dxVGdqYzZiYkU4Z1Z6cGlRVU9Mck40NDk5UmNJelFwMk1GTFNPUUl2aGVsSllCWVlwRGNYODdNd2VjeVphTE5UVjFKM2ZPeUYyYnI4N2tzLUtqMEM1YjF0ajdpemdITUtnT3ZBZlZjYkEtR2k0VXFfeVhqNFFaTGloaThJSmdHd0VVU3hPaGU0T1dQaWlZS1EyUG9pQlhSdmlqaTJVQXd0UHR5X3hDekJ1NExKMU1mQ1REc2JnWS10Y2FldVdfYW9CT0I2Y3RZYU9jMXBrT3ZDX1ViYWphdktUdHVWcHMxUTBfZkFubjdCYVM3VHpTRXNhVjZ2cExIb2g0MVp2emQ2VGpzTzVlQi1ldWZzZDhUMUpxZnBLeXhYQUJRSTVPRHk3SW1mZW01VEpsWjdqY2diT0lpLWxYZS00R1ZjSVRoSkpPOVNaSDl4c0RJSnp2MU4yaGEtZWd2ME9Za2R5b0xOMEFrSzgyd3VEZlNDcV82Y2pGUzc1M3lVZHJ5Y0JsYVVOczFIVERHa3hJdUNiX3NsVjdNdXlhV1V2cEg5UW9BTVNuRm4xcUpQMmJLbW9LM1RfLTB3RzBPUzZZd2JQNUh1QzZlV0wwdDVpUENlbFRiNS1KRnlQZUhCY1FEb2xyY0UwbjZ6NUhEcHNzU0xndHZYRnNoekh2bmdjXzk4UjlSNTNCMlZsTURQX25pYnVVTUk4MTdUaWNvV1puUUhESExqVFBWNi1uR3hHMjFMcjhMUjRrWE12VmpBSXFwZzE3bUNncjg3U0luU0tDSDN5RlBCeVRyTW9oWVcwX1hCOEJJbVBwZlRLZ2N4by1IU0N3WFJWaXNkOHdPWUZfeGpGcVI0Q19xVXQ1bWVfQTVlTEdGUTFHOHd4Mk5FVUEySWI2a1hLZ1NSZE9WMEZqdHlfdGlIRlg3LW1qQ2IzZVdhUW1aa3BkNVZjSHZmT0d2S3JQMmRTWHlYemlnSElRalc2X1NfdG1ScHVWXzJsSGdaTE5LRVV3dXRidUJtaHpQeDBIRlJZUE54VGg4TnRjVVpUbmhpSEExaFZlOVNsS1hFQXBXRV9fYnJQbXJ4Yi1Qd1VzTG9WY0ZvMkJicW1zNjZxaURnUjNXemtKLXFpclZsaHM3NlBWRE8xaUJLdHlCSDdpLTJ5OG5qY2UwN1dFLUY0b0tiLXhwR1RIT1VRdDJxdG1GR1hKeURxcUlveEs4MEJZb1hZd1BaWGpvdWQwSEU0cUNPSE90YS16S3VyY09MOGQzT01GNXFielFGLWZrUjA1Uk92RVU4VGszMS1pMUpkN3hHc0FMa3VDcVowckZYQ21jQTVaTzVuc2F0WnNxcVhlQ09VYzdidFpXbzZvbHUzc1JDVHZ5Q2RlWXR2RllHNnBtR2F0aHlKZGlzazBwT3BsMXdoUWU1dThMZk0yV2JIbG1mSzVjQlI0ZlhEVDU3MmxkOGM5c3llLXZiYUc0S1VCY2ZvT1JyMklpRTNlRzdCN0FCSTcyRjZ4N2pRR1VYRG1aLU9MZlh4Wi0xZGJyUmhvZ1dqT0RudUpBYTRtWnMyenVDMzBpOWZUMDRKdElpeTJFXzJFQ2lMWVd4V041WnViUnhZbmtlNTh0bW04ZHpXTDloaTlta081ZkhwUjR3eVRYbFBOLTZqTy0xdm5PZWVMWl9EUlRDXzhFQks2WFZDTTk3WE9jSnhFUEtkWFh0MnNwVC01Rmx6T3Y2WHNIV1pDVzcxaE9NcV9qb3NBLXVqZENUdm56YVk3MkI1d1F5RjlsbDBGNVdtcnMwc2dpNW5MWU9nMXFaQ01ydDRKMUdkcEpzdXN3QVFwdm1DQVhuLTAydk9XRnRSX0s3QXkwOTFkQmxkNEZTVXBQTzhVbUJuNG8yTWViSHBtclozSjJqa0VLdkpmMHAxaFp3MzNPNl9GRlVpM1FxMTdXUmJUNEExVUZ6U1VpNU42VXJjWTQ0Z2FkMnBPNi1xVFJuMXljTUE4U29FVm9SVWJaczJEZ3FyLU53RVMySmsyRzl4c0dpWkhla1VqdjlyWGw5c2tWbGI5V2RYSTBoLXJ5TzFfUU0xUUNHYldsX2xCaEdBdlZjMExqQ1I3d3lpeG1BRHVJMHc3Wlc3NHlDQUpKdUtJT0xyNTd1bzYxQmYzLXFYWXRIWDh2c0xPamc5N1IyTExHeUpKMWhVcVZlQU5sa3B3LkhsQXBVUTQ1YTdxRDRiRUVJWlRmR3B6b3lBNi12UlZQVkhlV000eUZVV3c\"}", + "status": 409, + "response": "{\"error\":{\"code\":\"Conflict\",\"message\":\"There was a conflict restoring the key 'https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/0f21985e3d2d42ed899ba2b76e892011'. This can happen if either: a second key with the same name was created after the first key was deleted; thus trying to restore a key whose name is already in use. To fix this, rename the second key to something else so that the restore works. The second probable cause of this exception is when multiple operations are performed in parallel against the key. To avoid this error, perform operations against a key in a sequential manner.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "661", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:52 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "409", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "3ca1522c-53fd-4255-a6c3-a49d8d189b03", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5385af09-83c9-45b6-b5c8-a044a2b9959f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/restore", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"value\":\"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUl5WVdabU5tRmhNUzAzTm1Ka0xUUTBZVGN0WVRjek5DMDJaalZoWkRCaU5XRTRPVGdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQzB5TlRZaUxDSmxibU1pT2lKQk1qVTJRMEpETFVoVE5URXlJbjAuY2lEMjFBc2YzaFZwVjc4dVFMV1RsUzdxZ1c5Wkp2UWhWZ3lGbzF2Y3Z5enZGdDFTUnlJVXdCekI5OTJsOVNhUF90REdXbEx6QURXTjFicFJweVp2STlBeHlIdEFkTWRxSTB0eGhLdHhGMmNOXzEtUGRVYUt4MWowRllKb3Mybm5UcjEwMnN6VGR1ZTdHY1dnb1BUTHRuc3llcVhCdkdVSGcyVnZOdjh0V1JQQV9WTjRKWWtfS2pqdGc0WmF0VW0tUk81VnNPZW13RXBaNU9NVndjRG8yTkd2emdVVkFERGtvc3dSYzZ3RVlxU0NHbkEzWkxtVnlJRVczcjZYd1Z3SWx2TkJhZUxGOXY0Ml8ycjUtc3VneDA0WUlZRnc4a0tSZEp5OUI0ZU9KXzRHa0stZm50X3Y4UFFlTEdGaVlkRkFZUVc2Q1pkVEh6akZFRG9QaWphYWx3LmxCRHNtSWt6MU1fMEpfMGdCakMxLWcuajNYZVQ5TlM5LVAyWjhPQTFlUW5TSEhvem01N0czaXhYeHRGWUtBU05WSTM1cFBPbUswdEVJMzltY0FRLUZtRGV4cVdWbUw3QWxYWUk1M3ZTaXEzWGtOMG5PLWdvSkhsdXNXM3BVemthRG9PWlNxY25QV0FxVXFwZi1zZVZCdkJqMXRBb2dsa2dTZ2psbUk0UlQwVFJJbkYzaEhXd3BIQVRzbWd6WnMxMVlpdlZ4RTlpbTkzNXplQVdaRXFRRFlncGJNZDdLdDN6ZlpJLTN4M05YelpZXzQ0NUptNGd0bzdLTDNEbENIbFpSU0lnZnhQc3Q3VW1RWC1FNk5oWklNWUlfMzNRNkdtTFBVNTk0QVozaERBcWlZXzFQeFdqdV9KY3dWcVdqLVE1TjVqWk5sYmo3UGw2MjhXMEVpOUF4R1FfQkFrLWJpYngxbHM2WWIwS05Oa2J6d1pPdjF4ZVUtYTRCVGFGZWNWS2QxR1dBM2pzZV9PSjNYcEV1ZlNzSEU1TktQeF82azVUMnFLMUliV0JHd3ZFb1R6NjFWZEpseGZacXdtczZjNGU3cHE0MHhnQU03M0xNakVqdlcwYjAwbHFHZGxBc1hEcnZMMDl0ZlRrRThIaHFfTlIzVFpGMFBtSGZrLUxRNVpMVlRLSFF3TkxtVVR2bkFLeWY0UFk0b1hCbmJzWm1OdDdaalFOUTFMOE1FNzJfQ0dPVmxuZjEwOWhDZHpud2dNWjh0cjdYNTVFbHIzUVdoR2FXSTZlc3FVZkNSbnZHZk80T1NjTU1QNlZ2UGtUdThMb3hKVzZ2X3hKZVpJUWlEcEloVnFGcE5UZ21PQXN3WlJYcmZhQ0ZqTkE0cDVfVUp0aW91aWUxOG10V2ZRQ2lyeGhHNTMwTFJHWEZLTkdkMzVpbkw4WklnUnRJQmtRR3NNZ3Z2dDZ5NnJiam5JV3ZEYmd1S0F5d2lmQk4xWm5pSHZYY0ZhUkYxZVJaU1NhM1BidkVSTHhoR3VmeGZfQzVYQjVzNXk4M2ktQkUtUEVFN19Ub0Y2YU1LWkU5aExXLThOR21XUFgxSVBqeG5OUFpNZE5wM3dkaTJyekJxLW9IMHlVNHFZX1hJZFIyYjU3STYwY2J3TThrS1NKcWhnS1pyRW4ySHR6cG5lWF9pei1jSHlnaHBSb0xQd0dMTWd1V0RqTUhOY0duZlFISFZhUER1cl85S3VsTnNZSDNLR3R1YlpTZUt6ZHM5ZWxrSGRJMWFuVG1lVnphZTFaZXRLOW81R1dQSEx3bUN5RGRXWlBYbDNRN0E3NEl4YkNoUFVvd0ZVOEVGbnJ6Yi16clBDOGNMNTBtZ0dIQVdwMDk4WEltSFZSZ2l0QWoxbXJycWhuejZYMjNqZkZVWGtfT1VDQ25KUC1BX0UwTXQ5dkg4dTJUb0hURnRqTElIQms5bzlyTEU3a3FWek9YZXFpOTlNekFhZUVEUnRLSF9FMzdxc0tSQWRORlRHUDVveTJtMXd1MTkwREdrQzU5aW9Ld2J6SkNOVjdOdmJmSGFrc1MzQmlzUFUwbzc3UjlDaHpEMjk3czZVUEdFbHJpQkR2LXRDRFFGYXlNRXNMeWxoZ3hQMEttbEczTFhtQmIteXd2aWVPOVBWbVU3TnZIQ0dlcEZzVTFMd3NabnRkSWZoQUpWRXppMThydktEaUhBSUlTZ045LWJLMTV2ZjFpOGNzNm9mMGRudDRyYWRmb1pvR1hla2VoUV9RdHJHRXNPdFNxRi10NXpCVXlCSjJMeGlfd0VyV3ViV3hkdk9YNjc5WVduaHdpbnR2aFZZbnpGTng3YS14c3hqelVXR3dCSFowTjllN2VnUjNjRHhqdjBlNzMzTTVBdUhmU3I3djY1S3hITkxQMmVXS2QydkhlQmRVWjlOdkdYamhxTno2eWVfNzFibUpjMW9fQWNiUHRKTGY2d2NhN2h4T05HakZla0dxM1Z1b1FOc2lnQkVhRkxwb3ZUMHllNkVTOTdkTWRPcDFjXzRTZF9WZ052U1NCMGFPYW1zY0lsMjJaM1JzczlZSkt3WkNlbEx1dkhCdTZtQXlOaUFTbEpXZFRJenNQR3hMUV9GclBJX2x1d1p4dG9HaDZTX0FNWW80NDBqS0RmbW9CdzQzTUJiMjNVTXhJWU5DMHY4THdXUTFuUkdhU1hzVDI3Uk14ajhCY25UTkRWWjN0SGF4WlNuRTRuRVFuQnRyUWJnaHpCdjBLSTRUbDVnRnp2Skd3TnZQakExcXl5dGFHTGU0aTNzeWNoSVRjY0VZWEt6ZkQxVmRKQWFQVWRtSFV5Z251NzNkNjhOcWk4VVQ4cWNaRVFlcU5tMnZ6cFhZUU5xb2ZwTmdBYnhBaWJXOWJXejJBUG0xNndDYU1Ka0VRSkQ1MlF0cmQ3WjNvQkMxazZfZVF0YlNjZGlKWUxlN1NRcFlWZGUyMUZOdDJGaXBIbDc2ZnJ0a2lwb1R4VHEwbHMwWjEzY05ETUF3dlc3eGgyN0ZqS2JGT01SN0pUMkVCMkpaVjBmcDd6d2hXSHRZN3R1NTFSYnQtM2E2b2s5LTZvRnUtdlB0Nm5KXzVZTTRpSjFmbEZNZWN0aU9UNThHQ09BbGNfZ0JhRU00d18yQm1pN2xadzlsOEx3X2t1WjdRdEpyUDQxWjNyLTY0QlBiTHJPY1NKT1hsN2xzMGZyc2MyeFlBVFdVbktpUGxqdnJUU3hTSDFwWi1va0FleDd2Wml0RjlHTUh4dFB4a2hGd1B4UUNhNkN1LXdscWNGYjJSRHR1YlBuWlVNV2VLYS1ud3ZUcjFIVFFKbVBuZHctOWpFUmo0b2tLb2ZudnJLbHhZNDVPU0ZqdDhoS0dwM2RTbjJ6emV6RWx5V0hFWnhla1V5ZXdVR1YybnFhWU83UXpvamdMM3hJbmoxMXRSSzVDVF9iQXVLd3BoOC1FSDMtWmJ2R3FURW45eXNIQ3Zsbi1PODRiWUlqYnBZdzdRLTRYWTkxVmJlOXJrSDV4M1UyZnZyeEdlQ241Wkk2WFBzVlBycGdXTy1DT0lBOWV1Q0RzcHB0alVfbUFBc1QwTVM0VFM1bVdkcGhBdm5xS2VaQS1tQ0FYOERjQXVieTkzMmdRUEp3SUFZaWJKNE1JVGQ0OXhkbzFQZjd0Wm5oME5vRFA0cjJ4R2ExSW1nVXE3SkhiYy1jV3prS1g1OVNxUzFSOGlTaFVGWWlCVUQwOGFoNFVLcjZWbjF5MWdaNUJWd043bU9Ub05pV3d3djdvaEp2YUtsSkJFQnNvZEs5Ti03ZXp0YjJ1STZjaHBxcXVoRkhTeGlZQ29KclhLWEhHQ0VzdC1Id1AzRmFPdXoxVTIwRFNHQkE1dTd3cHJ5U1k1Y0dZMzhmcVFHYzFqU21FU0dZVzdTNWxXbld3SEh0ejlEVjljZ1BnX3dXQm1LczkxVGJrUWtBOTZLbjljeXh2ZjEzamtwT0habUs2ZFBCZzNOZHQ1Vm0xTk9WSllYWVM2T3dzeThUVW54SnkyMjVFMklSV2xNU0E2bDBySWFVZXh6V1FSYWFDZWsteVJTMGwxZmJXME16V0w3bDNKRWxCNjk2bjM3NGlmR2dsb3h5RW1JTUl3TzF3QTRfa3Y1Q2RVSjk0Nk9OT0wzc3ZUSzBod24xZjZ3SEppT1lQYlFUTXp3LVdNR1p0RHRSM1hjNTRQa013LVhzWUE5RkNNMkxEOElDUGE5LThwV1hpNmZzWlpGVXVvcXpzLUNLaUREVi1IRXVpYnRGcVlXeHNfeV9RaHdIRHpCMjhZNHptUTNpQXdnMUZmNjFSUGNHQnlFMVdTeU96c0NyQkpRblE2ZHBKYW5MLWRHUmVPc0pENEVoWW42Rkk2QWhaNjE5NnBfV2pEWFl3Z2YyWkVsZWRKS25EeFlWZFg4NzRwdy0xbEFKNGVpZ3JpS1ZxVENzckhXWkhFQnVrT0FaNlR2bmZWenlqcTV5TnpqUWR3UzVXMlZKMDRZcy1LZDdmcDM0NE9GUDBtaVpONkNWeVJOQ3RyTEJZSVpQbmdXRVktUDRBOUhiXzN5VWdyX3dSTlQ4ZlE1Qnl4VnhwRjVSVFdudi1pWTNXSWQwaFMxa2sxb2x2WEhPa1l6Z3hsSW5zaWtLc1Z0RVdySVRURE1iNGJlSUNzMnZVTkxHNnJyZ0hMRUszY0RYOFRjaGc1YnE4QXYydS1uZm5vQ0syV0JoSDhWS0lWT2Y1ejBtY1kxY0NSb2Y0UTZXNGRQeXM0RFV6S1JXS0x1T0RCYlMtYzdxTlNuN0M1c0hVR0dRLVdrNnlnUXZTTTk4SDdsOG1BckRNdXQ5YzUzZk1FNVlHOTRUanlGemdsOGNxdVlCQVBqYWVQdldlOFdYNHBKb2NUZnVzdjlZMklfY1hNQktEbVc4WHlNRTFPaEhDSzBXbTJORGlBem5nX2t6ZmlFYTgtSThXWUJ0OGI1Vk5QQW85bm55TFJfNXRCRkdGV2NoLTJkYUxGQnR6S3NUQkxRZm5pQ2tVdXItQUdVUk1XN1FmRE1vSmR0a3lCR2tmRFVheXlBYWQ5ZEpfSE1hZUxDaVE0UWhpRnpNVHF5ZzYxQmwyXzkyMi1PY09HU1BSRElXeFNZRWRfUWtKb29mN3ptXzR1bWRVOUVBRk5vYUxxcERoY2lCa3NfNEhUM1diVXAzQ25jb3phd3JfZFlRRTVYOXpIWS0yUl9WdzZXVTZMdTYtaV9jNjBmQXZEX2lISklzU3d0bnF2WVEtenl3djVLNWJXUFdyV2ZnMzBrMV9sbFNsazktYjJCNUZmWVZBUUJsMkRaVG9VdlJzaDVZVHhiYm5EbGFzOEJVRE1XV0hSSEotZF9pZUNad2VIbGdWVkktT1lWV1NCLXAtSjk1akZuVmJnUEdiVjJSSE53US1IdkNrRDBpZElDTklEY2h4UnFGZUQ4Z2dFaTdfcnd6N1d1ZXpZS3V5aFNHa1hhVWMtbmUxdHRrRmRsYWJ5SEt1b1FJWDZ2Snp1cEpjWUo1OEMxd0kwUXBIcjY4U3poekpjMjBUVGk2VWc3T1FtVHpncy1JNDVKVGFuSW5NdHk0MmlubjdqU3daWXQtMERWTXZPZ2RZeEVVRk9UZE5vWmFWMTI0QjdfS0c3bGxmY1o4TXUwNkR3M3FXWklUSExpcmZhZjhnU0tNRm41b1dfVjdCSWJXR2xiOTg0QkNjRExTOXRuaEllQnp5akRUcmhFOXZwdDNtNnJaMGpjcTFjdEVkZ0xFM2NwR0ZYX3lHOEJoenVKSk9jNTNyWkpydVY2TVNzSTlRYllNd0pUcmJuLXdMYVN0ZWx5b0JTUVl3NndDWmVxMGwtQ2VxX1kycExhQVkxb1JRajN1LTBrVHlEcXl6N2lSaTJqcXN4TW9sQTdmTE5USEZQbi0tNUNZTnB0c0paM2tlSjRINmdkc1phTHFvMTFYZ1hnWFJVcEFrb1BYbGJhdU96LWQzUFpNdXBUaGJZNF9Obi1Va3RrdGhYTV9IbTQ2S2JkQkFrY3J1UGhiRTZMMDN3OGVSaFhBdU9ZR0ZvamZlZFdQZ0R6YjZuQm1vSnhudHZ6UjNuZmliYWQ0M0VXZ2RmMThkQVBncHhzaTVuWF8zUElfaW5qSVVHdlh1aGl1TDVvOW9TOFpCQ0dsaGdWWnFKN1hMUzFIREJjVnhHT2hCUDB5b1ZUTXM0cFZBaWl0Tm0wVFRrU3hPT0RNQnBZRFFCd1dURWRGTFdMbkNGWVQ1a1RjUENoeGkwZnFTRUstXzJkemNCNXRxWk54U203T2oxSGpGMGUtZENUdU5TcS1xNFVRQXptQWgyNG45WHBlRE9Ea0VULTdwZGxxcGZXZ1FEU3NMV0U2UDdYZWNyR2R2N3hJaVRoVEZ6R0FTVnZ0QnJrLVRISVRuRURhWkZTaVBieTZPcUJlMG5wRlA4bzJxZHNNSnZmTnQ0Q1FvTVpPRlJ0NEk2cWpVbEtBcm92Q1c4eDBmYVdFdVpGd3Rjek9jNS1pOUt2VFdhcFhzVlFOR0NrMHY0UTFmQ2x5cDVpbzdCUTVvXzFWOHNtUDBITlBSMTZXalVGazE2a0N6WTA3YVpocjhNdUZ1cE9WdGdiR01WRWlpQkNQMjZ2TUVfeENOSDVmVE9uNFM1a2xKVFcya0VZb05VRldhYVJOUXdkajF4bkk2Q0hZSXNSbDZMRkFENVJLOGlMYWxCNE9fd1VOdVRBYVkzbE5xUVVCRDNtM25FNUE3TGx0eVA2M3JoR3pHdHBXOGVvOXphNFNiTl9QbHFMMVdRY1VnTWxreG5PcTNqRFdiQnJic0RUekEwN3pRTVhUTEhKMEhSMHQ5RG5ONkwyVXphb2VYNmtUV1VteU54WUNfUHY0aHhfRGVoYjVnS2ZSc3Vha25HSm85b0R0TDNkcHViZzV2ZS01WWdhZ0pjWVR1T1laLWsxdUNnYzZlLVdjWVNGdndfY0YwMDdmR2xnLXFkbW1vM2dZeVJxT1dkT0FDT05iUFFvaWxISll4RHhCTldqOGg1Qi1hUENxejJTX0hwU3JwUzF2QzJIeHd3bnpSXzJSenJFbkNHUElmSDJYNVhEczV2c3FYOFN4Y3hTVmdKOVBEbTlkR29HOG1GT25YejVLWDFobWI2eTBoSzhhZFNVWnoyQXFKYzBQVkszWWVJcHZLblQyY19mclNocXJzU2tDR29VblV4NkpMWHhBQVdSOUJBVGo5N1FlX0paU19hVTZvZk1yNFlYdGdlYUNaY1JSNEQ0X194TWV3ZGxMSUlJUWFZWW5MaFNFUVBPaUJFYnYtQ1RaeUtVdTFidFYySVA4aWU0YmstOFB1Vi00RVFlM3VwN1hMb0lFMmNHbUFIYmtLTFFudzNiSldqWWo5Vm5mazFRZEFMdnJpUnBpRnotSGRlbVUycUxsMVl1WE9sMUZuRVFEaFFTRUtfbS1CTHNEZ0FtUk10d0FFMGhhazhHb29JSDZfQjEyZHF4OExGSUR5TV8zdWwwWkNNaVg4LWExT05xVzhRanhoTUhNTHhTZWQtQTJtOXZnbGVuaXR6R1RLUUVUcU9yOElkOF9xSDFRWE9GR2JCeXZ6eVJWUEw1UEViQUY5WFM3V2FMY3BTSGw3bG1HRngzQ1JOcldxdGQzTl9OMHZWMlpDdFpFYnJMcm02YmlQMmJLM2czLTZmSHdjdVBibmk3cGdnT0ROd1VHZkVLVnFtT1RYTlFwYTJ1eHZwd0c4WEowV0tUVVF6RXhDUkVKcERRcEFnbjYwNUlDWS1CS0xqaXNCRDI4U2NiamF5LWR6UnhmQTRxVVFYTl9rS3RJOUs2U0o2RmxCV1NmdmRJa21OWEExZF9vdGRIRFdNZ3FYUXB3YkdXazBhMFpiUWx5SllpWWd0UHpNNHBxWk1tVkVNYmkxMFpQUFE0Z29YZzFlSUVFNkRoWmZEMGFFd3hvLUN6TXBYU1lHd0FNY1VxWXhZZ3FmV0NXbkQ2eFZnUGo1ZHpUR1YwUVluVGxCQ0NnTDZMd1dxVGdqYzZiYkU4Z1Z6cGlRVU9Mck40NDk5UmNJelFwMk1GTFNPUUl2aGVsSllCWVlwRGNYODdNd2VjeVphTE5UVjFKM2ZPeUYyYnI4N2tzLUtqMEM1YjF0ajdpemdITUtnT3ZBZlZjYkEtR2k0VXFfeVhqNFFaTGloaThJSmdHd0VVU3hPaGU0T1dQaWlZS1EyUG9pQlhSdmlqaTJVQXd0UHR5X3hDekJ1NExKMU1mQ1REc2JnWS10Y2FldVdfYW9CT0I2Y3RZYU9jMXBrT3ZDX1ViYWphdktUdHVWcHMxUTBfZkFubjdCYVM3VHpTRXNhVjZ2cExIb2g0MVp2emQ2VGpzTzVlQi1ldWZzZDhUMUpxZnBLeXhYQUJRSTVPRHk3SW1mZW01VEpsWjdqY2diT0lpLWxYZS00R1ZjSVRoSkpPOVNaSDl4c0RJSnp2MU4yaGEtZWd2ME9Za2R5b0xOMEFrSzgyd3VEZlNDcV82Y2pGUzc1M3lVZHJ5Y0JsYVVOczFIVERHa3hJdUNiX3NsVjdNdXlhV1V2cEg5UW9BTVNuRm4xcUpQMmJLbW9LM1RfLTB3RzBPUzZZd2JQNUh1QzZlV0wwdDVpUENlbFRiNS1KRnlQZUhCY1FEb2xyY0UwbjZ6NUhEcHNzU0xndHZYRnNoekh2bmdjXzk4UjlSNTNCMlZsTURQX25pYnVVTUk4MTdUaWNvV1puUUhESExqVFBWNi1uR3hHMjFMcjhMUjRrWE12VmpBSXFwZzE3bUNncjg3U0luU0tDSDN5RlBCeVRyTW9oWVcwX1hCOEJJbVBwZlRLZ2N4by1IU0N3WFJWaXNkOHdPWUZfeGpGcVI0Q19xVXQ1bWVfQTVlTEdGUTFHOHd4Mk5FVUEySWI2a1hLZ1NSZE9WMEZqdHlfdGlIRlg3LW1qQ2IzZVdhUW1aa3BkNVZjSHZmT0d2S3JQMmRTWHlYemlnSElRalc2X1NfdG1ScHVWXzJsSGdaTE5LRVV3dXRidUJtaHpQeDBIRlJZUE54VGg4TnRjVVpUbmhpSEExaFZlOVNsS1hFQXBXRV9fYnJQbXJ4Yi1Qd1VzTG9WY0ZvMkJicW1zNjZxaURnUjNXemtKLXFpclZsaHM3NlBWRE8xaUJLdHlCSDdpLTJ5OG5qY2UwN1dFLUY0b0tiLXhwR1RIT1VRdDJxdG1GR1hKeURxcUlveEs4MEJZb1hZd1BaWGpvdWQwSEU0cUNPSE90YS16S3VyY09MOGQzT01GNXFielFGLWZrUjA1Uk92RVU4VGszMS1pMUpkN3hHc0FMa3VDcVowckZYQ21jQTVaTzVuc2F0WnNxcVhlQ09VYzdidFpXbzZvbHUzc1JDVHZ5Q2RlWXR2RllHNnBtR2F0aHlKZGlzazBwT3BsMXdoUWU1dThMZk0yV2JIbG1mSzVjQlI0ZlhEVDU3MmxkOGM5c3llLXZiYUc0S1VCY2ZvT1JyMklpRTNlRzdCN0FCSTcyRjZ4N2pRR1VYRG1aLU9MZlh4Wi0xZGJyUmhvZ1dqT0RudUpBYTRtWnMyenVDMzBpOWZUMDRKdElpeTJFXzJFQ2lMWVd4V041WnViUnhZbmtlNTh0bW04ZHpXTDloaTlta081ZkhwUjR3eVRYbFBOLTZqTy0xdm5PZWVMWl9EUlRDXzhFQks2WFZDTTk3WE9jSnhFUEtkWFh0MnNwVC01Rmx6T3Y2WHNIV1pDVzcxaE9NcV9qb3NBLXVqZENUdm56YVk3MkI1d1F5RjlsbDBGNVdtcnMwc2dpNW5MWU9nMXFaQ01ydDRKMUdkcEpzdXN3QVFwdm1DQVhuLTAydk9XRnRSX0s3QXkwOTFkQmxkNEZTVXBQTzhVbUJuNG8yTWViSHBtclozSjJqa0VLdkpmMHAxaFp3MzNPNl9GRlVpM1FxMTdXUmJUNEExVUZ6U1VpNU42VXJjWTQ0Z2FkMnBPNi1xVFJuMXljTUE4U29FVm9SVWJaczJEZ3FyLU53RVMySmsyRzl4c0dpWkhla1VqdjlyWGw5c2tWbGI5V2RYSTBoLXJ5TzFfUU0xUUNHYldsX2xCaEdBdlZjMExqQ1I3d3lpeG1BRHVJMHc3Wlc3NHlDQUpKdUtJT0xyNTd1bzYxQmYzLXFYWXRIWDh2c0xPamc5N1IyTExHeUpKMWhVcVZlQU5sa3B3LkhsQXBVUTQ1YTdxRDRiRUVJWlRmR3B6b3lBNi12UlZQVkhlV000eUZVV3c\"}", + "status": 409, + "response": "{\"error\":{\"code\":\"Conflict\",\"message\":\"There was a conflict restoring the key 'https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/0f21985e3d2d42ed899ba2b76e892011'. This can happen if either: a second key with the same name was created after the first key was deleted; thus trying to restore a key whose name is already in use. To fix this, rename the second key to something else so that the restore works. The second probable cause of this exception is when multiple operations are performed in parallel against the key. To avoid this error, perform operations against a key in a sequential manner.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "661", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:53 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "409", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "aee68f3b-1144-4869-a118-87e140468123", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "e1c4502a-17c3-4e51-b0ce-2097a6e86992", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/restore", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"value\":\"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUl5WVdabU5tRmhNUzAzTm1Ka0xUUTBZVGN0WVRjek5DMDJaalZoWkRCaU5XRTRPVGdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQzB5TlRZaUxDSmxibU1pT2lKQk1qVTJRMEpETFVoVE5URXlJbjAuY2lEMjFBc2YzaFZwVjc4dVFMV1RsUzdxZ1c5Wkp2UWhWZ3lGbzF2Y3Z5enZGdDFTUnlJVXdCekI5OTJsOVNhUF90REdXbEx6QURXTjFicFJweVp2STlBeHlIdEFkTWRxSTB0eGhLdHhGMmNOXzEtUGRVYUt4MWowRllKb3Mybm5UcjEwMnN6VGR1ZTdHY1dnb1BUTHRuc3llcVhCdkdVSGcyVnZOdjh0V1JQQV9WTjRKWWtfS2pqdGc0WmF0VW0tUk81VnNPZW13RXBaNU9NVndjRG8yTkd2emdVVkFERGtvc3dSYzZ3RVlxU0NHbkEzWkxtVnlJRVczcjZYd1Z3SWx2TkJhZUxGOXY0Ml8ycjUtc3VneDA0WUlZRnc4a0tSZEp5OUI0ZU9KXzRHa0stZm50X3Y4UFFlTEdGaVlkRkFZUVc2Q1pkVEh6akZFRG9QaWphYWx3LmxCRHNtSWt6MU1fMEpfMGdCakMxLWcuajNYZVQ5TlM5LVAyWjhPQTFlUW5TSEhvem01N0czaXhYeHRGWUtBU05WSTM1cFBPbUswdEVJMzltY0FRLUZtRGV4cVdWbUw3QWxYWUk1M3ZTaXEzWGtOMG5PLWdvSkhsdXNXM3BVemthRG9PWlNxY25QV0FxVXFwZi1zZVZCdkJqMXRBb2dsa2dTZ2psbUk0UlQwVFJJbkYzaEhXd3BIQVRzbWd6WnMxMVlpdlZ4RTlpbTkzNXplQVdaRXFRRFlncGJNZDdLdDN6ZlpJLTN4M05YelpZXzQ0NUptNGd0bzdLTDNEbENIbFpSU0lnZnhQc3Q3VW1RWC1FNk5oWklNWUlfMzNRNkdtTFBVNTk0QVozaERBcWlZXzFQeFdqdV9KY3dWcVdqLVE1TjVqWk5sYmo3UGw2MjhXMEVpOUF4R1FfQkFrLWJpYngxbHM2WWIwS05Oa2J6d1pPdjF4ZVUtYTRCVGFGZWNWS2QxR1dBM2pzZV9PSjNYcEV1ZlNzSEU1TktQeF82azVUMnFLMUliV0JHd3ZFb1R6NjFWZEpseGZacXdtczZjNGU3cHE0MHhnQU03M0xNakVqdlcwYjAwbHFHZGxBc1hEcnZMMDl0ZlRrRThIaHFfTlIzVFpGMFBtSGZrLUxRNVpMVlRLSFF3TkxtVVR2bkFLeWY0UFk0b1hCbmJzWm1OdDdaalFOUTFMOE1FNzJfQ0dPVmxuZjEwOWhDZHpud2dNWjh0cjdYNTVFbHIzUVdoR2FXSTZlc3FVZkNSbnZHZk80T1NjTU1QNlZ2UGtUdThMb3hKVzZ2X3hKZVpJUWlEcEloVnFGcE5UZ21PQXN3WlJYcmZhQ0ZqTkE0cDVfVUp0aW91aWUxOG10V2ZRQ2lyeGhHNTMwTFJHWEZLTkdkMzVpbkw4WklnUnRJQmtRR3NNZ3Z2dDZ5NnJiam5JV3ZEYmd1S0F5d2lmQk4xWm5pSHZYY0ZhUkYxZVJaU1NhM1BidkVSTHhoR3VmeGZfQzVYQjVzNXk4M2ktQkUtUEVFN19Ub0Y2YU1LWkU5aExXLThOR21XUFgxSVBqeG5OUFpNZE5wM3dkaTJyekJxLW9IMHlVNHFZX1hJZFIyYjU3STYwY2J3TThrS1NKcWhnS1pyRW4ySHR6cG5lWF9pei1jSHlnaHBSb0xQd0dMTWd1V0RqTUhOY0duZlFISFZhUER1cl85S3VsTnNZSDNLR3R1YlpTZUt6ZHM5ZWxrSGRJMWFuVG1lVnphZTFaZXRLOW81R1dQSEx3bUN5RGRXWlBYbDNRN0E3NEl4YkNoUFVvd0ZVOEVGbnJ6Yi16clBDOGNMNTBtZ0dIQVdwMDk4WEltSFZSZ2l0QWoxbXJycWhuejZYMjNqZkZVWGtfT1VDQ25KUC1BX0UwTXQ5dkg4dTJUb0hURnRqTElIQms5bzlyTEU3a3FWek9YZXFpOTlNekFhZUVEUnRLSF9FMzdxc0tSQWRORlRHUDVveTJtMXd1MTkwREdrQzU5aW9Ld2J6SkNOVjdOdmJmSGFrc1MzQmlzUFUwbzc3UjlDaHpEMjk3czZVUEdFbHJpQkR2LXRDRFFGYXlNRXNMeWxoZ3hQMEttbEczTFhtQmIteXd2aWVPOVBWbVU3TnZIQ0dlcEZzVTFMd3NabnRkSWZoQUpWRXppMThydktEaUhBSUlTZ045LWJLMTV2ZjFpOGNzNm9mMGRudDRyYWRmb1pvR1hla2VoUV9RdHJHRXNPdFNxRi10NXpCVXlCSjJMeGlfd0VyV3ViV3hkdk9YNjc5WVduaHdpbnR2aFZZbnpGTng3YS14c3hqelVXR3dCSFowTjllN2VnUjNjRHhqdjBlNzMzTTVBdUhmU3I3djY1S3hITkxQMmVXS2QydkhlQmRVWjlOdkdYamhxTno2eWVfNzFibUpjMW9fQWNiUHRKTGY2d2NhN2h4T05HakZla0dxM1Z1b1FOc2lnQkVhRkxwb3ZUMHllNkVTOTdkTWRPcDFjXzRTZF9WZ052U1NCMGFPYW1zY0lsMjJaM1JzczlZSkt3WkNlbEx1dkhCdTZtQXlOaUFTbEpXZFRJenNQR3hMUV9GclBJX2x1d1p4dG9HaDZTX0FNWW80NDBqS0RmbW9CdzQzTUJiMjNVTXhJWU5DMHY4THdXUTFuUkdhU1hzVDI3Uk14ajhCY25UTkRWWjN0SGF4WlNuRTRuRVFuQnRyUWJnaHpCdjBLSTRUbDVnRnp2Skd3TnZQakExcXl5dGFHTGU0aTNzeWNoSVRjY0VZWEt6ZkQxVmRKQWFQVWRtSFV5Z251NzNkNjhOcWk4VVQ4cWNaRVFlcU5tMnZ6cFhZUU5xb2ZwTmdBYnhBaWJXOWJXejJBUG0xNndDYU1Ka0VRSkQ1MlF0cmQ3WjNvQkMxazZfZVF0YlNjZGlKWUxlN1NRcFlWZGUyMUZOdDJGaXBIbDc2ZnJ0a2lwb1R4VHEwbHMwWjEzY05ETUF3dlc3eGgyN0ZqS2JGT01SN0pUMkVCMkpaVjBmcDd6d2hXSHRZN3R1NTFSYnQtM2E2b2s5LTZvRnUtdlB0Nm5KXzVZTTRpSjFmbEZNZWN0aU9UNThHQ09BbGNfZ0JhRU00d18yQm1pN2xadzlsOEx3X2t1WjdRdEpyUDQxWjNyLTY0QlBiTHJPY1NKT1hsN2xzMGZyc2MyeFlBVFdVbktpUGxqdnJUU3hTSDFwWi1va0FleDd2Wml0RjlHTUh4dFB4a2hGd1B4UUNhNkN1LXdscWNGYjJSRHR1YlBuWlVNV2VLYS1ud3ZUcjFIVFFKbVBuZHctOWpFUmo0b2tLb2ZudnJLbHhZNDVPU0ZqdDhoS0dwM2RTbjJ6emV6RWx5V0hFWnhla1V5ZXdVR1YybnFhWU83UXpvamdMM3hJbmoxMXRSSzVDVF9iQXVLd3BoOC1FSDMtWmJ2R3FURW45eXNIQ3Zsbi1PODRiWUlqYnBZdzdRLTRYWTkxVmJlOXJrSDV4M1UyZnZyeEdlQ241Wkk2WFBzVlBycGdXTy1DT0lBOWV1Q0RzcHB0alVfbUFBc1QwTVM0VFM1bVdkcGhBdm5xS2VaQS1tQ0FYOERjQXVieTkzMmdRUEp3SUFZaWJKNE1JVGQ0OXhkbzFQZjd0Wm5oME5vRFA0cjJ4R2ExSW1nVXE3SkhiYy1jV3prS1g1OVNxUzFSOGlTaFVGWWlCVUQwOGFoNFVLcjZWbjF5MWdaNUJWd043bU9Ub05pV3d3djdvaEp2YUtsSkJFQnNvZEs5Ti03ZXp0YjJ1STZjaHBxcXVoRkhTeGlZQ29KclhLWEhHQ0VzdC1Id1AzRmFPdXoxVTIwRFNHQkE1dTd3cHJ5U1k1Y0dZMzhmcVFHYzFqU21FU0dZVzdTNWxXbld3SEh0ejlEVjljZ1BnX3dXQm1LczkxVGJrUWtBOTZLbjljeXh2ZjEzamtwT0habUs2ZFBCZzNOZHQ1Vm0xTk9WSllYWVM2T3dzeThUVW54SnkyMjVFMklSV2xNU0E2bDBySWFVZXh6V1FSYWFDZWsteVJTMGwxZmJXME16V0w3bDNKRWxCNjk2bjM3NGlmR2dsb3h5RW1JTUl3TzF3QTRfa3Y1Q2RVSjk0Nk9OT0wzc3ZUSzBod24xZjZ3SEppT1lQYlFUTXp3LVdNR1p0RHRSM1hjNTRQa013LVhzWUE5RkNNMkxEOElDUGE5LThwV1hpNmZzWlpGVXVvcXpzLUNLaUREVi1IRXVpYnRGcVlXeHNfeV9RaHdIRHpCMjhZNHptUTNpQXdnMUZmNjFSUGNHQnlFMVdTeU96c0NyQkpRblE2ZHBKYW5MLWRHUmVPc0pENEVoWW42Rkk2QWhaNjE5NnBfV2pEWFl3Z2YyWkVsZWRKS25EeFlWZFg4NzRwdy0xbEFKNGVpZ3JpS1ZxVENzckhXWkhFQnVrT0FaNlR2bmZWenlqcTV5TnpqUWR3UzVXMlZKMDRZcy1LZDdmcDM0NE9GUDBtaVpONkNWeVJOQ3RyTEJZSVpQbmdXRVktUDRBOUhiXzN5VWdyX3dSTlQ4ZlE1Qnl4VnhwRjVSVFdudi1pWTNXSWQwaFMxa2sxb2x2WEhPa1l6Z3hsSW5zaWtLc1Z0RVdySVRURE1iNGJlSUNzMnZVTkxHNnJyZ0hMRUszY0RYOFRjaGc1YnE4QXYydS1uZm5vQ0syV0JoSDhWS0lWT2Y1ejBtY1kxY0NSb2Y0UTZXNGRQeXM0RFV6S1JXS0x1T0RCYlMtYzdxTlNuN0M1c0hVR0dRLVdrNnlnUXZTTTk4SDdsOG1BckRNdXQ5YzUzZk1FNVlHOTRUanlGemdsOGNxdVlCQVBqYWVQdldlOFdYNHBKb2NUZnVzdjlZMklfY1hNQktEbVc4WHlNRTFPaEhDSzBXbTJORGlBem5nX2t6ZmlFYTgtSThXWUJ0OGI1Vk5QQW85bm55TFJfNXRCRkdGV2NoLTJkYUxGQnR6S3NUQkxRZm5pQ2tVdXItQUdVUk1XN1FmRE1vSmR0a3lCR2tmRFVheXlBYWQ5ZEpfSE1hZUxDaVE0UWhpRnpNVHF5ZzYxQmwyXzkyMi1PY09HU1BSRElXeFNZRWRfUWtKb29mN3ptXzR1bWRVOUVBRk5vYUxxcERoY2lCa3NfNEhUM1diVXAzQ25jb3phd3JfZFlRRTVYOXpIWS0yUl9WdzZXVTZMdTYtaV9jNjBmQXZEX2lISklzU3d0bnF2WVEtenl3djVLNWJXUFdyV2ZnMzBrMV9sbFNsazktYjJCNUZmWVZBUUJsMkRaVG9VdlJzaDVZVHhiYm5EbGFzOEJVRE1XV0hSSEotZF9pZUNad2VIbGdWVkktT1lWV1NCLXAtSjk1akZuVmJnUEdiVjJSSE53US1IdkNrRDBpZElDTklEY2h4UnFGZUQ4Z2dFaTdfcnd6N1d1ZXpZS3V5aFNHa1hhVWMtbmUxdHRrRmRsYWJ5SEt1b1FJWDZ2Snp1cEpjWUo1OEMxd0kwUXBIcjY4U3poekpjMjBUVGk2VWc3T1FtVHpncy1JNDVKVGFuSW5NdHk0MmlubjdqU3daWXQtMERWTXZPZ2RZeEVVRk9UZE5vWmFWMTI0QjdfS0c3bGxmY1o4TXUwNkR3M3FXWklUSExpcmZhZjhnU0tNRm41b1dfVjdCSWJXR2xiOTg0QkNjRExTOXRuaEllQnp5akRUcmhFOXZwdDNtNnJaMGpjcTFjdEVkZ0xFM2NwR0ZYX3lHOEJoenVKSk9jNTNyWkpydVY2TVNzSTlRYllNd0pUcmJuLXdMYVN0ZWx5b0JTUVl3NndDWmVxMGwtQ2VxX1kycExhQVkxb1JRajN1LTBrVHlEcXl6N2lSaTJqcXN4TW9sQTdmTE5USEZQbi0tNUNZTnB0c0paM2tlSjRINmdkc1phTHFvMTFYZ1hnWFJVcEFrb1BYbGJhdU96LWQzUFpNdXBUaGJZNF9Obi1Va3RrdGhYTV9IbTQ2S2JkQkFrY3J1UGhiRTZMMDN3OGVSaFhBdU9ZR0ZvamZlZFdQZ0R6YjZuQm1vSnhudHZ6UjNuZmliYWQ0M0VXZ2RmMThkQVBncHhzaTVuWF8zUElfaW5qSVVHdlh1aGl1TDVvOW9TOFpCQ0dsaGdWWnFKN1hMUzFIREJjVnhHT2hCUDB5b1ZUTXM0cFZBaWl0Tm0wVFRrU3hPT0RNQnBZRFFCd1dURWRGTFdMbkNGWVQ1a1RjUENoeGkwZnFTRUstXzJkemNCNXRxWk54U203T2oxSGpGMGUtZENUdU5TcS1xNFVRQXptQWgyNG45WHBlRE9Ea0VULTdwZGxxcGZXZ1FEU3NMV0U2UDdYZWNyR2R2N3hJaVRoVEZ6R0FTVnZ0QnJrLVRISVRuRURhWkZTaVBieTZPcUJlMG5wRlA4bzJxZHNNSnZmTnQ0Q1FvTVpPRlJ0NEk2cWpVbEtBcm92Q1c4eDBmYVdFdVpGd3Rjek9jNS1pOUt2VFdhcFhzVlFOR0NrMHY0UTFmQ2x5cDVpbzdCUTVvXzFWOHNtUDBITlBSMTZXalVGazE2a0N6WTA3YVpocjhNdUZ1cE9WdGdiR01WRWlpQkNQMjZ2TUVfeENOSDVmVE9uNFM1a2xKVFcya0VZb05VRldhYVJOUXdkajF4bkk2Q0hZSXNSbDZMRkFENVJLOGlMYWxCNE9fd1VOdVRBYVkzbE5xUVVCRDNtM25FNUE3TGx0eVA2M3JoR3pHdHBXOGVvOXphNFNiTl9QbHFMMVdRY1VnTWxreG5PcTNqRFdiQnJic0RUekEwN3pRTVhUTEhKMEhSMHQ5RG5ONkwyVXphb2VYNmtUV1VteU54WUNfUHY0aHhfRGVoYjVnS2ZSc3Vha25HSm85b0R0TDNkcHViZzV2ZS01WWdhZ0pjWVR1T1laLWsxdUNnYzZlLVdjWVNGdndfY0YwMDdmR2xnLXFkbW1vM2dZeVJxT1dkT0FDT05iUFFvaWxISll4RHhCTldqOGg1Qi1hUENxejJTX0hwU3JwUzF2QzJIeHd3bnpSXzJSenJFbkNHUElmSDJYNVhEczV2c3FYOFN4Y3hTVmdKOVBEbTlkR29HOG1GT25YejVLWDFobWI2eTBoSzhhZFNVWnoyQXFKYzBQVkszWWVJcHZLblQyY19mclNocXJzU2tDR29VblV4NkpMWHhBQVdSOUJBVGo5N1FlX0paU19hVTZvZk1yNFlYdGdlYUNaY1JSNEQ0X194TWV3ZGxMSUlJUWFZWW5MaFNFUVBPaUJFYnYtQ1RaeUtVdTFidFYySVA4aWU0YmstOFB1Vi00RVFlM3VwN1hMb0lFMmNHbUFIYmtLTFFudzNiSldqWWo5Vm5mazFRZEFMdnJpUnBpRnotSGRlbVUycUxsMVl1WE9sMUZuRVFEaFFTRUtfbS1CTHNEZ0FtUk10d0FFMGhhazhHb29JSDZfQjEyZHF4OExGSUR5TV8zdWwwWkNNaVg4LWExT05xVzhRanhoTUhNTHhTZWQtQTJtOXZnbGVuaXR6R1RLUUVUcU9yOElkOF9xSDFRWE9GR2JCeXZ6eVJWUEw1UEViQUY5WFM3V2FMY3BTSGw3bG1HRngzQ1JOcldxdGQzTl9OMHZWMlpDdFpFYnJMcm02YmlQMmJLM2czLTZmSHdjdVBibmk3cGdnT0ROd1VHZkVLVnFtT1RYTlFwYTJ1eHZwd0c4WEowV0tUVVF6RXhDUkVKcERRcEFnbjYwNUlDWS1CS0xqaXNCRDI4U2NiamF5LWR6UnhmQTRxVVFYTl9rS3RJOUs2U0o2RmxCV1NmdmRJa21OWEExZF9vdGRIRFdNZ3FYUXB3YkdXazBhMFpiUWx5SllpWWd0UHpNNHBxWk1tVkVNYmkxMFpQUFE0Z29YZzFlSUVFNkRoWmZEMGFFd3hvLUN6TXBYU1lHd0FNY1VxWXhZZ3FmV0NXbkQ2eFZnUGo1ZHpUR1YwUVluVGxCQ0NnTDZMd1dxVGdqYzZiYkU4Z1Z6cGlRVU9Mck40NDk5UmNJelFwMk1GTFNPUUl2aGVsSllCWVlwRGNYODdNd2VjeVphTE5UVjFKM2ZPeUYyYnI4N2tzLUtqMEM1YjF0ajdpemdITUtnT3ZBZlZjYkEtR2k0VXFfeVhqNFFaTGloaThJSmdHd0VVU3hPaGU0T1dQaWlZS1EyUG9pQlhSdmlqaTJVQXd0UHR5X3hDekJ1NExKMU1mQ1REc2JnWS10Y2FldVdfYW9CT0I2Y3RZYU9jMXBrT3ZDX1ViYWphdktUdHVWcHMxUTBfZkFubjdCYVM3VHpTRXNhVjZ2cExIb2g0MVp2emQ2VGpzTzVlQi1ldWZzZDhUMUpxZnBLeXhYQUJRSTVPRHk3SW1mZW01VEpsWjdqY2diT0lpLWxYZS00R1ZjSVRoSkpPOVNaSDl4c0RJSnp2MU4yaGEtZWd2ME9Za2R5b0xOMEFrSzgyd3VEZlNDcV82Y2pGUzc1M3lVZHJ5Y0JsYVVOczFIVERHa3hJdUNiX3NsVjdNdXlhV1V2cEg5UW9BTVNuRm4xcUpQMmJLbW9LM1RfLTB3RzBPUzZZd2JQNUh1QzZlV0wwdDVpUENlbFRiNS1KRnlQZUhCY1FEb2xyY0UwbjZ6NUhEcHNzU0xndHZYRnNoekh2bmdjXzk4UjlSNTNCMlZsTURQX25pYnVVTUk4MTdUaWNvV1puUUhESExqVFBWNi1uR3hHMjFMcjhMUjRrWE12VmpBSXFwZzE3bUNncjg3U0luU0tDSDN5RlBCeVRyTW9oWVcwX1hCOEJJbVBwZlRLZ2N4by1IU0N3WFJWaXNkOHdPWUZfeGpGcVI0Q19xVXQ1bWVfQTVlTEdGUTFHOHd4Mk5FVUEySWI2a1hLZ1NSZE9WMEZqdHlfdGlIRlg3LW1qQ2IzZVdhUW1aa3BkNVZjSHZmT0d2S3JQMmRTWHlYemlnSElRalc2X1NfdG1ScHVWXzJsSGdaTE5LRVV3dXRidUJtaHpQeDBIRlJZUE54VGg4TnRjVVpUbmhpSEExaFZlOVNsS1hFQXBXRV9fYnJQbXJ4Yi1Qd1VzTG9WY0ZvMkJicW1zNjZxaURnUjNXemtKLXFpclZsaHM3NlBWRE8xaUJLdHlCSDdpLTJ5OG5qY2UwN1dFLUY0b0tiLXhwR1RIT1VRdDJxdG1GR1hKeURxcUlveEs4MEJZb1hZd1BaWGpvdWQwSEU0cUNPSE90YS16S3VyY09MOGQzT01GNXFielFGLWZrUjA1Uk92RVU4VGszMS1pMUpkN3hHc0FMa3VDcVowckZYQ21jQTVaTzVuc2F0WnNxcVhlQ09VYzdidFpXbzZvbHUzc1JDVHZ5Q2RlWXR2RllHNnBtR2F0aHlKZGlzazBwT3BsMXdoUWU1dThMZk0yV2JIbG1mSzVjQlI0ZlhEVDU3MmxkOGM5c3llLXZiYUc0S1VCY2ZvT1JyMklpRTNlRzdCN0FCSTcyRjZ4N2pRR1VYRG1aLU9MZlh4Wi0xZGJyUmhvZ1dqT0RudUpBYTRtWnMyenVDMzBpOWZUMDRKdElpeTJFXzJFQ2lMWVd4V041WnViUnhZbmtlNTh0bW04ZHpXTDloaTlta081ZkhwUjR3eVRYbFBOLTZqTy0xdm5PZWVMWl9EUlRDXzhFQks2WFZDTTk3WE9jSnhFUEtkWFh0MnNwVC01Rmx6T3Y2WHNIV1pDVzcxaE9NcV9qb3NBLXVqZENUdm56YVk3MkI1d1F5RjlsbDBGNVdtcnMwc2dpNW5MWU9nMXFaQ01ydDRKMUdkcEpzdXN3QVFwdm1DQVhuLTAydk9XRnRSX0s3QXkwOTFkQmxkNEZTVXBQTzhVbUJuNG8yTWViSHBtclozSjJqa0VLdkpmMHAxaFp3MzNPNl9GRlVpM1FxMTdXUmJUNEExVUZ6U1VpNU42VXJjWTQ0Z2FkMnBPNi1xVFJuMXljTUE4U29FVm9SVWJaczJEZ3FyLU53RVMySmsyRzl4c0dpWkhla1VqdjlyWGw5c2tWbGI5V2RYSTBoLXJ5TzFfUU0xUUNHYldsX2xCaEdBdlZjMExqQ1I3d3lpeG1BRHVJMHc3Wlc3NHlDQUpKdUtJT0xyNTd1bzYxQmYzLXFYWXRIWDh2c0xPamc5N1IyTExHeUpKMWhVcVZlQU5sa3B3LkhsQXBVUTQ1YTdxRDRiRUVJWlRmR3B6b3lBNi12UlZQVkhlV000eUZVV3c\"}", + "status": 200, + "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/0f21985e3d2d42ed899ba2b76e892011\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"-pIR3W-OUcEZgrO4h8F7dAIRen4t7QW_d6oO6jSd28-dXPqUUEPNlEsgdtdXbqqhWLDN4w5LOWOLDgQ5TcXC-kw1wK2j5tAPO_YA11c-2cgI45cWlwuW0RLFuiXYuW3gult68a82fAGQmwe82bxs3pYwJQXdMT7x6aJwmqnVsqOc8aJP0BZM-Gacp-CRCHXRcs7_r8WPOMw4tMPrg_lI5b99Ctqy0693nlWE1-jNeCdtz5YhQuICK8bwwJnOruoadkgliPZWN4NEvsjeJOzY3AXUrOrciWVgW6LeLCvMDiJ39Ca0PkgEVFbKypOUeEPAQT5yNDgF7hXEx6HRdvdalQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648725,\"updated\":1619648725,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "743", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:56 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "5ba9a06c-0280-461c-b554-bd7e247043e6", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "758da4d3-02f3-417d-983b-2b2178d0025e", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-\",\"deletedDate\":1619648756,\"scheduledPurgeDate\":1620253556,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/0f21985e3d2d42ed899ba2b76e892011\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"-pIR3W-OUcEZgrO4h8F7dAIRen4t7QW_d6oO6jSd28-dXPqUUEPNlEsgdtdXbqqhWLDN4w5LOWOLDgQ5TcXC-kw1wK2j5tAPO_YA11c-2cgI45cWlwuW0RLFuiXYuW3gult68a82fAGQmwe82bxs3pYwJQXdMT7x6aJwmqnVsqOc8aJP0BZM-Gacp-CRCHXRcs7_r8WPOMw4tMPrg_lI5b99Ctqy0693nlWE1-jNeCdtz5YhQuICK8bwwJnOruoadkgliPZWN4NEvsjeJOzY3AXUrOrciWVgW6LeLCvMDiJ39Ca0PkgEVFbKypOUeEPAQT5yNDgF7hXEx6HRdvdalQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648725,\"updated\":1619648725,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "931", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:56 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "4f837339-3158-4b05-bfb8-363a2dbe9136", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "13d51c37-7618-49d6-b422-388e353e727d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:56 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "4c04ca3a-fbca-4b2a-91be-cbdd00a6aae6", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4aae695e-9447-48d2-ad2c-faa02ce7aaf4", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:56 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "07fbc414-e767-4f28-8127-1bd02e6ee127", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "06e7634d-8095-4398-b296-187f1e0709a7", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:58 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "75944049-97f5-46ce-9400-22fa46932e35", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "2dd3ece6-d249-473a-a760-1591dc6964e1", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:26:00 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "cf4b13e3-c314-4855-9d47-0c32895f2d62", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "4dbfdf2d-43c7-40bc-991f-d15ae3285077", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:26:03 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "d6c2f4cb-1301-4c22-b016-2b3dc7f26201", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "50b1107d-1d66-42d2-870b-408f1d0fbafe", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:26:05 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "98150d88-e70f-4384-93e0-17effbb7fcf5", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "fa759992-0701-4e1f-ae99-1e21dc91a7c0", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:26:07 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "55feced0-98e1-49e3-bf06-e07f1397eeb2", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "ccb5686f-6c46-47bf-87b0-ef9731d33eb4", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:26:09 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "8b9de299-8c4a-422d-90be-cf891efbb0bc", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "b871b140-4c1b-4495-b168-2f57775b6514", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:26:11 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "4aa9097f-bfed-4e31-b018-7301cf9c6018", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "24077230-5383-471d-a825-ba5b3c156302", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:26:14 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "aa977dbb-fdab-48fc-9e3a-70d0ef56b9c4", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d2494cda-c006-41ca-a2e8-6ba8376696fd", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:26:16 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "2f21ad26-d302-448f-bf67-90f1c8296c16", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "616013c9-fb4d-45be-8f35-566196fb4b75", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:26:18 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "08d0fe32-8e24-4c05-97aa-a0aea7692aa2", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "83b27cdf-59da-4676-9a97-6acc70e18402", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "136", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:26:20 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "ac1f4840-983a-4be1-ad35-980e5bb3ef69", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "d831e832-660f-40e7-919d-c5c1d1e5ce9b", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 200, + "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-\",\"deletedDate\":1619648756,\"scheduledPurgeDate\":1620253556,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/0f21985e3d2d42ed899ba2b76e892011\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"-pIR3W-OUcEZgrO4h8F7dAIRen4t7QW_d6oO6jSd28-dXPqUUEPNlEsgdtdXbqqhWLDN4w5LOWOLDgQ5TcXC-kw1wK2j5tAPO_YA11c-2cgI45cWlwuW0RLFuiXYuW3gult68a82fAGQmwe82bxs3pYwJQXdMT7x6aJwmqnVsqOc8aJP0BZM-Gacp-CRCHXRcs7_r8WPOMw4tMPrg_lI5b99Ctqy0693nlWE1-jNeCdtz5YhQuICK8bwwJnOruoadkgliPZWN4NEvsjeJOzY3AXUrOrciWVgW6LeLCvMDiJ39Ca0PkgEVFbKypOUeEPAQT5yNDgF7hXEx6HRdvdalQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648725,\"updated\":1619648725,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "931", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:26:22 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "200", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "a1c2076e-feb5-4a17-9880-e1d83b52350a", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "fb30fc64-3e49-498e-8af3-851322294134", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "DELETE", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 204, + "response": "", + "responseHeaders": { + "cache-control": "no-cache", + "date": "Wed, 28 Apr 2021 22:26:22 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "204", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "37ab8e10-d2ee-495d-a988-7db509840ad0", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "43e06eff-03d5-4fd0-8ca7-e317e2573424", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:24 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - WUS2 ProdSlices", - "x-ms-request-id": "fad01bb3-1fca-476e-b746-39e3c3167100" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/create", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"kty\":\"RSA\"}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/0f21985e3d2d42ed899ba2b76e892011\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"-pIR3W-OUcEZgrO4h8F7dAIRen4t7QW_d6oO6jSd28-dXPqUUEPNlEsgdtdXbqqhWLDN4w5LOWOLDgQ5TcXC-kw1wK2j5tAPO_YA11c-2cgI45cWlwuW0RLFuiXYuW3gult68a82fAGQmwe82bxs3pYwJQXdMT7x6aJwmqnVsqOc8aJP0BZM-Gacp-CRCHXRcs7_r8WPOMw4tMPrg_lI5b99Ctqy0693nlWE1-jNeCdtz5YhQuICK8bwwJnOruoadkgliPZWN4NEvsjeJOzY3AXUrOrciWVgW6LeLCvMDiJ39Ca0PkgEVFbKypOUeEPAQT5yNDgF7hXEx6HRdvdalQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648725,\"updated\":1619648725,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "743", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:25 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "99a75f10-df36-4059-a711-bd693842fa6e", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c5293834-89a1-4855-9867-8b7b5e75538c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/backup", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"value\":\"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUl5WVdabU5tRmhNUzAzTm1Ka0xUUTBZVGN0WVRjek5DMDJaalZoWkRCaU5XRTRPVGdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQzB5TlRZaUxDSmxibU1pT2lKQk1qVTJRMEpETFVoVE5URXlJbjAuY2lEMjFBc2YzaFZwVjc4dVFMV1RsUzdxZ1c5Wkp2UWhWZ3lGbzF2Y3Z5enZGdDFTUnlJVXdCekI5OTJsOVNhUF90REdXbEx6QURXTjFicFJweVp2STlBeHlIdEFkTWRxSTB0eGhLdHhGMmNOXzEtUGRVYUt4MWowRllKb3Mybm5UcjEwMnN6VGR1ZTdHY1dnb1BUTHRuc3llcVhCdkdVSGcyVnZOdjh0V1JQQV9WTjRKWWtfS2pqdGc0WmF0VW0tUk81VnNPZW13RXBaNU9NVndjRG8yTkd2emdVVkFERGtvc3dSYzZ3RVlxU0NHbkEzWkxtVnlJRVczcjZYd1Z3SWx2TkJhZUxGOXY0Ml8ycjUtc3VneDA0WUlZRnc4a0tSZEp5OUI0ZU9KXzRHa0stZm50X3Y4UFFlTEdGaVlkRkFZUVc2Q1pkVEh6akZFRG9QaWphYWx3LmxCRHNtSWt6MU1fMEpfMGdCakMxLWcuajNYZVQ5TlM5LVAyWjhPQTFlUW5TSEhvem01N0czaXhYeHRGWUtBU05WSTM1cFBPbUswdEVJMzltY0FRLUZtRGV4cVdWbUw3QWxYWUk1M3ZTaXEzWGtOMG5PLWdvSkhsdXNXM3BVemthRG9PWlNxY25QV0FxVXFwZi1zZVZCdkJqMXRBb2dsa2dTZ2psbUk0UlQwVFJJbkYzaEhXd3BIQVRzbWd6WnMxMVlpdlZ4RTlpbTkzNXplQVdaRXFRRFlncGJNZDdLdDN6ZlpJLTN4M05YelpZXzQ0NUptNGd0bzdLTDNEbENIbFpSU0lnZnhQc3Q3VW1RWC1FNk5oWklNWUlfMzNRNkdtTFBVNTk0QVozaERBcWlZXzFQeFdqdV9KY3dWcVdqLVE1TjVqWk5sYmo3UGw2MjhXMEVpOUF4R1FfQkFrLWJpYngxbHM2WWIwS05Oa2J6d1pPdjF4ZVUtYTRCVGFGZWNWS2QxR1dBM2pzZV9PSjNYcEV1ZlNzSEU1TktQeF82azVUMnFLMUliV0JHd3ZFb1R6NjFWZEpseGZacXdtczZjNGU3cHE0MHhnQU03M0xNakVqdlcwYjAwbHFHZGxBc1hEcnZMMDl0ZlRrRThIaHFfTlIzVFpGMFBtSGZrLUxRNVpMVlRLSFF3TkxtVVR2bkFLeWY0UFk0b1hCbmJzWm1OdDdaalFOUTFMOE1FNzJfQ0dPVmxuZjEwOWhDZHpud2dNWjh0cjdYNTVFbHIzUVdoR2FXSTZlc3FVZkNSbnZHZk80T1NjTU1QNlZ2UGtUdThMb3hKVzZ2X3hKZVpJUWlEcEloVnFGcE5UZ21PQXN3WlJYcmZhQ0ZqTkE0cDVfVUp0aW91aWUxOG10V2ZRQ2lyeGhHNTMwTFJHWEZLTkdkMzVpbkw4WklnUnRJQmtRR3NNZ3Z2dDZ5NnJiam5JV3ZEYmd1S0F5d2lmQk4xWm5pSHZYY0ZhUkYxZVJaU1NhM1BidkVSTHhoR3VmeGZfQzVYQjVzNXk4M2ktQkUtUEVFN19Ub0Y2YU1LWkU5aExXLThOR21XUFgxSVBqeG5OUFpNZE5wM3dkaTJyekJxLW9IMHlVNHFZX1hJZFIyYjU3STYwY2J3TThrS1NKcWhnS1pyRW4ySHR6cG5lWF9pei1jSHlnaHBSb0xQd0dMTWd1V0RqTUhOY0duZlFISFZhUER1cl85S3VsTnNZSDNLR3R1YlpTZUt6ZHM5ZWxrSGRJMWFuVG1lVnphZTFaZXRLOW81R1dQSEx3bUN5RGRXWlBYbDNRN0E3NEl4YkNoUFVvd0ZVOEVGbnJ6Yi16clBDOGNMNTBtZ0dIQVdwMDk4WEltSFZSZ2l0QWoxbXJycWhuejZYMjNqZkZVWGtfT1VDQ25KUC1BX0UwTXQ5dkg4dTJUb0hURnRqTElIQms5bzlyTEU3a3FWek9YZXFpOTlNekFhZUVEUnRLSF9FMzdxc0tSQWRORlRHUDVveTJtMXd1MTkwREdrQzU5aW9Ld2J6SkNOVjdOdmJmSGFrc1MzQmlzUFUwbzc3UjlDaHpEMjk3czZVUEdFbHJpQkR2LXRDRFFGYXlNRXNMeWxoZ3hQMEttbEczTFhtQmIteXd2aWVPOVBWbVU3TnZIQ0dlcEZzVTFMd3NabnRkSWZoQUpWRXppMThydktEaUhBSUlTZ045LWJLMTV2ZjFpOGNzNm9mMGRudDRyYWRmb1pvR1hla2VoUV9RdHJHRXNPdFNxRi10NXpCVXlCSjJMeGlfd0VyV3ViV3hkdk9YNjc5WVduaHdpbnR2aFZZbnpGTng3YS14c3hqelVXR3dCSFowTjllN2VnUjNjRHhqdjBlNzMzTTVBdUhmU3I3djY1S3hITkxQMmVXS2QydkhlQmRVWjlOdkdYamhxTno2eWVfNzFibUpjMW9fQWNiUHRKTGY2d2NhN2h4T05HakZla0dxM1Z1b1FOc2lnQkVhRkxwb3ZUMHllNkVTOTdkTWRPcDFjXzRTZF9WZ052U1NCMGFPYW1zY0lsMjJaM1JzczlZSkt3WkNlbEx1dkhCdTZtQXlOaUFTbEpXZFRJenNQR3hMUV9GclBJX2x1d1p4dG9HaDZTX0FNWW80NDBqS0RmbW9CdzQzTUJiMjNVTXhJWU5DMHY4THdXUTFuUkdhU1hzVDI3Uk14ajhCY25UTkRWWjN0SGF4WlNuRTRuRVFuQnRyUWJnaHpCdjBLSTRUbDVnRnp2Skd3TnZQakExcXl5dGFHTGU0aTNzeWNoSVRjY0VZWEt6ZkQxVmRKQWFQVWRtSFV5Z251NzNkNjhOcWk4VVQ4cWNaRVFlcU5tMnZ6cFhZUU5xb2ZwTmdBYnhBaWJXOWJXejJBUG0xNndDYU1Ka0VRSkQ1MlF0cmQ3WjNvQkMxazZfZVF0YlNjZGlKWUxlN1NRcFlWZGUyMUZOdDJGaXBIbDc2ZnJ0a2lwb1R4VHEwbHMwWjEzY05ETUF3dlc3eGgyN0ZqS2JGT01SN0pUMkVCMkpaVjBmcDd6d2hXSHRZN3R1NTFSYnQtM2E2b2s5LTZvRnUtdlB0Nm5KXzVZTTRpSjFmbEZNZWN0aU9UNThHQ09BbGNfZ0JhRU00d18yQm1pN2xadzlsOEx3X2t1WjdRdEpyUDQxWjNyLTY0QlBiTHJPY1NKT1hsN2xzMGZyc2MyeFlBVFdVbktpUGxqdnJUU3hTSDFwWi1va0FleDd2Wml0RjlHTUh4dFB4a2hGd1B4UUNhNkN1LXdscWNGYjJSRHR1YlBuWlVNV2VLYS1ud3ZUcjFIVFFKbVBuZHctOWpFUmo0b2tLb2ZudnJLbHhZNDVPU0ZqdDhoS0dwM2RTbjJ6emV6RWx5V0hFWnhla1V5ZXdVR1YybnFhWU83UXpvamdMM3hJbmoxMXRSSzVDVF9iQXVLd3BoOC1FSDMtWmJ2R3FURW45eXNIQ3Zsbi1PODRiWUlqYnBZdzdRLTRYWTkxVmJlOXJrSDV4M1UyZnZyeEdlQ241Wkk2WFBzVlBycGdXTy1DT0lBOWV1Q0RzcHB0alVfbUFBc1QwTVM0VFM1bVdkcGhBdm5xS2VaQS1tQ0FYOERjQXVieTkzMmdRUEp3SUFZaWJKNE1JVGQ0OXhkbzFQZjd0Wm5oME5vRFA0cjJ4R2ExSW1nVXE3SkhiYy1jV3prS1g1OVNxUzFSOGlTaFVGWWlCVUQwOGFoNFVLcjZWbjF5MWdaNUJWd043bU9Ub05pV3d3djdvaEp2YUtsSkJFQnNvZEs5Ti03ZXp0YjJ1STZjaHBxcXVoRkhTeGlZQ29KclhLWEhHQ0VzdC1Id1AzRmFPdXoxVTIwRFNHQkE1dTd3cHJ5U1k1Y0dZMzhmcVFHYzFqU21FU0dZVzdTNWxXbld3SEh0ejlEVjljZ1BnX3dXQm1LczkxVGJrUWtBOTZLbjljeXh2ZjEzamtwT0habUs2ZFBCZzNOZHQ1Vm0xTk9WSllYWVM2T3dzeThUVW54SnkyMjVFMklSV2xNU0E2bDBySWFVZXh6V1FSYWFDZWsteVJTMGwxZmJXME16V0w3bDNKRWxCNjk2bjM3NGlmR2dsb3h5RW1JTUl3TzF3QTRfa3Y1Q2RVSjk0Nk9OT0wzc3ZUSzBod24xZjZ3SEppT1lQYlFUTXp3LVdNR1p0RHRSM1hjNTRQa013LVhzWUE5RkNNMkxEOElDUGE5LThwV1hpNmZzWlpGVXVvcXpzLUNLaUREVi1IRXVpYnRGcVlXeHNfeV9RaHdIRHpCMjhZNHptUTNpQXdnMUZmNjFSUGNHQnlFMVdTeU96c0NyQkpRblE2ZHBKYW5MLWRHUmVPc0pENEVoWW42Rkk2QWhaNjE5NnBfV2pEWFl3Z2YyWkVsZWRKS25EeFlWZFg4NzRwdy0xbEFKNGVpZ3JpS1ZxVENzckhXWkhFQnVrT0FaNlR2bmZWenlqcTV5TnpqUWR3UzVXMlZKMDRZcy1LZDdmcDM0NE9GUDBtaVpONkNWeVJOQ3RyTEJZSVpQbmdXRVktUDRBOUhiXzN5VWdyX3dSTlQ4ZlE1Qnl4VnhwRjVSVFdudi1pWTNXSWQwaFMxa2sxb2x2WEhPa1l6Z3hsSW5zaWtLc1Z0RVdySVRURE1iNGJlSUNzMnZVTkxHNnJyZ0hMRUszY0RYOFRjaGc1YnE4QXYydS1uZm5vQ0syV0JoSDhWS0lWT2Y1ejBtY1kxY0NSb2Y0UTZXNGRQeXM0RFV6S1JXS0x1T0RCYlMtYzdxTlNuN0M1c0hVR0dRLVdrNnlnUXZTTTk4SDdsOG1BckRNdXQ5YzUzZk1FNVlHOTRUanlGemdsOGNxdVlCQVBqYWVQdldlOFdYNHBKb2NUZnVzdjlZMklfY1hNQktEbVc4WHlNRTFPaEhDSzBXbTJORGlBem5nX2t6ZmlFYTgtSThXWUJ0OGI1Vk5QQW85bm55TFJfNXRCRkdGV2NoLTJkYUxGQnR6S3NUQkxRZm5pQ2tVdXItQUdVUk1XN1FmRE1vSmR0a3lCR2tmRFVheXlBYWQ5ZEpfSE1hZUxDaVE0UWhpRnpNVHF5ZzYxQmwyXzkyMi1PY09HU1BSRElXeFNZRWRfUWtKb29mN3ptXzR1bWRVOUVBRk5vYUxxcERoY2lCa3NfNEhUM1diVXAzQ25jb3phd3JfZFlRRTVYOXpIWS0yUl9WdzZXVTZMdTYtaV9jNjBmQXZEX2lISklzU3d0bnF2WVEtenl3djVLNWJXUFdyV2ZnMzBrMV9sbFNsazktYjJCNUZmWVZBUUJsMkRaVG9VdlJzaDVZVHhiYm5EbGFzOEJVRE1XV0hSSEotZF9pZUNad2VIbGdWVkktT1lWV1NCLXAtSjk1akZuVmJnUEdiVjJSSE53US1IdkNrRDBpZElDTklEY2h4UnFGZUQ4Z2dFaTdfcnd6N1d1ZXpZS3V5aFNHa1hhVWMtbmUxdHRrRmRsYWJ5SEt1b1FJWDZ2Snp1cEpjWUo1OEMxd0kwUXBIcjY4U3poekpjMjBUVGk2VWc3T1FtVHpncy1JNDVKVGFuSW5NdHk0MmlubjdqU3daWXQtMERWTXZPZ2RZeEVVRk9UZE5vWmFWMTI0QjdfS0c3bGxmY1o4TXUwNkR3M3FXWklUSExpcmZhZjhnU0tNRm41b1dfVjdCSWJXR2xiOTg0QkNjRExTOXRuaEllQnp5akRUcmhFOXZwdDNtNnJaMGpjcTFjdEVkZ0xFM2NwR0ZYX3lHOEJoenVKSk9jNTNyWkpydVY2TVNzSTlRYllNd0pUcmJuLXdMYVN0ZWx5b0JTUVl3NndDWmVxMGwtQ2VxX1kycExhQVkxb1JRajN1LTBrVHlEcXl6N2lSaTJqcXN4TW9sQTdmTE5USEZQbi0tNUNZTnB0c0paM2tlSjRINmdkc1phTHFvMTFYZ1hnWFJVcEFrb1BYbGJhdU96LWQzUFpNdXBUaGJZNF9Obi1Va3RrdGhYTV9IbTQ2S2JkQkFrY3J1UGhiRTZMMDN3OGVSaFhBdU9ZR0ZvamZlZFdQZ0R6YjZuQm1vSnhudHZ6UjNuZmliYWQ0M0VXZ2RmMThkQVBncHhzaTVuWF8zUElfaW5qSVVHdlh1aGl1TDVvOW9TOFpCQ0dsaGdWWnFKN1hMUzFIREJjVnhHT2hCUDB5b1ZUTXM0cFZBaWl0Tm0wVFRrU3hPT0RNQnBZRFFCd1dURWRGTFdMbkNGWVQ1a1RjUENoeGkwZnFTRUstXzJkemNCNXRxWk54U203T2oxSGpGMGUtZENUdU5TcS1xNFVRQXptQWgyNG45WHBlRE9Ea0VULTdwZGxxcGZXZ1FEU3NMV0U2UDdYZWNyR2R2N3hJaVRoVEZ6R0FTVnZ0QnJrLVRISVRuRURhWkZTaVBieTZPcUJlMG5wRlA4bzJxZHNNSnZmTnQ0Q1FvTVpPRlJ0NEk2cWpVbEtBcm92Q1c4eDBmYVdFdVpGd3Rjek9jNS1pOUt2VFdhcFhzVlFOR0NrMHY0UTFmQ2x5cDVpbzdCUTVvXzFWOHNtUDBITlBSMTZXalVGazE2a0N6WTA3YVpocjhNdUZ1cE9WdGdiR01WRWlpQkNQMjZ2TUVfeENOSDVmVE9uNFM1a2xKVFcya0VZb05VRldhYVJOUXdkajF4bkk2Q0hZSXNSbDZMRkFENVJLOGlMYWxCNE9fd1VOdVRBYVkzbE5xUVVCRDNtM25FNUE3TGx0eVA2M3JoR3pHdHBXOGVvOXphNFNiTl9QbHFMMVdRY1VnTWxreG5PcTNqRFdiQnJic0RUekEwN3pRTVhUTEhKMEhSMHQ5RG5ONkwyVXphb2VYNmtUV1VteU54WUNfUHY0aHhfRGVoYjVnS2ZSc3Vha25HSm85b0R0TDNkcHViZzV2ZS01WWdhZ0pjWVR1T1laLWsxdUNnYzZlLVdjWVNGdndfY0YwMDdmR2xnLXFkbW1vM2dZeVJxT1dkT0FDT05iUFFvaWxISll4RHhCTldqOGg1Qi1hUENxejJTX0hwU3JwUzF2QzJIeHd3bnpSXzJSenJFbkNHUElmSDJYNVhEczV2c3FYOFN4Y3hTVmdKOVBEbTlkR29HOG1GT25YejVLWDFobWI2eTBoSzhhZFNVWnoyQXFKYzBQVkszWWVJcHZLblQyY19mclNocXJzU2tDR29VblV4NkpMWHhBQVdSOUJBVGo5N1FlX0paU19hVTZvZk1yNFlYdGdlYUNaY1JSNEQ0X194TWV3ZGxMSUlJUWFZWW5MaFNFUVBPaUJFYnYtQ1RaeUtVdTFidFYySVA4aWU0YmstOFB1Vi00RVFlM3VwN1hMb0lFMmNHbUFIYmtLTFFudzNiSldqWWo5Vm5mazFRZEFMdnJpUnBpRnotSGRlbVUycUxsMVl1WE9sMUZuRVFEaFFTRUtfbS1CTHNEZ0FtUk10d0FFMGhhazhHb29JSDZfQjEyZHF4OExGSUR5TV8zdWwwWkNNaVg4LWExT05xVzhRanhoTUhNTHhTZWQtQTJtOXZnbGVuaXR6R1RLUUVUcU9yOElkOF9xSDFRWE9GR2JCeXZ6eVJWUEw1UEViQUY5WFM3V2FMY3BTSGw3bG1HRngzQ1JOcldxdGQzTl9OMHZWMlpDdFpFYnJMcm02YmlQMmJLM2czLTZmSHdjdVBibmk3cGdnT0ROd1VHZkVLVnFtT1RYTlFwYTJ1eHZwd0c4WEowV0tUVVF6RXhDUkVKcERRcEFnbjYwNUlDWS1CS0xqaXNCRDI4U2NiamF5LWR6UnhmQTRxVVFYTl9rS3RJOUs2U0o2RmxCV1NmdmRJa21OWEExZF9vdGRIRFdNZ3FYUXB3YkdXazBhMFpiUWx5SllpWWd0UHpNNHBxWk1tVkVNYmkxMFpQUFE0Z29YZzFlSUVFNkRoWmZEMGFFd3hvLUN6TXBYU1lHd0FNY1VxWXhZZ3FmV0NXbkQ2eFZnUGo1ZHpUR1YwUVluVGxCQ0NnTDZMd1dxVGdqYzZiYkU4Z1Z6cGlRVU9Mck40NDk5UmNJelFwMk1GTFNPUUl2aGVsSllCWVlwRGNYODdNd2VjeVphTE5UVjFKM2ZPeUYyYnI4N2tzLUtqMEM1YjF0ajdpemdITUtnT3ZBZlZjYkEtR2k0VXFfeVhqNFFaTGloaThJSmdHd0VVU3hPaGU0T1dQaWlZS1EyUG9pQlhSdmlqaTJVQXd0UHR5X3hDekJ1NExKMU1mQ1REc2JnWS10Y2FldVdfYW9CT0I2Y3RZYU9jMXBrT3ZDX1ViYWphdktUdHVWcHMxUTBfZkFubjdCYVM3VHpTRXNhVjZ2cExIb2g0MVp2emQ2VGpzTzVlQi1ldWZzZDhUMUpxZnBLeXhYQUJRSTVPRHk3SW1mZW01VEpsWjdqY2diT0lpLWxYZS00R1ZjSVRoSkpPOVNaSDl4c0RJSnp2MU4yaGEtZWd2ME9Za2R5b0xOMEFrSzgyd3VEZlNDcV82Y2pGUzc1M3lVZHJ5Y0JsYVVOczFIVERHa3hJdUNiX3NsVjdNdXlhV1V2cEg5UW9BTVNuRm4xcUpQMmJLbW9LM1RfLTB3RzBPUzZZd2JQNUh1QzZlV0wwdDVpUENlbFRiNS1KRnlQZUhCY1FEb2xyY0UwbjZ6NUhEcHNzU0xndHZYRnNoekh2bmdjXzk4UjlSNTNCMlZsTURQX25pYnVVTUk4MTdUaWNvV1puUUhESExqVFBWNi1uR3hHMjFMcjhMUjRrWE12VmpBSXFwZzE3bUNncjg3U0luU0tDSDN5RlBCeVRyTW9oWVcwX1hCOEJJbVBwZlRLZ2N4by1IU0N3WFJWaXNkOHdPWUZfeGpGcVI0Q19xVXQ1bWVfQTVlTEdGUTFHOHd4Mk5FVUEySWI2a1hLZ1NSZE9WMEZqdHlfdGlIRlg3LW1qQ2IzZVdhUW1aa3BkNVZjSHZmT0d2S3JQMmRTWHlYemlnSElRalc2X1NfdG1ScHVWXzJsSGdaTE5LRVV3dXRidUJtaHpQeDBIRlJZUE54VGg4TnRjVVpUbmhpSEExaFZlOVNsS1hFQXBXRV9fYnJQbXJ4Yi1Qd1VzTG9WY0ZvMkJicW1zNjZxaURnUjNXemtKLXFpclZsaHM3NlBWRE8xaUJLdHlCSDdpLTJ5OG5qY2UwN1dFLUY0b0tiLXhwR1RIT1VRdDJxdG1GR1hKeURxcUlveEs4MEJZb1hZd1BaWGpvdWQwSEU0cUNPSE90YS16S3VyY09MOGQzT01GNXFielFGLWZrUjA1Uk92RVU4VGszMS1pMUpkN3hHc0FMa3VDcVowckZYQ21jQTVaTzVuc2F0WnNxcVhlQ09VYzdidFpXbzZvbHUzc1JDVHZ5Q2RlWXR2RllHNnBtR2F0aHlKZGlzazBwT3BsMXdoUWU1dThMZk0yV2JIbG1mSzVjQlI0ZlhEVDU3MmxkOGM5c3llLXZiYUc0S1VCY2ZvT1JyMklpRTNlRzdCN0FCSTcyRjZ4N2pRR1VYRG1aLU9MZlh4Wi0xZGJyUmhvZ1dqT0RudUpBYTRtWnMyenVDMzBpOWZUMDRKdElpeTJFXzJFQ2lMWVd4V041WnViUnhZbmtlNTh0bW04ZHpXTDloaTlta081ZkhwUjR3eVRYbFBOLTZqTy0xdm5PZWVMWl9EUlRDXzhFQks2WFZDTTk3WE9jSnhFUEtkWFh0MnNwVC01Rmx6T3Y2WHNIV1pDVzcxaE9NcV9qb3NBLXVqZENUdm56YVk3MkI1d1F5RjlsbDBGNVdtcnMwc2dpNW5MWU9nMXFaQ01ydDRKMUdkcEpzdXN3QVFwdm1DQVhuLTAydk9XRnRSX0s3QXkwOTFkQmxkNEZTVXBQTzhVbUJuNG8yTWViSHBtclozSjJqa0VLdkpmMHAxaFp3MzNPNl9GRlVpM1FxMTdXUmJUNEExVUZ6U1VpNU42VXJjWTQ0Z2FkMnBPNi1xVFJuMXljTUE4U29FVm9SVWJaczJEZ3FyLU53RVMySmsyRzl4c0dpWkhla1VqdjlyWGw5c2tWbGI5V2RYSTBoLXJ5TzFfUU0xUUNHYldsX2xCaEdBdlZjMExqQ1I3d3lpeG1BRHVJMHc3Wlc3NHlDQUpKdUtJT0xyNTd1bzYxQmYzLXFYWXRIWDh2c0xPamc5N1IyTExHeUpKMWhVcVZlQU5sa3B3LkhsQXBVUTQ1YTdxRDRiRUVJWlRmR3B6b3lBNi12UlZQVkhlV000eUZVV3c\"}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "10471", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:25 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d722a30e-7166-4b77-ac8b-d10da0d0cd51", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "13c9f757-cfa5-4034-aca3-9f349e36f94d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-\",\"deletedDate\":1619648725,\"scheduledPurgeDate\":1620253525,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/0f21985e3d2d42ed899ba2b76e892011\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"-pIR3W-OUcEZgrO4h8F7dAIRen4t7QW_d6oO6jSd28-dXPqUUEPNlEsgdtdXbqqhWLDN4w5LOWOLDgQ5TcXC-kw1wK2j5tAPO_YA11c-2cgI45cWlwuW0RLFuiXYuW3gult68a82fAGQmwe82bxs3pYwJQXdMT7x6aJwmqnVsqOc8aJP0BZM-Gacp-CRCHXRcs7_r8WPOMw4tMPrg_lI5b99Ctqy0693nlWE1-jNeCdtz5YhQuICK8bwwJnOruoadkgliPZWN4NEvsjeJOzY3AXUrOrciWVgW6LeLCvMDiJ39Ca0PkgEVFbKypOUeEPAQT5yNDgF7hXEx6HRdvdalQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648725,\"updated\":1619648725,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "931", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:25 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d825075e-87d5-4ed1-b6e9-f51a1c283ff4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "9f865f03-d1d6-43a6-84e3-f3fabd1ce26a", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:25 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "47309e6e-046d-4cce-950e-4db9197259a6", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d0c10c91-ab19-4528-889c-6f7e634a9500", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:26 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "f29f925e-6b4c-475f-a7df-7e84595d76a8", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "9f8cb011-8694-4bff-b2d0-d6f6b8ac846d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:28 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "5d5666b1-fc77-4316-8a55-c741c6150a3d", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ce055ff3-57b2-4ecb-a4a5-1b98b63bc25c", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:30 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "bbd9e2d3-33c9-4bb3-a821-10a921564444", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b01d7471-367e-49bc-ac8e-6818410e7164", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:32 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "9a92098f-b039-4256-bb1c-024c1ad7eaa4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a3201081-2694-45d0-9811-dd0d39242bfe", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:34 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d9c17e4f-0698-4f35-b6ec-9b36faf73eb5", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c3b706bb-41af-4b7f-a84a-927cd1846d39", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:36 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "159c667d-1baf-46be-ab15-6c96a01339bb", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a3841b95-0a34-42b3-8743-100567df6cd6", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:38 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "36ebf897-67d1-4756-a2c6-9863f99ea6e8", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b61af0f7-f574-4a38-b476-2df62e677743", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:40 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "26c9f835-3b7c-4ba4-a341-b5ed85772517", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "a915f95f-b580-498d-95cf-c049eafd62cd", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-\",\"deletedDate\":1619648725,\"scheduledPurgeDate\":1620253525,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/0f21985e3d2d42ed899ba2b76e892011\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"-pIR3W-OUcEZgrO4h8F7dAIRen4t7QW_d6oO6jSd28-dXPqUUEPNlEsgdtdXbqqhWLDN4w5LOWOLDgQ5TcXC-kw1wK2j5tAPO_YA11c-2cgI45cWlwuW0RLFuiXYuW3gult68a82fAGQmwe82bxs3pYwJQXdMT7x6aJwmqnVsqOc8aJP0BZM-Gacp-CRCHXRcs7_r8WPOMw4tMPrg_lI5b99Ctqy0693nlWE1-jNeCdtz5YhQuICK8bwwJnOruoadkgliPZWN4NEvsjeJOzY3AXUrOrciWVgW6LeLCvMDiJ39Ca0PkgEVFbKypOUeEPAQT5yNDgF7hXEx6HRdvdalQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648725,\"updated\":1619648725,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "931", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:42 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d441eefd-1472-4fe4-80c9-b02ffddbea59", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "cd6742bd-b131-4f7e-b9ed-5b298e4855dc", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:25:43 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "fbc05c60-69fd-4763-8573-cd557b7e22ee", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "31523367-9a04-46e4-af2e-d2a7f5e448b6", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/restore", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"value\":\"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUl5WVdabU5tRmhNUzAzTm1Ka0xUUTBZVGN0WVRjek5DMDJaalZoWkRCaU5XRTRPVGdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQzB5TlRZaUxDSmxibU1pT2lKQk1qVTJRMEpETFVoVE5URXlJbjAuY2lEMjFBc2YzaFZwVjc4dVFMV1RsUzdxZ1c5Wkp2UWhWZ3lGbzF2Y3Z5enZGdDFTUnlJVXdCekI5OTJsOVNhUF90REdXbEx6QURXTjFicFJweVp2STlBeHlIdEFkTWRxSTB0eGhLdHhGMmNOXzEtUGRVYUt4MWowRllKb3Mybm5UcjEwMnN6VGR1ZTdHY1dnb1BUTHRuc3llcVhCdkdVSGcyVnZOdjh0V1JQQV9WTjRKWWtfS2pqdGc0WmF0VW0tUk81VnNPZW13RXBaNU9NVndjRG8yTkd2emdVVkFERGtvc3dSYzZ3RVlxU0NHbkEzWkxtVnlJRVczcjZYd1Z3SWx2TkJhZUxGOXY0Ml8ycjUtc3VneDA0WUlZRnc4a0tSZEp5OUI0ZU9KXzRHa0stZm50X3Y4UFFlTEdGaVlkRkFZUVc2Q1pkVEh6akZFRG9QaWphYWx3LmxCRHNtSWt6MU1fMEpfMGdCakMxLWcuajNYZVQ5TlM5LVAyWjhPQTFlUW5TSEhvem01N0czaXhYeHRGWUtBU05WSTM1cFBPbUswdEVJMzltY0FRLUZtRGV4cVdWbUw3QWxYWUk1M3ZTaXEzWGtOMG5PLWdvSkhsdXNXM3BVemthRG9PWlNxY25QV0FxVXFwZi1zZVZCdkJqMXRBb2dsa2dTZ2psbUk0UlQwVFJJbkYzaEhXd3BIQVRzbWd6WnMxMVlpdlZ4RTlpbTkzNXplQVdaRXFRRFlncGJNZDdLdDN6ZlpJLTN4M05YelpZXzQ0NUptNGd0bzdLTDNEbENIbFpSU0lnZnhQc3Q3VW1RWC1FNk5oWklNWUlfMzNRNkdtTFBVNTk0QVozaERBcWlZXzFQeFdqdV9KY3dWcVdqLVE1TjVqWk5sYmo3UGw2MjhXMEVpOUF4R1FfQkFrLWJpYngxbHM2WWIwS05Oa2J6d1pPdjF4ZVUtYTRCVGFGZWNWS2QxR1dBM2pzZV9PSjNYcEV1ZlNzSEU1TktQeF82azVUMnFLMUliV0JHd3ZFb1R6NjFWZEpseGZacXdtczZjNGU3cHE0MHhnQU03M0xNakVqdlcwYjAwbHFHZGxBc1hEcnZMMDl0ZlRrRThIaHFfTlIzVFpGMFBtSGZrLUxRNVpMVlRLSFF3TkxtVVR2bkFLeWY0UFk0b1hCbmJzWm1OdDdaalFOUTFMOE1FNzJfQ0dPVmxuZjEwOWhDZHpud2dNWjh0cjdYNTVFbHIzUVdoR2FXSTZlc3FVZkNSbnZHZk80T1NjTU1QNlZ2UGtUdThMb3hKVzZ2X3hKZVpJUWlEcEloVnFGcE5UZ21PQXN3WlJYcmZhQ0ZqTkE0cDVfVUp0aW91aWUxOG10V2ZRQ2lyeGhHNTMwTFJHWEZLTkdkMzVpbkw4WklnUnRJQmtRR3NNZ3Z2dDZ5NnJiam5JV3ZEYmd1S0F5d2lmQk4xWm5pSHZYY0ZhUkYxZVJaU1NhM1BidkVSTHhoR3VmeGZfQzVYQjVzNXk4M2ktQkUtUEVFN19Ub0Y2YU1LWkU5aExXLThOR21XUFgxSVBqeG5OUFpNZE5wM3dkaTJyekJxLW9IMHlVNHFZX1hJZFIyYjU3STYwY2J3TThrS1NKcWhnS1pyRW4ySHR6cG5lWF9pei1jSHlnaHBSb0xQd0dMTWd1V0RqTUhOY0duZlFISFZhUER1cl85S3VsTnNZSDNLR3R1YlpTZUt6ZHM5ZWxrSGRJMWFuVG1lVnphZTFaZXRLOW81R1dQSEx3bUN5RGRXWlBYbDNRN0E3NEl4YkNoUFVvd0ZVOEVGbnJ6Yi16clBDOGNMNTBtZ0dIQVdwMDk4WEltSFZSZ2l0QWoxbXJycWhuejZYMjNqZkZVWGtfT1VDQ25KUC1BX0UwTXQ5dkg4dTJUb0hURnRqTElIQms5bzlyTEU3a3FWek9YZXFpOTlNekFhZUVEUnRLSF9FMzdxc0tSQWRORlRHUDVveTJtMXd1MTkwREdrQzU5aW9Ld2J6SkNOVjdOdmJmSGFrc1MzQmlzUFUwbzc3UjlDaHpEMjk3czZVUEdFbHJpQkR2LXRDRFFGYXlNRXNMeWxoZ3hQMEttbEczTFhtQmIteXd2aWVPOVBWbVU3TnZIQ0dlcEZzVTFMd3NabnRkSWZoQUpWRXppMThydktEaUhBSUlTZ045LWJLMTV2ZjFpOGNzNm9mMGRudDRyYWRmb1pvR1hla2VoUV9RdHJHRXNPdFNxRi10NXpCVXlCSjJMeGlfd0VyV3ViV3hkdk9YNjc5WVduaHdpbnR2aFZZbnpGTng3YS14c3hqelVXR3dCSFowTjllN2VnUjNjRHhqdjBlNzMzTTVBdUhmU3I3djY1S3hITkxQMmVXS2QydkhlQmRVWjlOdkdYamhxTno2eWVfNzFibUpjMW9fQWNiUHRKTGY2d2NhN2h4T05HakZla0dxM1Z1b1FOc2lnQkVhRkxwb3ZUMHllNkVTOTdkTWRPcDFjXzRTZF9WZ052U1NCMGFPYW1zY0lsMjJaM1JzczlZSkt3WkNlbEx1dkhCdTZtQXlOaUFTbEpXZFRJenNQR3hMUV9GclBJX2x1d1p4dG9HaDZTX0FNWW80NDBqS0RmbW9CdzQzTUJiMjNVTXhJWU5DMHY4THdXUTFuUkdhU1hzVDI3Uk14ajhCY25UTkRWWjN0SGF4WlNuRTRuRVFuQnRyUWJnaHpCdjBLSTRUbDVnRnp2Skd3TnZQakExcXl5dGFHTGU0aTNzeWNoSVRjY0VZWEt6ZkQxVmRKQWFQVWRtSFV5Z251NzNkNjhOcWk4VVQ4cWNaRVFlcU5tMnZ6cFhZUU5xb2ZwTmdBYnhBaWJXOWJXejJBUG0xNndDYU1Ka0VRSkQ1MlF0cmQ3WjNvQkMxazZfZVF0YlNjZGlKWUxlN1NRcFlWZGUyMUZOdDJGaXBIbDc2ZnJ0a2lwb1R4VHEwbHMwWjEzY05ETUF3dlc3eGgyN0ZqS2JGT01SN0pUMkVCMkpaVjBmcDd6d2hXSHRZN3R1NTFSYnQtM2E2b2s5LTZvRnUtdlB0Nm5KXzVZTTRpSjFmbEZNZWN0aU9UNThHQ09BbGNfZ0JhRU00d18yQm1pN2xadzlsOEx3X2t1WjdRdEpyUDQxWjNyLTY0QlBiTHJPY1NKT1hsN2xzMGZyc2MyeFlBVFdVbktpUGxqdnJUU3hTSDFwWi1va0FleDd2Wml0RjlHTUh4dFB4a2hGd1B4UUNhNkN1LXdscWNGYjJSRHR1YlBuWlVNV2VLYS1ud3ZUcjFIVFFKbVBuZHctOWpFUmo0b2tLb2ZudnJLbHhZNDVPU0ZqdDhoS0dwM2RTbjJ6emV6RWx5V0hFWnhla1V5ZXdVR1YybnFhWU83UXpvamdMM3hJbmoxMXRSSzVDVF9iQXVLd3BoOC1FSDMtWmJ2R3FURW45eXNIQ3Zsbi1PODRiWUlqYnBZdzdRLTRYWTkxVmJlOXJrSDV4M1UyZnZyeEdlQ241Wkk2WFBzVlBycGdXTy1DT0lBOWV1Q0RzcHB0alVfbUFBc1QwTVM0VFM1bVdkcGhBdm5xS2VaQS1tQ0FYOERjQXVieTkzMmdRUEp3SUFZaWJKNE1JVGQ0OXhkbzFQZjd0Wm5oME5vRFA0cjJ4R2ExSW1nVXE3SkhiYy1jV3prS1g1OVNxUzFSOGlTaFVGWWlCVUQwOGFoNFVLcjZWbjF5MWdaNUJWd043bU9Ub05pV3d3djdvaEp2YUtsSkJFQnNvZEs5Ti03ZXp0YjJ1STZjaHBxcXVoRkhTeGlZQ29KclhLWEhHQ0VzdC1Id1AzRmFPdXoxVTIwRFNHQkE1dTd3cHJ5U1k1Y0dZMzhmcVFHYzFqU21FU0dZVzdTNWxXbld3SEh0ejlEVjljZ1BnX3dXQm1LczkxVGJrUWtBOTZLbjljeXh2ZjEzamtwT0habUs2ZFBCZzNOZHQ1Vm0xTk9WSllYWVM2T3dzeThUVW54SnkyMjVFMklSV2xNU0E2bDBySWFVZXh6V1FSYWFDZWsteVJTMGwxZmJXME16V0w3bDNKRWxCNjk2bjM3NGlmR2dsb3h5RW1JTUl3TzF3QTRfa3Y1Q2RVSjk0Nk9OT0wzc3ZUSzBod24xZjZ3SEppT1lQYlFUTXp3LVdNR1p0RHRSM1hjNTRQa013LVhzWUE5RkNNMkxEOElDUGE5LThwV1hpNmZzWlpGVXVvcXpzLUNLaUREVi1IRXVpYnRGcVlXeHNfeV9RaHdIRHpCMjhZNHptUTNpQXdnMUZmNjFSUGNHQnlFMVdTeU96c0NyQkpRblE2ZHBKYW5MLWRHUmVPc0pENEVoWW42Rkk2QWhaNjE5NnBfV2pEWFl3Z2YyWkVsZWRKS25EeFlWZFg4NzRwdy0xbEFKNGVpZ3JpS1ZxVENzckhXWkhFQnVrT0FaNlR2bmZWenlqcTV5TnpqUWR3UzVXMlZKMDRZcy1LZDdmcDM0NE9GUDBtaVpONkNWeVJOQ3RyTEJZSVpQbmdXRVktUDRBOUhiXzN5VWdyX3dSTlQ4ZlE1Qnl4VnhwRjVSVFdudi1pWTNXSWQwaFMxa2sxb2x2WEhPa1l6Z3hsSW5zaWtLc1Z0RVdySVRURE1iNGJlSUNzMnZVTkxHNnJyZ0hMRUszY0RYOFRjaGc1YnE4QXYydS1uZm5vQ0syV0JoSDhWS0lWT2Y1ejBtY1kxY0NSb2Y0UTZXNGRQeXM0RFV6S1JXS0x1T0RCYlMtYzdxTlNuN0M1c0hVR0dRLVdrNnlnUXZTTTk4SDdsOG1BckRNdXQ5YzUzZk1FNVlHOTRUanlGemdsOGNxdVlCQVBqYWVQdldlOFdYNHBKb2NUZnVzdjlZMklfY1hNQktEbVc4WHlNRTFPaEhDSzBXbTJORGlBem5nX2t6ZmlFYTgtSThXWUJ0OGI1Vk5QQW85bm55TFJfNXRCRkdGV2NoLTJkYUxGQnR6S3NUQkxRZm5pQ2tVdXItQUdVUk1XN1FmRE1vSmR0a3lCR2tmRFVheXlBYWQ5ZEpfSE1hZUxDaVE0UWhpRnpNVHF5ZzYxQmwyXzkyMi1PY09HU1BSRElXeFNZRWRfUWtKb29mN3ptXzR1bWRVOUVBRk5vYUxxcERoY2lCa3NfNEhUM1diVXAzQ25jb3phd3JfZFlRRTVYOXpIWS0yUl9WdzZXVTZMdTYtaV9jNjBmQXZEX2lISklzU3d0bnF2WVEtenl3djVLNWJXUFdyV2ZnMzBrMV9sbFNsazktYjJCNUZmWVZBUUJsMkRaVG9VdlJzaDVZVHhiYm5EbGFzOEJVRE1XV0hSSEotZF9pZUNad2VIbGdWVkktT1lWV1NCLXAtSjk1akZuVmJnUEdiVjJSSE53US1IdkNrRDBpZElDTklEY2h4UnFGZUQ4Z2dFaTdfcnd6N1d1ZXpZS3V5aFNHa1hhVWMtbmUxdHRrRmRsYWJ5SEt1b1FJWDZ2Snp1cEpjWUo1OEMxd0kwUXBIcjY4U3poekpjMjBUVGk2VWc3T1FtVHpncy1JNDVKVGFuSW5NdHk0MmlubjdqU3daWXQtMERWTXZPZ2RZeEVVRk9UZE5vWmFWMTI0QjdfS0c3bGxmY1o4TXUwNkR3M3FXWklUSExpcmZhZjhnU0tNRm41b1dfVjdCSWJXR2xiOTg0QkNjRExTOXRuaEllQnp5akRUcmhFOXZwdDNtNnJaMGpjcTFjdEVkZ0xFM2NwR0ZYX3lHOEJoenVKSk9jNTNyWkpydVY2TVNzSTlRYllNd0pUcmJuLXdMYVN0ZWx5b0JTUVl3NndDWmVxMGwtQ2VxX1kycExhQVkxb1JRajN1LTBrVHlEcXl6N2lSaTJqcXN4TW9sQTdmTE5USEZQbi0tNUNZTnB0c0paM2tlSjRINmdkc1phTHFvMTFYZ1hnWFJVcEFrb1BYbGJhdU96LWQzUFpNdXBUaGJZNF9Obi1Va3RrdGhYTV9IbTQ2S2JkQkFrY3J1UGhiRTZMMDN3OGVSaFhBdU9ZR0ZvamZlZFdQZ0R6YjZuQm1vSnhudHZ6UjNuZmliYWQ0M0VXZ2RmMThkQVBncHhzaTVuWF8zUElfaW5qSVVHdlh1aGl1TDVvOW9TOFpCQ0dsaGdWWnFKN1hMUzFIREJjVnhHT2hCUDB5b1ZUTXM0cFZBaWl0Tm0wVFRrU3hPT0RNQnBZRFFCd1dURWRGTFdMbkNGWVQ1a1RjUENoeGkwZnFTRUstXzJkemNCNXRxWk54U203T2oxSGpGMGUtZENUdU5TcS1xNFVRQXptQWgyNG45WHBlRE9Ea0VULTdwZGxxcGZXZ1FEU3NMV0U2UDdYZWNyR2R2N3hJaVRoVEZ6R0FTVnZ0QnJrLVRISVRuRURhWkZTaVBieTZPcUJlMG5wRlA4bzJxZHNNSnZmTnQ0Q1FvTVpPRlJ0NEk2cWpVbEtBcm92Q1c4eDBmYVdFdVpGd3Rjek9jNS1pOUt2VFdhcFhzVlFOR0NrMHY0UTFmQ2x5cDVpbzdCUTVvXzFWOHNtUDBITlBSMTZXalVGazE2a0N6WTA3YVpocjhNdUZ1cE9WdGdiR01WRWlpQkNQMjZ2TUVfeENOSDVmVE9uNFM1a2xKVFcya0VZb05VRldhYVJOUXdkajF4bkk2Q0hZSXNSbDZMRkFENVJLOGlMYWxCNE9fd1VOdVRBYVkzbE5xUVVCRDNtM25FNUE3TGx0eVA2M3JoR3pHdHBXOGVvOXphNFNiTl9QbHFMMVdRY1VnTWxreG5PcTNqRFdiQnJic0RUekEwN3pRTVhUTEhKMEhSMHQ5RG5ONkwyVXphb2VYNmtUV1VteU54WUNfUHY0aHhfRGVoYjVnS2ZSc3Vha25HSm85b0R0TDNkcHViZzV2ZS01WWdhZ0pjWVR1T1laLWsxdUNnYzZlLVdjWVNGdndfY0YwMDdmR2xnLXFkbW1vM2dZeVJxT1dkT0FDT05iUFFvaWxISll4RHhCTldqOGg1Qi1hUENxejJTX0hwU3JwUzF2QzJIeHd3bnpSXzJSenJFbkNHUElmSDJYNVhEczV2c3FYOFN4Y3hTVmdKOVBEbTlkR29HOG1GT25YejVLWDFobWI2eTBoSzhhZFNVWnoyQXFKYzBQVkszWWVJcHZLblQyY19mclNocXJzU2tDR29VblV4NkpMWHhBQVdSOUJBVGo5N1FlX0paU19hVTZvZk1yNFlYdGdlYUNaY1JSNEQ0X194TWV3ZGxMSUlJUWFZWW5MaFNFUVBPaUJFYnYtQ1RaeUtVdTFidFYySVA4aWU0YmstOFB1Vi00RVFlM3VwN1hMb0lFMmNHbUFIYmtLTFFudzNiSldqWWo5Vm5mazFRZEFMdnJpUnBpRnotSGRlbVUycUxsMVl1WE9sMUZuRVFEaFFTRUtfbS1CTHNEZ0FtUk10d0FFMGhhazhHb29JSDZfQjEyZHF4OExGSUR5TV8zdWwwWkNNaVg4LWExT05xVzhRanhoTUhNTHhTZWQtQTJtOXZnbGVuaXR6R1RLUUVUcU9yOElkOF9xSDFRWE9GR2JCeXZ6eVJWUEw1UEViQUY5WFM3V2FMY3BTSGw3bG1HRngzQ1JOcldxdGQzTl9OMHZWMlpDdFpFYnJMcm02YmlQMmJLM2czLTZmSHdjdVBibmk3cGdnT0ROd1VHZkVLVnFtT1RYTlFwYTJ1eHZwd0c4WEowV0tUVVF6RXhDUkVKcERRcEFnbjYwNUlDWS1CS0xqaXNCRDI4U2NiamF5LWR6UnhmQTRxVVFYTl9rS3RJOUs2U0o2RmxCV1NmdmRJa21OWEExZF9vdGRIRFdNZ3FYUXB3YkdXazBhMFpiUWx5SllpWWd0UHpNNHBxWk1tVkVNYmkxMFpQUFE0Z29YZzFlSUVFNkRoWmZEMGFFd3hvLUN6TXBYU1lHd0FNY1VxWXhZZ3FmV0NXbkQ2eFZnUGo1ZHpUR1YwUVluVGxCQ0NnTDZMd1dxVGdqYzZiYkU4Z1Z6cGlRVU9Mck40NDk5UmNJelFwMk1GTFNPUUl2aGVsSllCWVlwRGNYODdNd2VjeVphTE5UVjFKM2ZPeUYyYnI4N2tzLUtqMEM1YjF0ajdpemdITUtnT3ZBZlZjYkEtR2k0VXFfeVhqNFFaTGloaThJSmdHd0VVU3hPaGU0T1dQaWlZS1EyUG9pQlhSdmlqaTJVQXd0UHR5X3hDekJ1NExKMU1mQ1REc2JnWS10Y2FldVdfYW9CT0I2Y3RZYU9jMXBrT3ZDX1ViYWphdktUdHVWcHMxUTBfZkFubjdCYVM3VHpTRXNhVjZ2cExIb2g0MVp2emQ2VGpzTzVlQi1ldWZzZDhUMUpxZnBLeXhYQUJRSTVPRHk3SW1mZW01VEpsWjdqY2diT0lpLWxYZS00R1ZjSVRoSkpPOVNaSDl4c0RJSnp2MU4yaGEtZWd2ME9Za2R5b0xOMEFrSzgyd3VEZlNDcV82Y2pGUzc1M3lVZHJ5Y0JsYVVOczFIVERHa3hJdUNiX3NsVjdNdXlhV1V2cEg5UW9BTVNuRm4xcUpQMmJLbW9LM1RfLTB3RzBPUzZZd2JQNUh1QzZlV0wwdDVpUENlbFRiNS1KRnlQZUhCY1FEb2xyY0UwbjZ6NUhEcHNzU0xndHZYRnNoekh2bmdjXzk4UjlSNTNCMlZsTURQX25pYnVVTUk4MTdUaWNvV1puUUhESExqVFBWNi1uR3hHMjFMcjhMUjRrWE12VmpBSXFwZzE3bUNncjg3U0luU0tDSDN5RlBCeVRyTW9oWVcwX1hCOEJJbVBwZlRLZ2N4by1IU0N3WFJWaXNkOHdPWUZfeGpGcVI0Q19xVXQ1bWVfQTVlTEdGUTFHOHd4Mk5FVUEySWI2a1hLZ1NSZE9WMEZqdHlfdGlIRlg3LW1qQ2IzZVdhUW1aa3BkNVZjSHZmT0d2S3JQMmRTWHlYemlnSElRalc2X1NfdG1ScHVWXzJsSGdaTE5LRVV3dXRidUJtaHpQeDBIRlJZUE54VGg4TnRjVVpUbmhpSEExaFZlOVNsS1hFQXBXRV9fYnJQbXJ4Yi1Qd1VzTG9WY0ZvMkJicW1zNjZxaURnUjNXemtKLXFpclZsaHM3NlBWRE8xaUJLdHlCSDdpLTJ5OG5qY2UwN1dFLUY0b0tiLXhwR1RIT1VRdDJxdG1GR1hKeURxcUlveEs4MEJZb1hZd1BaWGpvdWQwSEU0cUNPSE90YS16S3VyY09MOGQzT01GNXFielFGLWZrUjA1Uk92RVU4VGszMS1pMUpkN3hHc0FMa3VDcVowckZYQ21jQTVaTzVuc2F0WnNxcVhlQ09VYzdidFpXbzZvbHUzc1JDVHZ5Q2RlWXR2RllHNnBtR2F0aHlKZGlzazBwT3BsMXdoUWU1dThMZk0yV2JIbG1mSzVjQlI0ZlhEVDU3MmxkOGM5c3llLXZiYUc0S1VCY2ZvT1JyMklpRTNlRzdCN0FCSTcyRjZ4N2pRR1VYRG1aLU9MZlh4Wi0xZGJyUmhvZ1dqT0RudUpBYTRtWnMyenVDMzBpOWZUMDRKdElpeTJFXzJFQ2lMWVd4V041WnViUnhZbmtlNTh0bW04ZHpXTDloaTlta081ZkhwUjR3eVRYbFBOLTZqTy0xdm5PZWVMWl9EUlRDXzhFQks2WFZDTTk3WE9jSnhFUEtkWFh0MnNwVC01Rmx6T3Y2WHNIV1pDVzcxaE9NcV9qb3NBLXVqZENUdm56YVk3MkI1d1F5RjlsbDBGNVdtcnMwc2dpNW5MWU9nMXFaQ01ydDRKMUdkcEpzdXN3QVFwdm1DQVhuLTAydk9XRnRSX0s3QXkwOTFkQmxkNEZTVXBQTzhVbUJuNG8yTWViSHBtclozSjJqa0VLdkpmMHAxaFp3MzNPNl9GRlVpM1FxMTdXUmJUNEExVUZ6U1VpNU42VXJjWTQ0Z2FkMnBPNi1xVFJuMXljTUE4U29FVm9SVWJaczJEZ3FyLU53RVMySmsyRzl4c0dpWkhla1VqdjlyWGw5c2tWbGI5V2RYSTBoLXJ5TzFfUU0xUUNHYldsX2xCaEdBdlZjMExqQ1I3d3lpeG1BRHVJMHc3Wlc3NHlDQUpKdUtJT0xyNTd1bzYxQmYzLXFYWXRIWDh2c0xPamc5N1IyTExHeUpKMWhVcVZlQU5sa3B3LkhsQXBVUTQ1YTdxRDRiRUVJWlRmR3B6b3lBNi12UlZQVkhlV000eUZVV3c\"}", - "status": 409, - "response": "{\"error\":{\"code\":\"Conflict\",\"message\":\"There was a conflict restoring the key 'https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/0f21985e3d2d42ed899ba2b76e892011'. This can happen if either: a second key with the same name was created after the first key was deleted; thus trying to restore a key whose name is already in use. To fix this, rename the second key to something else so that the restore works. The second probable cause of this exception is when multiple operations are performed in parallel against the key. To avoid this error, perform operations against a key in a sequential manner.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "661", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:43 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "409", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "44f94d1c-6a5f-4bc8-9dfb-c5a22de23946", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "f43da90f-8bc0-4780-a9a3-953aeca447a5", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/restore", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"value\":\"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUl5WVdabU5tRmhNUzAzTm1Ka0xUUTBZVGN0WVRjek5DMDJaalZoWkRCaU5XRTRPVGdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQzB5TlRZaUxDSmxibU1pT2lKQk1qVTJRMEpETFVoVE5URXlJbjAuY2lEMjFBc2YzaFZwVjc4dVFMV1RsUzdxZ1c5Wkp2UWhWZ3lGbzF2Y3Z5enZGdDFTUnlJVXdCekI5OTJsOVNhUF90REdXbEx6QURXTjFicFJweVp2STlBeHlIdEFkTWRxSTB0eGhLdHhGMmNOXzEtUGRVYUt4MWowRllKb3Mybm5UcjEwMnN6VGR1ZTdHY1dnb1BUTHRuc3llcVhCdkdVSGcyVnZOdjh0V1JQQV9WTjRKWWtfS2pqdGc0WmF0VW0tUk81VnNPZW13RXBaNU9NVndjRG8yTkd2emdVVkFERGtvc3dSYzZ3RVlxU0NHbkEzWkxtVnlJRVczcjZYd1Z3SWx2TkJhZUxGOXY0Ml8ycjUtc3VneDA0WUlZRnc4a0tSZEp5OUI0ZU9KXzRHa0stZm50X3Y4UFFlTEdGaVlkRkFZUVc2Q1pkVEh6akZFRG9QaWphYWx3LmxCRHNtSWt6MU1fMEpfMGdCakMxLWcuajNYZVQ5TlM5LVAyWjhPQTFlUW5TSEhvem01N0czaXhYeHRGWUtBU05WSTM1cFBPbUswdEVJMzltY0FRLUZtRGV4cVdWbUw3QWxYWUk1M3ZTaXEzWGtOMG5PLWdvSkhsdXNXM3BVemthRG9PWlNxY25QV0FxVXFwZi1zZVZCdkJqMXRBb2dsa2dTZ2psbUk0UlQwVFJJbkYzaEhXd3BIQVRzbWd6WnMxMVlpdlZ4RTlpbTkzNXplQVdaRXFRRFlncGJNZDdLdDN6ZlpJLTN4M05YelpZXzQ0NUptNGd0bzdLTDNEbENIbFpSU0lnZnhQc3Q3VW1RWC1FNk5oWklNWUlfMzNRNkdtTFBVNTk0QVozaERBcWlZXzFQeFdqdV9KY3dWcVdqLVE1TjVqWk5sYmo3UGw2MjhXMEVpOUF4R1FfQkFrLWJpYngxbHM2WWIwS05Oa2J6d1pPdjF4ZVUtYTRCVGFGZWNWS2QxR1dBM2pzZV9PSjNYcEV1ZlNzSEU1TktQeF82azVUMnFLMUliV0JHd3ZFb1R6NjFWZEpseGZacXdtczZjNGU3cHE0MHhnQU03M0xNakVqdlcwYjAwbHFHZGxBc1hEcnZMMDl0ZlRrRThIaHFfTlIzVFpGMFBtSGZrLUxRNVpMVlRLSFF3TkxtVVR2bkFLeWY0UFk0b1hCbmJzWm1OdDdaalFOUTFMOE1FNzJfQ0dPVmxuZjEwOWhDZHpud2dNWjh0cjdYNTVFbHIzUVdoR2FXSTZlc3FVZkNSbnZHZk80T1NjTU1QNlZ2UGtUdThMb3hKVzZ2X3hKZVpJUWlEcEloVnFGcE5UZ21PQXN3WlJYcmZhQ0ZqTkE0cDVfVUp0aW91aWUxOG10V2ZRQ2lyeGhHNTMwTFJHWEZLTkdkMzVpbkw4WklnUnRJQmtRR3NNZ3Z2dDZ5NnJiam5JV3ZEYmd1S0F5d2lmQk4xWm5pSHZYY0ZhUkYxZVJaU1NhM1BidkVSTHhoR3VmeGZfQzVYQjVzNXk4M2ktQkUtUEVFN19Ub0Y2YU1LWkU5aExXLThOR21XUFgxSVBqeG5OUFpNZE5wM3dkaTJyekJxLW9IMHlVNHFZX1hJZFIyYjU3STYwY2J3TThrS1NKcWhnS1pyRW4ySHR6cG5lWF9pei1jSHlnaHBSb0xQd0dMTWd1V0RqTUhOY0duZlFISFZhUER1cl85S3VsTnNZSDNLR3R1YlpTZUt6ZHM5ZWxrSGRJMWFuVG1lVnphZTFaZXRLOW81R1dQSEx3bUN5RGRXWlBYbDNRN0E3NEl4YkNoUFVvd0ZVOEVGbnJ6Yi16clBDOGNMNTBtZ0dIQVdwMDk4WEltSFZSZ2l0QWoxbXJycWhuejZYMjNqZkZVWGtfT1VDQ25KUC1BX0UwTXQ5dkg4dTJUb0hURnRqTElIQms5bzlyTEU3a3FWek9YZXFpOTlNekFhZUVEUnRLSF9FMzdxc0tSQWRORlRHUDVveTJtMXd1MTkwREdrQzU5aW9Ld2J6SkNOVjdOdmJmSGFrc1MzQmlzUFUwbzc3UjlDaHpEMjk3czZVUEdFbHJpQkR2LXRDRFFGYXlNRXNMeWxoZ3hQMEttbEczTFhtQmIteXd2aWVPOVBWbVU3TnZIQ0dlcEZzVTFMd3NabnRkSWZoQUpWRXppMThydktEaUhBSUlTZ045LWJLMTV2ZjFpOGNzNm9mMGRudDRyYWRmb1pvR1hla2VoUV9RdHJHRXNPdFNxRi10NXpCVXlCSjJMeGlfd0VyV3ViV3hkdk9YNjc5WVduaHdpbnR2aFZZbnpGTng3YS14c3hqelVXR3dCSFowTjllN2VnUjNjRHhqdjBlNzMzTTVBdUhmU3I3djY1S3hITkxQMmVXS2QydkhlQmRVWjlOdkdYamhxTno2eWVfNzFibUpjMW9fQWNiUHRKTGY2d2NhN2h4T05HakZla0dxM1Z1b1FOc2lnQkVhRkxwb3ZUMHllNkVTOTdkTWRPcDFjXzRTZF9WZ052U1NCMGFPYW1zY0lsMjJaM1JzczlZSkt3WkNlbEx1dkhCdTZtQXlOaUFTbEpXZFRJenNQR3hMUV9GclBJX2x1d1p4dG9HaDZTX0FNWW80NDBqS0RmbW9CdzQzTUJiMjNVTXhJWU5DMHY4THdXUTFuUkdhU1hzVDI3Uk14ajhCY25UTkRWWjN0SGF4WlNuRTRuRVFuQnRyUWJnaHpCdjBLSTRUbDVnRnp2Skd3TnZQakExcXl5dGFHTGU0aTNzeWNoSVRjY0VZWEt6ZkQxVmRKQWFQVWRtSFV5Z251NzNkNjhOcWk4VVQ4cWNaRVFlcU5tMnZ6cFhZUU5xb2ZwTmdBYnhBaWJXOWJXejJBUG0xNndDYU1Ka0VRSkQ1MlF0cmQ3WjNvQkMxazZfZVF0YlNjZGlKWUxlN1NRcFlWZGUyMUZOdDJGaXBIbDc2ZnJ0a2lwb1R4VHEwbHMwWjEzY05ETUF3dlc3eGgyN0ZqS2JGT01SN0pUMkVCMkpaVjBmcDd6d2hXSHRZN3R1NTFSYnQtM2E2b2s5LTZvRnUtdlB0Nm5KXzVZTTRpSjFmbEZNZWN0aU9UNThHQ09BbGNfZ0JhRU00d18yQm1pN2xadzlsOEx3X2t1WjdRdEpyUDQxWjNyLTY0QlBiTHJPY1NKT1hsN2xzMGZyc2MyeFlBVFdVbktpUGxqdnJUU3hTSDFwWi1va0FleDd2Wml0RjlHTUh4dFB4a2hGd1B4UUNhNkN1LXdscWNGYjJSRHR1YlBuWlVNV2VLYS1ud3ZUcjFIVFFKbVBuZHctOWpFUmo0b2tLb2ZudnJLbHhZNDVPU0ZqdDhoS0dwM2RTbjJ6emV6RWx5V0hFWnhla1V5ZXdVR1YybnFhWU83UXpvamdMM3hJbmoxMXRSSzVDVF9iQXVLd3BoOC1FSDMtWmJ2R3FURW45eXNIQ3Zsbi1PODRiWUlqYnBZdzdRLTRYWTkxVmJlOXJrSDV4M1UyZnZyeEdlQ241Wkk2WFBzVlBycGdXTy1DT0lBOWV1Q0RzcHB0alVfbUFBc1QwTVM0VFM1bVdkcGhBdm5xS2VaQS1tQ0FYOERjQXVieTkzMmdRUEp3SUFZaWJKNE1JVGQ0OXhkbzFQZjd0Wm5oME5vRFA0cjJ4R2ExSW1nVXE3SkhiYy1jV3prS1g1OVNxUzFSOGlTaFVGWWlCVUQwOGFoNFVLcjZWbjF5MWdaNUJWd043bU9Ub05pV3d3djdvaEp2YUtsSkJFQnNvZEs5Ti03ZXp0YjJ1STZjaHBxcXVoRkhTeGlZQ29KclhLWEhHQ0VzdC1Id1AzRmFPdXoxVTIwRFNHQkE1dTd3cHJ5U1k1Y0dZMzhmcVFHYzFqU21FU0dZVzdTNWxXbld3SEh0ejlEVjljZ1BnX3dXQm1LczkxVGJrUWtBOTZLbjljeXh2ZjEzamtwT0habUs2ZFBCZzNOZHQ1Vm0xTk9WSllYWVM2T3dzeThUVW54SnkyMjVFMklSV2xNU0E2bDBySWFVZXh6V1FSYWFDZWsteVJTMGwxZmJXME16V0w3bDNKRWxCNjk2bjM3NGlmR2dsb3h5RW1JTUl3TzF3QTRfa3Y1Q2RVSjk0Nk9OT0wzc3ZUSzBod24xZjZ3SEppT1lQYlFUTXp3LVdNR1p0RHRSM1hjNTRQa013LVhzWUE5RkNNMkxEOElDUGE5LThwV1hpNmZzWlpGVXVvcXpzLUNLaUREVi1IRXVpYnRGcVlXeHNfeV9RaHdIRHpCMjhZNHptUTNpQXdnMUZmNjFSUGNHQnlFMVdTeU96c0NyQkpRblE2ZHBKYW5MLWRHUmVPc0pENEVoWW42Rkk2QWhaNjE5NnBfV2pEWFl3Z2YyWkVsZWRKS25EeFlWZFg4NzRwdy0xbEFKNGVpZ3JpS1ZxVENzckhXWkhFQnVrT0FaNlR2bmZWenlqcTV5TnpqUWR3UzVXMlZKMDRZcy1LZDdmcDM0NE9GUDBtaVpONkNWeVJOQ3RyTEJZSVpQbmdXRVktUDRBOUhiXzN5VWdyX3dSTlQ4ZlE1Qnl4VnhwRjVSVFdudi1pWTNXSWQwaFMxa2sxb2x2WEhPa1l6Z3hsSW5zaWtLc1Z0RVdySVRURE1iNGJlSUNzMnZVTkxHNnJyZ0hMRUszY0RYOFRjaGc1YnE4QXYydS1uZm5vQ0syV0JoSDhWS0lWT2Y1ejBtY1kxY0NSb2Y0UTZXNGRQeXM0RFV6S1JXS0x1T0RCYlMtYzdxTlNuN0M1c0hVR0dRLVdrNnlnUXZTTTk4SDdsOG1BckRNdXQ5YzUzZk1FNVlHOTRUanlGemdsOGNxdVlCQVBqYWVQdldlOFdYNHBKb2NUZnVzdjlZMklfY1hNQktEbVc4WHlNRTFPaEhDSzBXbTJORGlBem5nX2t6ZmlFYTgtSThXWUJ0OGI1Vk5QQW85bm55TFJfNXRCRkdGV2NoLTJkYUxGQnR6S3NUQkxRZm5pQ2tVdXItQUdVUk1XN1FmRE1vSmR0a3lCR2tmRFVheXlBYWQ5ZEpfSE1hZUxDaVE0UWhpRnpNVHF5ZzYxQmwyXzkyMi1PY09HU1BSRElXeFNZRWRfUWtKb29mN3ptXzR1bWRVOUVBRk5vYUxxcERoY2lCa3NfNEhUM1diVXAzQ25jb3phd3JfZFlRRTVYOXpIWS0yUl9WdzZXVTZMdTYtaV9jNjBmQXZEX2lISklzU3d0bnF2WVEtenl3djVLNWJXUFdyV2ZnMzBrMV9sbFNsazktYjJCNUZmWVZBUUJsMkRaVG9VdlJzaDVZVHhiYm5EbGFzOEJVRE1XV0hSSEotZF9pZUNad2VIbGdWVkktT1lWV1NCLXAtSjk1akZuVmJnUEdiVjJSSE53US1IdkNrRDBpZElDTklEY2h4UnFGZUQ4Z2dFaTdfcnd6N1d1ZXpZS3V5aFNHa1hhVWMtbmUxdHRrRmRsYWJ5SEt1b1FJWDZ2Snp1cEpjWUo1OEMxd0kwUXBIcjY4U3poekpjMjBUVGk2VWc3T1FtVHpncy1JNDVKVGFuSW5NdHk0MmlubjdqU3daWXQtMERWTXZPZ2RZeEVVRk9UZE5vWmFWMTI0QjdfS0c3bGxmY1o4TXUwNkR3M3FXWklUSExpcmZhZjhnU0tNRm41b1dfVjdCSWJXR2xiOTg0QkNjRExTOXRuaEllQnp5akRUcmhFOXZwdDNtNnJaMGpjcTFjdEVkZ0xFM2NwR0ZYX3lHOEJoenVKSk9jNTNyWkpydVY2TVNzSTlRYllNd0pUcmJuLXdMYVN0ZWx5b0JTUVl3NndDWmVxMGwtQ2VxX1kycExhQVkxb1JRajN1LTBrVHlEcXl6N2lSaTJqcXN4TW9sQTdmTE5USEZQbi0tNUNZTnB0c0paM2tlSjRINmdkc1phTHFvMTFYZ1hnWFJVcEFrb1BYbGJhdU96LWQzUFpNdXBUaGJZNF9Obi1Va3RrdGhYTV9IbTQ2S2JkQkFrY3J1UGhiRTZMMDN3OGVSaFhBdU9ZR0ZvamZlZFdQZ0R6YjZuQm1vSnhudHZ6UjNuZmliYWQ0M0VXZ2RmMThkQVBncHhzaTVuWF8zUElfaW5qSVVHdlh1aGl1TDVvOW9TOFpCQ0dsaGdWWnFKN1hMUzFIREJjVnhHT2hCUDB5b1ZUTXM0cFZBaWl0Tm0wVFRrU3hPT0RNQnBZRFFCd1dURWRGTFdMbkNGWVQ1a1RjUENoeGkwZnFTRUstXzJkemNCNXRxWk54U203T2oxSGpGMGUtZENUdU5TcS1xNFVRQXptQWgyNG45WHBlRE9Ea0VULTdwZGxxcGZXZ1FEU3NMV0U2UDdYZWNyR2R2N3hJaVRoVEZ6R0FTVnZ0QnJrLVRISVRuRURhWkZTaVBieTZPcUJlMG5wRlA4bzJxZHNNSnZmTnQ0Q1FvTVpPRlJ0NEk2cWpVbEtBcm92Q1c4eDBmYVdFdVpGd3Rjek9jNS1pOUt2VFdhcFhzVlFOR0NrMHY0UTFmQ2x5cDVpbzdCUTVvXzFWOHNtUDBITlBSMTZXalVGazE2a0N6WTA3YVpocjhNdUZ1cE9WdGdiR01WRWlpQkNQMjZ2TUVfeENOSDVmVE9uNFM1a2xKVFcya0VZb05VRldhYVJOUXdkajF4bkk2Q0hZSXNSbDZMRkFENVJLOGlMYWxCNE9fd1VOdVRBYVkzbE5xUVVCRDNtM25FNUE3TGx0eVA2M3JoR3pHdHBXOGVvOXphNFNiTl9QbHFMMVdRY1VnTWxreG5PcTNqRFdiQnJic0RUekEwN3pRTVhUTEhKMEhSMHQ5RG5ONkwyVXphb2VYNmtUV1VteU54WUNfUHY0aHhfRGVoYjVnS2ZSc3Vha25HSm85b0R0TDNkcHViZzV2ZS01WWdhZ0pjWVR1T1laLWsxdUNnYzZlLVdjWVNGdndfY0YwMDdmR2xnLXFkbW1vM2dZeVJxT1dkT0FDT05iUFFvaWxISll4RHhCTldqOGg1Qi1hUENxejJTX0hwU3JwUzF2QzJIeHd3bnpSXzJSenJFbkNHUElmSDJYNVhEczV2c3FYOFN4Y3hTVmdKOVBEbTlkR29HOG1GT25YejVLWDFobWI2eTBoSzhhZFNVWnoyQXFKYzBQVkszWWVJcHZLblQyY19mclNocXJzU2tDR29VblV4NkpMWHhBQVdSOUJBVGo5N1FlX0paU19hVTZvZk1yNFlYdGdlYUNaY1JSNEQ0X194TWV3ZGxMSUlJUWFZWW5MaFNFUVBPaUJFYnYtQ1RaeUtVdTFidFYySVA4aWU0YmstOFB1Vi00RVFlM3VwN1hMb0lFMmNHbUFIYmtLTFFudzNiSldqWWo5Vm5mazFRZEFMdnJpUnBpRnotSGRlbVUycUxsMVl1WE9sMUZuRVFEaFFTRUtfbS1CTHNEZ0FtUk10d0FFMGhhazhHb29JSDZfQjEyZHF4OExGSUR5TV8zdWwwWkNNaVg4LWExT05xVzhRanhoTUhNTHhTZWQtQTJtOXZnbGVuaXR6R1RLUUVUcU9yOElkOF9xSDFRWE9GR2JCeXZ6eVJWUEw1UEViQUY5WFM3V2FMY3BTSGw3bG1HRngzQ1JOcldxdGQzTl9OMHZWMlpDdFpFYnJMcm02YmlQMmJLM2czLTZmSHdjdVBibmk3cGdnT0ROd1VHZkVLVnFtT1RYTlFwYTJ1eHZwd0c4WEowV0tUVVF6RXhDUkVKcERRcEFnbjYwNUlDWS1CS0xqaXNCRDI4U2NiamF5LWR6UnhmQTRxVVFYTl9rS3RJOUs2U0o2RmxCV1NmdmRJa21OWEExZF9vdGRIRFdNZ3FYUXB3YkdXazBhMFpiUWx5SllpWWd0UHpNNHBxWk1tVkVNYmkxMFpQUFE0Z29YZzFlSUVFNkRoWmZEMGFFd3hvLUN6TXBYU1lHd0FNY1VxWXhZZ3FmV0NXbkQ2eFZnUGo1ZHpUR1YwUVluVGxCQ0NnTDZMd1dxVGdqYzZiYkU4Z1Z6cGlRVU9Mck40NDk5UmNJelFwMk1GTFNPUUl2aGVsSllCWVlwRGNYODdNd2VjeVphTE5UVjFKM2ZPeUYyYnI4N2tzLUtqMEM1YjF0ajdpemdITUtnT3ZBZlZjYkEtR2k0VXFfeVhqNFFaTGloaThJSmdHd0VVU3hPaGU0T1dQaWlZS1EyUG9pQlhSdmlqaTJVQXd0UHR5X3hDekJ1NExKMU1mQ1REc2JnWS10Y2FldVdfYW9CT0I2Y3RZYU9jMXBrT3ZDX1ViYWphdktUdHVWcHMxUTBfZkFubjdCYVM3VHpTRXNhVjZ2cExIb2g0MVp2emQ2VGpzTzVlQi1ldWZzZDhUMUpxZnBLeXhYQUJRSTVPRHk3SW1mZW01VEpsWjdqY2diT0lpLWxYZS00R1ZjSVRoSkpPOVNaSDl4c0RJSnp2MU4yaGEtZWd2ME9Za2R5b0xOMEFrSzgyd3VEZlNDcV82Y2pGUzc1M3lVZHJ5Y0JsYVVOczFIVERHa3hJdUNiX3NsVjdNdXlhV1V2cEg5UW9BTVNuRm4xcUpQMmJLbW9LM1RfLTB3RzBPUzZZd2JQNUh1QzZlV0wwdDVpUENlbFRiNS1KRnlQZUhCY1FEb2xyY0UwbjZ6NUhEcHNzU0xndHZYRnNoekh2bmdjXzk4UjlSNTNCMlZsTURQX25pYnVVTUk4MTdUaWNvV1puUUhESExqVFBWNi1uR3hHMjFMcjhMUjRrWE12VmpBSXFwZzE3bUNncjg3U0luU0tDSDN5RlBCeVRyTW9oWVcwX1hCOEJJbVBwZlRLZ2N4by1IU0N3WFJWaXNkOHdPWUZfeGpGcVI0Q19xVXQ1bWVfQTVlTEdGUTFHOHd4Mk5FVUEySWI2a1hLZ1NSZE9WMEZqdHlfdGlIRlg3LW1qQ2IzZVdhUW1aa3BkNVZjSHZmT0d2S3JQMmRTWHlYemlnSElRalc2X1NfdG1ScHVWXzJsSGdaTE5LRVV3dXRidUJtaHpQeDBIRlJZUE54VGg4TnRjVVpUbmhpSEExaFZlOVNsS1hFQXBXRV9fYnJQbXJ4Yi1Qd1VzTG9WY0ZvMkJicW1zNjZxaURnUjNXemtKLXFpclZsaHM3NlBWRE8xaUJLdHlCSDdpLTJ5OG5qY2UwN1dFLUY0b0tiLXhwR1RIT1VRdDJxdG1GR1hKeURxcUlveEs4MEJZb1hZd1BaWGpvdWQwSEU0cUNPSE90YS16S3VyY09MOGQzT01GNXFielFGLWZrUjA1Uk92RVU4VGszMS1pMUpkN3hHc0FMa3VDcVowckZYQ21jQTVaTzVuc2F0WnNxcVhlQ09VYzdidFpXbzZvbHUzc1JDVHZ5Q2RlWXR2RllHNnBtR2F0aHlKZGlzazBwT3BsMXdoUWU1dThMZk0yV2JIbG1mSzVjQlI0ZlhEVDU3MmxkOGM5c3llLXZiYUc0S1VCY2ZvT1JyMklpRTNlRzdCN0FCSTcyRjZ4N2pRR1VYRG1aLU9MZlh4Wi0xZGJyUmhvZ1dqT0RudUpBYTRtWnMyenVDMzBpOWZUMDRKdElpeTJFXzJFQ2lMWVd4V041WnViUnhZbmtlNTh0bW04ZHpXTDloaTlta081ZkhwUjR3eVRYbFBOLTZqTy0xdm5PZWVMWl9EUlRDXzhFQks2WFZDTTk3WE9jSnhFUEtkWFh0MnNwVC01Rmx6T3Y2WHNIV1pDVzcxaE9NcV9qb3NBLXVqZENUdm56YVk3MkI1d1F5RjlsbDBGNVdtcnMwc2dpNW5MWU9nMXFaQ01ydDRKMUdkcEpzdXN3QVFwdm1DQVhuLTAydk9XRnRSX0s3QXkwOTFkQmxkNEZTVXBQTzhVbUJuNG8yTWViSHBtclozSjJqa0VLdkpmMHAxaFp3MzNPNl9GRlVpM1FxMTdXUmJUNEExVUZ6U1VpNU42VXJjWTQ0Z2FkMnBPNi1xVFJuMXljTUE4U29FVm9SVWJaczJEZ3FyLU53RVMySmsyRzl4c0dpWkhla1VqdjlyWGw5c2tWbGI5V2RYSTBoLXJ5TzFfUU0xUUNHYldsX2xCaEdBdlZjMExqQ1I3d3lpeG1BRHVJMHc3Wlc3NHlDQUpKdUtJT0xyNTd1bzYxQmYzLXFYWXRIWDh2c0xPamc5N1IyTExHeUpKMWhVcVZlQU5sa3B3LkhsQXBVUTQ1YTdxRDRiRUVJWlRmR3B6b3lBNi12UlZQVkhlV000eUZVV3c\"}", - "status": 409, - "response": "{\"error\":{\"code\":\"Conflict\",\"message\":\"There was a conflict restoring the key 'https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/0f21985e3d2d42ed899ba2b76e892011'. This can happen if either: a second key with the same name was created after the first key was deleted; thus trying to restore a key whose name is already in use. To fix this, rename the second key to something else so that the restore works. The second probable cause of this exception is when multiple operations are performed in parallel against the key. To avoid this error, perform operations against a key in a sequential manner.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "661", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:43 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "409", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "eda99da9-df70-4730-a502-58ece47551c5", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "321a41f3-ee98-4df1-bc48-48f23d4e7f37", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/restore", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"value\":\"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUl5WVdabU5tRmhNUzAzTm1Ka0xUUTBZVGN0WVRjek5DMDJaalZoWkRCaU5XRTRPVGdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQzB5TlRZaUxDSmxibU1pT2lKQk1qVTJRMEpETFVoVE5URXlJbjAuY2lEMjFBc2YzaFZwVjc4dVFMV1RsUzdxZ1c5Wkp2UWhWZ3lGbzF2Y3Z5enZGdDFTUnlJVXdCekI5OTJsOVNhUF90REdXbEx6QURXTjFicFJweVp2STlBeHlIdEFkTWRxSTB0eGhLdHhGMmNOXzEtUGRVYUt4MWowRllKb3Mybm5UcjEwMnN6VGR1ZTdHY1dnb1BUTHRuc3llcVhCdkdVSGcyVnZOdjh0V1JQQV9WTjRKWWtfS2pqdGc0WmF0VW0tUk81VnNPZW13RXBaNU9NVndjRG8yTkd2emdVVkFERGtvc3dSYzZ3RVlxU0NHbkEzWkxtVnlJRVczcjZYd1Z3SWx2TkJhZUxGOXY0Ml8ycjUtc3VneDA0WUlZRnc4a0tSZEp5OUI0ZU9KXzRHa0stZm50X3Y4UFFlTEdGaVlkRkFZUVc2Q1pkVEh6akZFRG9QaWphYWx3LmxCRHNtSWt6MU1fMEpfMGdCakMxLWcuajNYZVQ5TlM5LVAyWjhPQTFlUW5TSEhvem01N0czaXhYeHRGWUtBU05WSTM1cFBPbUswdEVJMzltY0FRLUZtRGV4cVdWbUw3QWxYWUk1M3ZTaXEzWGtOMG5PLWdvSkhsdXNXM3BVemthRG9PWlNxY25QV0FxVXFwZi1zZVZCdkJqMXRBb2dsa2dTZ2psbUk0UlQwVFJJbkYzaEhXd3BIQVRzbWd6WnMxMVlpdlZ4RTlpbTkzNXplQVdaRXFRRFlncGJNZDdLdDN6ZlpJLTN4M05YelpZXzQ0NUptNGd0bzdLTDNEbENIbFpSU0lnZnhQc3Q3VW1RWC1FNk5oWklNWUlfMzNRNkdtTFBVNTk0QVozaERBcWlZXzFQeFdqdV9KY3dWcVdqLVE1TjVqWk5sYmo3UGw2MjhXMEVpOUF4R1FfQkFrLWJpYngxbHM2WWIwS05Oa2J6d1pPdjF4ZVUtYTRCVGFGZWNWS2QxR1dBM2pzZV9PSjNYcEV1ZlNzSEU1TktQeF82azVUMnFLMUliV0JHd3ZFb1R6NjFWZEpseGZacXdtczZjNGU3cHE0MHhnQU03M0xNakVqdlcwYjAwbHFHZGxBc1hEcnZMMDl0ZlRrRThIaHFfTlIzVFpGMFBtSGZrLUxRNVpMVlRLSFF3TkxtVVR2bkFLeWY0UFk0b1hCbmJzWm1OdDdaalFOUTFMOE1FNzJfQ0dPVmxuZjEwOWhDZHpud2dNWjh0cjdYNTVFbHIzUVdoR2FXSTZlc3FVZkNSbnZHZk80T1NjTU1QNlZ2UGtUdThMb3hKVzZ2X3hKZVpJUWlEcEloVnFGcE5UZ21PQXN3WlJYcmZhQ0ZqTkE0cDVfVUp0aW91aWUxOG10V2ZRQ2lyeGhHNTMwTFJHWEZLTkdkMzVpbkw4WklnUnRJQmtRR3NNZ3Z2dDZ5NnJiam5JV3ZEYmd1S0F5d2lmQk4xWm5pSHZYY0ZhUkYxZVJaU1NhM1BidkVSTHhoR3VmeGZfQzVYQjVzNXk4M2ktQkUtUEVFN19Ub0Y2YU1LWkU5aExXLThOR21XUFgxSVBqeG5OUFpNZE5wM3dkaTJyekJxLW9IMHlVNHFZX1hJZFIyYjU3STYwY2J3TThrS1NKcWhnS1pyRW4ySHR6cG5lWF9pei1jSHlnaHBSb0xQd0dMTWd1V0RqTUhOY0duZlFISFZhUER1cl85S3VsTnNZSDNLR3R1YlpTZUt6ZHM5ZWxrSGRJMWFuVG1lVnphZTFaZXRLOW81R1dQSEx3bUN5RGRXWlBYbDNRN0E3NEl4YkNoUFVvd0ZVOEVGbnJ6Yi16clBDOGNMNTBtZ0dIQVdwMDk4WEltSFZSZ2l0QWoxbXJycWhuejZYMjNqZkZVWGtfT1VDQ25KUC1BX0UwTXQ5dkg4dTJUb0hURnRqTElIQms5bzlyTEU3a3FWek9YZXFpOTlNekFhZUVEUnRLSF9FMzdxc0tSQWRORlRHUDVveTJtMXd1MTkwREdrQzU5aW9Ld2J6SkNOVjdOdmJmSGFrc1MzQmlzUFUwbzc3UjlDaHpEMjk3czZVUEdFbHJpQkR2LXRDRFFGYXlNRXNMeWxoZ3hQMEttbEczTFhtQmIteXd2aWVPOVBWbVU3TnZIQ0dlcEZzVTFMd3NabnRkSWZoQUpWRXppMThydktEaUhBSUlTZ045LWJLMTV2ZjFpOGNzNm9mMGRudDRyYWRmb1pvR1hla2VoUV9RdHJHRXNPdFNxRi10NXpCVXlCSjJMeGlfd0VyV3ViV3hkdk9YNjc5WVduaHdpbnR2aFZZbnpGTng3YS14c3hqelVXR3dCSFowTjllN2VnUjNjRHhqdjBlNzMzTTVBdUhmU3I3djY1S3hITkxQMmVXS2QydkhlQmRVWjlOdkdYamhxTno2eWVfNzFibUpjMW9fQWNiUHRKTGY2d2NhN2h4T05HakZla0dxM1Z1b1FOc2lnQkVhRkxwb3ZUMHllNkVTOTdkTWRPcDFjXzRTZF9WZ052U1NCMGFPYW1zY0lsMjJaM1JzczlZSkt3WkNlbEx1dkhCdTZtQXlOaUFTbEpXZFRJenNQR3hMUV9GclBJX2x1d1p4dG9HaDZTX0FNWW80NDBqS0RmbW9CdzQzTUJiMjNVTXhJWU5DMHY4THdXUTFuUkdhU1hzVDI3Uk14ajhCY25UTkRWWjN0SGF4WlNuRTRuRVFuQnRyUWJnaHpCdjBLSTRUbDVnRnp2Skd3TnZQakExcXl5dGFHTGU0aTNzeWNoSVRjY0VZWEt6ZkQxVmRKQWFQVWRtSFV5Z251NzNkNjhOcWk4VVQ4cWNaRVFlcU5tMnZ6cFhZUU5xb2ZwTmdBYnhBaWJXOWJXejJBUG0xNndDYU1Ka0VRSkQ1MlF0cmQ3WjNvQkMxazZfZVF0YlNjZGlKWUxlN1NRcFlWZGUyMUZOdDJGaXBIbDc2ZnJ0a2lwb1R4VHEwbHMwWjEzY05ETUF3dlc3eGgyN0ZqS2JGT01SN0pUMkVCMkpaVjBmcDd6d2hXSHRZN3R1NTFSYnQtM2E2b2s5LTZvRnUtdlB0Nm5KXzVZTTRpSjFmbEZNZWN0aU9UNThHQ09BbGNfZ0JhRU00d18yQm1pN2xadzlsOEx3X2t1WjdRdEpyUDQxWjNyLTY0QlBiTHJPY1NKT1hsN2xzMGZyc2MyeFlBVFdVbktpUGxqdnJUU3hTSDFwWi1va0FleDd2Wml0RjlHTUh4dFB4a2hGd1B4UUNhNkN1LXdscWNGYjJSRHR1YlBuWlVNV2VLYS1ud3ZUcjFIVFFKbVBuZHctOWpFUmo0b2tLb2ZudnJLbHhZNDVPU0ZqdDhoS0dwM2RTbjJ6emV6RWx5V0hFWnhla1V5ZXdVR1YybnFhWU83UXpvamdMM3hJbmoxMXRSSzVDVF9iQXVLd3BoOC1FSDMtWmJ2R3FURW45eXNIQ3Zsbi1PODRiWUlqYnBZdzdRLTRYWTkxVmJlOXJrSDV4M1UyZnZyeEdlQ241Wkk2WFBzVlBycGdXTy1DT0lBOWV1Q0RzcHB0alVfbUFBc1QwTVM0VFM1bVdkcGhBdm5xS2VaQS1tQ0FYOERjQXVieTkzMmdRUEp3SUFZaWJKNE1JVGQ0OXhkbzFQZjd0Wm5oME5vRFA0cjJ4R2ExSW1nVXE3SkhiYy1jV3prS1g1OVNxUzFSOGlTaFVGWWlCVUQwOGFoNFVLcjZWbjF5MWdaNUJWd043bU9Ub05pV3d3djdvaEp2YUtsSkJFQnNvZEs5Ti03ZXp0YjJ1STZjaHBxcXVoRkhTeGlZQ29KclhLWEhHQ0VzdC1Id1AzRmFPdXoxVTIwRFNHQkE1dTd3cHJ5U1k1Y0dZMzhmcVFHYzFqU21FU0dZVzdTNWxXbld3SEh0ejlEVjljZ1BnX3dXQm1LczkxVGJrUWtBOTZLbjljeXh2ZjEzamtwT0habUs2ZFBCZzNOZHQ1Vm0xTk9WSllYWVM2T3dzeThUVW54SnkyMjVFMklSV2xNU0E2bDBySWFVZXh6V1FSYWFDZWsteVJTMGwxZmJXME16V0w3bDNKRWxCNjk2bjM3NGlmR2dsb3h5RW1JTUl3TzF3QTRfa3Y1Q2RVSjk0Nk9OT0wzc3ZUSzBod24xZjZ3SEppT1lQYlFUTXp3LVdNR1p0RHRSM1hjNTRQa013LVhzWUE5RkNNMkxEOElDUGE5LThwV1hpNmZzWlpGVXVvcXpzLUNLaUREVi1IRXVpYnRGcVlXeHNfeV9RaHdIRHpCMjhZNHptUTNpQXdnMUZmNjFSUGNHQnlFMVdTeU96c0NyQkpRblE2ZHBKYW5MLWRHUmVPc0pENEVoWW42Rkk2QWhaNjE5NnBfV2pEWFl3Z2YyWkVsZWRKS25EeFlWZFg4NzRwdy0xbEFKNGVpZ3JpS1ZxVENzckhXWkhFQnVrT0FaNlR2bmZWenlqcTV5TnpqUWR3UzVXMlZKMDRZcy1LZDdmcDM0NE9GUDBtaVpONkNWeVJOQ3RyTEJZSVpQbmdXRVktUDRBOUhiXzN5VWdyX3dSTlQ4ZlE1Qnl4VnhwRjVSVFdudi1pWTNXSWQwaFMxa2sxb2x2WEhPa1l6Z3hsSW5zaWtLc1Z0RVdySVRURE1iNGJlSUNzMnZVTkxHNnJyZ0hMRUszY0RYOFRjaGc1YnE4QXYydS1uZm5vQ0syV0JoSDhWS0lWT2Y1ejBtY1kxY0NSb2Y0UTZXNGRQeXM0RFV6S1JXS0x1T0RCYlMtYzdxTlNuN0M1c0hVR0dRLVdrNnlnUXZTTTk4SDdsOG1BckRNdXQ5YzUzZk1FNVlHOTRUanlGemdsOGNxdVlCQVBqYWVQdldlOFdYNHBKb2NUZnVzdjlZMklfY1hNQktEbVc4WHlNRTFPaEhDSzBXbTJORGlBem5nX2t6ZmlFYTgtSThXWUJ0OGI1Vk5QQW85bm55TFJfNXRCRkdGV2NoLTJkYUxGQnR6S3NUQkxRZm5pQ2tVdXItQUdVUk1XN1FmRE1vSmR0a3lCR2tmRFVheXlBYWQ5ZEpfSE1hZUxDaVE0UWhpRnpNVHF5ZzYxQmwyXzkyMi1PY09HU1BSRElXeFNZRWRfUWtKb29mN3ptXzR1bWRVOUVBRk5vYUxxcERoY2lCa3NfNEhUM1diVXAzQ25jb3phd3JfZFlRRTVYOXpIWS0yUl9WdzZXVTZMdTYtaV9jNjBmQXZEX2lISklzU3d0bnF2WVEtenl3djVLNWJXUFdyV2ZnMzBrMV9sbFNsazktYjJCNUZmWVZBUUJsMkRaVG9VdlJzaDVZVHhiYm5EbGFzOEJVRE1XV0hSSEotZF9pZUNad2VIbGdWVkktT1lWV1NCLXAtSjk1akZuVmJnUEdiVjJSSE53US1IdkNrRDBpZElDTklEY2h4UnFGZUQ4Z2dFaTdfcnd6N1d1ZXpZS3V5aFNHa1hhVWMtbmUxdHRrRmRsYWJ5SEt1b1FJWDZ2Snp1cEpjWUo1OEMxd0kwUXBIcjY4U3poekpjMjBUVGk2VWc3T1FtVHpncy1JNDVKVGFuSW5NdHk0MmlubjdqU3daWXQtMERWTXZPZ2RZeEVVRk9UZE5vWmFWMTI0QjdfS0c3bGxmY1o4TXUwNkR3M3FXWklUSExpcmZhZjhnU0tNRm41b1dfVjdCSWJXR2xiOTg0QkNjRExTOXRuaEllQnp5akRUcmhFOXZwdDNtNnJaMGpjcTFjdEVkZ0xFM2NwR0ZYX3lHOEJoenVKSk9jNTNyWkpydVY2TVNzSTlRYllNd0pUcmJuLXdMYVN0ZWx5b0JTUVl3NndDWmVxMGwtQ2VxX1kycExhQVkxb1JRajN1LTBrVHlEcXl6N2lSaTJqcXN4TW9sQTdmTE5USEZQbi0tNUNZTnB0c0paM2tlSjRINmdkc1phTHFvMTFYZ1hnWFJVcEFrb1BYbGJhdU96LWQzUFpNdXBUaGJZNF9Obi1Va3RrdGhYTV9IbTQ2S2JkQkFrY3J1UGhiRTZMMDN3OGVSaFhBdU9ZR0ZvamZlZFdQZ0R6YjZuQm1vSnhudHZ6UjNuZmliYWQ0M0VXZ2RmMThkQVBncHhzaTVuWF8zUElfaW5qSVVHdlh1aGl1TDVvOW9TOFpCQ0dsaGdWWnFKN1hMUzFIREJjVnhHT2hCUDB5b1ZUTXM0cFZBaWl0Tm0wVFRrU3hPT0RNQnBZRFFCd1dURWRGTFdMbkNGWVQ1a1RjUENoeGkwZnFTRUstXzJkemNCNXRxWk54U203T2oxSGpGMGUtZENUdU5TcS1xNFVRQXptQWgyNG45WHBlRE9Ea0VULTdwZGxxcGZXZ1FEU3NMV0U2UDdYZWNyR2R2N3hJaVRoVEZ6R0FTVnZ0QnJrLVRISVRuRURhWkZTaVBieTZPcUJlMG5wRlA4bzJxZHNNSnZmTnQ0Q1FvTVpPRlJ0NEk2cWpVbEtBcm92Q1c4eDBmYVdFdVpGd3Rjek9jNS1pOUt2VFdhcFhzVlFOR0NrMHY0UTFmQ2x5cDVpbzdCUTVvXzFWOHNtUDBITlBSMTZXalVGazE2a0N6WTA3YVpocjhNdUZ1cE9WdGdiR01WRWlpQkNQMjZ2TUVfeENOSDVmVE9uNFM1a2xKVFcya0VZb05VRldhYVJOUXdkajF4bkk2Q0hZSXNSbDZMRkFENVJLOGlMYWxCNE9fd1VOdVRBYVkzbE5xUVVCRDNtM25FNUE3TGx0eVA2M3JoR3pHdHBXOGVvOXphNFNiTl9QbHFMMVdRY1VnTWxreG5PcTNqRFdiQnJic0RUekEwN3pRTVhUTEhKMEhSMHQ5RG5ONkwyVXphb2VYNmtUV1VteU54WUNfUHY0aHhfRGVoYjVnS2ZSc3Vha25HSm85b0R0TDNkcHViZzV2ZS01WWdhZ0pjWVR1T1laLWsxdUNnYzZlLVdjWVNGdndfY0YwMDdmR2xnLXFkbW1vM2dZeVJxT1dkT0FDT05iUFFvaWxISll4RHhCTldqOGg1Qi1hUENxejJTX0hwU3JwUzF2QzJIeHd3bnpSXzJSenJFbkNHUElmSDJYNVhEczV2c3FYOFN4Y3hTVmdKOVBEbTlkR29HOG1GT25YejVLWDFobWI2eTBoSzhhZFNVWnoyQXFKYzBQVkszWWVJcHZLblQyY19mclNocXJzU2tDR29VblV4NkpMWHhBQVdSOUJBVGo5N1FlX0paU19hVTZvZk1yNFlYdGdlYUNaY1JSNEQ0X194TWV3ZGxMSUlJUWFZWW5MaFNFUVBPaUJFYnYtQ1RaeUtVdTFidFYySVA4aWU0YmstOFB1Vi00RVFlM3VwN1hMb0lFMmNHbUFIYmtLTFFudzNiSldqWWo5Vm5mazFRZEFMdnJpUnBpRnotSGRlbVUycUxsMVl1WE9sMUZuRVFEaFFTRUtfbS1CTHNEZ0FtUk10d0FFMGhhazhHb29JSDZfQjEyZHF4OExGSUR5TV8zdWwwWkNNaVg4LWExT05xVzhRanhoTUhNTHhTZWQtQTJtOXZnbGVuaXR6R1RLUUVUcU9yOElkOF9xSDFRWE9GR2JCeXZ6eVJWUEw1UEViQUY5WFM3V2FMY3BTSGw3bG1HRngzQ1JOcldxdGQzTl9OMHZWMlpDdFpFYnJMcm02YmlQMmJLM2czLTZmSHdjdVBibmk3cGdnT0ROd1VHZkVLVnFtT1RYTlFwYTJ1eHZwd0c4WEowV0tUVVF6RXhDUkVKcERRcEFnbjYwNUlDWS1CS0xqaXNCRDI4U2NiamF5LWR6UnhmQTRxVVFYTl9rS3RJOUs2U0o2RmxCV1NmdmRJa21OWEExZF9vdGRIRFdNZ3FYUXB3YkdXazBhMFpiUWx5SllpWWd0UHpNNHBxWk1tVkVNYmkxMFpQUFE0Z29YZzFlSUVFNkRoWmZEMGFFd3hvLUN6TXBYU1lHd0FNY1VxWXhZZ3FmV0NXbkQ2eFZnUGo1ZHpUR1YwUVluVGxCQ0NnTDZMd1dxVGdqYzZiYkU4Z1Z6cGlRVU9Mck40NDk5UmNJelFwMk1GTFNPUUl2aGVsSllCWVlwRGNYODdNd2VjeVphTE5UVjFKM2ZPeUYyYnI4N2tzLUtqMEM1YjF0ajdpemdITUtnT3ZBZlZjYkEtR2k0VXFfeVhqNFFaTGloaThJSmdHd0VVU3hPaGU0T1dQaWlZS1EyUG9pQlhSdmlqaTJVQXd0UHR5X3hDekJ1NExKMU1mQ1REc2JnWS10Y2FldVdfYW9CT0I2Y3RZYU9jMXBrT3ZDX1ViYWphdktUdHVWcHMxUTBfZkFubjdCYVM3VHpTRXNhVjZ2cExIb2g0MVp2emQ2VGpzTzVlQi1ldWZzZDhUMUpxZnBLeXhYQUJRSTVPRHk3SW1mZW01VEpsWjdqY2diT0lpLWxYZS00R1ZjSVRoSkpPOVNaSDl4c0RJSnp2MU4yaGEtZWd2ME9Za2R5b0xOMEFrSzgyd3VEZlNDcV82Y2pGUzc1M3lVZHJ5Y0JsYVVOczFIVERHa3hJdUNiX3NsVjdNdXlhV1V2cEg5UW9BTVNuRm4xcUpQMmJLbW9LM1RfLTB3RzBPUzZZd2JQNUh1QzZlV0wwdDVpUENlbFRiNS1KRnlQZUhCY1FEb2xyY0UwbjZ6NUhEcHNzU0xndHZYRnNoekh2bmdjXzk4UjlSNTNCMlZsTURQX25pYnVVTUk4MTdUaWNvV1puUUhESExqVFBWNi1uR3hHMjFMcjhMUjRrWE12VmpBSXFwZzE3bUNncjg3U0luU0tDSDN5RlBCeVRyTW9oWVcwX1hCOEJJbVBwZlRLZ2N4by1IU0N3WFJWaXNkOHdPWUZfeGpGcVI0Q19xVXQ1bWVfQTVlTEdGUTFHOHd4Mk5FVUEySWI2a1hLZ1NSZE9WMEZqdHlfdGlIRlg3LW1qQ2IzZVdhUW1aa3BkNVZjSHZmT0d2S3JQMmRTWHlYemlnSElRalc2X1NfdG1ScHVWXzJsSGdaTE5LRVV3dXRidUJtaHpQeDBIRlJZUE54VGg4TnRjVVpUbmhpSEExaFZlOVNsS1hFQXBXRV9fYnJQbXJ4Yi1Qd1VzTG9WY0ZvMkJicW1zNjZxaURnUjNXemtKLXFpclZsaHM3NlBWRE8xaUJLdHlCSDdpLTJ5OG5qY2UwN1dFLUY0b0tiLXhwR1RIT1VRdDJxdG1GR1hKeURxcUlveEs4MEJZb1hZd1BaWGpvdWQwSEU0cUNPSE90YS16S3VyY09MOGQzT01GNXFielFGLWZrUjA1Uk92RVU4VGszMS1pMUpkN3hHc0FMa3VDcVowckZYQ21jQTVaTzVuc2F0WnNxcVhlQ09VYzdidFpXbzZvbHUzc1JDVHZ5Q2RlWXR2RllHNnBtR2F0aHlKZGlzazBwT3BsMXdoUWU1dThMZk0yV2JIbG1mSzVjQlI0ZlhEVDU3MmxkOGM5c3llLXZiYUc0S1VCY2ZvT1JyMklpRTNlRzdCN0FCSTcyRjZ4N2pRR1VYRG1aLU9MZlh4Wi0xZGJyUmhvZ1dqT0RudUpBYTRtWnMyenVDMzBpOWZUMDRKdElpeTJFXzJFQ2lMWVd4V041WnViUnhZbmtlNTh0bW04ZHpXTDloaTlta081ZkhwUjR3eVRYbFBOLTZqTy0xdm5PZWVMWl9EUlRDXzhFQks2WFZDTTk3WE9jSnhFUEtkWFh0MnNwVC01Rmx6T3Y2WHNIV1pDVzcxaE9NcV9qb3NBLXVqZENUdm56YVk3MkI1d1F5RjlsbDBGNVdtcnMwc2dpNW5MWU9nMXFaQ01ydDRKMUdkcEpzdXN3QVFwdm1DQVhuLTAydk9XRnRSX0s3QXkwOTFkQmxkNEZTVXBQTzhVbUJuNG8yTWViSHBtclozSjJqa0VLdkpmMHAxaFp3MzNPNl9GRlVpM1FxMTdXUmJUNEExVUZ6U1VpNU42VXJjWTQ0Z2FkMnBPNi1xVFJuMXljTUE4U29FVm9SVWJaczJEZ3FyLU53RVMySmsyRzl4c0dpWkhla1VqdjlyWGw5c2tWbGI5V2RYSTBoLXJ5TzFfUU0xUUNHYldsX2xCaEdBdlZjMExqQ1I3d3lpeG1BRHVJMHc3Wlc3NHlDQUpKdUtJT0xyNTd1bzYxQmYzLXFYWXRIWDh2c0xPamc5N1IyTExHeUpKMWhVcVZlQU5sa3B3LkhsQXBVUTQ1YTdxRDRiRUVJWlRmR3B6b3lBNi12UlZQVkhlV000eUZVV3c\"}", - "status": 409, - "response": "{\"error\":{\"code\":\"Conflict\",\"message\":\"There was a conflict restoring the key 'https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/0f21985e3d2d42ed899ba2b76e892011'. This can happen if either: a second key with the same name was created after the first key was deleted; thus trying to restore a key whose name is already in use. To fix this, rename the second key to something else so that the restore works. The second probable cause of this exception is when multiple operations are performed in parallel against the key. To avoid this error, perform operations against a key in a sequential manner.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "661", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:45 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "409", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "c4de887c-1c9c-4f7f-99eb-47539f6231ef", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "37f7673a-89c6-4090-aac9-969801807d3f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/restore", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"value\":\"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUl5WVdabU5tRmhNUzAzTm1Ka0xUUTBZVGN0WVRjek5DMDJaalZoWkRCaU5XRTRPVGdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQzB5TlRZaUxDSmxibU1pT2lKQk1qVTJRMEpETFVoVE5URXlJbjAuY2lEMjFBc2YzaFZwVjc4dVFMV1RsUzdxZ1c5Wkp2UWhWZ3lGbzF2Y3Z5enZGdDFTUnlJVXdCekI5OTJsOVNhUF90REdXbEx6QURXTjFicFJweVp2STlBeHlIdEFkTWRxSTB0eGhLdHhGMmNOXzEtUGRVYUt4MWowRllKb3Mybm5UcjEwMnN6VGR1ZTdHY1dnb1BUTHRuc3llcVhCdkdVSGcyVnZOdjh0V1JQQV9WTjRKWWtfS2pqdGc0WmF0VW0tUk81VnNPZW13RXBaNU9NVndjRG8yTkd2emdVVkFERGtvc3dSYzZ3RVlxU0NHbkEzWkxtVnlJRVczcjZYd1Z3SWx2TkJhZUxGOXY0Ml8ycjUtc3VneDA0WUlZRnc4a0tSZEp5OUI0ZU9KXzRHa0stZm50X3Y4UFFlTEdGaVlkRkFZUVc2Q1pkVEh6akZFRG9QaWphYWx3LmxCRHNtSWt6MU1fMEpfMGdCakMxLWcuajNYZVQ5TlM5LVAyWjhPQTFlUW5TSEhvem01N0czaXhYeHRGWUtBU05WSTM1cFBPbUswdEVJMzltY0FRLUZtRGV4cVdWbUw3QWxYWUk1M3ZTaXEzWGtOMG5PLWdvSkhsdXNXM3BVemthRG9PWlNxY25QV0FxVXFwZi1zZVZCdkJqMXRBb2dsa2dTZ2psbUk0UlQwVFJJbkYzaEhXd3BIQVRzbWd6WnMxMVlpdlZ4RTlpbTkzNXplQVdaRXFRRFlncGJNZDdLdDN6ZlpJLTN4M05YelpZXzQ0NUptNGd0bzdLTDNEbENIbFpSU0lnZnhQc3Q3VW1RWC1FNk5oWklNWUlfMzNRNkdtTFBVNTk0QVozaERBcWlZXzFQeFdqdV9KY3dWcVdqLVE1TjVqWk5sYmo3UGw2MjhXMEVpOUF4R1FfQkFrLWJpYngxbHM2WWIwS05Oa2J6d1pPdjF4ZVUtYTRCVGFGZWNWS2QxR1dBM2pzZV9PSjNYcEV1ZlNzSEU1TktQeF82azVUMnFLMUliV0JHd3ZFb1R6NjFWZEpseGZacXdtczZjNGU3cHE0MHhnQU03M0xNakVqdlcwYjAwbHFHZGxBc1hEcnZMMDl0ZlRrRThIaHFfTlIzVFpGMFBtSGZrLUxRNVpMVlRLSFF3TkxtVVR2bkFLeWY0UFk0b1hCbmJzWm1OdDdaalFOUTFMOE1FNzJfQ0dPVmxuZjEwOWhDZHpud2dNWjh0cjdYNTVFbHIzUVdoR2FXSTZlc3FVZkNSbnZHZk80T1NjTU1QNlZ2UGtUdThMb3hKVzZ2X3hKZVpJUWlEcEloVnFGcE5UZ21PQXN3WlJYcmZhQ0ZqTkE0cDVfVUp0aW91aWUxOG10V2ZRQ2lyeGhHNTMwTFJHWEZLTkdkMzVpbkw4WklnUnRJQmtRR3NNZ3Z2dDZ5NnJiam5JV3ZEYmd1S0F5d2lmQk4xWm5pSHZYY0ZhUkYxZVJaU1NhM1BidkVSTHhoR3VmeGZfQzVYQjVzNXk4M2ktQkUtUEVFN19Ub0Y2YU1LWkU5aExXLThOR21XUFgxSVBqeG5OUFpNZE5wM3dkaTJyekJxLW9IMHlVNHFZX1hJZFIyYjU3STYwY2J3TThrS1NKcWhnS1pyRW4ySHR6cG5lWF9pei1jSHlnaHBSb0xQd0dMTWd1V0RqTUhOY0duZlFISFZhUER1cl85S3VsTnNZSDNLR3R1YlpTZUt6ZHM5ZWxrSGRJMWFuVG1lVnphZTFaZXRLOW81R1dQSEx3bUN5RGRXWlBYbDNRN0E3NEl4YkNoUFVvd0ZVOEVGbnJ6Yi16clBDOGNMNTBtZ0dIQVdwMDk4WEltSFZSZ2l0QWoxbXJycWhuejZYMjNqZkZVWGtfT1VDQ25KUC1BX0UwTXQ5dkg4dTJUb0hURnRqTElIQms5bzlyTEU3a3FWek9YZXFpOTlNekFhZUVEUnRLSF9FMzdxc0tSQWRORlRHUDVveTJtMXd1MTkwREdrQzU5aW9Ld2J6SkNOVjdOdmJmSGFrc1MzQmlzUFUwbzc3UjlDaHpEMjk3czZVUEdFbHJpQkR2LXRDRFFGYXlNRXNMeWxoZ3hQMEttbEczTFhtQmIteXd2aWVPOVBWbVU3TnZIQ0dlcEZzVTFMd3NabnRkSWZoQUpWRXppMThydktEaUhBSUlTZ045LWJLMTV2ZjFpOGNzNm9mMGRudDRyYWRmb1pvR1hla2VoUV9RdHJHRXNPdFNxRi10NXpCVXlCSjJMeGlfd0VyV3ViV3hkdk9YNjc5WVduaHdpbnR2aFZZbnpGTng3YS14c3hqelVXR3dCSFowTjllN2VnUjNjRHhqdjBlNzMzTTVBdUhmU3I3djY1S3hITkxQMmVXS2QydkhlQmRVWjlOdkdYamhxTno2eWVfNzFibUpjMW9fQWNiUHRKTGY2d2NhN2h4T05HakZla0dxM1Z1b1FOc2lnQkVhRkxwb3ZUMHllNkVTOTdkTWRPcDFjXzRTZF9WZ052U1NCMGFPYW1zY0lsMjJaM1JzczlZSkt3WkNlbEx1dkhCdTZtQXlOaUFTbEpXZFRJenNQR3hMUV9GclBJX2x1d1p4dG9HaDZTX0FNWW80NDBqS0RmbW9CdzQzTUJiMjNVTXhJWU5DMHY4THdXUTFuUkdhU1hzVDI3Uk14ajhCY25UTkRWWjN0SGF4WlNuRTRuRVFuQnRyUWJnaHpCdjBLSTRUbDVnRnp2Skd3TnZQakExcXl5dGFHTGU0aTNzeWNoSVRjY0VZWEt6ZkQxVmRKQWFQVWRtSFV5Z251NzNkNjhOcWk4VVQ4cWNaRVFlcU5tMnZ6cFhZUU5xb2ZwTmdBYnhBaWJXOWJXejJBUG0xNndDYU1Ka0VRSkQ1MlF0cmQ3WjNvQkMxazZfZVF0YlNjZGlKWUxlN1NRcFlWZGUyMUZOdDJGaXBIbDc2ZnJ0a2lwb1R4VHEwbHMwWjEzY05ETUF3dlc3eGgyN0ZqS2JGT01SN0pUMkVCMkpaVjBmcDd6d2hXSHRZN3R1NTFSYnQtM2E2b2s5LTZvRnUtdlB0Nm5KXzVZTTRpSjFmbEZNZWN0aU9UNThHQ09BbGNfZ0JhRU00d18yQm1pN2xadzlsOEx3X2t1WjdRdEpyUDQxWjNyLTY0QlBiTHJPY1NKT1hsN2xzMGZyc2MyeFlBVFdVbktpUGxqdnJUU3hTSDFwWi1va0FleDd2Wml0RjlHTUh4dFB4a2hGd1B4UUNhNkN1LXdscWNGYjJSRHR1YlBuWlVNV2VLYS1ud3ZUcjFIVFFKbVBuZHctOWpFUmo0b2tLb2ZudnJLbHhZNDVPU0ZqdDhoS0dwM2RTbjJ6emV6RWx5V0hFWnhla1V5ZXdVR1YybnFhWU83UXpvamdMM3hJbmoxMXRSSzVDVF9iQXVLd3BoOC1FSDMtWmJ2R3FURW45eXNIQ3Zsbi1PODRiWUlqYnBZdzdRLTRYWTkxVmJlOXJrSDV4M1UyZnZyeEdlQ241Wkk2WFBzVlBycGdXTy1DT0lBOWV1Q0RzcHB0alVfbUFBc1QwTVM0VFM1bVdkcGhBdm5xS2VaQS1tQ0FYOERjQXVieTkzMmdRUEp3SUFZaWJKNE1JVGQ0OXhkbzFQZjd0Wm5oME5vRFA0cjJ4R2ExSW1nVXE3SkhiYy1jV3prS1g1OVNxUzFSOGlTaFVGWWlCVUQwOGFoNFVLcjZWbjF5MWdaNUJWd043bU9Ub05pV3d3djdvaEp2YUtsSkJFQnNvZEs5Ti03ZXp0YjJ1STZjaHBxcXVoRkhTeGlZQ29KclhLWEhHQ0VzdC1Id1AzRmFPdXoxVTIwRFNHQkE1dTd3cHJ5U1k1Y0dZMzhmcVFHYzFqU21FU0dZVzdTNWxXbld3SEh0ejlEVjljZ1BnX3dXQm1LczkxVGJrUWtBOTZLbjljeXh2ZjEzamtwT0habUs2ZFBCZzNOZHQ1Vm0xTk9WSllYWVM2T3dzeThUVW54SnkyMjVFMklSV2xNU0E2bDBySWFVZXh6V1FSYWFDZWsteVJTMGwxZmJXME16V0w3bDNKRWxCNjk2bjM3NGlmR2dsb3h5RW1JTUl3TzF3QTRfa3Y1Q2RVSjk0Nk9OT0wzc3ZUSzBod24xZjZ3SEppT1lQYlFUTXp3LVdNR1p0RHRSM1hjNTRQa013LVhzWUE5RkNNMkxEOElDUGE5LThwV1hpNmZzWlpGVXVvcXpzLUNLaUREVi1IRXVpYnRGcVlXeHNfeV9RaHdIRHpCMjhZNHptUTNpQXdnMUZmNjFSUGNHQnlFMVdTeU96c0NyQkpRblE2ZHBKYW5MLWRHUmVPc0pENEVoWW42Rkk2QWhaNjE5NnBfV2pEWFl3Z2YyWkVsZWRKS25EeFlWZFg4NzRwdy0xbEFKNGVpZ3JpS1ZxVENzckhXWkhFQnVrT0FaNlR2bmZWenlqcTV5TnpqUWR3UzVXMlZKMDRZcy1LZDdmcDM0NE9GUDBtaVpONkNWeVJOQ3RyTEJZSVpQbmdXRVktUDRBOUhiXzN5VWdyX3dSTlQ4ZlE1Qnl4VnhwRjVSVFdudi1pWTNXSWQwaFMxa2sxb2x2WEhPa1l6Z3hsSW5zaWtLc1Z0RVdySVRURE1iNGJlSUNzMnZVTkxHNnJyZ0hMRUszY0RYOFRjaGc1YnE4QXYydS1uZm5vQ0syV0JoSDhWS0lWT2Y1ejBtY1kxY0NSb2Y0UTZXNGRQeXM0RFV6S1JXS0x1T0RCYlMtYzdxTlNuN0M1c0hVR0dRLVdrNnlnUXZTTTk4SDdsOG1BckRNdXQ5YzUzZk1FNVlHOTRUanlGemdsOGNxdVlCQVBqYWVQdldlOFdYNHBKb2NUZnVzdjlZMklfY1hNQktEbVc4WHlNRTFPaEhDSzBXbTJORGlBem5nX2t6ZmlFYTgtSThXWUJ0OGI1Vk5QQW85bm55TFJfNXRCRkdGV2NoLTJkYUxGQnR6S3NUQkxRZm5pQ2tVdXItQUdVUk1XN1FmRE1vSmR0a3lCR2tmRFVheXlBYWQ5ZEpfSE1hZUxDaVE0UWhpRnpNVHF5ZzYxQmwyXzkyMi1PY09HU1BSRElXeFNZRWRfUWtKb29mN3ptXzR1bWRVOUVBRk5vYUxxcERoY2lCa3NfNEhUM1diVXAzQ25jb3phd3JfZFlRRTVYOXpIWS0yUl9WdzZXVTZMdTYtaV9jNjBmQXZEX2lISklzU3d0bnF2WVEtenl3djVLNWJXUFdyV2ZnMzBrMV9sbFNsazktYjJCNUZmWVZBUUJsMkRaVG9VdlJzaDVZVHhiYm5EbGFzOEJVRE1XV0hSSEotZF9pZUNad2VIbGdWVkktT1lWV1NCLXAtSjk1akZuVmJnUEdiVjJSSE53US1IdkNrRDBpZElDTklEY2h4UnFGZUQ4Z2dFaTdfcnd6N1d1ZXpZS3V5aFNHa1hhVWMtbmUxdHRrRmRsYWJ5SEt1b1FJWDZ2Snp1cEpjWUo1OEMxd0kwUXBIcjY4U3poekpjMjBUVGk2VWc3T1FtVHpncy1JNDVKVGFuSW5NdHk0MmlubjdqU3daWXQtMERWTXZPZ2RZeEVVRk9UZE5vWmFWMTI0QjdfS0c3bGxmY1o4TXUwNkR3M3FXWklUSExpcmZhZjhnU0tNRm41b1dfVjdCSWJXR2xiOTg0QkNjRExTOXRuaEllQnp5akRUcmhFOXZwdDNtNnJaMGpjcTFjdEVkZ0xFM2NwR0ZYX3lHOEJoenVKSk9jNTNyWkpydVY2TVNzSTlRYllNd0pUcmJuLXdMYVN0ZWx5b0JTUVl3NndDWmVxMGwtQ2VxX1kycExhQVkxb1JRajN1LTBrVHlEcXl6N2lSaTJqcXN4TW9sQTdmTE5USEZQbi0tNUNZTnB0c0paM2tlSjRINmdkc1phTHFvMTFYZ1hnWFJVcEFrb1BYbGJhdU96LWQzUFpNdXBUaGJZNF9Obi1Va3RrdGhYTV9IbTQ2S2JkQkFrY3J1UGhiRTZMMDN3OGVSaFhBdU9ZR0ZvamZlZFdQZ0R6YjZuQm1vSnhudHZ6UjNuZmliYWQ0M0VXZ2RmMThkQVBncHhzaTVuWF8zUElfaW5qSVVHdlh1aGl1TDVvOW9TOFpCQ0dsaGdWWnFKN1hMUzFIREJjVnhHT2hCUDB5b1ZUTXM0cFZBaWl0Tm0wVFRrU3hPT0RNQnBZRFFCd1dURWRGTFdMbkNGWVQ1a1RjUENoeGkwZnFTRUstXzJkemNCNXRxWk54U203T2oxSGpGMGUtZENUdU5TcS1xNFVRQXptQWgyNG45WHBlRE9Ea0VULTdwZGxxcGZXZ1FEU3NMV0U2UDdYZWNyR2R2N3hJaVRoVEZ6R0FTVnZ0QnJrLVRISVRuRURhWkZTaVBieTZPcUJlMG5wRlA4bzJxZHNNSnZmTnQ0Q1FvTVpPRlJ0NEk2cWpVbEtBcm92Q1c4eDBmYVdFdVpGd3Rjek9jNS1pOUt2VFdhcFhzVlFOR0NrMHY0UTFmQ2x5cDVpbzdCUTVvXzFWOHNtUDBITlBSMTZXalVGazE2a0N6WTA3YVpocjhNdUZ1cE9WdGdiR01WRWlpQkNQMjZ2TUVfeENOSDVmVE9uNFM1a2xKVFcya0VZb05VRldhYVJOUXdkajF4bkk2Q0hZSXNSbDZMRkFENVJLOGlMYWxCNE9fd1VOdVRBYVkzbE5xUVVCRDNtM25FNUE3TGx0eVA2M3JoR3pHdHBXOGVvOXphNFNiTl9QbHFMMVdRY1VnTWxreG5PcTNqRFdiQnJic0RUekEwN3pRTVhUTEhKMEhSMHQ5RG5ONkwyVXphb2VYNmtUV1VteU54WUNfUHY0aHhfRGVoYjVnS2ZSc3Vha25HSm85b0R0TDNkcHViZzV2ZS01WWdhZ0pjWVR1T1laLWsxdUNnYzZlLVdjWVNGdndfY0YwMDdmR2xnLXFkbW1vM2dZeVJxT1dkT0FDT05iUFFvaWxISll4RHhCTldqOGg1Qi1hUENxejJTX0hwU3JwUzF2QzJIeHd3bnpSXzJSenJFbkNHUElmSDJYNVhEczV2c3FYOFN4Y3hTVmdKOVBEbTlkR29HOG1GT25YejVLWDFobWI2eTBoSzhhZFNVWnoyQXFKYzBQVkszWWVJcHZLblQyY19mclNocXJzU2tDR29VblV4NkpMWHhBQVdSOUJBVGo5N1FlX0paU19hVTZvZk1yNFlYdGdlYUNaY1JSNEQ0X194TWV3ZGxMSUlJUWFZWW5MaFNFUVBPaUJFYnYtQ1RaeUtVdTFidFYySVA4aWU0YmstOFB1Vi00RVFlM3VwN1hMb0lFMmNHbUFIYmtLTFFudzNiSldqWWo5Vm5mazFRZEFMdnJpUnBpRnotSGRlbVUycUxsMVl1WE9sMUZuRVFEaFFTRUtfbS1CTHNEZ0FtUk10d0FFMGhhazhHb29JSDZfQjEyZHF4OExGSUR5TV8zdWwwWkNNaVg4LWExT05xVzhRanhoTUhNTHhTZWQtQTJtOXZnbGVuaXR6R1RLUUVUcU9yOElkOF9xSDFRWE9GR2JCeXZ6eVJWUEw1UEViQUY5WFM3V2FMY3BTSGw3bG1HRngzQ1JOcldxdGQzTl9OMHZWMlpDdFpFYnJMcm02YmlQMmJLM2czLTZmSHdjdVBibmk3cGdnT0ROd1VHZkVLVnFtT1RYTlFwYTJ1eHZwd0c4WEowV0tUVVF6RXhDUkVKcERRcEFnbjYwNUlDWS1CS0xqaXNCRDI4U2NiamF5LWR6UnhmQTRxVVFYTl9rS3RJOUs2U0o2RmxCV1NmdmRJa21OWEExZF9vdGRIRFdNZ3FYUXB3YkdXazBhMFpiUWx5SllpWWd0UHpNNHBxWk1tVkVNYmkxMFpQUFE0Z29YZzFlSUVFNkRoWmZEMGFFd3hvLUN6TXBYU1lHd0FNY1VxWXhZZ3FmV0NXbkQ2eFZnUGo1ZHpUR1YwUVluVGxCQ0NnTDZMd1dxVGdqYzZiYkU4Z1Z6cGlRVU9Mck40NDk5UmNJelFwMk1GTFNPUUl2aGVsSllCWVlwRGNYODdNd2VjeVphTE5UVjFKM2ZPeUYyYnI4N2tzLUtqMEM1YjF0ajdpemdITUtnT3ZBZlZjYkEtR2k0VXFfeVhqNFFaTGloaThJSmdHd0VVU3hPaGU0T1dQaWlZS1EyUG9pQlhSdmlqaTJVQXd0UHR5X3hDekJ1NExKMU1mQ1REc2JnWS10Y2FldVdfYW9CT0I2Y3RZYU9jMXBrT3ZDX1ViYWphdktUdHVWcHMxUTBfZkFubjdCYVM3VHpTRXNhVjZ2cExIb2g0MVp2emQ2VGpzTzVlQi1ldWZzZDhUMUpxZnBLeXhYQUJRSTVPRHk3SW1mZW01VEpsWjdqY2diT0lpLWxYZS00R1ZjSVRoSkpPOVNaSDl4c0RJSnp2MU4yaGEtZWd2ME9Za2R5b0xOMEFrSzgyd3VEZlNDcV82Y2pGUzc1M3lVZHJ5Y0JsYVVOczFIVERHa3hJdUNiX3NsVjdNdXlhV1V2cEg5UW9BTVNuRm4xcUpQMmJLbW9LM1RfLTB3RzBPUzZZd2JQNUh1QzZlV0wwdDVpUENlbFRiNS1KRnlQZUhCY1FEb2xyY0UwbjZ6NUhEcHNzU0xndHZYRnNoekh2bmdjXzk4UjlSNTNCMlZsTURQX25pYnVVTUk4MTdUaWNvV1puUUhESExqVFBWNi1uR3hHMjFMcjhMUjRrWE12VmpBSXFwZzE3bUNncjg3U0luU0tDSDN5RlBCeVRyTW9oWVcwX1hCOEJJbVBwZlRLZ2N4by1IU0N3WFJWaXNkOHdPWUZfeGpGcVI0Q19xVXQ1bWVfQTVlTEdGUTFHOHd4Mk5FVUEySWI2a1hLZ1NSZE9WMEZqdHlfdGlIRlg3LW1qQ2IzZVdhUW1aa3BkNVZjSHZmT0d2S3JQMmRTWHlYemlnSElRalc2X1NfdG1ScHVWXzJsSGdaTE5LRVV3dXRidUJtaHpQeDBIRlJZUE54VGg4TnRjVVpUbmhpSEExaFZlOVNsS1hFQXBXRV9fYnJQbXJ4Yi1Qd1VzTG9WY0ZvMkJicW1zNjZxaURnUjNXemtKLXFpclZsaHM3NlBWRE8xaUJLdHlCSDdpLTJ5OG5qY2UwN1dFLUY0b0tiLXhwR1RIT1VRdDJxdG1GR1hKeURxcUlveEs4MEJZb1hZd1BaWGpvdWQwSEU0cUNPSE90YS16S3VyY09MOGQzT01GNXFielFGLWZrUjA1Uk92RVU4VGszMS1pMUpkN3hHc0FMa3VDcVowckZYQ21jQTVaTzVuc2F0WnNxcVhlQ09VYzdidFpXbzZvbHUzc1JDVHZ5Q2RlWXR2RllHNnBtR2F0aHlKZGlzazBwT3BsMXdoUWU1dThMZk0yV2JIbG1mSzVjQlI0ZlhEVDU3MmxkOGM5c3llLXZiYUc0S1VCY2ZvT1JyMklpRTNlRzdCN0FCSTcyRjZ4N2pRR1VYRG1aLU9MZlh4Wi0xZGJyUmhvZ1dqT0RudUpBYTRtWnMyenVDMzBpOWZUMDRKdElpeTJFXzJFQ2lMWVd4V041WnViUnhZbmtlNTh0bW04ZHpXTDloaTlta081ZkhwUjR3eVRYbFBOLTZqTy0xdm5PZWVMWl9EUlRDXzhFQks2WFZDTTk3WE9jSnhFUEtkWFh0MnNwVC01Rmx6T3Y2WHNIV1pDVzcxaE9NcV9qb3NBLXVqZENUdm56YVk3MkI1d1F5RjlsbDBGNVdtcnMwc2dpNW5MWU9nMXFaQ01ydDRKMUdkcEpzdXN3QVFwdm1DQVhuLTAydk9XRnRSX0s3QXkwOTFkQmxkNEZTVXBQTzhVbUJuNG8yTWViSHBtclozSjJqa0VLdkpmMHAxaFp3MzNPNl9GRlVpM1FxMTdXUmJUNEExVUZ6U1VpNU42VXJjWTQ0Z2FkMnBPNi1xVFJuMXljTUE4U29FVm9SVWJaczJEZ3FyLU53RVMySmsyRzl4c0dpWkhla1VqdjlyWGw5c2tWbGI5V2RYSTBoLXJ5TzFfUU0xUUNHYldsX2xCaEdBdlZjMExqQ1I3d3lpeG1BRHVJMHc3Wlc3NHlDQUpKdUtJT0xyNTd1bzYxQmYzLXFYWXRIWDh2c0xPamc5N1IyTExHeUpKMWhVcVZlQU5sa3B3LkhsQXBVUTQ1YTdxRDRiRUVJWlRmR3B6b3lBNi12UlZQVkhlV000eUZVV3c\"}", - "status": 409, - "response": "{\"error\":{\"code\":\"Conflict\",\"message\":\"There was a conflict restoring the key 'https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/0f21985e3d2d42ed899ba2b76e892011'. This can happen if either: a second key with the same name was created after the first key was deleted; thus trying to restore a key whose name is already in use. To fix this, rename the second key to something else so that the restore works. The second probable cause of this exception is when multiple operations are performed in parallel against the key. To avoid this error, perform operations against a key in a sequential manner.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "661", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:47 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "409", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "03eac2a4-7f4b-47a1-8694-4adaad7eb3ff", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2516374b-d909-4c89-8a88-af2b61222e7f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/restore", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"value\":\"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUl5WVdabU5tRmhNUzAzTm1Ka0xUUTBZVGN0WVRjek5DMDJaalZoWkRCaU5XRTRPVGdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQzB5TlRZaUxDSmxibU1pT2lKQk1qVTJRMEpETFVoVE5URXlJbjAuY2lEMjFBc2YzaFZwVjc4dVFMV1RsUzdxZ1c5Wkp2UWhWZ3lGbzF2Y3Z5enZGdDFTUnlJVXdCekI5OTJsOVNhUF90REdXbEx6QURXTjFicFJweVp2STlBeHlIdEFkTWRxSTB0eGhLdHhGMmNOXzEtUGRVYUt4MWowRllKb3Mybm5UcjEwMnN6VGR1ZTdHY1dnb1BUTHRuc3llcVhCdkdVSGcyVnZOdjh0V1JQQV9WTjRKWWtfS2pqdGc0WmF0VW0tUk81VnNPZW13RXBaNU9NVndjRG8yTkd2emdVVkFERGtvc3dSYzZ3RVlxU0NHbkEzWkxtVnlJRVczcjZYd1Z3SWx2TkJhZUxGOXY0Ml8ycjUtc3VneDA0WUlZRnc4a0tSZEp5OUI0ZU9KXzRHa0stZm50X3Y4UFFlTEdGaVlkRkFZUVc2Q1pkVEh6akZFRG9QaWphYWx3LmxCRHNtSWt6MU1fMEpfMGdCakMxLWcuajNYZVQ5TlM5LVAyWjhPQTFlUW5TSEhvem01N0czaXhYeHRGWUtBU05WSTM1cFBPbUswdEVJMzltY0FRLUZtRGV4cVdWbUw3QWxYWUk1M3ZTaXEzWGtOMG5PLWdvSkhsdXNXM3BVemthRG9PWlNxY25QV0FxVXFwZi1zZVZCdkJqMXRBb2dsa2dTZ2psbUk0UlQwVFJJbkYzaEhXd3BIQVRzbWd6WnMxMVlpdlZ4RTlpbTkzNXplQVdaRXFRRFlncGJNZDdLdDN6ZlpJLTN4M05YelpZXzQ0NUptNGd0bzdLTDNEbENIbFpSU0lnZnhQc3Q3VW1RWC1FNk5oWklNWUlfMzNRNkdtTFBVNTk0QVozaERBcWlZXzFQeFdqdV9KY3dWcVdqLVE1TjVqWk5sYmo3UGw2MjhXMEVpOUF4R1FfQkFrLWJpYngxbHM2WWIwS05Oa2J6d1pPdjF4ZVUtYTRCVGFGZWNWS2QxR1dBM2pzZV9PSjNYcEV1ZlNzSEU1TktQeF82azVUMnFLMUliV0JHd3ZFb1R6NjFWZEpseGZacXdtczZjNGU3cHE0MHhnQU03M0xNakVqdlcwYjAwbHFHZGxBc1hEcnZMMDl0ZlRrRThIaHFfTlIzVFpGMFBtSGZrLUxRNVpMVlRLSFF3TkxtVVR2bkFLeWY0UFk0b1hCbmJzWm1OdDdaalFOUTFMOE1FNzJfQ0dPVmxuZjEwOWhDZHpud2dNWjh0cjdYNTVFbHIzUVdoR2FXSTZlc3FVZkNSbnZHZk80T1NjTU1QNlZ2UGtUdThMb3hKVzZ2X3hKZVpJUWlEcEloVnFGcE5UZ21PQXN3WlJYcmZhQ0ZqTkE0cDVfVUp0aW91aWUxOG10V2ZRQ2lyeGhHNTMwTFJHWEZLTkdkMzVpbkw4WklnUnRJQmtRR3NNZ3Z2dDZ5NnJiam5JV3ZEYmd1S0F5d2lmQk4xWm5pSHZYY0ZhUkYxZVJaU1NhM1BidkVSTHhoR3VmeGZfQzVYQjVzNXk4M2ktQkUtUEVFN19Ub0Y2YU1LWkU5aExXLThOR21XUFgxSVBqeG5OUFpNZE5wM3dkaTJyekJxLW9IMHlVNHFZX1hJZFIyYjU3STYwY2J3TThrS1NKcWhnS1pyRW4ySHR6cG5lWF9pei1jSHlnaHBSb0xQd0dMTWd1V0RqTUhOY0duZlFISFZhUER1cl85S3VsTnNZSDNLR3R1YlpTZUt6ZHM5ZWxrSGRJMWFuVG1lVnphZTFaZXRLOW81R1dQSEx3bUN5RGRXWlBYbDNRN0E3NEl4YkNoUFVvd0ZVOEVGbnJ6Yi16clBDOGNMNTBtZ0dIQVdwMDk4WEltSFZSZ2l0QWoxbXJycWhuejZYMjNqZkZVWGtfT1VDQ25KUC1BX0UwTXQ5dkg4dTJUb0hURnRqTElIQms5bzlyTEU3a3FWek9YZXFpOTlNekFhZUVEUnRLSF9FMzdxc0tSQWRORlRHUDVveTJtMXd1MTkwREdrQzU5aW9Ld2J6SkNOVjdOdmJmSGFrc1MzQmlzUFUwbzc3UjlDaHpEMjk3czZVUEdFbHJpQkR2LXRDRFFGYXlNRXNMeWxoZ3hQMEttbEczTFhtQmIteXd2aWVPOVBWbVU3TnZIQ0dlcEZzVTFMd3NabnRkSWZoQUpWRXppMThydktEaUhBSUlTZ045LWJLMTV2ZjFpOGNzNm9mMGRudDRyYWRmb1pvR1hla2VoUV9RdHJHRXNPdFNxRi10NXpCVXlCSjJMeGlfd0VyV3ViV3hkdk9YNjc5WVduaHdpbnR2aFZZbnpGTng3YS14c3hqelVXR3dCSFowTjllN2VnUjNjRHhqdjBlNzMzTTVBdUhmU3I3djY1S3hITkxQMmVXS2QydkhlQmRVWjlOdkdYamhxTno2eWVfNzFibUpjMW9fQWNiUHRKTGY2d2NhN2h4T05HakZla0dxM1Z1b1FOc2lnQkVhRkxwb3ZUMHllNkVTOTdkTWRPcDFjXzRTZF9WZ052U1NCMGFPYW1zY0lsMjJaM1JzczlZSkt3WkNlbEx1dkhCdTZtQXlOaUFTbEpXZFRJenNQR3hMUV9GclBJX2x1d1p4dG9HaDZTX0FNWW80NDBqS0RmbW9CdzQzTUJiMjNVTXhJWU5DMHY4THdXUTFuUkdhU1hzVDI3Uk14ajhCY25UTkRWWjN0SGF4WlNuRTRuRVFuQnRyUWJnaHpCdjBLSTRUbDVnRnp2Skd3TnZQakExcXl5dGFHTGU0aTNzeWNoSVRjY0VZWEt6ZkQxVmRKQWFQVWRtSFV5Z251NzNkNjhOcWk4VVQ4cWNaRVFlcU5tMnZ6cFhZUU5xb2ZwTmdBYnhBaWJXOWJXejJBUG0xNndDYU1Ka0VRSkQ1MlF0cmQ3WjNvQkMxazZfZVF0YlNjZGlKWUxlN1NRcFlWZGUyMUZOdDJGaXBIbDc2ZnJ0a2lwb1R4VHEwbHMwWjEzY05ETUF3dlc3eGgyN0ZqS2JGT01SN0pUMkVCMkpaVjBmcDd6d2hXSHRZN3R1NTFSYnQtM2E2b2s5LTZvRnUtdlB0Nm5KXzVZTTRpSjFmbEZNZWN0aU9UNThHQ09BbGNfZ0JhRU00d18yQm1pN2xadzlsOEx3X2t1WjdRdEpyUDQxWjNyLTY0QlBiTHJPY1NKT1hsN2xzMGZyc2MyeFlBVFdVbktpUGxqdnJUU3hTSDFwWi1va0FleDd2Wml0RjlHTUh4dFB4a2hGd1B4UUNhNkN1LXdscWNGYjJSRHR1YlBuWlVNV2VLYS1ud3ZUcjFIVFFKbVBuZHctOWpFUmo0b2tLb2ZudnJLbHhZNDVPU0ZqdDhoS0dwM2RTbjJ6emV6RWx5V0hFWnhla1V5ZXdVR1YybnFhWU83UXpvamdMM3hJbmoxMXRSSzVDVF9iQXVLd3BoOC1FSDMtWmJ2R3FURW45eXNIQ3Zsbi1PODRiWUlqYnBZdzdRLTRYWTkxVmJlOXJrSDV4M1UyZnZyeEdlQ241Wkk2WFBzVlBycGdXTy1DT0lBOWV1Q0RzcHB0alVfbUFBc1QwTVM0VFM1bVdkcGhBdm5xS2VaQS1tQ0FYOERjQXVieTkzMmdRUEp3SUFZaWJKNE1JVGQ0OXhkbzFQZjd0Wm5oME5vRFA0cjJ4R2ExSW1nVXE3SkhiYy1jV3prS1g1OVNxUzFSOGlTaFVGWWlCVUQwOGFoNFVLcjZWbjF5MWdaNUJWd043bU9Ub05pV3d3djdvaEp2YUtsSkJFQnNvZEs5Ti03ZXp0YjJ1STZjaHBxcXVoRkhTeGlZQ29KclhLWEhHQ0VzdC1Id1AzRmFPdXoxVTIwRFNHQkE1dTd3cHJ5U1k1Y0dZMzhmcVFHYzFqU21FU0dZVzdTNWxXbld3SEh0ejlEVjljZ1BnX3dXQm1LczkxVGJrUWtBOTZLbjljeXh2ZjEzamtwT0habUs2ZFBCZzNOZHQ1Vm0xTk9WSllYWVM2T3dzeThUVW54SnkyMjVFMklSV2xNU0E2bDBySWFVZXh6V1FSYWFDZWsteVJTMGwxZmJXME16V0w3bDNKRWxCNjk2bjM3NGlmR2dsb3h5RW1JTUl3TzF3QTRfa3Y1Q2RVSjk0Nk9OT0wzc3ZUSzBod24xZjZ3SEppT1lQYlFUTXp3LVdNR1p0RHRSM1hjNTRQa013LVhzWUE5RkNNMkxEOElDUGE5LThwV1hpNmZzWlpGVXVvcXpzLUNLaUREVi1IRXVpYnRGcVlXeHNfeV9RaHdIRHpCMjhZNHptUTNpQXdnMUZmNjFSUGNHQnlFMVdTeU96c0NyQkpRblE2ZHBKYW5MLWRHUmVPc0pENEVoWW42Rkk2QWhaNjE5NnBfV2pEWFl3Z2YyWkVsZWRKS25EeFlWZFg4NzRwdy0xbEFKNGVpZ3JpS1ZxVENzckhXWkhFQnVrT0FaNlR2bmZWenlqcTV5TnpqUWR3UzVXMlZKMDRZcy1LZDdmcDM0NE9GUDBtaVpONkNWeVJOQ3RyTEJZSVpQbmdXRVktUDRBOUhiXzN5VWdyX3dSTlQ4ZlE1Qnl4VnhwRjVSVFdudi1pWTNXSWQwaFMxa2sxb2x2WEhPa1l6Z3hsSW5zaWtLc1Z0RVdySVRURE1iNGJlSUNzMnZVTkxHNnJyZ0hMRUszY0RYOFRjaGc1YnE4QXYydS1uZm5vQ0syV0JoSDhWS0lWT2Y1ejBtY1kxY0NSb2Y0UTZXNGRQeXM0RFV6S1JXS0x1T0RCYlMtYzdxTlNuN0M1c0hVR0dRLVdrNnlnUXZTTTk4SDdsOG1BckRNdXQ5YzUzZk1FNVlHOTRUanlGemdsOGNxdVlCQVBqYWVQdldlOFdYNHBKb2NUZnVzdjlZMklfY1hNQktEbVc4WHlNRTFPaEhDSzBXbTJORGlBem5nX2t6ZmlFYTgtSThXWUJ0OGI1Vk5QQW85bm55TFJfNXRCRkdGV2NoLTJkYUxGQnR6S3NUQkxRZm5pQ2tVdXItQUdVUk1XN1FmRE1vSmR0a3lCR2tmRFVheXlBYWQ5ZEpfSE1hZUxDaVE0UWhpRnpNVHF5ZzYxQmwyXzkyMi1PY09HU1BSRElXeFNZRWRfUWtKb29mN3ptXzR1bWRVOUVBRk5vYUxxcERoY2lCa3NfNEhUM1diVXAzQ25jb3phd3JfZFlRRTVYOXpIWS0yUl9WdzZXVTZMdTYtaV9jNjBmQXZEX2lISklzU3d0bnF2WVEtenl3djVLNWJXUFdyV2ZnMzBrMV9sbFNsazktYjJCNUZmWVZBUUJsMkRaVG9VdlJzaDVZVHhiYm5EbGFzOEJVRE1XV0hSSEotZF9pZUNad2VIbGdWVkktT1lWV1NCLXAtSjk1akZuVmJnUEdiVjJSSE53US1IdkNrRDBpZElDTklEY2h4UnFGZUQ4Z2dFaTdfcnd6N1d1ZXpZS3V5aFNHa1hhVWMtbmUxdHRrRmRsYWJ5SEt1b1FJWDZ2Snp1cEpjWUo1OEMxd0kwUXBIcjY4U3poekpjMjBUVGk2VWc3T1FtVHpncy1JNDVKVGFuSW5NdHk0MmlubjdqU3daWXQtMERWTXZPZ2RZeEVVRk9UZE5vWmFWMTI0QjdfS0c3bGxmY1o4TXUwNkR3M3FXWklUSExpcmZhZjhnU0tNRm41b1dfVjdCSWJXR2xiOTg0QkNjRExTOXRuaEllQnp5akRUcmhFOXZwdDNtNnJaMGpjcTFjdEVkZ0xFM2NwR0ZYX3lHOEJoenVKSk9jNTNyWkpydVY2TVNzSTlRYllNd0pUcmJuLXdMYVN0ZWx5b0JTUVl3NndDWmVxMGwtQ2VxX1kycExhQVkxb1JRajN1LTBrVHlEcXl6N2lSaTJqcXN4TW9sQTdmTE5USEZQbi0tNUNZTnB0c0paM2tlSjRINmdkc1phTHFvMTFYZ1hnWFJVcEFrb1BYbGJhdU96LWQzUFpNdXBUaGJZNF9Obi1Va3RrdGhYTV9IbTQ2S2JkQkFrY3J1UGhiRTZMMDN3OGVSaFhBdU9ZR0ZvamZlZFdQZ0R6YjZuQm1vSnhudHZ6UjNuZmliYWQ0M0VXZ2RmMThkQVBncHhzaTVuWF8zUElfaW5qSVVHdlh1aGl1TDVvOW9TOFpCQ0dsaGdWWnFKN1hMUzFIREJjVnhHT2hCUDB5b1ZUTXM0cFZBaWl0Tm0wVFRrU3hPT0RNQnBZRFFCd1dURWRGTFdMbkNGWVQ1a1RjUENoeGkwZnFTRUstXzJkemNCNXRxWk54U203T2oxSGpGMGUtZENUdU5TcS1xNFVRQXptQWgyNG45WHBlRE9Ea0VULTdwZGxxcGZXZ1FEU3NMV0U2UDdYZWNyR2R2N3hJaVRoVEZ6R0FTVnZ0QnJrLVRISVRuRURhWkZTaVBieTZPcUJlMG5wRlA4bzJxZHNNSnZmTnQ0Q1FvTVpPRlJ0NEk2cWpVbEtBcm92Q1c4eDBmYVdFdVpGd3Rjek9jNS1pOUt2VFdhcFhzVlFOR0NrMHY0UTFmQ2x5cDVpbzdCUTVvXzFWOHNtUDBITlBSMTZXalVGazE2a0N6WTA3YVpocjhNdUZ1cE9WdGdiR01WRWlpQkNQMjZ2TUVfeENOSDVmVE9uNFM1a2xKVFcya0VZb05VRldhYVJOUXdkajF4bkk2Q0hZSXNSbDZMRkFENVJLOGlMYWxCNE9fd1VOdVRBYVkzbE5xUVVCRDNtM25FNUE3TGx0eVA2M3JoR3pHdHBXOGVvOXphNFNiTl9QbHFMMVdRY1VnTWxreG5PcTNqRFdiQnJic0RUekEwN3pRTVhUTEhKMEhSMHQ5RG5ONkwyVXphb2VYNmtUV1VteU54WUNfUHY0aHhfRGVoYjVnS2ZSc3Vha25HSm85b0R0TDNkcHViZzV2ZS01WWdhZ0pjWVR1T1laLWsxdUNnYzZlLVdjWVNGdndfY0YwMDdmR2xnLXFkbW1vM2dZeVJxT1dkT0FDT05iUFFvaWxISll4RHhCTldqOGg1Qi1hUENxejJTX0hwU3JwUzF2QzJIeHd3bnpSXzJSenJFbkNHUElmSDJYNVhEczV2c3FYOFN4Y3hTVmdKOVBEbTlkR29HOG1GT25YejVLWDFobWI2eTBoSzhhZFNVWnoyQXFKYzBQVkszWWVJcHZLblQyY19mclNocXJzU2tDR29VblV4NkpMWHhBQVdSOUJBVGo5N1FlX0paU19hVTZvZk1yNFlYdGdlYUNaY1JSNEQ0X194TWV3ZGxMSUlJUWFZWW5MaFNFUVBPaUJFYnYtQ1RaeUtVdTFidFYySVA4aWU0YmstOFB1Vi00RVFlM3VwN1hMb0lFMmNHbUFIYmtLTFFudzNiSldqWWo5Vm5mazFRZEFMdnJpUnBpRnotSGRlbVUycUxsMVl1WE9sMUZuRVFEaFFTRUtfbS1CTHNEZ0FtUk10d0FFMGhhazhHb29JSDZfQjEyZHF4OExGSUR5TV8zdWwwWkNNaVg4LWExT05xVzhRanhoTUhNTHhTZWQtQTJtOXZnbGVuaXR6R1RLUUVUcU9yOElkOF9xSDFRWE9GR2JCeXZ6eVJWUEw1UEViQUY5WFM3V2FMY3BTSGw3bG1HRngzQ1JOcldxdGQzTl9OMHZWMlpDdFpFYnJMcm02YmlQMmJLM2czLTZmSHdjdVBibmk3cGdnT0ROd1VHZkVLVnFtT1RYTlFwYTJ1eHZwd0c4WEowV0tUVVF6RXhDUkVKcERRcEFnbjYwNUlDWS1CS0xqaXNCRDI4U2NiamF5LWR6UnhmQTRxVVFYTl9rS3RJOUs2U0o2RmxCV1NmdmRJa21OWEExZF9vdGRIRFdNZ3FYUXB3YkdXazBhMFpiUWx5SllpWWd0UHpNNHBxWk1tVkVNYmkxMFpQUFE0Z29YZzFlSUVFNkRoWmZEMGFFd3hvLUN6TXBYU1lHd0FNY1VxWXhZZ3FmV0NXbkQ2eFZnUGo1ZHpUR1YwUVluVGxCQ0NnTDZMd1dxVGdqYzZiYkU4Z1Z6cGlRVU9Mck40NDk5UmNJelFwMk1GTFNPUUl2aGVsSllCWVlwRGNYODdNd2VjeVphTE5UVjFKM2ZPeUYyYnI4N2tzLUtqMEM1YjF0ajdpemdITUtnT3ZBZlZjYkEtR2k0VXFfeVhqNFFaTGloaThJSmdHd0VVU3hPaGU0T1dQaWlZS1EyUG9pQlhSdmlqaTJVQXd0UHR5X3hDekJ1NExKMU1mQ1REc2JnWS10Y2FldVdfYW9CT0I2Y3RZYU9jMXBrT3ZDX1ViYWphdktUdHVWcHMxUTBfZkFubjdCYVM3VHpTRXNhVjZ2cExIb2g0MVp2emQ2VGpzTzVlQi1ldWZzZDhUMUpxZnBLeXhYQUJRSTVPRHk3SW1mZW01VEpsWjdqY2diT0lpLWxYZS00R1ZjSVRoSkpPOVNaSDl4c0RJSnp2MU4yaGEtZWd2ME9Za2R5b0xOMEFrSzgyd3VEZlNDcV82Y2pGUzc1M3lVZHJ5Y0JsYVVOczFIVERHa3hJdUNiX3NsVjdNdXlhV1V2cEg5UW9BTVNuRm4xcUpQMmJLbW9LM1RfLTB3RzBPUzZZd2JQNUh1QzZlV0wwdDVpUENlbFRiNS1KRnlQZUhCY1FEb2xyY0UwbjZ6NUhEcHNzU0xndHZYRnNoekh2bmdjXzk4UjlSNTNCMlZsTURQX25pYnVVTUk4MTdUaWNvV1puUUhESExqVFBWNi1uR3hHMjFMcjhMUjRrWE12VmpBSXFwZzE3bUNncjg3U0luU0tDSDN5RlBCeVRyTW9oWVcwX1hCOEJJbVBwZlRLZ2N4by1IU0N3WFJWaXNkOHdPWUZfeGpGcVI0Q19xVXQ1bWVfQTVlTEdGUTFHOHd4Mk5FVUEySWI2a1hLZ1NSZE9WMEZqdHlfdGlIRlg3LW1qQ2IzZVdhUW1aa3BkNVZjSHZmT0d2S3JQMmRTWHlYemlnSElRalc2X1NfdG1ScHVWXzJsSGdaTE5LRVV3dXRidUJtaHpQeDBIRlJZUE54VGg4TnRjVVpUbmhpSEExaFZlOVNsS1hFQXBXRV9fYnJQbXJ4Yi1Qd1VzTG9WY0ZvMkJicW1zNjZxaURnUjNXemtKLXFpclZsaHM3NlBWRE8xaUJLdHlCSDdpLTJ5OG5qY2UwN1dFLUY0b0tiLXhwR1RIT1VRdDJxdG1GR1hKeURxcUlveEs4MEJZb1hZd1BaWGpvdWQwSEU0cUNPSE90YS16S3VyY09MOGQzT01GNXFielFGLWZrUjA1Uk92RVU4VGszMS1pMUpkN3hHc0FMa3VDcVowckZYQ21jQTVaTzVuc2F0WnNxcVhlQ09VYzdidFpXbzZvbHUzc1JDVHZ5Q2RlWXR2RllHNnBtR2F0aHlKZGlzazBwT3BsMXdoUWU1dThMZk0yV2JIbG1mSzVjQlI0ZlhEVDU3MmxkOGM5c3llLXZiYUc0S1VCY2ZvT1JyMklpRTNlRzdCN0FCSTcyRjZ4N2pRR1VYRG1aLU9MZlh4Wi0xZGJyUmhvZ1dqT0RudUpBYTRtWnMyenVDMzBpOWZUMDRKdElpeTJFXzJFQ2lMWVd4V041WnViUnhZbmtlNTh0bW04ZHpXTDloaTlta081ZkhwUjR3eVRYbFBOLTZqTy0xdm5PZWVMWl9EUlRDXzhFQks2WFZDTTk3WE9jSnhFUEtkWFh0MnNwVC01Rmx6T3Y2WHNIV1pDVzcxaE9NcV9qb3NBLXVqZENUdm56YVk3MkI1d1F5RjlsbDBGNVdtcnMwc2dpNW5MWU9nMXFaQ01ydDRKMUdkcEpzdXN3QVFwdm1DQVhuLTAydk9XRnRSX0s3QXkwOTFkQmxkNEZTVXBQTzhVbUJuNG8yTWViSHBtclozSjJqa0VLdkpmMHAxaFp3MzNPNl9GRlVpM1FxMTdXUmJUNEExVUZ6U1VpNU42VXJjWTQ0Z2FkMnBPNi1xVFJuMXljTUE4U29FVm9SVWJaczJEZ3FyLU53RVMySmsyRzl4c0dpWkhla1VqdjlyWGw5c2tWbGI5V2RYSTBoLXJ5TzFfUU0xUUNHYldsX2xCaEdBdlZjMExqQ1I3d3lpeG1BRHVJMHc3Wlc3NHlDQUpKdUtJT0xyNTd1bzYxQmYzLXFYWXRIWDh2c0xPamc5N1IyTExHeUpKMWhVcVZlQU5sa3B3LkhsQXBVUTQ1YTdxRDRiRUVJWlRmR3B6b3lBNi12UlZQVkhlV000eUZVV3c\"}", - "status": 409, - "response": "{\"error\":{\"code\":\"Conflict\",\"message\":\"There was a conflict restoring the key 'https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/0f21985e3d2d42ed899ba2b76e892011'. This can happen if either: a second key with the same name was created after the first key was deleted; thus trying to restore a key whose name is already in use. To fix this, rename the second key to something else so that the restore works. The second probable cause of this exception is when multiple operations are performed in parallel against the key. To avoid this error, perform operations against a key in a sequential manner.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "661", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:48 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "409", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "22e50000-5ea9-429c-a731-68595f105112", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "9d9b39af-ab2f-4150-b9b1-727c931b6238", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/restore", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"value\":\"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUl5WVdabU5tRmhNUzAzTm1Ka0xUUTBZVGN0WVRjek5DMDJaalZoWkRCaU5XRTRPVGdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQzB5TlRZaUxDSmxibU1pT2lKQk1qVTJRMEpETFVoVE5URXlJbjAuY2lEMjFBc2YzaFZwVjc4dVFMV1RsUzdxZ1c5Wkp2UWhWZ3lGbzF2Y3Z5enZGdDFTUnlJVXdCekI5OTJsOVNhUF90REdXbEx6QURXTjFicFJweVp2STlBeHlIdEFkTWRxSTB0eGhLdHhGMmNOXzEtUGRVYUt4MWowRllKb3Mybm5UcjEwMnN6VGR1ZTdHY1dnb1BUTHRuc3llcVhCdkdVSGcyVnZOdjh0V1JQQV9WTjRKWWtfS2pqdGc0WmF0VW0tUk81VnNPZW13RXBaNU9NVndjRG8yTkd2emdVVkFERGtvc3dSYzZ3RVlxU0NHbkEzWkxtVnlJRVczcjZYd1Z3SWx2TkJhZUxGOXY0Ml8ycjUtc3VneDA0WUlZRnc4a0tSZEp5OUI0ZU9KXzRHa0stZm50X3Y4UFFlTEdGaVlkRkFZUVc2Q1pkVEh6akZFRG9QaWphYWx3LmxCRHNtSWt6MU1fMEpfMGdCakMxLWcuajNYZVQ5TlM5LVAyWjhPQTFlUW5TSEhvem01N0czaXhYeHRGWUtBU05WSTM1cFBPbUswdEVJMzltY0FRLUZtRGV4cVdWbUw3QWxYWUk1M3ZTaXEzWGtOMG5PLWdvSkhsdXNXM3BVemthRG9PWlNxY25QV0FxVXFwZi1zZVZCdkJqMXRBb2dsa2dTZ2psbUk0UlQwVFJJbkYzaEhXd3BIQVRzbWd6WnMxMVlpdlZ4RTlpbTkzNXplQVdaRXFRRFlncGJNZDdLdDN6ZlpJLTN4M05YelpZXzQ0NUptNGd0bzdLTDNEbENIbFpSU0lnZnhQc3Q3VW1RWC1FNk5oWklNWUlfMzNRNkdtTFBVNTk0QVozaERBcWlZXzFQeFdqdV9KY3dWcVdqLVE1TjVqWk5sYmo3UGw2MjhXMEVpOUF4R1FfQkFrLWJpYngxbHM2WWIwS05Oa2J6d1pPdjF4ZVUtYTRCVGFGZWNWS2QxR1dBM2pzZV9PSjNYcEV1ZlNzSEU1TktQeF82azVUMnFLMUliV0JHd3ZFb1R6NjFWZEpseGZacXdtczZjNGU3cHE0MHhnQU03M0xNakVqdlcwYjAwbHFHZGxBc1hEcnZMMDl0ZlRrRThIaHFfTlIzVFpGMFBtSGZrLUxRNVpMVlRLSFF3TkxtVVR2bkFLeWY0UFk0b1hCbmJzWm1OdDdaalFOUTFMOE1FNzJfQ0dPVmxuZjEwOWhDZHpud2dNWjh0cjdYNTVFbHIzUVdoR2FXSTZlc3FVZkNSbnZHZk80T1NjTU1QNlZ2UGtUdThMb3hKVzZ2X3hKZVpJUWlEcEloVnFGcE5UZ21PQXN3WlJYcmZhQ0ZqTkE0cDVfVUp0aW91aWUxOG10V2ZRQ2lyeGhHNTMwTFJHWEZLTkdkMzVpbkw4WklnUnRJQmtRR3NNZ3Z2dDZ5NnJiam5JV3ZEYmd1S0F5d2lmQk4xWm5pSHZYY0ZhUkYxZVJaU1NhM1BidkVSTHhoR3VmeGZfQzVYQjVzNXk4M2ktQkUtUEVFN19Ub0Y2YU1LWkU5aExXLThOR21XUFgxSVBqeG5OUFpNZE5wM3dkaTJyekJxLW9IMHlVNHFZX1hJZFIyYjU3STYwY2J3TThrS1NKcWhnS1pyRW4ySHR6cG5lWF9pei1jSHlnaHBSb0xQd0dMTWd1V0RqTUhOY0duZlFISFZhUER1cl85S3VsTnNZSDNLR3R1YlpTZUt6ZHM5ZWxrSGRJMWFuVG1lVnphZTFaZXRLOW81R1dQSEx3bUN5RGRXWlBYbDNRN0E3NEl4YkNoUFVvd0ZVOEVGbnJ6Yi16clBDOGNMNTBtZ0dIQVdwMDk4WEltSFZSZ2l0QWoxbXJycWhuejZYMjNqZkZVWGtfT1VDQ25KUC1BX0UwTXQ5dkg4dTJUb0hURnRqTElIQms5bzlyTEU3a3FWek9YZXFpOTlNekFhZUVEUnRLSF9FMzdxc0tSQWRORlRHUDVveTJtMXd1MTkwREdrQzU5aW9Ld2J6SkNOVjdOdmJmSGFrc1MzQmlzUFUwbzc3UjlDaHpEMjk3czZVUEdFbHJpQkR2LXRDRFFGYXlNRXNMeWxoZ3hQMEttbEczTFhtQmIteXd2aWVPOVBWbVU3TnZIQ0dlcEZzVTFMd3NabnRkSWZoQUpWRXppMThydktEaUhBSUlTZ045LWJLMTV2ZjFpOGNzNm9mMGRudDRyYWRmb1pvR1hla2VoUV9RdHJHRXNPdFNxRi10NXpCVXlCSjJMeGlfd0VyV3ViV3hkdk9YNjc5WVduaHdpbnR2aFZZbnpGTng3YS14c3hqelVXR3dCSFowTjllN2VnUjNjRHhqdjBlNzMzTTVBdUhmU3I3djY1S3hITkxQMmVXS2QydkhlQmRVWjlOdkdYamhxTno2eWVfNzFibUpjMW9fQWNiUHRKTGY2d2NhN2h4T05HakZla0dxM1Z1b1FOc2lnQkVhRkxwb3ZUMHllNkVTOTdkTWRPcDFjXzRTZF9WZ052U1NCMGFPYW1zY0lsMjJaM1JzczlZSkt3WkNlbEx1dkhCdTZtQXlOaUFTbEpXZFRJenNQR3hMUV9GclBJX2x1d1p4dG9HaDZTX0FNWW80NDBqS0RmbW9CdzQzTUJiMjNVTXhJWU5DMHY4THdXUTFuUkdhU1hzVDI3Uk14ajhCY25UTkRWWjN0SGF4WlNuRTRuRVFuQnRyUWJnaHpCdjBLSTRUbDVnRnp2Skd3TnZQakExcXl5dGFHTGU0aTNzeWNoSVRjY0VZWEt6ZkQxVmRKQWFQVWRtSFV5Z251NzNkNjhOcWk4VVQ4cWNaRVFlcU5tMnZ6cFhZUU5xb2ZwTmdBYnhBaWJXOWJXejJBUG0xNndDYU1Ka0VRSkQ1MlF0cmQ3WjNvQkMxazZfZVF0YlNjZGlKWUxlN1NRcFlWZGUyMUZOdDJGaXBIbDc2ZnJ0a2lwb1R4VHEwbHMwWjEzY05ETUF3dlc3eGgyN0ZqS2JGT01SN0pUMkVCMkpaVjBmcDd6d2hXSHRZN3R1NTFSYnQtM2E2b2s5LTZvRnUtdlB0Nm5KXzVZTTRpSjFmbEZNZWN0aU9UNThHQ09BbGNfZ0JhRU00d18yQm1pN2xadzlsOEx3X2t1WjdRdEpyUDQxWjNyLTY0QlBiTHJPY1NKT1hsN2xzMGZyc2MyeFlBVFdVbktpUGxqdnJUU3hTSDFwWi1va0FleDd2Wml0RjlHTUh4dFB4a2hGd1B4UUNhNkN1LXdscWNGYjJSRHR1YlBuWlVNV2VLYS1ud3ZUcjFIVFFKbVBuZHctOWpFUmo0b2tLb2ZudnJLbHhZNDVPU0ZqdDhoS0dwM2RTbjJ6emV6RWx5V0hFWnhla1V5ZXdVR1YybnFhWU83UXpvamdMM3hJbmoxMXRSSzVDVF9iQXVLd3BoOC1FSDMtWmJ2R3FURW45eXNIQ3Zsbi1PODRiWUlqYnBZdzdRLTRYWTkxVmJlOXJrSDV4M1UyZnZyeEdlQ241Wkk2WFBzVlBycGdXTy1DT0lBOWV1Q0RzcHB0alVfbUFBc1QwTVM0VFM1bVdkcGhBdm5xS2VaQS1tQ0FYOERjQXVieTkzMmdRUEp3SUFZaWJKNE1JVGQ0OXhkbzFQZjd0Wm5oME5vRFA0cjJ4R2ExSW1nVXE3SkhiYy1jV3prS1g1OVNxUzFSOGlTaFVGWWlCVUQwOGFoNFVLcjZWbjF5MWdaNUJWd043bU9Ub05pV3d3djdvaEp2YUtsSkJFQnNvZEs5Ti03ZXp0YjJ1STZjaHBxcXVoRkhTeGlZQ29KclhLWEhHQ0VzdC1Id1AzRmFPdXoxVTIwRFNHQkE1dTd3cHJ5U1k1Y0dZMzhmcVFHYzFqU21FU0dZVzdTNWxXbld3SEh0ejlEVjljZ1BnX3dXQm1LczkxVGJrUWtBOTZLbjljeXh2ZjEzamtwT0habUs2ZFBCZzNOZHQ1Vm0xTk9WSllYWVM2T3dzeThUVW54SnkyMjVFMklSV2xNU0E2bDBySWFVZXh6V1FSYWFDZWsteVJTMGwxZmJXME16V0w3bDNKRWxCNjk2bjM3NGlmR2dsb3h5RW1JTUl3TzF3QTRfa3Y1Q2RVSjk0Nk9OT0wzc3ZUSzBod24xZjZ3SEppT1lQYlFUTXp3LVdNR1p0RHRSM1hjNTRQa013LVhzWUE5RkNNMkxEOElDUGE5LThwV1hpNmZzWlpGVXVvcXpzLUNLaUREVi1IRXVpYnRGcVlXeHNfeV9RaHdIRHpCMjhZNHptUTNpQXdnMUZmNjFSUGNHQnlFMVdTeU96c0NyQkpRblE2ZHBKYW5MLWRHUmVPc0pENEVoWW42Rkk2QWhaNjE5NnBfV2pEWFl3Z2YyWkVsZWRKS25EeFlWZFg4NzRwdy0xbEFKNGVpZ3JpS1ZxVENzckhXWkhFQnVrT0FaNlR2bmZWenlqcTV5TnpqUWR3UzVXMlZKMDRZcy1LZDdmcDM0NE9GUDBtaVpONkNWeVJOQ3RyTEJZSVpQbmdXRVktUDRBOUhiXzN5VWdyX3dSTlQ4ZlE1Qnl4VnhwRjVSVFdudi1pWTNXSWQwaFMxa2sxb2x2WEhPa1l6Z3hsSW5zaWtLc1Z0RVdySVRURE1iNGJlSUNzMnZVTkxHNnJyZ0hMRUszY0RYOFRjaGc1YnE4QXYydS1uZm5vQ0syV0JoSDhWS0lWT2Y1ejBtY1kxY0NSb2Y0UTZXNGRQeXM0RFV6S1JXS0x1T0RCYlMtYzdxTlNuN0M1c0hVR0dRLVdrNnlnUXZTTTk4SDdsOG1BckRNdXQ5YzUzZk1FNVlHOTRUanlGemdsOGNxdVlCQVBqYWVQdldlOFdYNHBKb2NUZnVzdjlZMklfY1hNQktEbVc4WHlNRTFPaEhDSzBXbTJORGlBem5nX2t6ZmlFYTgtSThXWUJ0OGI1Vk5QQW85bm55TFJfNXRCRkdGV2NoLTJkYUxGQnR6S3NUQkxRZm5pQ2tVdXItQUdVUk1XN1FmRE1vSmR0a3lCR2tmRFVheXlBYWQ5ZEpfSE1hZUxDaVE0UWhpRnpNVHF5ZzYxQmwyXzkyMi1PY09HU1BSRElXeFNZRWRfUWtKb29mN3ptXzR1bWRVOUVBRk5vYUxxcERoY2lCa3NfNEhUM1diVXAzQ25jb3phd3JfZFlRRTVYOXpIWS0yUl9WdzZXVTZMdTYtaV9jNjBmQXZEX2lISklzU3d0bnF2WVEtenl3djVLNWJXUFdyV2ZnMzBrMV9sbFNsazktYjJCNUZmWVZBUUJsMkRaVG9VdlJzaDVZVHhiYm5EbGFzOEJVRE1XV0hSSEotZF9pZUNad2VIbGdWVkktT1lWV1NCLXAtSjk1akZuVmJnUEdiVjJSSE53US1IdkNrRDBpZElDTklEY2h4UnFGZUQ4Z2dFaTdfcnd6N1d1ZXpZS3V5aFNHa1hhVWMtbmUxdHRrRmRsYWJ5SEt1b1FJWDZ2Snp1cEpjWUo1OEMxd0kwUXBIcjY4U3poekpjMjBUVGk2VWc3T1FtVHpncy1JNDVKVGFuSW5NdHk0MmlubjdqU3daWXQtMERWTXZPZ2RZeEVVRk9UZE5vWmFWMTI0QjdfS0c3bGxmY1o4TXUwNkR3M3FXWklUSExpcmZhZjhnU0tNRm41b1dfVjdCSWJXR2xiOTg0QkNjRExTOXRuaEllQnp5akRUcmhFOXZwdDNtNnJaMGpjcTFjdEVkZ0xFM2NwR0ZYX3lHOEJoenVKSk9jNTNyWkpydVY2TVNzSTlRYllNd0pUcmJuLXdMYVN0ZWx5b0JTUVl3NndDWmVxMGwtQ2VxX1kycExhQVkxb1JRajN1LTBrVHlEcXl6N2lSaTJqcXN4TW9sQTdmTE5USEZQbi0tNUNZTnB0c0paM2tlSjRINmdkc1phTHFvMTFYZ1hnWFJVcEFrb1BYbGJhdU96LWQzUFpNdXBUaGJZNF9Obi1Va3RrdGhYTV9IbTQ2S2JkQkFrY3J1UGhiRTZMMDN3OGVSaFhBdU9ZR0ZvamZlZFdQZ0R6YjZuQm1vSnhudHZ6UjNuZmliYWQ0M0VXZ2RmMThkQVBncHhzaTVuWF8zUElfaW5qSVVHdlh1aGl1TDVvOW9TOFpCQ0dsaGdWWnFKN1hMUzFIREJjVnhHT2hCUDB5b1ZUTXM0cFZBaWl0Tm0wVFRrU3hPT0RNQnBZRFFCd1dURWRGTFdMbkNGWVQ1a1RjUENoeGkwZnFTRUstXzJkemNCNXRxWk54U203T2oxSGpGMGUtZENUdU5TcS1xNFVRQXptQWgyNG45WHBlRE9Ea0VULTdwZGxxcGZXZ1FEU3NMV0U2UDdYZWNyR2R2N3hJaVRoVEZ6R0FTVnZ0QnJrLVRISVRuRURhWkZTaVBieTZPcUJlMG5wRlA4bzJxZHNNSnZmTnQ0Q1FvTVpPRlJ0NEk2cWpVbEtBcm92Q1c4eDBmYVdFdVpGd3Rjek9jNS1pOUt2VFdhcFhzVlFOR0NrMHY0UTFmQ2x5cDVpbzdCUTVvXzFWOHNtUDBITlBSMTZXalVGazE2a0N6WTA3YVpocjhNdUZ1cE9WdGdiR01WRWlpQkNQMjZ2TUVfeENOSDVmVE9uNFM1a2xKVFcya0VZb05VRldhYVJOUXdkajF4bkk2Q0hZSXNSbDZMRkFENVJLOGlMYWxCNE9fd1VOdVRBYVkzbE5xUVVCRDNtM25FNUE3TGx0eVA2M3JoR3pHdHBXOGVvOXphNFNiTl9QbHFMMVdRY1VnTWxreG5PcTNqRFdiQnJic0RUekEwN3pRTVhUTEhKMEhSMHQ5RG5ONkwyVXphb2VYNmtUV1VteU54WUNfUHY0aHhfRGVoYjVnS2ZSc3Vha25HSm85b0R0TDNkcHViZzV2ZS01WWdhZ0pjWVR1T1laLWsxdUNnYzZlLVdjWVNGdndfY0YwMDdmR2xnLXFkbW1vM2dZeVJxT1dkT0FDT05iUFFvaWxISll4RHhCTldqOGg1Qi1hUENxejJTX0hwU3JwUzF2QzJIeHd3bnpSXzJSenJFbkNHUElmSDJYNVhEczV2c3FYOFN4Y3hTVmdKOVBEbTlkR29HOG1GT25YejVLWDFobWI2eTBoSzhhZFNVWnoyQXFKYzBQVkszWWVJcHZLblQyY19mclNocXJzU2tDR29VblV4NkpMWHhBQVdSOUJBVGo5N1FlX0paU19hVTZvZk1yNFlYdGdlYUNaY1JSNEQ0X194TWV3ZGxMSUlJUWFZWW5MaFNFUVBPaUJFYnYtQ1RaeUtVdTFidFYySVA4aWU0YmstOFB1Vi00RVFlM3VwN1hMb0lFMmNHbUFIYmtLTFFudzNiSldqWWo5Vm5mazFRZEFMdnJpUnBpRnotSGRlbVUycUxsMVl1WE9sMUZuRVFEaFFTRUtfbS1CTHNEZ0FtUk10d0FFMGhhazhHb29JSDZfQjEyZHF4OExGSUR5TV8zdWwwWkNNaVg4LWExT05xVzhRanhoTUhNTHhTZWQtQTJtOXZnbGVuaXR6R1RLUUVUcU9yOElkOF9xSDFRWE9GR2JCeXZ6eVJWUEw1UEViQUY5WFM3V2FMY3BTSGw3bG1HRngzQ1JOcldxdGQzTl9OMHZWMlpDdFpFYnJMcm02YmlQMmJLM2czLTZmSHdjdVBibmk3cGdnT0ROd1VHZkVLVnFtT1RYTlFwYTJ1eHZwd0c4WEowV0tUVVF6RXhDUkVKcERRcEFnbjYwNUlDWS1CS0xqaXNCRDI4U2NiamF5LWR6UnhmQTRxVVFYTl9rS3RJOUs2U0o2RmxCV1NmdmRJa21OWEExZF9vdGRIRFdNZ3FYUXB3YkdXazBhMFpiUWx5SllpWWd0UHpNNHBxWk1tVkVNYmkxMFpQUFE0Z29YZzFlSUVFNkRoWmZEMGFFd3hvLUN6TXBYU1lHd0FNY1VxWXhZZ3FmV0NXbkQ2eFZnUGo1ZHpUR1YwUVluVGxCQ0NnTDZMd1dxVGdqYzZiYkU4Z1Z6cGlRVU9Mck40NDk5UmNJelFwMk1GTFNPUUl2aGVsSllCWVlwRGNYODdNd2VjeVphTE5UVjFKM2ZPeUYyYnI4N2tzLUtqMEM1YjF0ajdpemdITUtnT3ZBZlZjYkEtR2k0VXFfeVhqNFFaTGloaThJSmdHd0VVU3hPaGU0T1dQaWlZS1EyUG9pQlhSdmlqaTJVQXd0UHR5X3hDekJ1NExKMU1mQ1REc2JnWS10Y2FldVdfYW9CT0I2Y3RZYU9jMXBrT3ZDX1ViYWphdktUdHVWcHMxUTBfZkFubjdCYVM3VHpTRXNhVjZ2cExIb2g0MVp2emQ2VGpzTzVlQi1ldWZzZDhUMUpxZnBLeXhYQUJRSTVPRHk3SW1mZW01VEpsWjdqY2diT0lpLWxYZS00R1ZjSVRoSkpPOVNaSDl4c0RJSnp2MU4yaGEtZWd2ME9Za2R5b0xOMEFrSzgyd3VEZlNDcV82Y2pGUzc1M3lVZHJ5Y0JsYVVOczFIVERHa3hJdUNiX3NsVjdNdXlhV1V2cEg5UW9BTVNuRm4xcUpQMmJLbW9LM1RfLTB3RzBPUzZZd2JQNUh1QzZlV0wwdDVpUENlbFRiNS1KRnlQZUhCY1FEb2xyY0UwbjZ6NUhEcHNzU0xndHZYRnNoekh2bmdjXzk4UjlSNTNCMlZsTURQX25pYnVVTUk4MTdUaWNvV1puUUhESExqVFBWNi1uR3hHMjFMcjhMUjRrWE12VmpBSXFwZzE3bUNncjg3U0luU0tDSDN5RlBCeVRyTW9oWVcwX1hCOEJJbVBwZlRLZ2N4by1IU0N3WFJWaXNkOHdPWUZfeGpGcVI0Q19xVXQ1bWVfQTVlTEdGUTFHOHd4Mk5FVUEySWI2a1hLZ1NSZE9WMEZqdHlfdGlIRlg3LW1qQ2IzZVdhUW1aa3BkNVZjSHZmT0d2S3JQMmRTWHlYemlnSElRalc2X1NfdG1ScHVWXzJsSGdaTE5LRVV3dXRidUJtaHpQeDBIRlJZUE54VGg4TnRjVVpUbmhpSEExaFZlOVNsS1hFQXBXRV9fYnJQbXJ4Yi1Qd1VzTG9WY0ZvMkJicW1zNjZxaURnUjNXemtKLXFpclZsaHM3NlBWRE8xaUJLdHlCSDdpLTJ5OG5qY2UwN1dFLUY0b0tiLXhwR1RIT1VRdDJxdG1GR1hKeURxcUlveEs4MEJZb1hZd1BaWGpvdWQwSEU0cUNPSE90YS16S3VyY09MOGQzT01GNXFielFGLWZrUjA1Uk92RVU4VGszMS1pMUpkN3hHc0FMa3VDcVowckZYQ21jQTVaTzVuc2F0WnNxcVhlQ09VYzdidFpXbzZvbHUzc1JDVHZ5Q2RlWXR2RllHNnBtR2F0aHlKZGlzazBwT3BsMXdoUWU1dThMZk0yV2JIbG1mSzVjQlI0ZlhEVDU3MmxkOGM5c3llLXZiYUc0S1VCY2ZvT1JyMklpRTNlRzdCN0FCSTcyRjZ4N2pRR1VYRG1aLU9MZlh4Wi0xZGJyUmhvZ1dqT0RudUpBYTRtWnMyenVDMzBpOWZUMDRKdElpeTJFXzJFQ2lMWVd4V041WnViUnhZbmtlNTh0bW04ZHpXTDloaTlta081ZkhwUjR3eVRYbFBOLTZqTy0xdm5PZWVMWl9EUlRDXzhFQks2WFZDTTk3WE9jSnhFUEtkWFh0MnNwVC01Rmx6T3Y2WHNIV1pDVzcxaE9NcV9qb3NBLXVqZENUdm56YVk3MkI1d1F5RjlsbDBGNVdtcnMwc2dpNW5MWU9nMXFaQ01ydDRKMUdkcEpzdXN3QVFwdm1DQVhuLTAydk9XRnRSX0s3QXkwOTFkQmxkNEZTVXBQTzhVbUJuNG8yTWViSHBtclozSjJqa0VLdkpmMHAxaFp3MzNPNl9GRlVpM1FxMTdXUmJUNEExVUZ6U1VpNU42VXJjWTQ0Z2FkMnBPNi1xVFJuMXljTUE4U29FVm9SVWJaczJEZ3FyLU53RVMySmsyRzl4c0dpWkhla1VqdjlyWGw5c2tWbGI5V2RYSTBoLXJ5TzFfUU0xUUNHYldsX2xCaEdBdlZjMExqQ1I3d3lpeG1BRHVJMHc3Wlc3NHlDQUpKdUtJT0xyNTd1bzYxQmYzLXFYWXRIWDh2c0xPamc5N1IyTExHeUpKMWhVcVZlQU5sa3B3LkhsQXBVUTQ1YTdxRDRiRUVJWlRmR3B6b3lBNi12UlZQVkhlV000eUZVV3c\"}", - "status": 409, - "response": "{\"error\":{\"code\":\"Conflict\",\"message\":\"There was a conflict restoring the key 'https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/0f21985e3d2d42ed899ba2b76e892011'. This can happen if either: a second key with the same name was created after the first key was deleted; thus trying to restore a key whose name is already in use. To fix this, rename the second key to something else so that the restore works. The second probable cause of this exception is when multiple operations are performed in parallel against the key. To avoid this error, perform operations against a key in a sequential manner.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "661", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:52 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "409", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "3ca1522c-53fd-4255-a6c3-a49d8d189b03", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5385af09-83c9-45b6-b5c8-a044a2b9959f", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/restore", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"value\":\"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUl5WVdabU5tRmhNUzAzTm1Ka0xUUTBZVGN0WVRjek5DMDJaalZoWkRCaU5XRTRPVGdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQzB5TlRZaUxDSmxibU1pT2lKQk1qVTJRMEpETFVoVE5URXlJbjAuY2lEMjFBc2YzaFZwVjc4dVFMV1RsUzdxZ1c5Wkp2UWhWZ3lGbzF2Y3Z5enZGdDFTUnlJVXdCekI5OTJsOVNhUF90REdXbEx6QURXTjFicFJweVp2STlBeHlIdEFkTWRxSTB0eGhLdHhGMmNOXzEtUGRVYUt4MWowRllKb3Mybm5UcjEwMnN6VGR1ZTdHY1dnb1BUTHRuc3llcVhCdkdVSGcyVnZOdjh0V1JQQV9WTjRKWWtfS2pqdGc0WmF0VW0tUk81VnNPZW13RXBaNU9NVndjRG8yTkd2emdVVkFERGtvc3dSYzZ3RVlxU0NHbkEzWkxtVnlJRVczcjZYd1Z3SWx2TkJhZUxGOXY0Ml8ycjUtc3VneDA0WUlZRnc4a0tSZEp5OUI0ZU9KXzRHa0stZm50X3Y4UFFlTEdGaVlkRkFZUVc2Q1pkVEh6akZFRG9QaWphYWx3LmxCRHNtSWt6MU1fMEpfMGdCakMxLWcuajNYZVQ5TlM5LVAyWjhPQTFlUW5TSEhvem01N0czaXhYeHRGWUtBU05WSTM1cFBPbUswdEVJMzltY0FRLUZtRGV4cVdWbUw3QWxYWUk1M3ZTaXEzWGtOMG5PLWdvSkhsdXNXM3BVemthRG9PWlNxY25QV0FxVXFwZi1zZVZCdkJqMXRBb2dsa2dTZ2psbUk0UlQwVFJJbkYzaEhXd3BIQVRzbWd6WnMxMVlpdlZ4RTlpbTkzNXplQVdaRXFRRFlncGJNZDdLdDN6ZlpJLTN4M05YelpZXzQ0NUptNGd0bzdLTDNEbENIbFpSU0lnZnhQc3Q3VW1RWC1FNk5oWklNWUlfMzNRNkdtTFBVNTk0QVozaERBcWlZXzFQeFdqdV9KY3dWcVdqLVE1TjVqWk5sYmo3UGw2MjhXMEVpOUF4R1FfQkFrLWJpYngxbHM2WWIwS05Oa2J6d1pPdjF4ZVUtYTRCVGFGZWNWS2QxR1dBM2pzZV9PSjNYcEV1ZlNzSEU1TktQeF82azVUMnFLMUliV0JHd3ZFb1R6NjFWZEpseGZacXdtczZjNGU3cHE0MHhnQU03M0xNakVqdlcwYjAwbHFHZGxBc1hEcnZMMDl0ZlRrRThIaHFfTlIzVFpGMFBtSGZrLUxRNVpMVlRLSFF3TkxtVVR2bkFLeWY0UFk0b1hCbmJzWm1OdDdaalFOUTFMOE1FNzJfQ0dPVmxuZjEwOWhDZHpud2dNWjh0cjdYNTVFbHIzUVdoR2FXSTZlc3FVZkNSbnZHZk80T1NjTU1QNlZ2UGtUdThMb3hKVzZ2X3hKZVpJUWlEcEloVnFGcE5UZ21PQXN3WlJYcmZhQ0ZqTkE0cDVfVUp0aW91aWUxOG10V2ZRQ2lyeGhHNTMwTFJHWEZLTkdkMzVpbkw4WklnUnRJQmtRR3NNZ3Z2dDZ5NnJiam5JV3ZEYmd1S0F5d2lmQk4xWm5pSHZYY0ZhUkYxZVJaU1NhM1BidkVSTHhoR3VmeGZfQzVYQjVzNXk4M2ktQkUtUEVFN19Ub0Y2YU1LWkU5aExXLThOR21XUFgxSVBqeG5OUFpNZE5wM3dkaTJyekJxLW9IMHlVNHFZX1hJZFIyYjU3STYwY2J3TThrS1NKcWhnS1pyRW4ySHR6cG5lWF9pei1jSHlnaHBSb0xQd0dMTWd1V0RqTUhOY0duZlFISFZhUER1cl85S3VsTnNZSDNLR3R1YlpTZUt6ZHM5ZWxrSGRJMWFuVG1lVnphZTFaZXRLOW81R1dQSEx3bUN5RGRXWlBYbDNRN0E3NEl4YkNoUFVvd0ZVOEVGbnJ6Yi16clBDOGNMNTBtZ0dIQVdwMDk4WEltSFZSZ2l0QWoxbXJycWhuejZYMjNqZkZVWGtfT1VDQ25KUC1BX0UwTXQ5dkg4dTJUb0hURnRqTElIQms5bzlyTEU3a3FWek9YZXFpOTlNekFhZUVEUnRLSF9FMzdxc0tSQWRORlRHUDVveTJtMXd1MTkwREdrQzU5aW9Ld2J6SkNOVjdOdmJmSGFrc1MzQmlzUFUwbzc3UjlDaHpEMjk3czZVUEdFbHJpQkR2LXRDRFFGYXlNRXNMeWxoZ3hQMEttbEczTFhtQmIteXd2aWVPOVBWbVU3TnZIQ0dlcEZzVTFMd3NabnRkSWZoQUpWRXppMThydktEaUhBSUlTZ045LWJLMTV2ZjFpOGNzNm9mMGRudDRyYWRmb1pvR1hla2VoUV9RdHJHRXNPdFNxRi10NXpCVXlCSjJMeGlfd0VyV3ViV3hkdk9YNjc5WVduaHdpbnR2aFZZbnpGTng3YS14c3hqelVXR3dCSFowTjllN2VnUjNjRHhqdjBlNzMzTTVBdUhmU3I3djY1S3hITkxQMmVXS2QydkhlQmRVWjlOdkdYamhxTno2eWVfNzFibUpjMW9fQWNiUHRKTGY2d2NhN2h4T05HakZla0dxM1Z1b1FOc2lnQkVhRkxwb3ZUMHllNkVTOTdkTWRPcDFjXzRTZF9WZ052U1NCMGFPYW1zY0lsMjJaM1JzczlZSkt3WkNlbEx1dkhCdTZtQXlOaUFTbEpXZFRJenNQR3hMUV9GclBJX2x1d1p4dG9HaDZTX0FNWW80NDBqS0RmbW9CdzQzTUJiMjNVTXhJWU5DMHY4THdXUTFuUkdhU1hzVDI3Uk14ajhCY25UTkRWWjN0SGF4WlNuRTRuRVFuQnRyUWJnaHpCdjBLSTRUbDVnRnp2Skd3TnZQakExcXl5dGFHTGU0aTNzeWNoSVRjY0VZWEt6ZkQxVmRKQWFQVWRtSFV5Z251NzNkNjhOcWk4VVQ4cWNaRVFlcU5tMnZ6cFhZUU5xb2ZwTmdBYnhBaWJXOWJXejJBUG0xNndDYU1Ka0VRSkQ1MlF0cmQ3WjNvQkMxazZfZVF0YlNjZGlKWUxlN1NRcFlWZGUyMUZOdDJGaXBIbDc2ZnJ0a2lwb1R4VHEwbHMwWjEzY05ETUF3dlc3eGgyN0ZqS2JGT01SN0pUMkVCMkpaVjBmcDd6d2hXSHRZN3R1NTFSYnQtM2E2b2s5LTZvRnUtdlB0Nm5KXzVZTTRpSjFmbEZNZWN0aU9UNThHQ09BbGNfZ0JhRU00d18yQm1pN2xadzlsOEx3X2t1WjdRdEpyUDQxWjNyLTY0QlBiTHJPY1NKT1hsN2xzMGZyc2MyeFlBVFdVbktpUGxqdnJUU3hTSDFwWi1va0FleDd2Wml0RjlHTUh4dFB4a2hGd1B4UUNhNkN1LXdscWNGYjJSRHR1YlBuWlVNV2VLYS1ud3ZUcjFIVFFKbVBuZHctOWpFUmo0b2tLb2ZudnJLbHhZNDVPU0ZqdDhoS0dwM2RTbjJ6emV6RWx5V0hFWnhla1V5ZXdVR1YybnFhWU83UXpvamdMM3hJbmoxMXRSSzVDVF9iQXVLd3BoOC1FSDMtWmJ2R3FURW45eXNIQ3Zsbi1PODRiWUlqYnBZdzdRLTRYWTkxVmJlOXJrSDV4M1UyZnZyeEdlQ241Wkk2WFBzVlBycGdXTy1DT0lBOWV1Q0RzcHB0alVfbUFBc1QwTVM0VFM1bVdkcGhBdm5xS2VaQS1tQ0FYOERjQXVieTkzMmdRUEp3SUFZaWJKNE1JVGQ0OXhkbzFQZjd0Wm5oME5vRFA0cjJ4R2ExSW1nVXE3SkhiYy1jV3prS1g1OVNxUzFSOGlTaFVGWWlCVUQwOGFoNFVLcjZWbjF5MWdaNUJWd043bU9Ub05pV3d3djdvaEp2YUtsSkJFQnNvZEs5Ti03ZXp0YjJ1STZjaHBxcXVoRkhTeGlZQ29KclhLWEhHQ0VzdC1Id1AzRmFPdXoxVTIwRFNHQkE1dTd3cHJ5U1k1Y0dZMzhmcVFHYzFqU21FU0dZVzdTNWxXbld3SEh0ejlEVjljZ1BnX3dXQm1LczkxVGJrUWtBOTZLbjljeXh2ZjEzamtwT0habUs2ZFBCZzNOZHQ1Vm0xTk9WSllYWVM2T3dzeThUVW54SnkyMjVFMklSV2xNU0E2bDBySWFVZXh6V1FSYWFDZWsteVJTMGwxZmJXME16V0w3bDNKRWxCNjk2bjM3NGlmR2dsb3h5RW1JTUl3TzF3QTRfa3Y1Q2RVSjk0Nk9OT0wzc3ZUSzBod24xZjZ3SEppT1lQYlFUTXp3LVdNR1p0RHRSM1hjNTRQa013LVhzWUE5RkNNMkxEOElDUGE5LThwV1hpNmZzWlpGVXVvcXpzLUNLaUREVi1IRXVpYnRGcVlXeHNfeV9RaHdIRHpCMjhZNHptUTNpQXdnMUZmNjFSUGNHQnlFMVdTeU96c0NyQkpRblE2ZHBKYW5MLWRHUmVPc0pENEVoWW42Rkk2QWhaNjE5NnBfV2pEWFl3Z2YyWkVsZWRKS25EeFlWZFg4NzRwdy0xbEFKNGVpZ3JpS1ZxVENzckhXWkhFQnVrT0FaNlR2bmZWenlqcTV5TnpqUWR3UzVXMlZKMDRZcy1LZDdmcDM0NE9GUDBtaVpONkNWeVJOQ3RyTEJZSVpQbmdXRVktUDRBOUhiXzN5VWdyX3dSTlQ4ZlE1Qnl4VnhwRjVSVFdudi1pWTNXSWQwaFMxa2sxb2x2WEhPa1l6Z3hsSW5zaWtLc1Z0RVdySVRURE1iNGJlSUNzMnZVTkxHNnJyZ0hMRUszY0RYOFRjaGc1YnE4QXYydS1uZm5vQ0syV0JoSDhWS0lWT2Y1ejBtY1kxY0NSb2Y0UTZXNGRQeXM0RFV6S1JXS0x1T0RCYlMtYzdxTlNuN0M1c0hVR0dRLVdrNnlnUXZTTTk4SDdsOG1BckRNdXQ5YzUzZk1FNVlHOTRUanlGemdsOGNxdVlCQVBqYWVQdldlOFdYNHBKb2NUZnVzdjlZMklfY1hNQktEbVc4WHlNRTFPaEhDSzBXbTJORGlBem5nX2t6ZmlFYTgtSThXWUJ0OGI1Vk5QQW85bm55TFJfNXRCRkdGV2NoLTJkYUxGQnR6S3NUQkxRZm5pQ2tVdXItQUdVUk1XN1FmRE1vSmR0a3lCR2tmRFVheXlBYWQ5ZEpfSE1hZUxDaVE0UWhpRnpNVHF5ZzYxQmwyXzkyMi1PY09HU1BSRElXeFNZRWRfUWtKb29mN3ptXzR1bWRVOUVBRk5vYUxxcERoY2lCa3NfNEhUM1diVXAzQ25jb3phd3JfZFlRRTVYOXpIWS0yUl9WdzZXVTZMdTYtaV9jNjBmQXZEX2lISklzU3d0bnF2WVEtenl3djVLNWJXUFdyV2ZnMzBrMV9sbFNsazktYjJCNUZmWVZBUUJsMkRaVG9VdlJzaDVZVHhiYm5EbGFzOEJVRE1XV0hSSEotZF9pZUNad2VIbGdWVkktT1lWV1NCLXAtSjk1akZuVmJnUEdiVjJSSE53US1IdkNrRDBpZElDTklEY2h4UnFGZUQ4Z2dFaTdfcnd6N1d1ZXpZS3V5aFNHa1hhVWMtbmUxdHRrRmRsYWJ5SEt1b1FJWDZ2Snp1cEpjWUo1OEMxd0kwUXBIcjY4U3poekpjMjBUVGk2VWc3T1FtVHpncy1JNDVKVGFuSW5NdHk0MmlubjdqU3daWXQtMERWTXZPZ2RZeEVVRk9UZE5vWmFWMTI0QjdfS0c3bGxmY1o4TXUwNkR3M3FXWklUSExpcmZhZjhnU0tNRm41b1dfVjdCSWJXR2xiOTg0QkNjRExTOXRuaEllQnp5akRUcmhFOXZwdDNtNnJaMGpjcTFjdEVkZ0xFM2NwR0ZYX3lHOEJoenVKSk9jNTNyWkpydVY2TVNzSTlRYllNd0pUcmJuLXdMYVN0ZWx5b0JTUVl3NndDWmVxMGwtQ2VxX1kycExhQVkxb1JRajN1LTBrVHlEcXl6N2lSaTJqcXN4TW9sQTdmTE5USEZQbi0tNUNZTnB0c0paM2tlSjRINmdkc1phTHFvMTFYZ1hnWFJVcEFrb1BYbGJhdU96LWQzUFpNdXBUaGJZNF9Obi1Va3RrdGhYTV9IbTQ2S2JkQkFrY3J1UGhiRTZMMDN3OGVSaFhBdU9ZR0ZvamZlZFdQZ0R6YjZuQm1vSnhudHZ6UjNuZmliYWQ0M0VXZ2RmMThkQVBncHhzaTVuWF8zUElfaW5qSVVHdlh1aGl1TDVvOW9TOFpCQ0dsaGdWWnFKN1hMUzFIREJjVnhHT2hCUDB5b1ZUTXM0cFZBaWl0Tm0wVFRrU3hPT0RNQnBZRFFCd1dURWRGTFdMbkNGWVQ1a1RjUENoeGkwZnFTRUstXzJkemNCNXRxWk54U203T2oxSGpGMGUtZENUdU5TcS1xNFVRQXptQWgyNG45WHBlRE9Ea0VULTdwZGxxcGZXZ1FEU3NMV0U2UDdYZWNyR2R2N3hJaVRoVEZ6R0FTVnZ0QnJrLVRISVRuRURhWkZTaVBieTZPcUJlMG5wRlA4bzJxZHNNSnZmTnQ0Q1FvTVpPRlJ0NEk2cWpVbEtBcm92Q1c4eDBmYVdFdVpGd3Rjek9jNS1pOUt2VFdhcFhzVlFOR0NrMHY0UTFmQ2x5cDVpbzdCUTVvXzFWOHNtUDBITlBSMTZXalVGazE2a0N6WTA3YVpocjhNdUZ1cE9WdGdiR01WRWlpQkNQMjZ2TUVfeENOSDVmVE9uNFM1a2xKVFcya0VZb05VRldhYVJOUXdkajF4bkk2Q0hZSXNSbDZMRkFENVJLOGlMYWxCNE9fd1VOdVRBYVkzbE5xUVVCRDNtM25FNUE3TGx0eVA2M3JoR3pHdHBXOGVvOXphNFNiTl9QbHFMMVdRY1VnTWxreG5PcTNqRFdiQnJic0RUekEwN3pRTVhUTEhKMEhSMHQ5RG5ONkwyVXphb2VYNmtUV1VteU54WUNfUHY0aHhfRGVoYjVnS2ZSc3Vha25HSm85b0R0TDNkcHViZzV2ZS01WWdhZ0pjWVR1T1laLWsxdUNnYzZlLVdjWVNGdndfY0YwMDdmR2xnLXFkbW1vM2dZeVJxT1dkT0FDT05iUFFvaWxISll4RHhCTldqOGg1Qi1hUENxejJTX0hwU3JwUzF2QzJIeHd3bnpSXzJSenJFbkNHUElmSDJYNVhEczV2c3FYOFN4Y3hTVmdKOVBEbTlkR29HOG1GT25YejVLWDFobWI2eTBoSzhhZFNVWnoyQXFKYzBQVkszWWVJcHZLblQyY19mclNocXJzU2tDR29VblV4NkpMWHhBQVdSOUJBVGo5N1FlX0paU19hVTZvZk1yNFlYdGdlYUNaY1JSNEQ0X194TWV3ZGxMSUlJUWFZWW5MaFNFUVBPaUJFYnYtQ1RaeUtVdTFidFYySVA4aWU0YmstOFB1Vi00RVFlM3VwN1hMb0lFMmNHbUFIYmtLTFFudzNiSldqWWo5Vm5mazFRZEFMdnJpUnBpRnotSGRlbVUycUxsMVl1WE9sMUZuRVFEaFFTRUtfbS1CTHNEZ0FtUk10d0FFMGhhazhHb29JSDZfQjEyZHF4OExGSUR5TV8zdWwwWkNNaVg4LWExT05xVzhRanhoTUhNTHhTZWQtQTJtOXZnbGVuaXR6R1RLUUVUcU9yOElkOF9xSDFRWE9GR2JCeXZ6eVJWUEw1UEViQUY5WFM3V2FMY3BTSGw3bG1HRngzQ1JOcldxdGQzTl9OMHZWMlpDdFpFYnJMcm02YmlQMmJLM2czLTZmSHdjdVBibmk3cGdnT0ROd1VHZkVLVnFtT1RYTlFwYTJ1eHZwd0c4WEowV0tUVVF6RXhDUkVKcERRcEFnbjYwNUlDWS1CS0xqaXNCRDI4U2NiamF5LWR6UnhmQTRxVVFYTl9rS3RJOUs2U0o2RmxCV1NmdmRJa21OWEExZF9vdGRIRFdNZ3FYUXB3YkdXazBhMFpiUWx5SllpWWd0UHpNNHBxWk1tVkVNYmkxMFpQUFE0Z29YZzFlSUVFNkRoWmZEMGFFd3hvLUN6TXBYU1lHd0FNY1VxWXhZZ3FmV0NXbkQ2eFZnUGo1ZHpUR1YwUVluVGxCQ0NnTDZMd1dxVGdqYzZiYkU4Z1Z6cGlRVU9Mck40NDk5UmNJelFwMk1GTFNPUUl2aGVsSllCWVlwRGNYODdNd2VjeVphTE5UVjFKM2ZPeUYyYnI4N2tzLUtqMEM1YjF0ajdpemdITUtnT3ZBZlZjYkEtR2k0VXFfeVhqNFFaTGloaThJSmdHd0VVU3hPaGU0T1dQaWlZS1EyUG9pQlhSdmlqaTJVQXd0UHR5X3hDekJ1NExKMU1mQ1REc2JnWS10Y2FldVdfYW9CT0I2Y3RZYU9jMXBrT3ZDX1ViYWphdktUdHVWcHMxUTBfZkFubjdCYVM3VHpTRXNhVjZ2cExIb2g0MVp2emQ2VGpzTzVlQi1ldWZzZDhUMUpxZnBLeXhYQUJRSTVPRHk3SW1mZW01VEpsWjdqY2diT0lpLWxYZS00R1ZjSVRoSkpPOVNaSDl4c0RJSnp2MU4yaGEtZWd2ME9Za2R5b0xOMEFrSzgyd3VEZlNDcV82Y2pGUzc1M3lVZHJ5Y0JsYVVOczFIVERHa3hJdUNiX3NsVjdNdXlhV1V2cEg5UW9BTVNuRm4xcUpQMmJLbW9LM1RfLTB3RzBPUzZZd2JQNUh1QzZlV0wwdDVpUENlbFRiNS1KRnlQZUhCY1FEb2xyY0UwbjZ6NUhEcHNzU0xndHZYRnNoekh2bmdjXzk4UjlSNTNCMlZsTURQX25pYnVVTUk4MTdUaWNvV1puUUhESExqVFBWNi1uR3hHMjFMcjhMUjRrWE12VmpBSXFwZzE3bUNncjg3U0luU0tDSDN5RlBCeVRyTW9oWVcwX1hCOEJJbVBwZlRLZ2N4by1IU0N3WFJWaXNkOHdPWUZfeGpGcVI0Q19xVXQ1bWVfQTVlTEdGUTFHOHd4Mk5FVUEySWI2a1hLZ1NSZE9WMEZqdHlfdGlIRlg3LW1qQ2IzZVdhUW1aa3BkNVZjSHZmT0d2S3JQMmRTWHlYemlnSElRalc2X1NfdG1ScHVWXzJsSGdaTE5LRVV3dXRidUJtaHpQeDBIRlJZUE54VGg4TnRjVVpUbmhpSEExaFZlOVNsS1hFQXBXRV9fYnJQbXJ4Yi1Qd1VzTG9WY0ZvMkJicW1zNjZxaURnUjNXemtKLXFpclZsaHM3NlBWRE8xaUJLdHlCSDdpLTJ5OG5qY2UwN1dFLUY0b0tiLXhwR1RIT1VRdDJxdG1GR1hKeURxcUlveEs4MEJZb1hZd1BaWGpvdWQwSEU0cUNPSE90YS16S3VyY09MOGQzT01GNXFielFGLWZrUjA1Uk92RVU4VGszMS1pMUpkN3hHc0FMa3VDcVowckZYQ21jQTVaTzVuc2F0WnNxcVhlQ09VYzdidFpXbzZvbHUzc1JDVHZ5Q2RlWXR2RllHNnBtR2F0aHlKZGlzazBwT3BsMXdoUWU1dThMZk0yV2JIbG1mSzVjQlI0ZlhEVDU3MmxkOGM5c3llLXZiYUc0S1VCY2ZvT1JyMklpRTNlRzdCN0FCSTcyRjZ4N2pRR1VYRG1aLU9MZlh4Wi0xZGJyUmhvZ1dqT0RudUpBYTRtWnMyenVDMzBpOWZUMDRKdElpeTJFXzJFQ2lMWVd4V041WnViUnhZbmtlNTh0bW04ZHpXTDloaTlta081ZkhwUjR3eVRYbFBOLTZqTy0xdm5PZWVMWl9EUlRDXzhFQks2WFZDTTk3WE9jSnhFUEtkWFh0MnNwVC01Rmx6T3Y2WHNIV1pDVzcxaE9NcV9qb3NBLXVqZENUdm56YVk3MkI1d1F5RjlsbDBGNVdtcnMwc2dpNW5MWU9nMXFaQ01ydDRKMUdkcEpzdXN3QVFwdm1DQVhuLTAydk9XRnRSX0s3QXkwOTFkQmxkNEZTVXBQTzhVbUJuNG8yTWViSHBtclozSjJqa0VLdkpmMHAxaFp3MzNPNl9GRlVpM1FxMTdXUmJUNEExVUZ6U1VpNU42VXJjWTQ0Z2FkMnBPNi1xVFJuMXljTUE4U29FVm9SVWJaczJEZ3FyLU53RVMySmsyRzl4c0dpWkhla1VqdjlyWGw5c2tWbGI5V2RYSTBoLXJ5TzFfUU0xUUNHYldsX2xCaEdBdlZjMExqQ1I3d3lpeG1BRHVJMHc3Wlc3NHlDQUpKdUtJT0xyNTd1bzYxQmYzLXFYWXRIWDh2c0xPamc5N1IyTExHeUpKMWhVcVZlQU5sa3B3LkhsQXBVUTQ1YTdxRDRiRUVJWlRmR3B6b3lBNi12UlZQVkhlV000eUZVV3c\"}", - "status": 409, - "response": "{\"error\":{\"code\":\"Conflict\",\"message\":\"There was a conflict restoring the key 'https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/0f21985e3d2d42ed899ba2b76e892011'. This can happen if either: a second key with the same name was created after the first key was deleted; thus trying to restore a key whose name is already in use. To fix this, rename the second key to something else so that the restore works. The second probable cause of this exception is when multiple operations are performed in parallel against the key. To avoid this error, perform operations against a key in a sequential manner.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "661", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:53 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "409", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "aee68f3b-1144-4869-a118-87e140468123", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "e1c4502a-17c3-4e51-b0ce-2097a6e86992", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/restore", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"value\":\"JkF6dXJlS2V5VmF1bHRLZXlCYWNrdXBWMS5taWNyb3NvZnQuY29tZXlKcmFXUWlPaUl5WVdabU5tRmhNUzAzTm1Ka0xUUTBZVGN0WVRjek5DMDJaalZoWkRCaU5XRTRPVGdpTENKaGJHY2lPaUpTVTBFdFQwRkZVQzB5TlRZaUxDSmxibU1pT2lKQk1qVTJRMEpETFVoVE5URXlJbjAuY2lEMjFBc2YzaFZwVjc4dVFMV1RsUzdxZ1c5Wkp2UWhWZ3lGbzF2Y3Z5enZGdDFTUnlJVXdCekI5OTJsOVNhUF90REdXbEx6QURXTjFicFJweVp2STlBeHlIdEFkTWRxSTB0eGhLdHhGMmNOXzEtUGRVYUt4MWowRllKb3Mybm5UcjEwMnN6VGR1ZTdHY1dnb1BUTHRuc3llcVhCdkdVSGcyVnZOdjh0V1JQQV9WTjRKWWtfS2pqdGc0WmF0VW0tUk81VnNPZW13RXBaNU9NVndjRG8yTkd2emdVVkFERGtvc3dSYzZ3RVlxU0NHbkEzWkxtVnlJRVczcjZYd1Z3SWx2TkJhZUxGOXY0Ml8ycjUtc3VneDA0WUlZRnc4a0tSZEp5OUI0ZU9KXzRHa0stZm50X3Y4UFFlTEdGaVlkRkFZUVc2Q1pkVEh6akZFRG9QaWphYWx3LmxCRHNtSWt6MU1fMEpfMGdCakMxLWcuajNYZVQ5TlM5LVAyWjhPQTFlUW5TSEhvem01N0czaXhYeHRGWUtBU05WSTM1cFBPbUswdEVJMzltY0FRLUZtRGV4cVdWbUw3QWxYWUk1M3ZTaXEzWGtOMG5PLWdvSkhsdXNXM3BVemthRG9PWlNxY25QV0FxVXFwZi1zZVZCdkJqMXRBb2dsa2dTZ2psbUk0UlQwVFJJbkYzaEhXd3BIQVRzbWd6WnMxMVlpdlZ4RTlpbTkzNXplQVdaRXFRRFlncGJNZDdLdDN6ZlpJLTN4M05YelpZXzQ0NUptNGd0bzdLTDNEbENIbFpSU0lnZnhQc3Q3VW1RWC1FNk5oWklNWUlfMzNRNkdtTFBVNTk0QVozaERBcWlZXzFQeFdqdV9KY3dWcVdqLVE1TjVqWk5sYmo3UGw2MjhXMEVpOUF4R1FfQkFrLWJpYngxbHM2WWIwS05Oa2J6d1pPdjF4ZVUtYTRCVGFGZWNWS2QxR1dBM2pzZV9PSjNYcEV1ZlNzSEU1TktQeF82azVUMnFLMUliV0JHd3ZFb1R6NjFWZEpseGZacXdtczZjNGU3cHE0MHhnQU03M0xNakVqdlcwYjAwbHFHZGxBc1hEcnZMMDl0ZlRrRThIaHFfTlIzVFpGMFBtSGZrLUxRNVpMVlRLSFF3TkxtVVR2bkFLeWY0UFk0b1hCbmJzWm1OdDdaalFOUTFMOE1FNzJfQ0dPVmxuZjEwOWhDZHpud2dNWjh0cjdYNTVFbHIzUVdoR2FXSTZlc3FVZkNSbnZHZk80T1NjTU1QNlZ2UGtUdThMb3hKVzZ2X3hKZVpJUWlEcEloVnFGcE5UZ21PQXN3WlJYcmZhQ0ZqTkE0cDVfVUp0aW91aWUxOG10V2ZRQ2lyeGhHNTMwTFJHWEZLTkdkMzVpbkw4WklnUnRJQmtRR3NNZ3Z2dDZ5NnJiam5JV3ZEYmd1S0F5d2lmQk4xWm5pSHZYY0ZhUkYxZVJaU1NhM1BidkVSTHhoR3VmeGZfQzVYQjVzNXk4M2ktQkUtUEVFN19Ub0Y2YU1LWkU5aExXLThOR21XUFgxSVBqeG5OUFpNZE5wM3dkaTJyekJxLW9IMHlVNHFZX1hJZFIyYjU3STYwY2J3TThrS1NKcWhnS1pyRW4ySHR6cG5lWF9pei1jSHlnaHBSb0xQd0dMTWd1V0RqTUhOY0duZlFISFZhUER1cl85S3VsTnNZSDNLR3R1YlpTZUt6ZHM5ZWxrSGRJMWFuVG1lVnphZTFaZXRLOW81R1dQSEx3bUN5RGRXWlBYbDNRN0E3NEl4YkNoUFVvd0ZVOEVGbnJ6Yi16clBDOGNMNTBtZ0dIQVdwMDk4WEltSFZSZ2l0QWoxbXJycWhuejZYMjNqZkZVWGtfT1VDQ25KUC1BX0UwTXQ5dkg4dTJUb0hURnRqTElIQms5bzlyTEU3a3FWek9YZXFpOTlNekFhZUVEUnRLSF9FMzdxc0tSQWRORlRHUDVveTJtMXd1MTkwREdrQzU5aW9Ld2J6SkNOVjdOdmJmSGFrc1MzQmlzUFUwbzc3UjlDaHpEMjk3czZVUEdFbHJpQkR2LXRDRFFGYXlNRXNMeWxoZ3hQMEttbEczTFhtQmIteXd2aWVPOVBWbVU3TnZIQ0dlcEZzVTFMd3NabnRkSWZoQUpWRXppMThydktEaUhBSUlTZ045LWJLMTV2ZjFpOGNzNm9mMGRudDRyYWRmb1pvR1hla2VoUV9RdHJHRXNPdFNxRi10NXpCVXlCSjJMeGlfd0VyV3ViV3hkdk9YNjc5WVduaHdpbnR2aFZZbnpGTng3YS14c3hqelVXR3dCSFowTjllN2VnUjNjRHhqdjBlNzMzTTVBdUhmU3I3djY1S3hITkxQMmVXS2QydkhlQmRVWjlOdkdYamhxTno2eWVfNzFibUpjMW9fQWNiUHRKTGY2d2NhN2h4T05HakZla0dxM1Z1b1FOc2lnQkVhRkxwb3ZUMHllNkVTOTdkTWRPcDFjXzRTZF9WZ052U1NCMGFPYW1zY0lsMjJaM1JzczlZSkt3WkNlbEx1dkhCdTZtQXlOaUFTbEpXZFRJenNQR3hMUV9GclBJX2x1d1p4dG9HaDZTX0FNWW80NDBqS0RmbW9CdzQzTUJiMjNVTXhJWU5DMHY4THdXUTFuUkdhU1hzVDI3Uk14ajhCY25UTkRWWjN0SGF4WlNuRTRuRVFuQnRyUWJnaHpCdjBLSTRUbDVnRnp2Skd3TnZQakExcXl5dGFHTGU0aTNzeWNoSVRjY0VZWEt6ZkQxVmRKQWFQVWRtSFV5Z251NzNkNjhOcWk4VVQ4cWNaRVFlcU5tMnZ6cFhZUU5xb2ZwTmdBYnhBaWJXOWJXejJBUG0xNndDYU1Ka0VRSkQ1MlF0cmQ3WjNvQkMxazZfZVF0YlNjZGlKWUxlN1NRcFlWZGUyMUZOdDJGaXBIbDc2ZnJ0a2lwb1R4VHEwbHMwWjEzY05ETUF3dlc3eGgyN0ZqS2JGT01SN0pUMkVCMkpaVjBmcDd6d2hXSHRZN3R1NTFSYnQtM2E2b2s5LTZvRnUtdlB0Nm5KXzVZTTRpSjFmbEZNZWN0aU9UNThHQ09BbGNfZ0JhRU00d18yQm1pN2xadzlsOEx3X2t1WjdRdEpyUDQxWjNyLTY0QlBiTHJPY1NKT1hsN2xzMGZyc2MyeFlBVFdVbktpUGxqdnJUU3hTSDFwWi1va0FleDd2Wml0RjlHTUh4dFB4a2hGd1B4UUNhNkN1LXdscWNGYjJSRHR1YlBuWlVNV2VLYS1ud3ZUcjFIVFFKbVBuZHctOWpFUmo0b2tLb2ZudnJLbHhZNDVPU0ZqdDhoS0dwM2RTbjJ6emV6RWx5V0hFWnhla1V5ZXdVR1YybnFhWU83UXpvamdMM3hJbmoxMXRSSzVDVF9iQXVLd3BoOC1FSDMtWmJ2R3FURW45eXNIQ3Zsbi1PODRiWUlqYnBZdzdRLTRYWTkxVmJlOXJrSDV4M1UyZnZyeEdlQ241Wkk2WFBzVlBycGdXTy1DT0lBOWV1Q0RzcHB0alVfbUFBc1QwTVM0VFM1bVdkcGhBdm5xS2VaQS1tQ0FYOERjQXVieTkzMmdRUEp3SUFZaWJKNE1JVGQ0OXhkbzFQZjd0Wm5oME5vRFA0cjJ4R2ExSW1nVXE3SkhiYy1jV3prS1g1OVNxUzFSOGlTaFVGWWlCVUQwOGFoNFVLcjZWbjF5MWdaNUJWd043bU9Ub05pV3d3djdvaEp2YUtsSkJFQnNvZEs5Ti03ZXp0YjJ1STZjaHBxcXVoRkhTeGlZQ29KclhLWEhHQ0VzdC1Id1AzRmFPdXoxVTIwRFNHQkE1dTd3cHJ5U1k1Y0dZMzhmcVFHYzFqU21FU0dZVzdTNWxXbld3SEh0ejlEVjljZ1BnX3dXQm1LczkxVGJrUWtBOTZLbjljeXh2ZjEzamtwT0habUs2ZFBCZzNOZHQ1Vm0xTk9WSllYWVM2T3dzeThUVW54SnkyMjVFMklSV2xNU0E2bDBySWFVZXh6V1FSYWFDZWsteVJTMGwxZmJXME16V0w3bDNKRWxCNjk2bjM3NGlmR2dsb3h5RW1JTUl3TzF3QTRfa3Y1Q2RVSjk0Nk9OT0wzc3ZUSzBod24xZjZ3SEppT1lQYlFUTXp3LVdNR1p0RHRSM1hjNTRQa013LVhzWUE5RkNNMkxEOElDUGE5LThwV1hpNmZzWlpGVXVvcXpzLUNLaUREVi1IRXVpYnRGcVlXeHNfeV9RaHdIRHpCMjhZNHptUTNpQXdnMUZmNjFSUGNHQnlFMVdTeU96c0NyQkpRblE2ZHBKYW5MLWRHUmVPc0pENEVoWW42Rkk2QWhaNjE5NnBfV2pEWFl3Z2YyWkVsZWRKS25EeFlWZFg4NzRwdy0xbEFKNGVpZ3JpS1ZxVENzckhXWkhFQnVrT0FaNlR2bmZWenlqcTV5TnpqUWR3UzVXMlZKMDRZcy1LZDdmcDM0NE9GUDBtaVpONkNWeVJOQ3RyTEJZSVpQbmdXRVktUDRBOUhiXzN5VWdyX3dSTlQ4ZlE1Qnl4VnhwRjVSVFdudi1pWTNXSWQwaFMxa2sxb2x2WEhPa1l6Z3hsSW5zaWtLc1Z0RVdySVRURE1iNGJlSUNzMnZVTkxHNnJyZ0hMRUszY0RYOFRjaGc1YnE4QXYydS1uZm5vQ0syV0JoSDhWS0lWT2Y1ejBtY1kxY0NSb2Y0UTZXNGRQeXM0RFV6S1JXS0x1T0RCYlMtYzdxTlNuN0M1c0hVR0dRLVdrNnlnUXZTTTk4SDdsOG1BckRNdXQ5YzUzZk1FNVlHOTRUanlGemdsOGNxdVlCQVBqYWVQdldlOFdYNHBKb2NUZnVzdjlZMklfY1hNQktEbVc4WHlNRTFPaEhDSzBXbTJORGlBem5nX2t6ZmlFYTgtSThXWUJ0OGI1Vk5QQW85bm55TFJfNXRCRkdGV2NoLTJkYUxGQnR6S3NUQkxRZm5pQ2tVdXItQUdVUk1XN1FmRE1vSmR0a3lCR2tmRFVheXlBYWQ5ZEpfSE1hZUxDaVE0UWhpRnpNVHF5ZzYxQmwyXzkyMi1PY09HU1BSRElXeFNZRWRfUWtKb29mN3ptXzR1bWRVOUVBRk5vYUxxcERoY2lCa3NfNEhUM1diVXAzQ25jb3phd3JfZFlRRTVYOXpIWS0yUl9WdzZXVTZMdTYtaV9jNjBmQXZEX2lISklzU3d0bnF2WVEtenl3djVLNWJXUFdyV2ZnMzBrMV9sbFNsazktYjJCNUZmWVZBUUJsMkRaVG9VdlJzaDVZVHhiYm5EbGFzOEJVRE1XV0hSSEotZF9pZUNad2VIbGdWVkktT1lWV1NCLXAtSjk1akZuVmJnUEdiVjJSSE53US1IdkNrRDBpZElDTklEY2h4UnFGZUQ4Z2dFaTdfcnd6N1d1ZXpZS3V5aFNHa1hhVWMtbmUxdHRrRmRsYWJ5SEt1b1FJWDZ2Snp1cEpjWUo1OEMxd0kwUXBIcjY4U3poekpjMjBUVGk2VWc3T1FtVHpncy1JNDVKVGFuSW5NdHk0MmlubjdqU3daWXQtMERWTXZPZ2RZeEVVRk9UZE5vWmFWMTI0QjdfS0c3bGxmY1o4TXUwNkR3M3FXWklUSExpcmZhZjhnU0tNRm41b1dfVjdCSWJXR2xiOTg0QkNjRExTOXRuaEllQnp5akRUcmhFOXZwdDNtNnJaMGpjcTFjdEVkZ0xFM2NwR0ZYX3lHOEJoenVKSk9jNTNyWkpydVY2TVNzSTlRYllNd0pUcmJuLXdMYVN0ZWx5b0JTUVl3NndDWmVxMGwtQ2VxX1kycExhQVkxb1JRajN1LTBrVHlEcXl6N2lSaTJqcXN4TW9sQTdmTE5USEZQbi0tNUNZTnB0c0paM2tlSjRINmdkc1phTHFvMTFYZ1hnWFJVcEFrb1BYbGJhdU96LWQzUFpNdXBUaGJZNF9Obi1Va3RrdGhYTV9IbTQ2S2JkQkFrY3J1UGhiRTZMMDN3OGVSaFhBdU9ZR0ZvamZlZFdQZ0R6YjZuQm1vSnhudHZ6UjNuZmliYWQ0M0VXZ2RmMThkQVBncHhzaTVuWF8zUElfaW5qSVVHdlh1aGl1TDVvOW9TOFpCQ0dsaGdWWnFKN1hMUzFIREJjVnhHT2hCUDB5b1ZUTXM0cFZBaWl0Tm0wVFRrU3hPT0RNQnBZRFFCd1dURWRGTFdMbkNGWVQ1a1RjUENoeGkwZnFTRUstXzJkemNCNXRxWk54U203T2oxSGpGMGUtZENUdU5TcS1xNFVRQXptQWgyNG45WHBlRE9Ea0VULTdwZGxxcGZXZ1FEU3NMV0U2UDdYZWNyR2R2N3hJaVRoVEZ6R0FTVnZ0QnJrLVRISVRuRURhWkZTaVBieTZPcUJlMG5wRlA4bzJxZHNNSnZmTnQ0Q1FvTVpPRlJ0NEk2cWpVbEtBcm92Q1c4eDBmYVdFdVpGd3Rjek9jNS1pOUt2VFdhcFhzVlFOR0NrMHY0UTFmQ2x5cDVpbzdCUTVvXzFWOHNtUDBITlBSMTZXalVGazE2a0N6WTA3YVpocjhNdUZ1cE9WdGdiR01WRWlpQkNQMjZ2TUVfeENOSDVmVE9uNFM1a2xKVFcya0VZb05VRldhYVJOUXdkajF4bkk2Q0hZSXNSbDZMRkFENVJLOGlMYWxCNE9fd1VOdVRBYVkzbE5xUVVCRDNtM25FNUE3TGx0eVA2M3JoR3pHdHBXOGVvOXphNFNiTl9QbHFMMVdRY1VnTWxreG5PcTNqRFdiQnJic0RUekEwN3pRTVhUTEhKMEhSMHQ5RG5ONkwyVXphb2VYNmtUV1VteU54WUNfUHY0aHhfRGVoYjVnS2ZSc3Vha25HSm85b0R0TDNkcHViZzV2ZS01WWdhZ0pjWVR1T1laLWsxdUNnYzZlLVdjWVNGdndfY0YwMDdmR2xnLXFkbW1vM2dZeVJxT1dkT0FDT05iUFFvaWxISll4RHhCTldqOGg1Qi1hUENxejJTX0hwU3JwUzF2QzJIeHd3bnpSXzJSenJFbkNHUElmSDJYNVhEczV2c3FYOFN4Y3hTVmdKOVBEbTlkR29HOG1GT25YejVLWDFobWI2eTBoSzhhZFNVWnoyQXFKYzBQVkszWWVJcHZLblQyY19mclNocXJzU2tDR29VblV4NkpMWHhBQVdSOUJBVGo5N1FlX0paU19hVTZvZk1yNFlYdGdlYUNaY1JSNEQ0X194TWV3ZGxMSUlJUWFZWW5MaFNFUVBPaUJFYnYtQ1RaeUtVdTFidFYySVA4aWU0YmstOFB1Vi00RVFlM3VwN1hMb0lFMmNHbUFIYmtLTFFudzNiSldqWWo5Vm5mazFRZEFMdnJpUnBpRnotSGRlbVUycUxsMVl1WE9sMUZuRVFEaFFTRUtfbS1CTHNEZ0FtUk10d0FFMGhhazhHb29JSDZfQjEyZHF4OExGSUR5TV8zdWwwWkNNaVg4LWExT05xVzhRanhoTUhNTHhTZWQtQTJtOXZnbGVuaXR6R1RLUUVUcU9yOElkOF9xSDFRWE9GR2JCeXZ6eVJWUEw1UEViQUY5WFM3V2FMY3BTSGw3bG1HRngzQ1JOcldxdGQzTl9OMHZWMlpDdFpFYnJMcm02YmlQMmJLM2czLTZmSHdjdVBibmk3cGdnT0ROd1VHZkVLVnFtT1RYTlFwYTJ1eHZwd0c4WEowV0tUVVF6RXhDUkVKcERRcEFnbjYwNUlDWS1CS0xqaXNCRDI4U2NiamF5LWR6UnhmQTRxVVFYTl9rS3RJOUs2U0o2RmxCV1NmdmRJa21OWEExZF9vdGRIRFdNZ3FYUXB3YkdXazBhMFpiUWx5SllpWWd0UHpNNHBxWk1tVkVNYmkxMFpQUFE0Z29YZzFlSUVFNkRoWmZEMGFFd3hvLUN6TXBYU1lHd0FNY1VxWXhZZ3FmV0NXbkQ2eFZnUGo1ZHpUR1YwUVluVGxCQ0NnTDZMd1dxVGdqYzZiYkU4Z1Z6cGlRVU9Mck40NDk5UmNJelFwMk1GTFNPUUl2aGVsSllCWVlwRGNYODdNd2VjeVphTE5UVjFKM2ZPeUYyYnI4N2tzLUtqMEM1YjF0ajdpemdITUtnT3ZBZlZjYkEtR2k0VXFfeVhqNFFaTGloaThJSmdHd0VVU3hPaGU0T1dQaWlZS1EyUG9pQlhSdmlqaTJVQXd0UHR5X3hDekJ1NExKMU1mQ1REc2JnWS10Y2FldVdfYW9CT0I2Y3RZYU9jMXBrT3ZDX1ViYWphdktUdHVWcHMxUTBfZkFubjdCYVM3VHpTRXNhVjZ2cExIb2g0MVp2emQ2VGpzTzVlQi1ldWZzZDhUMUpxZnBLeXhYQUJRSTVPRHk3SW1mZW01VEpsWjdqY2diT0lpLWxYZS00R1ZjSVRoSkpPOVNaSDl4c0RJSnp2MU4yaGEtZWd2ME9Za2R5b0xOMEFrSzgyd3VEZlNDcV82Y2pGUzc1M3lVZHJ5Y0JsYVVOczFIVERHa3hJdUNiX3NsVjdNdXlhV1V2cEg5UW9BTVNuRm4xcUpQMmJLbW9LM1RfLTB3RzBPUzZZd2JQNUh1QzZlV0wwdDVpUENlbFRiNS1KRnlQZUhCY1FEb2xyY0UwbjZ6NUhEcHNzU0xndHZYRnNoekh2bmdjXzk4UjlSNTNCMlZsTURQX25pYnVVTUk4MTdUaWNvV1puUUhESExqVFBWNi1uR3hHMjFMcjhMUjRrWE12VmpBSXFwZzE3bUNncjg3U0luU0tDSDN5RlBCeVRyTW9oWVcwX1hCOEJJbVBwZlRLZ2N4by1IU0N3WFJWaXNkOHdPWUZfeGpGcVI0Q19xVXQ1bWVfQTVlTEdGUTFHOHd4Mk5FVUEySWI2a1hLZ1NSZE9WMEZqdHlfdGlIRlg3LW1qQ2IzZVdhUW1aa3BkNVZjSHZmT0d2S3JQMmRTWHlYemlnSElRalc2X1NfdG1ScHVWXzJsSGdaTE5LRVV3dXRidUJtaHpQeDBIRlJZUE54VGg4TnRjVVpUbmhpSEExaFZlOVNsS1hFQXBXRV9fYnJQbXJ4Yi1Qd1VzTG9WY0ZvMkJicW1zNjZxaURnUjNXemtKLXFpclZsaHM3NlBWRE8xaUJLdHlCSDdpLTJ5OG5qY2UwN1dFLUY0b0tiLXhwR1RIT1VRdDJxdG1GR1hKeURxcUlveEs4MEJZb1hZd1BaWGpvdWQwSEU0cUNPSE90YS16S3VyY09MOGQzT01GNXFielFGLWZrUjA1Uk92RVU4VGszMS1pMUpkN3hHc0FMa3VDcVowckZYQ21jQTVaTzVuc2F0WnNxcVhlQ09VYzdidFpXbzZvbHUzc1JDVHZ5Q2RlWXR2RllHNnBtR2F0aHlKZGlzazBwT3BsMXdoUWU1dThMZk0yV2JIbG1mSzVjQlI0ZlhEVDU3MmxkOGM5c3llLXZiYUc0S1VCY2ZvT1JyMklpRTNlRzdCN0FCSTcyRjZ4N2pRR1VYRG1aLU9MZlh4Wi0xZGJyUmhvZ1dqT0RudUpBYTRtWnMyenVDMzBpOWZUMDRKdElpeTJFXzJFQ2lMWVd4V041WnViUnhZbmtlNTh0bW04ZHpXTDloaTlta081ZkhwUjR3eVRYbFBOLTZqTy0xdm5PZWVMWl9EUlRDXzhFQks2WFZDTTk3WE9jSnhFUEtkWFh0MnNwVC01Rmx6T3Y2WHNIV1pDVzcxaE9NcV9qb3NBLXVqZENUdm56YVk3MkI1d1F5RjlsbDBGNVdtcnMwc2dpNW5MWU9nMXFaQ01ydDRKMUdkcEpzdXN3QVFwdm1DQVhuLTAydk9XRnRSX0s3QXkwOTFkQmxkNEZTVXBQTzhVbUJuNG8yTWViSHBtclozSjJqa0VLdkpmMHAxaFp3MzNPNl9GRlVpM1FxMTdXUmJUNEExVUZ6U1VpNU42VXJjWTQ0Z2FkMnBPNi1xVFJuMXljTUE4U29FVm9SVWJaczJEZ3FyLU53RVMySmsyRzl4c0dpWkhla1VqdjlyWGw5c2tWbGI5V2RYSTBoLXJ5TzFfUU0xUUNHYldsX2xCaEdBdlZjMExqQ1I3d3lpeG1BRHVJMHc3Wlc3NHlDQUpKdUtJT0xyNTd1bzYxQmYzLXFYWXRIWDh2c0xPamc5N1IyTExHeUpKMWhVcVZlQU5sa3B3LkhsQXBVUTQ1YTdxRDRiRUVJWlRmR3B6b3lBNi12UlZQVkhlV000eUZVV3c\"}", - "status": 200, - "response": "{\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/0f21985e3d2d42ed899ba2b76e892011\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"-pIR3W-OUcEZgrO4h8F7dAIRen4t7QW_d6oO6jSd28-dXPqUUEPNlEsgdtdXbqqhWLDN4w5LOWOLDgQ5TcXC-kw1wK2j5tAPO_YA11c-2cgI45cWlwuW0RLFuiXYuW3gult68a82fAGQmwe82bxs3pYwJQXdMT7x6aJwmqnVsqOc8aJP0BZM-Gacp-CRCHXRcs7_r8WPOMw4tMPrg_lI5b99Ctqy0693nlWE1-jNeCdtz5YhQuICK8bwwJnOruoadkgliPZWN4NEvsjeJOzY3AXUrOrciWVgW6LeLCvMDiJ39Ca0PkgEVFbKypOUeEPAQT5yNDgF7hXEx6HRdvdalQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648725,\"updated\":1619648725,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "743", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:56 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "5ba9a06c-0280-461c-b554-bd7e247043e6", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "758da4d3-02f3-417d-983b-2b2178d0025e", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-\",\"deletedDate\":1619648756,\"scheduledPurgeDate\":1620253556,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/0f21985e3d2d42ed899ba2b76e892011\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"-pIR3W-OUcEZgrO4h8F7dAIRen4t7QW_d6oO6jSd28-dXPqUUEPNlEsgdtdXbqqhWLDN4w5LOWOLDgQ5TcXC-kw1wK2j5tAPO_YA11c-2cgI45cWlwuW0RLFuiXYuW3gult68a82fAGQmwe82bxs3pYwJQXdMT7x6aJwmqnVsqOc8aJP0BZM-Gacp-CRCHXRcs7_r8WPOMw4tMPrg_lI5b99Ctqy0693nlWE1-jNeCdtz5YhQuICK8bwwJnOruoadkgliPZWN4NEvsjeJOzY3AXUrOrciWVgW6LeLCvMDiJ39Ca0PkgEVFbKypOUeEPAQT5yNDgF7hXEx6HRdvdalQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648725,\"updated\":1619648725,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "931", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:56 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "4f837339-3158-4b05-bfb8-363a2dbe9136", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "13d51c37-7618-49d6-b422-388e353e727d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:56 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "4c04ca3a-fbca-4b2a-91be-cbdd00a6aae6", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4aae695e-9447-48d2-ad2c-faa02ce7aaf4", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:56 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "07fbc414-e767-4f28-8127-1bd02e6ee127", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "06e7634d-8095-4398-b296-187f1e0709a7", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:58 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "75944049-97f5-46ce-9400-22fa46932e35", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "2dd3ece6-d249-473a-a760-1591dc6964e1", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:26:00 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "cf4b13e3-c314-4855-9d47-0c32895f2d62", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "4dbfdf2d-43c7-40bc-991f-d15ae3285077", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:26:03 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "d6c2f4cb-1301-4c22-b016-2b3dc7f26201", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "50b1107d-1d66-42d2-870b-408f1d0fbafe", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:26:05 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "98150d88-e70f-4384-93e0-17effbb7fcf5", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "fa759992-0701-4e1f-ae99-1e21dc91a7c0", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:26:07 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "55feced0-98e1-49e3-bf06-e07f1397eeb2", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "ccb5686f-6c46-47bf-87b0-ef9731d33eb4", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:26:09 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "8b9de299-8c4a-422d-90be-cf891efbb0bc", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "b871b140-4c1b-4495-b168-2f57775b6514", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:26:11 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "4aa9097f-bfed-4e31-b018-7301cf9c6018", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "24077230-5383-471d-a825-ba5b3c156302", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:26:14 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "aa977dbb-fdab-48fc-9e3a-70d0ef56b9c4", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d2494cda-c006-41ca-a2e8-6ba8376696fd", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:26:16 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "2f21ad26-d302-448f-bf67-90f1c8296c16", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "616013c9-fb4d-45be-8f35-566196fb4b75", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:26:18 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "08d0fe32-8e24-4c05-97aa-a0aea7692aa2", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "83b27cdf-59da-4676-9a97-6acc70e18402", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"Deleted Key not found: backupRestoreKeyName-canrestoreakeywithagivenbackup-\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "136", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:26:20 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "ac1f4840-983a-4be1-ad35-980e5bb3ef69", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "d831e832-660f-40e7-919d-c5c1d1e5ce9b", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 200, - "response": "{\"recoveryId\":\"https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-\",\"deletedDate\":1619648756,\"scheduledPurgeDate\":1620253556,\"key\":{\"kid\":\"https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-canrestoreakeywithagivenbackup-/0f21985e3d2d42ed899ba2b76e892011\",\"kty\":\"RSA\",\"key_ops\":[\"encrypt\",\"decrypt\",\"sign\",\"verify\",\"wrapKey\",\"unwrapKey\"],\"n\":\"-pIR3W-OUcEZgrO4h8F7dAIRen4t7QW_d6oO6jSd28-dXPqUUEPNlEsgdtdXbqqhWLDN4w5LOWOLDgQ5TcXC-kw1wK2j5tAPO_YA11c-2cgI45cWlwuW0RLFuiXYuW3gult68a82fAGQmwe82bxs3pYwJQXdMT7x6aJwmqnVsqOc8aJP0BZM-Gacp-CRCHXRcs7_r8WPOMw4tMPrg_lI5b99Ctqy0693nlWE1-jNeCdtz5YhQuICK8bwwJnOruoadkgliPZWN4NEvsjeJOzY3AXUrOrciWVgW6LeLCvMDiJ39Ca0PkgEVFbKypOUeEPAQT5yNDgF7hXEx6HRdvdalQ\",\"e\":\"AQAB\"},\"attributes\":{\"enabled\":true,\"created\":1619648725,\"updated\":1619648725,\"recoveryLevel\":\"CustomizedRecoverable+Purgeable\",\"recoverableDays\":7}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "931", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:26:22 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "200", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "a1c2076e-feb5-4a17-9880-e1d83b52350a", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "fb30fc64-3e49-498e-8af3-851322294134", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "DELETE", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-canrestoreakeywithagivenbackup-", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "cache-control": "no-cache", - "date": "Wed, 28 Apr 2021 22:26:22 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "204", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "37ab8e10-d2ee-495d-a988-7db509840ad0", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "43e06eff-03d5-4fd0-8ca7-e317e2573424", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "da557ac6961bca5ec1f13aef1cc52a62" -} \ No newline at end of file + "hash": "da557ac6961bca5ec1f13aef1cc52a62" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__restore_keys_and_recover_backups/recording_fails_if_one_tries_to_recover_a_nonexisting_deleted_key.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__restore_keys_and_recover_backups/recording_fails_if_one_tries_to_recover_a_nonexisting_deleted_key.json index bd87b9c02903..c4178fcb9470 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__restore_keys_and_recover_backups/recording_fails_if_one_tries_to_recover_a_nonexisting_deleted_key.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__restore_keys_and_recover_backups/recording_fails_if_one_tries_to_recover_a_nonexisting_deleted_key.json @@ -1,115 +1,115 @@ { - "recordings": [ - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-failsifonetriestorecoveranon-existingdeletedkey-/", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:44 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "47877f56-3cec-4db6-b4b5-c7fd5d04eddf", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "3206fea3-3082-44ae-83ad-1f0d8d278ccc", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-failsifonetriestorecoveranon-existingdeletedkey-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:44 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "47877f56-3cec-4db6-b4b5-c7fd5d04eddf", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "3206fea3-3082-44ae-83ad-1f0d8d278ccc", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:44 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", + "x-ms-request-id": "af904c7c-1ddd-44a0-b636-d8b31f227001" + } + }, + { + "method": "GET", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-failsifonetriestorecoveranon-existingdeletedkey-/", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-failsifonetriestorecoveranon-existingdeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "373", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:44 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "47877f56-3cec-4db6-b4b5-c7fd5d04eddf", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "dd4e4ca0-09fc-4994-bbef-9690fa1ddd3d", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-failsifonetriestorecoveranon-existingdeletedkey-/recover", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-failsifonetriestorecoveranon-existingdeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "373", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:24:44 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "0864d65a-cfd4-4ab2-ae29-1f4ab90d0b25", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "5daa33ff-4d4e-4deb-8786-25bfb703e9d2", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:44 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", - "x-ms-request-id": "af904c7c-1ddd-44a0-b636-d8b31f227001" - } - }, - { - "method": "GET", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-failsifonetriestorecoveranon-existingdeletedkey-/", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-failsifonetriestorecoveranon-existingdeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "373", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:44 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "47877f56-3cec-4db6-b4b5-c7fd5d04eddf", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "dd4e4ca0-09fc-4994-bbef-9690fa1ddd3d", - "x-powered-by": "ASP.NET" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/deletedkeys/backupRestoreKeyName-failsifonetriestorecoveranon-existingdeletedkey-/recover", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-failsifonetriestorecoveranon-existingdeletedkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "373", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:24:44 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "0864d65a-cfd4-4ab2-ae29-1f4ab90d0b25", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "5daa33ff-4d4e-4deb-8786-25bfb703e9d2", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "c20082ffa1199aefb7cd4d3ec05a13b1" -} \ No newline at end of file + "hash": "c20082ffa1199aefb7cd4d3ec05a13b1" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__restore_keys_and_recover_backups/recording_fails_to_generate_a_backup_of_a_nonexisting_key.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__restore_keys_and_recover_backups/recording_fails_to_generate_a_backup_of_a_nonexisting_key.json index 132d0afa1d86..68741a4dc097 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__restore_keys_and_recover_backups/recording_fails_to_generate_a_backup_of_a_nonexisting_key.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__restore_keys_and_recover_backups/recording_fails_to_generate_a_backup_of_a_nonexisting_key.json @@ -1,88 +1,88 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-failstogenerateabackupofanon-existingkey-/backup", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:24 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "be29907d-8b61-4cd7-99a3-0e30ff6e8d78", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "72b75f4e-6024-4e1a-baa0-eb1e7cd14440", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-failstogenerateabackupofanon-existingkey-/backup", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:24 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "be29907d-8b61-4cd7-99a3-0e30ff6e8d78", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "72b75f4e-6024-4e1a-baa0-eb1e7cd14440", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:24 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - WUS2 ProdSlices", + "x-ms-request-id": "48c5329c-0596-4150-b337-49df87e8f801" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-failstogenerateabackupofanon-existingkey-/backup", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": null, + "status": 404, + "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-failstogenerateabackupofanon-existingkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "367", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:25:25 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "404", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "be29907d-8b61-4cd7-99a3-0e30ff6e8d78", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "c7b75038-3df1-40f7-ba1d-443d77115400", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:24 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - WUS2 ProdSlices", - "x-ms-request-id": "48c5329c-0596-4150-b337-49df87e8f801" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/backupRestoreKeyName-failstogenerateabackupofanon-existingkey-/backup", - "query": { - "api-version": "7.2" - }, - "requestBody": null, - "status": 404, - "response": "{\"error\":{\"code\":\"KeyNotFound\",\"message\":\"A key with (name/id) backupRestoreKeyName-failstogenerateabackupofanon-existingkey- was not found in this key vault. If you recently deleted this key you may be able to recover it using the correct recovery command. For help resolving this issue, please see https://go.microsoft.com/fwlink/?linkid=2125182\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "367", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:25:25 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "404", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "be29907d-8b61-4cd7-99a3-0e30ff6e8d78", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "c7b75038-3df1-40f7-ba1d-443d77115400", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "ffb965de89632befbdff6462f790510f" -} \ No newline at end of file + "hash": "ffb965de89632befbdff6462f790510f" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__restore_keys_and_recover_backups/recording_fails_to_restore_a_key_with_a_malformed_backup.json b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__restore_keys_and_recover_backups/recording_fails_to_restore_a_key_with_a_malformed_backup.json index e241f51db29b..1a8da75c9c23 100644 --- a/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__restore_keys_and_recover_backups/recording_fails_to_restore_a_key_with_a_malformed_backup.json +++ b/sdk/keyvault/keyvault-keys/recordings/browsers/keys_client__restore_keys_and_recover_backups/recording_fails_to_restore_a_key_with_a_malformed_backup.json @@ -1,88 +1,88 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/restore", - "query": { - "api-version": "7.2" - }, - "requestBody": "", - "status": 401, - "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "87", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:26:22 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "401", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "7d3ec75d-6c95-4a62-986b-0d9f788ea557", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "1bd8d218-31a5-4ddb-abe3-5ce9f9fec610", - "x-powered-by": "ASP.NET" - } + "recordings": [ + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/restore", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "", + "status": 401, + "response": "{\"error\":{\"code\":\"Unauthorized\",\"message\":\"Request is missing a Bearer or PoP token.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "87", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:26:22 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "401", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "www-authenticate": "Bearer authorization=\"https://login.windows.net/12345678-1234-1234-1234-123456789012\", resource=\"https://vault.azure.net\"", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "7d3ec75d-6c95-4a62-986b-0d9f788ea557", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "1bd8d218-31a5-4ddb-abe3-5ce9f9fec610", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1315", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:26:22 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", + "x-ms-request-id": "7f75ea5c-9049-4834-a7a4-2c2b0cc24a01" + } + }, + { + "method": "POST", + "url": "https://keyvault_name.vault.azure.net/keys/restore", + "query": { + "api-version": "7.3-preview" + }, + "requestBody": "{\"value\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}", + "status": 400, + "response": "{\"error\":{\"code\":\"Malformed backup blob\",\"message\":\"Backup blob contains invalid or corrupt version.\"}}", + "responseHeaders": { + "cache-control": "no-cache", + "content-length": "103", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 28 Apr 2021 22:26:22 GMT", + "expires": "-1", + "pragma": "no-cache", + "status": "400", + "strict-transport-security": "max-age=31536000;includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-client-request-id": "7d3ec75d-6c95-4a62-986b-0d9f788ea557", + "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", + "x-ms-keyvault-region": "westus2", + "x-ms-keyvault-service-version": "1.2.265.0", + "x-ms-request-id": "36b10222-6fca-48d5-8477-4ae5c67b81c5", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} }, - { - "method": "POST", - "url": "https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/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%2Fvault.azure.net%2F.default", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1315", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:26:22 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11654.16 - EUS ProdSlices", - "x-ms-request-id": "7f75ea5c-9049-4834-a7a4-2c2b0cc24a01" - } - }, - { - "method": "POST", - "url": "https://keyvault_name.vault.azure.net/keys/restore", - "query": { - "api-version": "7.2" - }, - "requestBody": "{\"value\":\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"}", - "status": 400, - "response": "{\"error\":{\"code\":\"Malformed backup blob\",\"message\":\"Backup blob contains invalid or corrupt version.\"}}", - "responseHeaders": { - "cache-control": "no-cache", - "content-length": "103", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 28 Apr 2021 22:26:22 GMT", - "expires": "-1", - "pragma": "no-cache", - "status": "400", - "strict-transport-security": "max-age=31536000;includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-client-request-id": "7d3ec75d-6c95-4a62-986b-0d9f788ea557", - "x-ms-keyvault-network-info": "conn_type=Ipv4;addr=72.68.182.20;act_addr_fam=InterNetwork;", - "x-ms-keyvault-region": "westus2", - "x-ms-keyvault-service-version": "1.2.265.0", - "x-ms-request-id": "36b10222-6fca-48d5-8477-4ae5c67b81c5", - "x-powered-by": "ASP.NET" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "4ce921702d021590364f6ddacdffbca5" -} \ No newline at end of file + "hash": "4ce921702d021590364f6ddacdffbca5" +} diff --git a/sdk/keyvault/keyvault-keys/recordings/node/keys_client__create_read_update_and_delete_operations_for_managed_hsm_getrandombytes/recording_can_return_the_required_number_of_bytes.js b/sdk/keyvault/keyvault-keys/recordings/node/keys_client__create_read_update_and_delete_operations_for_managed_hsm_getrandombytes/recording_can_return_the_required_number_of_bytes.js new file mode 100644 index 000000000000..3303734ce304 --- /dev/null +++ b/sdk/keyvault/keyvault-keys/recordings/node/keys_client__create_read_update_and_delete_operations_for_managed_hsm_getrandombytes/recording_can_return_the_required_number_of_bytes.js @@ -0,0 +1,165 @@ +let nock = require('nock'); + +module.exports.hash = "d78f39638c12cfc80b989af76f14c551"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://azure_managedhsm.managedhsm.azure.net:443', {"encodedQueryParams":true}) + .post('/rng') + .query(true) + .reply(401, "", [ + 'content-type', + 'application/json; charset=utf-8', + 'x-ms-server-latency', + '0', + 'x-content-type-options', + 'nosniff', + 'www-authenticate', + 'Bearer authorization="https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012", resource="https://managedhsm.azure.net"', + 'x-frame-options', + 'SAMEORIGIN', + 'content-length', + '0', + 'x-ms-request-id', + '57d93fe4-d529-11eb-ad97-000d3ae470ec', + 'strict-transport-security', + 'max-age=31536000; includeSubDomains', + 'content-security-policy', + "default-src 'self'", + 'cache-control', + 'no-cache' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '898a641d-360a-4605-97f7-63c15ad83400', + 'x-ms-ests-server', + '2.1.11829.9 - EUS ProdSlices', + 'Set-Cookie', + 'fpc=An88kC_uk-5BlZa6BvX_6fo; expires=Sat, 24-Jul-2021 20:18:31 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrnJ25BzSoiZOUUaOrUVDV9wFzuaVpDT1NIZnJnm9ipV9PIG8TNuPhvCF9wXsufqVNrHO8jsRR7xb9ZyOElBd9RBAjweDbz06ZLFIU0XRbVTD4VlF7nDyJ3EjS1cwW_FDF8ja6IDKgYyJw1dF2BE15QTRG4q4Nw5xWKV24Jd9-JLQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Thu, 24 Jun 2021 20:18:31 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/12345678-1234-1234-1234-123456789012/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '32d40d36-f534-44eb-9c93-fd9665333400', + 'x-ms-ests-server', + '2.1.11829.9 - EUS ProdSlices', + 'Set-Cookie', + 'fpc=An88kC_uk-5BlZa6BvX_6fo; expires=Sat, 24-Jul-2021 20:18:31 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrX8GexiPpw6uzLAg1Ep6C-st1LaNJHyI16xKbIgp-7vFzGWXdSH211Hh6TBxeOPFCV2BV9GK5s98FSCqDS9yNaWN-KS3SvWpd3lzqyjnz8MZ0qVX0GhonhnjAfd6j9fdlndr60n2-N5IWHiZdo_ABV-r31ypeC6nTpZUHGJxAS0cgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Thu, 24 Jun 2021 20:18:31 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/12345678-1234-1234-1234-123456789012/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=44e1aae1-937b-46be-ae70-377a854961c7&client_secret=azure_client_secret") + .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"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', + 'ecc544d9-4ff3-4869-8326-be5f52933400', + 'x-ms-ests-server', + '2.1.11829.9 - EUS ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=An88kC_uk-5BlZa6BvX_6fqT6o-SAQAAAJbfZtgOAAAA; expires=Sat, 24-Jul-2021 20:18:31 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Thu, 24 Jun 2021 20:18:31 GMT', + 'Content-Length', + '1322' +]); + +nock('https://azure_managedhsm.managedhsm.azure.net:443', {"encodedQueryParams":true}) + .post('/rng', {"count":10}) + .query(true) + .reply(200, {"value":"jXc-yTpyo4OtqQ"}, [ + 'content-type', + 'application/json; charset=utf-8', + 'x-content-type-options', + 'nosniff', + 'content-length', + '26', + 'x-ms-request-id', + '583cf688-d529-11eb-ad97-000d3ae470ec', + 'x-ms-keyvault-region', + 'eastus2', + 'strict-transport-security', + 'max-age=31536000; includeSubDomains', + 'content-security-policy', + "default-src 'self'", + 'x-ms-keyvault-network-info', + 'conn_type=Ipv4;addr=50.35.231.105;act_addr_fam=Ipv4;', + 'x-ms-server-latency', + '1', + 'cache-control', + 'no-cache', + 'x-frame-options', + 'SAMEORIGIN' +]); diff --git a/sdk/keyvault/keyvault-keys/recordings/node/keys_client__create_read_update_and_delete_operations_for_managed_hsm_getrandombytes/recording_returns_an_error_when_bytes_is_out_of_range.js b/sdk/keyvault/keyvault-keys/recordings/node/keys_client__create_read_update_and_delete_operations_for_managed_hsm_getrandombytes/recording_returns_an_error_when_bytes_is_out_of_range.js new file mode 100644 index 000000000000..584152086c7f --- /dev/null +++ b/sdk/keyvault/keyvault-keys/recordings/node/keys_client__create_read_update_and_delete_operations_for_managed_hsm_getrandombytes/recording_returns_an_error_when_bytes_is_out_of_range.js @@ -0,0 +1,5 @@ +let nock = require('nock'); + +module.exports.hash = "158ce47d15852a6b852fa60cf649dd23"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} diff --git a/sdk/keyvault/keyvault-keys/recordings/node/keys_client__create_read_update_and_delete_operations_for_managed_hsm_getrandombytes/recording_supports_tracing.js b/sdk/keyvault/keyvault-keys/recordings/node/keys_client__create_read_update_and_delete_operations_for_managed_hsm_getrandombytes/recording_supports_tracing.js new file mode 100644 index 000000000000..2d9006c21462 --- /dev/null +++ b/sdk/keyvault/keyvault-keys/recordings/node/keys_client__create_read_update_and_delete_operations_for_managed_hsm_getrandombytes/recording_supports_tracing.js @@ -0,0 +1,165 @@ +let nock = require('nock'); + +module.exports.hash = "8c2d96b8b27e50944b1433224218635a"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://azure_managedhsm.managedhsm.azure.net:443', {"encodedQueryParams":true}) + .post('/rng') + .query(true) + .reply(401, "", [ + 'content-type', + 'application/json; charset=utf-8', + 'x-ms-server-latency', + '0', + 'x-content-type-options', + 'nosniff', + 'www-authenticate', + 'Bearer authorization="https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012", resource="https://managedhsm.azure.net"', + 'x-frame-options', + 'SAMEORIGIN', + 'content-length', + '0', + 'x-ms-request-id', + '584b1268-d529-11eb-ad97-000d3ae470ec', + 'strict-transport-security', + 'max-age=31536000; includeSubDomains', + 'content-security-policy', + "default-src 'self'", + 'cache-control', + 'no-cache' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'fb524f16-f7e9-44f4-9cf7-7238c7e34700', + 'x-ms-ests-server', + '2.1.11829.9 - SCUS ProdSlices', + 'Set-Cookie', + 'fpc=An88kC_uk-5BlZa6BvX_6fqT6o-SAQAAAJbfZtgOAAAA; expires=Sat, 24-Jul-2021 20:18:31 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr8TtWCdPNgpjQiZp1BydSuAR9IMWJZ2DCdh5wyETlXwAxfG1fM908RJXIOJrkzlntFHxuzjoPe1whEcHQnRkmJ8_vamjRNs_05xX-pRUuyDbHdgwyyzVNxEDojHKQqm2ypvTPrE8z0jk5oF_uC5o5xaHWPM8PdWQvDmxjH9wdgoAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Thu, 24 Jun 2021 20:18:31 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/12345678-1234-1234-1234-123456789012/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/12345678-1234-1234-1234-123456789012/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '52e735e3-3a5b-40d5-b0b0-e745120c3500', + 'x-ms-ests-server', + '2.1.11829.9 - WUS2 ProdSlices', + 'Set-Cookie', + 'fpc=An88kC_uk-5BlZa6BvX_6fqT6o-SAQAAAJbfZtgOAAAA; expires=Sat, 24-Jul-2021 20:18:31 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrdvXG3aFgubeT0UgzA6subTeWvTj7P4o50x1W_dBwFddQTpoggKEyGJVVlRCUWPYhbfnqE4TbxMeSvVMWBoU1oGvuBcItona6q6gjqlR32HM1kXYnRb8a0hhezkeW1uTABC7kWPoHJle6Gupyjc381Z0XfnAQhBiEgblLXW_O-ewgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Thu, 24 Jun 2021 20:18:31 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/12345678-1234-1234-1234-123456789012/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=febffb55-86de-4ced-b4a7-cb8e94e534fb&client_secret=azure_client_secret") + .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"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', + '9aacd36f-14be-4929-8c74-834cf30f3800', + 'x-ms-ests-server', + '2.1.11829.9 - WUS2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=An88kC_uk-5BlZa6BvX_6fqT6o-SAgAAAJbfZtgOAAAA; expires=Sat, 24-Jul-2021 20:18:31 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Thu, 24 Jun 2021 20:18:32 GMT', + 'Content-Length', + '1322' +]); + +nock('https://azure_managedhsm.managedhsm.azure.net:443', {"encodedQueryParams":true}) + .post('/rng', {"count":128}) + .query(true) + .reply(200, {"value":"SrFDjHv8MqkTtcoZA-GTdU3NNXS-JqmJYHFfpzJIHlObQuJgNtfIsxnK25Uiy8dcyR6aLlUK-6pvnRvkGDLaYCgF1eOwyU4J6T-iZopnKA1uVyapYbBv1qA5CNDFesleKQxw3MdgXp_arkjY5c7wgLzu-vPEjMB7iYrqIM9ZoZg"}, [ + 'content-type', + 'application/json; charset=utf-8', + 'x-content-type-options', + 'nosniff', + 'content-length', + '183', + 'x-ms-request-id', + '588a0108-d529-11eb-ad97-000d3ae470ec', + 'x-ms-keyvault-region', + 'eastus2', + 'strict-transport-security', + 'max-age=31536000; includeSubDomains', + 'content-security-policy', + "default-src 'self'", + 'x-ms-keyvault-network-info', + 'conn_type=Ipv4;addr=50.35.231.105;act_addr_fam=Ipv4;', + 'x-ms-server-latency', + '1', + 'cache-control', + 'no-cache', + 'x-frame-options', + 'SAMEORIGIN' +]); diff --git a/sdk/keyvault/keyvault-keys/review/keyvault-keys.api.md b/sdk/keyvault/keyvault-keys/review/keyvault-keys.api.md index 7275b7b548f8..f322e31a62b6 100644 --- a/sdk/keyvault/keyvault-keys/review/keyvault-keys.api.md +++ b/sdk/keyvault/keyvault-keys/review/keyvault-keys.api.md @@ -175,6 +175,10 @@ export interface GetKeyOptions extends coreHttp.OperationOptions { version?: string; } +// @public +export interface GetRandomBytesOptions extends coreHttp.OperationOptions { +} + // @public export interface ImportKeyOptions extends coreHttp.OperationOptions { enabled?: boolean; @@ -218,6 +222,7 @@ export class KeyClient { createRsaKey(name: string, options?: CreateRsaKeyOptions): Promise; getDeletedKey(name: string, options?: GetDeletedKeyOptions): Promise; getKey(name: string, options?: GetKeyOptions): Promise; + getRandomBytes(count: number, options?: GetRandomBytesOptions): Promise; importKey(name: string, key: JsonWebKey, options?: ImportKeyOptions): Promise; listDeletedKeys(options?: ListDeletedKeysOptions): PagedAsyncIterableIterator; listPropertiesOfKeys(options?: ListPropertiesOfKeysOptions): PagedAsyncIterableIterator; @@ -327,7 +332,7 @@ export const enum KnownKeyCurveNames { } // @public -export const enum KnownKeyOperations { +export enum KnownKeyOperations { Decrypt = "decrypt", Encrypt = "encrypt", Import = "import", diff --git a/sdk/keyvault/keyvault-keys/src/generated/keyVaultClient.ts b/sdk/keyvault/keyvault-keys/src/generated/keyVaultClient.ts index 6c9549b8ca0d..a32918baf189 100644 --- a/sdk/keyvault/keyvault-keys/src/generated/keyVaultClient.ts +++ b/sdk/keyvault/keyvault-keys/src/generated/keyVaultClient.ts @@ -12,22 +12,28 @@ import * as Mappers from "./models/mappers"; import { KeyVaultClientContext } from "./keyVaultClientContext"; import { KeyVaultClientOptionalParams, - ApiVersion72, + ApiVersion73Preview, JsonWebKeyType, KeyVaultClientCreateKeyOptionalParams, KeyVaultClientCreateKeyResponse, + KeyVaultClientRotateKeyOptionalParams, + KeyVaultClientRotateKeyResponse, JsonWebKey, KeyVaultClientImportKeyOptionalParams, KeyVaultClientImportKeyResponse, + KeyVaultClientDeleteKeyOptionalParams, KeyVaultClientDeleteKeyResponse, KeyVaultClientUpdateKeyOptionalParams, KeyVaultClientUpdateKeyResponse, + KeyVaultClientGetKeyOptionalParams, KeyVaultClientGetKeyResponse, KeyVaultClientGetKeyVersionsOptionalParams, KeyVaultClientGetKeyVersionsResponse, KeyVaultClientGetKeysOptionalParams, KeyVaultClientGetKeysResponse, + KeyVaultClientBackupKeyOptionalParams, KeyVaultClientBackupKeyResponse, + KeyVaultClientRestoreKeyOptionalParams, KeyVaultClientRestoreKeyResponse, JsonWebKeyEncryptionAlgorithm, KeyVaultClientEncryptOptionalParams, @@ -35,16 +41,32 @@ import { KeyVaultClientDecryptOptionalParams, KeyVaultClientDecryptResponse, JsonWebKeySignatureAlgorithm, + KeyVaultClientSignOptionalParams, KeyVaultClientSignResponse, + KeyVaultClientVerifyOptionalParams, KeyVaultClientVerifyResponse, KeyVaultClientWrapKeyOptionalParams, KeyVaultClientWrapKeyResponse, KeyVaultClientUnwrapKeyOptionalParams, KeyVaultClientUnwrapKeyResponse, + KeyVaultClientExportOptionalParams, + KeyVaultClientExportResponse, + KeyVaultClientReleaseOptionalParams, + KeyVaultClientReleaseResponse, KeyVaultClientGetDeletedKeysOptionalParams, KeyVaultClientGetDeletedKeysResponse, + KeyVaultClientGetDeletedKeyOptionalParams, KeyVaultClientGetDeletedKeyResponse, + KeyVaultClientPurgeDeletedKeyOptionalParams, + KeyVaultClientRecoverDeletedKeyOptionalParams, KeyVaultClientRecoverDeletedKeyResponse, + KeyVaultClientGetKeyRotationPolicyOptionalParams, + KeyVaultClientGetKeyRotationPolicyResponse, + KeyRotationPolicy, + KeyVaultClientUpdateKeyRotationPolicyOptionalParams, + KeyVaultClientUpdateKeyRotationPolicyResponse, + KeyVaultClientGetRandomBytesOptionalParams, + KeyVaultClientGetRandomBytesResponse, KeyVaultClientGetKeyVersionsNextOptionalParams, KeyVaultClientGetKeyVersionsNextResponse, KeyVaultClientGetKeysNextOptionalParams, @@ -53,7 +75,6 @@ import { KeyVaultClientGetDeletedKeysNextResponse } from "./models"; -/** @hidden */ export class KeyVaultClient extends KeyVaultClientContext { /** * Initializes a new instance of the KeyVaultClient class. @@ -61,7 +82,7 @@ export class KeyVaultClient extends KeyVaultClientContext { * @param options The parameter options */ constructor( - apiVersion: ApiVersion72, + apiVersion: ApiVersion73Preview, options?: KeyVaultClientOptionalParams ) { super(apiVersion, options); @@ -94,6 +115,29 @@ export class KeyVaultClient extends KeyVaultClientContext { ) as Promise; } + /** + * The operation will rotate the key based on the key policy. It requires the keys/rotate permission. + * @param vaultBaseUrl The vault name, for example https://myvault.vault.azure.net. + * @param keyName The name of key to be rotated. The system will generate a new version in the + * specified key. + * @param options The options parameters. + */ + rotateKey( + vaultBaseUrl: string, + keyName: string, + options?: KeyVaultClientRotateKeyOptionalParams + ): Promise { + const operationArguments: coreHttp.OperationArguments = { + vaultBaseUrl, + keyName, + options: coreHttp.operationOptionsToRequestOptionsBase(options || {}) + }; + return this.sendOperationRequest( + operationArguments, + rotateKeyOperationSpec + ) as Promise; + } + /** * The import key operation may be used to import any key type into an Azure Key Vault. If the named * key already exists, Azure Key Vault creates a new version of the key. This operation requires the @@ -133,7 +177,7 @@ export class KeyVaultClient extends KeyVaultClientContext { deleteKey( vaultBaseUrl: string, keyName: string, - options?: coreHttp.OperationOptions + options?: KeyVaultClientDeleteKeyOptionalParams ): Promise { const operationArguments: coreHttp.OperationArguments = { vaultBaseUrl, @@ -186,7 +230,7 @@ export class KeyVaultClient extends KeyVaultClientContext { vaultBaseUrl: string, keyName: string, keyVersion: string, - options?: coreHttp.OperationOptions + options?: KeyVaultClientGetKeyOptionalParams ): Promise { const operationArguments: coreHttp.OperationArguments = { vaultBaseUrl, @@ -263,7 +307,7 @@ export class KeyVaultClient extends KeyVaultClientContext { backupKey( vaultBaseUrl: string, keyName: string, - options?: coreHttp.OperationOptions + options?: KeyVaultClientBackupKeyOptionalParams ): Promise { const operationArguments: coreHttp.OperationArguments = { vaultBaseUrl, @@ -294,7 +338,7 @@ export class KeyVaultClient extends KeyVaultClientContext { restoreKey( vaultBaseUrl: string, keyBundleBackup: Uint8Array, - options?: coreHttp.OperationOptions + options?: KeyVaultClientRestoreKeyOptionalParams ): Promise { const operationArguments: coreHttp.OperationArguments = { vaultBaseUrl, @@ -397,7 +441,7 @@ export class KeyVaultClient extends KeyVaultClientContext { keyVersion: string, algorithm: JsonWebKeySignatureAlgorithm, value: Uint8Array, - options?: coreHttp.OperationOptions + options?: KeyVaultClientSignOptionalParams ): Promise { const operationArguments: coreHttp.OperationArguments = { vaultBaseUrl, @@ -435,7 +479,7 @@ export class KeyVaultClient extends KeyVaultClientContext { algorithm: JsonWebKeySignatureAlgorithm, digest: Uint8Array, signature: Uint8Array, - options?: coreHttp.OperationOptions + options?: KeyVaultClientVerifyOptionalParams ): Promise { const operationArguments: coreHttp.OperationArguments = { vaultBaseUrl, @@ -522,6 +566,61 @@ export class KeyVaultClient extends KeyVaultClientContext { ) as Promise; } + /** + * The export key operation is applicable to all key types. The target key must be marked exportable. + * This operation requires the keys/export permission. + * @param vaultBaseUrl The vault name, for example https://myvault.vault.azure.net. + * @param keyName The name of the key to get. + * @param keyVersion Adding the version parameter retrieves a specific version of a key. + * @param options The options parameters. + */ + export( + vaultBaseUrl: string, + keyName: string, + keyVersion: string, + options?: KeyVaultClientExportOptionalParams + ): Promise { + const operationArguments: coreHttp.OperationArguments = { + vaultBaseUrl, + keyName, + keyVersion, + options: coreHttp.operationOptionsToRequestOptionsBase(options || {}) + }; + return this.sendOperationRequest( + operationArguments, + exportOperationSpec + ) as Promise; + } + + /** + * The release key operation is applicable to all key types. The target key must be marked exportable. + * This operation requires the keys/release permission. + * @param vaultBaseUrl The vault name, for example https://myvault.vault.azure.net. + * @param keyName The name of the key to get. + * @param keyVersion Adding the version parameter retrieves a specific version of a key. + * @param target The attestation assertion for the target of the key release. + * @param options The options parameters. + */ + release( + vaultBaseUrl: string, + keyName: string, + keyVersion: string, + target: string, + options?: KeyVaultClientReleaseOptionalParams + ): Promise { + const operationArguments: coreHttp.OperationArguments = { + vaultBaseUrl, + keyName, + keyVersion, + target, + options: coreHttp.operationOptionsToRequestOptionsBase(options || {}) + }; + return this.sendOperationRequest( + operationArguments, + releaseOperationSpec + ) as Promise; + } + /** * Retrieves a list of the keys in the Key Vault as JSON Web Key structures that contain the public * part of a deleted key. This operation includes deletion-specific information. The Get Deleted Keys @@ -556,7 +655,7 @@ export class KeyVaultClient extends KeyVaultClientContext { getDeletedKey( vaultBaseUrl: string, keyName: string, - options?: coreHttp.OperationOptions + options?: KeyVaultClientGetDeletedKeyOptionalParams ): Promise { const operationArguments: coreHttp.OperationArguments = { vaultBaseUrl, @@ -580,7 +679,7 @@ export class KeyVaultClient extends KeyVaultClientContext { purgeDeletedKey( vaultBaseUrl: string, keyName: string, - options?: coreHttp.OperationOptions + options?: KeyVaultClientPurgeDeletedKeyOptionalParams ): Promise { const operationArguments: coreHttp.OperationArguments = { vaultBaseUrl, @@ -605,7 +704,7 @@ export class KeyVaultClient extends KeyVaultClientContext { recoverDeletedKey( vaultBaseUrl: string, keyName: string, - options?: coreHttp.OperationOptions + options?: KeyVaultClientRecoverDeletedKeyOptionalParams ): Promise { const operationArguments: coreHttp.OperationArguments = { vaultBaseUrl, @@ -618,6 +717,77 @@ export class KeyVaultClient extends KeyVaultClientContext { ) as Promise; } + /** + * The GetKeyRotationPolicy operation returns the specified key policy resources in the specified key + * vault. This operation requires the keys/get permission. + * @param vaultBaseUrl The vault name, for example https://myvault.vault.azure.net. + * @param keyName The name of the key in a given key vault. + * @param options The options parameters. + */ + getKeyRotationPolicy( + vaultBaseUrl: string, + keyName: string, + options?: KeyVaultClientGetKeyRotationPolicyOptionalParams + ): Promise { + const operationArguments: coreHttp.OperationArguments = { + vaultBaseUrl, + keyName, + options: coreHttp.operationOptionsToRequestOptionsBase(options || {}) + }; + return this.sendOperationRequest( + operationArguments, + getKeyRotationPolicyOperationSpec + ) as Promise; + } + + /** + * Set specified members in the key policy. Leave others as undefined. This operation requires the + * keys/update permission. + * @param vaultBaseUrl The vault name, for example https://myvault.vault.azure.net. + * @param keyName The name of the key in the given vault. + * @param keyRotationPolicy The policy for the key. + * @param options The options parameters. + */ + updateKeyRotationPolicy( + vaultBaseUrl: string, + keyName: string, + keyRotationPolicy: KeyRotationPolicy, + options?: KeyVaultClientUpdateKeyRotationPolicyOptionalParams + ): Promise { + const operationArguments: coreHttp.OperationArguments = { + vaultBaseUrl, + keyName, + keyRotationPolicy, + options: coreHttp.operationOptionsToRequestOptionsBase(options || {}) + }; + return this.sendOperationRequest( + operationArguments, + updateKeyRotationPolicyOperationSpec + ) as Promise; + } + + /** + * Get the requested number of bytes containing random values from a managed HSM. + * @param vaultBaseUrl The vault name, for example https://myvault.vault.azure.net. + * @param count The requested number of random bytes. + * @param options The options parameters. + */ + getRandomBytes( + vaultBaseUrl: string, + count: number, + options?: KeyVaultClientGetRandomBytesOptionalParams + ): Promise { + const operationArguments: coreHttp.OperationArguments = { + vaultBaseUrl, + count, + options: coreHttp.operationOptionsToRequestOptionsBase(options || {}) + }; + return this.sendOperationRequest( + operationArguments, + getRandomBytesOperationSpec + ) as Promise; + } + /** * GetKeyVersionsNext * @param vaultBaseUrl The vault name, for example https://myvault.vault.azure.net. @@ -709,9 +879,10 @@ const createKeyOperationSpec: coreHttp.OperationSpec = { keyOps: ["options", "keyOps"], keyAttributes: ["options", "keyAttributes"], tags: ["options", "tags"], - curve: ["options", "curve"] + curve: ["options", "curve"], + releasePolicy: ["options", "releasePolicy"] }, - mapper: Mappers.KeyCreateParameters + mapper: { ...Mappers.KeyCreateParameters, required: true } }, queryParameters: [Parameters.apiVersion], urlParameters: [Parameters.vaultBaseUrl, Parameters.keyName], @@ -719,6 +890,22 @@ const createKeyOperationSpec: coreHttp.OperationSpec = { mediaType: "json", serializer }; +const rotateKeyOperationSpec: coreHttp.OperationSpec = { + path: "/keys/{key-name}/rotate", + httpMethod: "POST", + responses: { + 200: { + bodyMapper: Mappers.KeyBundle + }, + default: { + bodyMapper: Mappers.KeyVaultError + } + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [Parameters.vaultBaseUrl, Parameters.keyName], + headerParameters: [Parameters.accept], + serializer +}; const importKeyOperationSpec: coreHttp.OperationSpec = { path: "/keys/{key-name}", httpMethod: "PUT", @@ -735,9 +922,10 @@ const importKeyOperationSpec: coreHttp.OperationSpec = { hsm: ["options", "hsm"], key: ["key"], keyAttributes: ["options", "keyAttributes"], - tags: ["options", "tags"] + tags: ["options", "tags"], + releasePolicy: ["options", "releasePolicy"] }, - mapper: Mappers.KeyImportParameters + mapper: { ...Mappers.KeyImportParameters, required: true } }, queryParameters: [Parameters.apiVersion], urlParameters: [Parameters.vaultBaseUrl, Parameters.keyName], @@ -776,9 +964,10 @@ const updateKeyOperationSpec: coreHttp.OperationSpec = { parameterPath: { keyOps: ["options", "keyOps"], keyAttributes: ["options", "keyAttributes"], - tags: ["options", "tags"] + tags: ["options", "tags"], + releasePolicy: ["options", "releasePolicy"] }, - mapper: Mappers.KeyUpdateParameters + mapper: { ...Mappers.KeyUpdateParameters, required: true } }, queryParameters: [Parameters.apiVersion], urlParameters: [ @@ -871,7 +1060,7 @@ const restoreKeyOperationSpec: coreHttp.OperationSpec = { }, requestBody: { parameterPath: { keyBundleBackup: ["keyBundleBackup"] }, - mapper: Mappers.KeyRestoreParameters + mapper: { ...Mappers.KeyRestoreParameters, required: true } }, queryParameters: [Parameters.apiVersion], urlParameters: [Parameters.vaultBaseUrl], @@ -898,7 +1087,7 @@ const encryptOperationSpec: coreHttp.OperationSpec = { additionalAuthenticatedData: ["options", "additionalAuthenticatedData"], authenticationTag: ["options", "authenticationTag"] }, - mapper: Mappers.KeyOperationsParameters + mapper: { ...Mappers.KeyOperationsParameters, required: true } }, queryParameters: [Parameters.apiVersion], urlParameters: [ @@ -929,7 +1118,7 @@ const decryptOperationSpec: coreHttp.OperationSpec = { additionalAuthenticatedData: ["options", "additionalAuthenticatedData"], authenticationTag: ["options", "authenticationTag"] }, - mapper: Mappers.KeyOperationsParameters + mapper: { ...Mappers.KeyOperationsParameters, required: true } }, queryParameters: [Parameters.apiVersion], urlParameters: [ @@ -954,7 +1143,7 @@ const signOperationSpec: coreHttp.OperationSpec = { }, requestBody: { parameterPath: { algorithm: ["algorithm"], value: ["value"] }, - mapper: Mappers.KeySignParameters + mapper: { ...Mappers.KeySignParameters, required: true } }, queryParameters: [Parameters.apiVersion], urlParameters: [ @@ -983,7 +1172,7 @@ const verifyOperationSpec: coreHttp.OperationSpec = { digest: ["digest"], signature: ["signature"] }, - mapper: Mappers.KeyVerifyParameters + mapper: { ...Mappers.KeyVerifyParameters, required: true } }, queryParameters: [Parameters.apiVersion], urlParameters: [ @@ -1014,7 +1203,7 @@ const wrapKeyOperationSpec: coreHttp.OperationSpec = { additionalAuthenticatedData: ["options", "additionalAuthenticatedData"], authenticationTag: ["options", "authenticationTag"] }, - mapper: Mappers.KeyOperationsParameters + mapper: { ...Mappers.KeyOperationsParameters, required: true } }, queryParameters: [Parameters.apiVersion], urlParameters: [ @@ -1045,7 +1234,65 @@ const unwrapKeyOperationSpec: coreHttp.OperationSpec = { additionalAuthenticatedData: ["options", "additionalAuthenticatedData"], authenticationTag: ["options", "authenticationTag"] }, - mapper: Mappers.KeyOperationsParameters + mapper: { ...Mappers.KeyOperationsParameters, required: true } + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.vaultBaseUrl, + Parameters.keyName1, + Parameters.keyVersion + ], + headerParameters: [Parameters.contentType, Parameters.accept], + mediaType: "json", + serializer +}; +const exportOperationSpec: coreHttp.OperationSpec = { + path: "/keys/{key-name}/{key-version}/export", + httpMethod: "POST", + responses: { + 200: { + bodyMapper: Mappers.KeyBundle + }, + default: { + bodyMapper: Mappers.KeyVaultError + } + }, + requestBody: { + parameterPath: { + wrappingKey: ["options", "wrappingKey"], + wrappingKid: ["options", "wrappingKid"], + enc: ["options", "enc"] + }, + mapper: { ...Mappers.KeyExportParameters, required: true } + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.vaultBaseUrl, + Parameters.keyName1, + Parameters.keyVersion + ], + headerParameters: [Parameters.contentType, Parameters.accept], + mediaType: "json", + serializer +}; +const releaseOperationSpec: coreHttp.OperationSpec = { + path: "/keys/{key-name}/{key-version}/release", + httpMethod: "POST", + responses: { + 200: { + bodyMapper: Mappers.KeyReleaseResult + }, + default: { + bodyMapper: Mappers.KeyVaultError + } + }, + requestBody: { + parameterPath: { + target: ["target"], + nonce: ["options", "nonce"], + enc: ["options", "enc"] + }, + mapper: { ...Mappers.KeyReleaseParameters, required: true } }, queryParameters: [Parameters.apiVersion], urlParameters: [ @@ -1119,6 +1366,61 @@ const recoverDeletedKeyOperationSpec: coreHttp.OperationSpec = { headerParameters: [Parameters.accept], serializer }; +const getKeyRotationPolicyOperationSpec: coreHttp.OperationSpec = { + path: "/keys/{key-name}/rotationpolicy", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.KeyRotationPolicy + }, + default: { + bodyMapper: Mappers.KeyVaultError + } + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [Parameters.vaultBaseUrl, Parameters.keyName1], + headerParameters: [Parameters.accept], + serializer +}; +const updateKeyRotationPolicyOperationSpec: coreHttp.OperationSpec = { + path: "/keys/{key-name}/rotationpolicy", + httpMethod: "PUT", + responses: { + 200: { + bodyMapper: Mappers.KeyRotationPolicy + }, + default: { + bodyMapper: Mappers.KeyVaultError + } + }, + requestBody: Parameters.keyRotationPolicy, + queryParameters: [Parameters.apiVersion], + urlParameters: [Parameters.vaultBaseUrl, Parameters.keyName1], + headerParameters: [Parameters.contentType, Parameters.accept], + mediaType: "json", + serializer +}; +const getRandomBytesOperationSpec: coreHttp.OperationSpec = { + path: "/rng", + httpMethod: "POST", + responses: { + 200: { + bodyMapper: Mappers.RandomBytes + }, + default: { + bodyMapper: Mappers.KeyVaultError + } + }, + requestBody: { + parameterPath: { count: ["count"] }, + mapper: { ...Mappers.GetRandomBytesRequest, required: true } + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [Parameters.vaultBaseUrl], + headerParameters: [Parameters.contentType, Parameters.accept], + mediaType: "json", + serializer +}; const getKeyVersionsNextOperationSpec: coreHttp.OperationSpec = { path: "{nextLink}", httpMethod: "GET", diff --git a/sdk/keyvault/keyvault-keys/src/generated/keyVaultClientContext.ts b/sdk/keyvault/keyvault-keys/src/generated/keyVaultClientContext.ts index 7dd1a43207da..4b846484e31a 100644 --- a/sdk/keyvault/keyvault-keys/src/generated/keyVaultClientContext.ts +++ b/sdk/keyvault/keyvault-keys/src/generated/keyVaultClientContext.ts @@ -7,24 +7,20 @@ */ import * as coreHttp from "@azure/core-http"; -import { ApiVersion72, KeyVaultClientOptionalParams } from "./models"; +import { ApiVersion73Preview, KeyVaultClientOptionalParams } from "./models"; const packageName = "@azure/keyvault-keys"; export const packageVersion = "4.3.0-beta.1"; -/** @hidden */ export class KeyVaultClientContext extends coreHttp.ServiceClient { - apiVersion: ApiVersion72; + apiVersion: ApiVersion73Preview; /** * Initializes a new instance of the KeyVaultClientContext class. * @param apiVersion Api Version * @param options The parameter options */ - constructor( - apiVersion: ApiVersion72, - options?: KeyVaultClientOptionalParams - ) { + constructor(apiVersion: ApiVersion73Preview, options?: KeyVaultClientOptionalParams) { if (apiVersion === undefined) { throw new Error("'apiVersion' cannot be null"); } @@ -34,17 +30,20 @@ export class KeyVaultClientContext extends coreHttp.ServiceClient { options = {}; } - if (!options.userAgent) { - const defaultUserAgent = coreHttp.getDefaultUserAgentValue(); - options.userAgent = `${packageName}/${packageVersion} ${defaultUserAgent}`; - } + const defaultUserAgent = `azsdk-js-${packageName.replace( + "@azure/", + "" + )}/${packageVersion} ${coreHttp.getDefaultUserAgentValue()}`; - super(undefined, options); + super(undefined, { + ...options, + userAgent: options.userAgent + ? `${options.userAgent} ${defaultUserAgent}` + : `${defaultUserAgent}` + }); this.requestContentType = "application/json; charset=utf-8"; - this.baseUri = options.endpoint || "{vaultBaseUrl}"; - // Parameter assignments this.apiVersion = apiVersion; } diff --git a/sdk/keyvault/keyvault-keys/src/generated/models/index.ts b/sdk/keyvault/keyvault-keys/src/generated/models/index.ts index 6686df771d5a..769dd3471e5d 100644 --- a/sdk/keyvault/keyvault-keys/src/generated/models/index.ts +++ b/sdk/keyvault/keyvault-keys/src/generated/models/index.ts @@ -23,6 +23,8 @@ export interface KeyCreateParameters { tags?: { [propertyName: string]: string }; /** Elliptic curve name. For valid values, see JsonWebKeyCurveName. */ curve?: JsonWebKeyCurveName; + /** The policy rules under which the key can be exported. */ + releasePolicy?: KeyReleasePolicy; } /** The object attributes managed by the KeyVault service. */ @@ -45,6 +47,13 @@ export interface Attributes { readonly updated?: Date; } +export interface KeyReleasePolicy { + /** Content type and version of key release policy */ + contentType?: string; + /** Blob encoding the policy rules under which the key can be released. */ + data?: Uint8Array; +} + /** A KeyBundle consisting of a WebKey plus its attributes. */ export interface KeyBundle { /** The Json web key. */ @@ -58,6 +67,8 @@ export interface KeyBundle { * NOTE: This property will not be serialized. It can only be populated by the server. */ readonly managed?: boolean; + /** The policy rules under which the key can be exported. */ + releasePolicy?: KeyReleasePolicy; } /** As of http://tools.ietf.org/html/draft-ietf-jose-json-web-key-18 */ @@ -101,7 +112,7 @@ export interface KeyVaultError { * The key vault server error. * NOTE: This property will not be serialized. It can only be populated by the server. */ - readonly error?: ErrorModel | null; + readonly error?: ErrorModel; } /** The key vault server error. */ @@ -120,7 +131,7 @@ export interface ErrorModel { * The key vault server error. * NOTE: This property will not be serialized. It can only be populated by the server. */ - readonly innerError?: ErrorModel | null; + readonly innerError?: ErrorModel; } /** The key import parameters. */ @@ -133,6 +144,8 @@ export interface KeyImportParameters { keyAttributes?: KeyAttributes; /** Application specific metadata in the form of key-value pairs. */ tags?: { [propertyName: string]: string }; + /** The policy rules under which the key can be exported. */ + releasePolicy?: KeyReleasePolicy; } /** The key update parameters. */ @@ -143,6 +156,8 @@ export interface KeyUpdateParameters { keyAttributes?: KeyAttributes; /** Application specific metadata in the form of key-value pairs. */ tags?: { [propertyName: string]: string }; + /** The policy rules under which the key can be exported. */ + releasePolicy?: KeyReleasePolicy; } /** The key list result. */ @@ -245,6 +260,35 @@ export interface KeyVerifyResult { readonly value?: boolean; } +/** The export key parameters. */ +export interface KeyExportParameters { + /** The export key encryption Json web key. This key MUST be a RSA key that supports encryption. */ + wrappingKey?: JsonWebKey; + /** The export key encryption key identifier. This key MUST be a RSA key that supports encryption. */ + wrappingKid?: string; + /** The encryption algorithm to use to protected the exported key material */ + enc?: KeyEncryptionAlgorithm; +} + +/** The release key parameters. */ +export interface KeyReleaseParameters { + /** The attestation assertion for the target of the key release. */ + target: string; + /** A client provided nonce for freshness. */ + nonce?: string; + /** The encryption algorithm to use to protected the exported key material */ + enc?: KeyEncryptionAlgorithm; +} + +/** The release result, containing the released key. */ +export interface KeyReleaseResult { + /** + * A signed object containing the released key. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly value?: string; +} + /** A list of keys that have been deleted in this vault. */ export interface DeletedKeyListResult { /** @@ -259,9 +303,72 @@ export interface DeletedKeyListResult { readonly nextLink?: string; } +/** Management policy for a key. */ +export interface KeyRotationPolicy { + /** + * The key policy id. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly id?: string; + /** Actions that will be performed by Key Vault over the lifetime of a key. For preview, lifetimeActions can only have two items at maximum: one for rotate, one for notify. Notification time would be default to 30 days before expiry and it is not configurable. */ + lifetimeActions?: LifetimeActions[]; + /** The key rotation policy attributes. */ + attributes?: KeyRotationPolicyAttributes; +} + +/** Action and its trigger that will be performed by Key Vault over the lifetime of a key. */ +export interface LifetimeActions { + /** The condition that will execute the action. */ + trigger?: LifetimeActionsTrigger; + /** The action that will be executed. */ + action?: LifetimeActionsType; +} + +/** A condition to be satisfied for an action to be executed. */ +export interface LifetimeActionsTrigger { + /** Time after creation to attempt rotate. It will be in ISO 8601 format. Example: 90 days : "P90D" */ + timeAfterCreate?: string; + /** Time before expiry to attempt rotate. It will be in ISO 8601 format. Example: 90 days : "P90D" */ + timeBeforeExpiry?: string; +} + +/** The action that will be executed. */ +export interface LifetimeActionsType { + /** The type of the action. */ + type?: ActionType; +} + +/** The key rotation policy attributes. */ +export interface KeyRotationPolicyAttributes { + /** The expiryTime will be applied on the new key version. It should be at least 28 days. It will be in ISO 8601 Format. Examples: 90 days: P90D, 3 months: P3M, 48 hours: PT48H, 1 year and 10 days: P1Y10D */ + expiryTime?: string; + /** + * The key rotation policy created time in UTC. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly created?: Date; + /** + * The key rotation policy's last updated time in UTC. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly updated?: Date; +} + +/** The get random bytes request object. */ +export interface GetRandomBytesRequest { + /** The requested number of random bytes. */ + count: number; +} + +/** The get random bytes response object containing the bytes. */ +export interface RandomBytes { + /** The bytes encoded as a base64url string. */ + value?: Uint8Array; +} + /** Properties of the key pair backing a certificate. */ export interface KeyProperties { - /** Not supported in this version. Indicates if the private key can be exported. */ + /** Indicates if the private key can be exported. */ exportable?: boolean; /** The type of key pair to be used for the certificate. */ keyType?: JsonWebKeyType; @@ -285,6 +392,8 @@ export type KeyAttributes = Attributes & { * NOTE: This property will not be serialized. It can only be populated by the server. */ readonly recoveryLevel?: DeletionRecoveryLevel; + /** Indicates if the private key can be exported. */ + exportable?: boolean; }; /** A DeletedKeyBundle consisting of a WebKey plus its Attributes and deletion info */ @@ -319,34 +428,34 @@ export type DeletedKeyItem = KeyItem & { readonly deletedDate?: Date; }; -/** Known values of {@link ApiVersion72} that the service accepts. */ -export const enum KnownApiVersion72 { - /** Api Version '7.2' */ - Seven2 = "7.2" +/** Known values of {@link ApiVersion73Preview} that the service accepts. */ +export const enum KnownApiVersion73Preview { + /** Api Version '7.3-preview' */ + Seven3Preview = "7.3-preview" } /** - * Defines values for ApiVersion72. \ - * {@link KnownApiVersion72} can be used interchangeably with ApiVersion72, + * Defines values for ApiVersion73Preview. \ + * {@link KnownApiVersion73Preview} can be used interchangeably with ApiVersion73Preview, * this enum contains the known values that the service supports. - * ### Know values supported by the service - * **7.2**: Api Version '7.2' + * ### Known values supported by the service + * **7.3-preview**: Api Version '7.3-preview' */ -export type ApiVersion72 = string; +export type ApiVersion73Preview = string; /** Known values of {@link JsonWebKeyType} that the service accepts. */ export const enum KnownJsonWebKeyType { /** Elliptic Curve. */ EC = "EC", - /** Elliptic Curve with a private key which is not exportable from the HSM. */ + /** Elliptic Curve with a private key which is stored in the HSM. */ ECHSM = "EC-HSM", /** RSA (https://tools.ietf.org/html/rfc3447) */ RSA = "RSA", - /** RSA with a private key which is not exportable from the HSM. */ + /** RSA with a private key which is stored in the HSM. */ RSAHSM = "RSA-HSM", /** Octet sequence (used to represent symmetric keys) */ Oct = "oct", - /** Octet sequence (used to represent symmetric keys) which is not exportable from the HSM. */ + /** Octet sequence (used to represent symmetric keys) which is stored the HSM. */ OctHSM = "oct-HSM" } @@ -354,13 +463,13 @@ export const enum KnownJsonWebKeyType { * Defines values for JsonWebKeyType. \ * {@link KnownJsonWebKeyType} can be used interchangeably with JsonWebKeyType, * this enum contains the known values that the service supports. - * ### Know values supported by the service + * ### Known values supported by the service * **EC**: Elliptic Curve. \ - * **EC-HSM**: Elliptic Curve with a private key which is not exportable from the HSM. \ - * **RSA**: RSA (https://tools.ietf.org/html/rfc3447) \ - * **RSA-HSM**: RSA with a private key which is not exportable from the HSM. \ + * **EC-HSM**: Elliptic Curve with a private key which is stored in the HSM. \ + * **RSA**: RSA (https:\/\/tools.ietf.org\/html\/rfc3447) \ + * **RSA-HSM**: RSA with a private key which is stored in the HSM. \ * **oct**: Octet sequence (used to represent symmetric keys) \ - * **oct-HSM**: Octet sequence (used to represent symmetric keys) which is not exportable from the HSM. + * **oct-HSM**: Octet sequence (used to represent symmetric keys) which is stored the HSM. */ export type JsonWebKeyType = string; @@ -368,32 +477,35 @@ export type JsonWebKeyType = string; export const enum KnownJsonWebKeyOperation { /** Key operation - encrypt */ Encrypt = "encrypt", - /** Key operation - decrypt */ + /** Key operation - encrypt */ Decrypt = "decrypt", - /** Key operation - sign */ + /** Key operation - encrypt */ Sign = "sign", - /** Key operation - verify */ + /** Key operation - encrypt */ Verify = "verify", - /** Key operation - wrapKey */ + /** Key operation - encrypt */ WrapKey = "wrapKey", - /** Key operation - unwrapKey */ + /** Key operation - encrypt */ UnwrapKey = "unwrapKey", - /** Key operation - import */ - Import = "import" + /** Key operation - encrypt */ + Import = "import", + /** Key operation - encrypt */ + Export = "export" } /** * Defines values for JsonWebKeyOperation. \ * {@link KnownJsonWebKeyOperation} can be used interchangeably with JsonWebKeyOperation, * this enum contains the known values that the service supports. - * ### Know values supported by the service + * ### Known values supported by the service * **encrypt** \ * **decrypt** \ * **sign** \ * **verify** \ * **wrapKey** \ * **unwrapKey** \ - * **import** + * **import** \ + * **export** */ export type JsonWebKeyOperation = string; @@ -419,7 +531,7 @@ export const enum KnownDeletionRecoveryLevel { * Defines values for DeletionRecoveryLevel. \ * {@link KnownDeletionRecoveryLevel} can be used interchangeably with DeletionRecoveryLevel, * this enum contains the known values that the service supports. - * ### Know values supported by the service + * ### Known values supported by the service * **Purgeable**: Denotes a vault state in which deletion is an irreversible operation, without the possibility for recovery. This level corresponds to no protection being available against a Delete operation; the data is irretrievably lost upon accepting a Delete operation at the entity level or higher (vault, resource group, subscription etc.) \ * **Recoverable+Purgeable**: Denotes a vault state in which deletion is recoverable, and which also permits immediate and permanent deletion (i.e. purge). This level guarantees the recoverability of the deleted entity during the retention interval (90 days), unless a Purge operation is requested, or the subscription is cancelled. System wil permanently delete it after 90 days, if not recovered \ * **Recoverable**: Denotes a vault state in which deletion is recoverable without the possibility for immediate and permanent deletion (i.e. purge). This level guarantees the recoverability of the deleted entity during the retention interval(90 days) and while the subscription is still available. System wil permanently delete it after 90 days, if not recovered \ @@ -446,7 +558,7 @@ export const enum KnownJsonWebKeyCurveName { * Defines values for JsonWebKeyCurveName. \ * {@link KnownJsonWebKeyCurveName} can be used interchangeably with JsonWebKeyCurveName, * this enum contains the known values that the service supports. - * ### Know values supported by the service + * ### Known values supported by the service * **P-256**: The NIST P-256 elliptic curve, AKA SECG curve SECP256R1. \ * **P-384**: The NIST P-384 elliptic curve, AKA SECG curve SECP384R1. \ * **P-521**: The NIST P-521 elliptic curve, AKA SECG curve SECP521R1. \ @@ -492,7 +604,7 @@ export const enum KnownJsonWebKeyEncryptionAlgorithm { * Defines values for JsonWebKeyEncryptionAlgorithm. \ * {@link KnownJsonWebKeyEncryptionAlgorithm} can be used interchangeably with JsonWebKeyEncryptionAlgorithm, * this enum contains the known values that the service supports. - * ### Know values supported by the service + * ### Known values supported by the service * **RSA-OAEP** \ * **RSA-OAEP-256** \ * **RSA1_5** \ @@ -541,24 +653,43 @@ export const enum KnownJsonWebKeySignatureAlgorithm { * Defines values for JsonWebKeySignatureAlgorithm. \ * {@link KnownJsonWebKeySignatureAlgorithm} can be used interchangeably with JsonWebKeySignatureAlgorithm, * this enum contains the known values that the service supports. - * ### Know values supported by the service - * **PS256**: RSASSA-PSS using SHA-256 and MGF1 with SHA-256, as described in https://tools.ietf.org/html/rfc7518 \ - * **PS384**: RSASSA-PSS using SHA-384 and MGF1 with SHA-384, as described in https://tools.ietf.org/html/rfc7518 \ - * **PS512**: RSASSA-PSS using SHA-512 and MGF1 with SHA-512, as described in https://tools.ietf.org/html/rfc7518 \ - * **RS256**: RSASSA-PKCS1-v1_5 using SHA-256, as described in https://tools.ietf.org/html/rfc7518 \ - * **RS384**: RSASSA-PKCS1-v1_5 using SHA-384, as described in https://tools.ietf.org/html/rfc7518 \ - * **RS512**: RSASSA-PKCS1-v1_5 using SHA-512, as described in https://tools.ietf.org/html/rfc7518 \ + * ### Known values supported by the service + * **PS256**: RSASSA-PSS using SHA-256 and MGF1 with SHA-256, as described in https:\/\/tools.ietf.org\/html\/rfc7518 \ + * **PS384**: RSASSA-PSS using SHA-384 and MGF1 with SHA-384, as described in https:\/\/tools.ietf.org\/html\/rfc7518 \ + * **PS512**: RSASSA-PSS using SHA-512 and MGF1 with SHA-512, as described in https:\/\/tools.ietf.org\/html\/rfc7518 \ + * **RS256**: RSASSA-PKCS1-v1_5 using SHA-256, as described in https:\/\/tools.ietf.org\/html\/rfc7518 \ + * **RS384**: RSASSA-PKCS1-v1_5 using SHA-384, as described in https:\/\/tools.ietf.org\/html\/rfc7518 \ + * **RS512**: RSASSA-PKCS1-v1_5 using SHA-512, as described in https:\/\/tools.ietf.org\/html\/rfc7518 \ * **RSNULL**: Reserved \ - * **ES256**: ECDSA using P-256 and SHA-256, as described in https://tools.ietf.org/html/rfc7518. \ - * **ES384**: ECDSA using P-384 and SHA-384, as described in https://tools.ietf.org/html/rfc7518 \ - * **ES512**: ECDSA using P-521 and SHA-512, as described in https://tools.ietf.org/html/rfc7518 \ - * **ES256K**: ECDSA using P-256K and SHA-256, as described in https://tools.ietf.org/html/rfc7518 + * **ES256**: ECDSA using P-256 and SHA-256, as described in https:\/\/tools.ietf.org\/html\/rfc7518. \ + * **ES384**: ECDSA using P-384 and SHA-384, as described in https:\/\/tools.ietf.org\/html\/rfc7518 \ + * **ES512**: ECDSA using P-521 and SHA-512, as described in https:\/\/tools.ietf.org\/html\/rfc7518 \ + * **ES256K**: ECDSA using P-256K and SHA-256, as described in https:\/\/tools.ietf.org\/html\/rfc7518 */ export type JsonWebKeySignatureAlgorithm = string; +/** Known values of {@link KeyEncryptionAlgorithm} that the service accepts. */ +export const enum KnownKeyEncryptionAlgorithm { + CKMRSAAESKEYWrap = "CKM_RSA_AES_KEY_WRAP", + RSAAESKEYWrap256 = "RSA_AES_KEY_WRAP_256", + RSAAESKEYWrap384 = "RSA_AES_KEY_WRAP_384" +} + +/** + * Defines values for KeyEncryptionAlgorithm. \ + * {@link KnownKeyEncryptionAlgorithm} can be used interchangeably with KeyEncryptionAlgorithm, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **CKM_RSA_AES_KEY_WRAP** \ + * **RSA_AES_KEY_WRAP_256** \ + * **RSA_AES_KEY_WRAP_384** + */ +export type KeyEncryptionAlgorithm = string; +/** Defines values for ActionType. */ +export type ActionType = "rotate" | "notify"; + /** Optional parameters. */ -export interface KeyVaultClientCreateKeyOptionalParams - extends coreHttp.OperationOptions { +export interface KeyVaultClientCreateKeyOptionalParams extends coreHttp.OperationOptions { /** The key size in bits. For example: 2048, 3072, or 4096 for RSA. */ keySize?: number; /** The public exponent for a RSA key. */ @@ -571,6 +702,8 @@ export interface KeyVaultClientCreateKeyOptionalParams tags?: { [propertyName: string]: string }; /** Elliptic curve name. For valid values, see JsonWebKeyCurveName. */ curve?: JsonWebKeyCurveName; + /** The policy rules under which the key can be exported. */ + releasePolicy?: KeyReleasePolicy; } /** Contains response data for the createKey operation. */ @@ -586,14 +719,30 @@ export type KeyVaultClientCreateKeyResponse = KeyBundle & { }; /** Optional parameters. */ -export interface KeyVaultClientImportKeyOptionalParams - extends coreHttp.OperationOptions { +export interface KeyVaultClientRotateKeyOptionalParams extends coreHttp.OperationOptions {} + +/** Contains response data for the rotateKey operation. */ +export type KeyVaultClientRotateKeyResponse = KeyBundle & { + /** The underlying HTTP response. */ + _response: coreHttp.HttpResponse & { + /** The response body as text (string format) */ + bodyAsText: string; + + /** The response body as parsed JSON or XML */ + parsedBody: KeyBundle; + }; +}; + +/** Optional parameters. */ +export interface KeyVaultClientImportKeyOptionalParams extends coreHttp.OperationOptions { /** Whether to import as a hardware key (HSM) or software key. */ hsm?: boolean; /** The key management attributes. */ keyAttributes?: KeyAttributes; /** Application specific metadata in the form of key-value pairs. */ tags?: { [propertyName: string]: string }; + /** The policy rules under which the key can be exported. */ + releasePolicy?: KeyReleasePolicy; } /** Contains response data for the importKey operation. */ @@ -608,6 +757,9 @@ export type KeyVaultClientImportKeyResponse = KeyBundle & { }; }; +/** Optional parameters. */ +export interface KeyVaultClientDeleteKeyOptionalParams extends coreHttp.OperationOptions {} + /** Contains response data for the deleteKey operation. */ export type KeyVaultClientDeleteKeyResponse = DeletedKeyBundle & { /** The underlying HTTP response. */ @@ -621,14 +773,15 @@ export type KeyVaultClientDeleteKeyResponse = DeletedKeyBundle & { }; /** Optional parameters. */ -export interface KeyVaultClientUpdateKeyOptionalParams - extends coreHttp.OperationOptions { +export interface KeyVaultClientUpdateKeyOptionalParams extends coreHttp.OperationOptions { /** Json web key operations. For more information on possible key operations, see JsonWebKeyOperation. */ keyOps?: JsonWebKeyOperation[]; /** The attributes of a key managed by the key vault service. */ keyAttributes?: KeyAttributes; /** Application specific metadata in the form of key-value pairs. */ tags?: { [propertyName: string]: string }; + /** The policy rules under which the key can be exported. */ + releasePolicy?: KeyReleasePolicy; } /** Contains response data for the updateKey operation. */ @@ -643,6 +796,9 @@ export type KeyVaultClientUpdateKeyResponse = KeyBundle & { }; }; +/** Optional parameters. */ +export interface KeyVaultClientGetKeyOptionalParams extends coreHttp.OperationOptions {} + /** Contains response data for the getKey operation. */ export type KeyVaultClientGetKeyResponse = KeyBundle & { /** The underlying HTTP response. */ @@ -656,8 +812,7 @@ export type KeyVaultClientGetKeyResponse = KeyBundle & { }; /** Optional parameters. */ -export interface KeyVaultClientGetKeyVersionsOptionalParams - extends coreHttp.OperationOptions { +export interface KeyVaultClientGetKeyVersionsOptionalParams extends coreHttp.OperationOptions { /** Maximum number of results to return in a page. If not specified the service will return up to 25 results. */ maxresults?: number; } @@ -675,8 +830,7 @@ export type KeyVaultClientGetKeyVersionsResponse = KeyListResult & { }; /** Optional parameters. */ -export interface KeyVaultClientGetKeysOptionalParams - extends coreHttp.OperationOptions { +export interface KeyVaultClientGetKeysOptionalParams extends coreHttp.OperationOptions { /** Maximum number of results to return in a page. If not specified the service will return up to 25 results. */ maxresults?: number; } @@ -693,6 +847,9 @@ export type KeyVaultClientGetKeysResponse = KeyListResult & { }; }; +/** Optional parameters. */ +export interface KeyVaultClientBackupKeyOptionalParams extends coreHttp.OperationOptions {} + /** Contains response data for the backupKey operation. */ export type KeyVaultClientBackupKeyResponse = BackupKeyResult & { /** The underlying HTTP response. */ @@ -705,6 +862,9 @@ export type KeyVaultClientBackupKeyResponse = BackupKeyResult & { }; }; +/** Optional parameters. */ +export interface KeyVaultClientRestoreKeyOptionalParams extends coreHttp.OperationOptions {} + /** Contains response data for the restoreKey operation. */ export type KeyVaultClientRestoreKeyResponse = KeyBundle & { /** The underlying HTTP response. */ @@ -718,8 +878,7 @@ export type KeyVaultClientRestoreKeyResponse = KeyBundle & { }; /** Optional parameters. */ -export interface KeyVaultClientEncryptOptionalParams - extends coreHttp.OperationOptions { +export interface KeyVaultClientEncryptOptionalParams extends coreHttp.OperationOptions { /** Initialization vector for symmetric algorithms. */ iv?: Uint8Array; /** Additional data to authenticate but not encrypt/decrypt when using authenticated crypto algorithms. */ @@ -741,8 +900,7 @@ export type KeyVaultClientEncryptResponse = KeyOperationResult & { }; /** Optional parameters. */ -export interface KeyVaultClientDecryptOptionalParams - extends coreHttp.OperationOptions { +export interface KeyVaultClientDecryptOptionalParams extends coreHttp.OperationOptions { /** Initialization vector for symmetric algorithms. */ iv?: Uint8Array; /** Additional data to authenticate but not encrypt/decrypt when using authenticated crypto algorithms. */ @@ -763,6 +921,9 @@ export type KeyVaultClientDecryptResponse = KeyOperationResult & { }; }; +/** Optional parameters. */ +export interface KeyVaultClientSignOptionalParams extends coreHttp.OperationOptions {} + /** Contains response data for the sign operation. */ export type KeyVaultClientSignResponse = KeyOperationResult & { /** The underlying HTTP response. */ @@ -775,6 +936,9 @@ export type KeyVaultClientSignResponse = KeyOperationResult & { }; }; +/** Optional parameters. */ +export interface KeyVaultClientVerifyOptionalParams extends coreHttp.OperationOptions {} + /** Contains response data for the verify operation. */ export type KeyVaultClientVerifyResponse = KeyVerifyResult & { /** The underlying HTTP response. */ @@ -788,8 +952,7 @@ export type KeyVaultClientVerifyResponse = KeyVerifyResult & { }; /** Optional parameters. */ -export interface KeyVaultClientWrapKeyOptionalParams - extends coreHttp.OperationOptions { +export interface KeyVaultClientWrapKeyOptionalParams extends coreHttp.OperationOptions { /** Initialization vector for symmetric algorithms. */ iv?: Uint8Array; /** Additional data to authenticate but not encrypt/decrypt when using authenticated crypto algorithms. */ @@ -811,8 +974,7 @@ export type KeyVaultClientWrapKeyResponse = KeyOperationResult & { }; /** Optional parameters. */ -export interface KeyVaultClientUnwrapKeyOptionalParams - extends coreHttp.OperationOptions { +export interface KeyVaultClientUnwrapKeyOptionalParams extends coreHttp.OperationOptions { /** Initialization vector for symmetric algorithms. */ iv?: Uint8Array; /** Additional data to authenticate but not encrypt/decrypt when using authenticated crypto algorithms. */ @@ -834,8 +996,49 @@ export type KeyVaultClientUnwrapKeyResponse = KeyOperationResult & { }; /** Optional parameters. */ -export interface KeyVaultClientGetDeletedKeysOptionalParams - extends coreHttp.OperationOptions { +export interface KeyVaultClientExportOptionalParams extends coreHttp.OperationOptions { + /** The export key encryption Json web key. This key MUST be a RSA key that supports encryption. */ + wrappingKey?: JsonWebKey; + /** The export key encryption key identifier. This key MUST be a RSA key that supports encryption. */ + wrappingKid?: string; + /** The encryption algorithm to use to protected the exported key material */ + enc?: KeyEncryptionAlgorithm; +} + +/** Contains response data for the export operation. */ +export type KeyVaultClientExportResponse = KeyBundle & { + /** The underlying HTTP response. */ + _response: coreHttp.HttpResponse & { + /** The response body as text (string format) */ + bodyAsText: string; + + /** The response body as parsed JSON or XML */ + parsedBody: KeyBundle; + }; +}; + +/** Optional parameters. */ +export interface KeyVaultClientReleaseOptionalParams extends coreHttp.OperationOptions { + /** A client provided nonce for freshness. */ + nonce?: string; + /** The encryption algorithm to use to protected the exported key material */ + enc?: KeyEncryptionAlgorithm; +} + +/** Contains response data for the release operation. */ +export type KeyVaultClientReleaseResponse = KeyReleaseResult & { + /** The underlying HTTP response. */ + _response: coreHttp.HttpResponse & { + /** The response body as text (string format) */ + bodyAsText: string; + + /** The response body as parsed JSON or XML */ + parsedBody: KeyReleaseResult; + }; +}; + +/** Optional parameters. */ +export interface KeyVaultClientGetDeletedKeysOptionalParams extends coreHttp.OperationOptions { /** Maximum number of results to return in a page. If not specified the service will return up to 25 results. */ maxresults?: number; } @@ -852,6 +1055,9 @@ export type KeyVaultClientGetDeletedKeysResponse = DeletedKeyListResult & { }; }; +/** Optional parameters. */ +export interface KeyVaultClientGetDeletedKeyOptionalParams extends coreHttp.OperationOptions {} + /** Contains response data for the getDeletedKey operation. */ export type KeyVaultClientGetDeletedKeyResponse = DeletedKeyBundle & { /** The underlying HTTP response. */ @@ -864,6 +1070,12 @@ export type KeyVaultClientGetDeletedKeyResponse = DeletedKeyBundle & { }; }; +/** Optional parameters. */ +export interface KeyVaultClientPurgeDeletedKeyOptionalParams extends coreHttp.OperationOptions {} + +/** Optional parameters. */ +export interface KeyVaultClientRecoverDeletedKeyOptionalParams extends coreHttp.OperationOptions {} + /** Contains response data for the recoverDeletedKey operation. */ export type KeyVaultClientRecoverDeletedKeyResponse = KeyBundle & { /** The underlying HTTP response. */ @@ -877,8 +1089,54 @@ export type KeyVaultClientRecoverDeletedKeyResponse = KeyBundle & { }; /** Optional parameters. */ -export interface KeyVaultClientGetKeyVersionsNextOptionalParams - extends coreHttp.OperationOptions { +export interface KeyVaultClientGetKeyRotationPolicyOptionalParams + extends coreHttp.OperationOptions {} + +/** Contains response data for the getKeyRotationPolicy operation. */ +export type KeyVaultClientGetKeyRotationPolicyResponse = KeyRotationPolicy & { + /** The underlying HTTP response. */ + _response: coreHttp.HttpResponse & { + /** The response body as text (string format) */ + bodyAsText: string; + + /** The response body as parsed JSON or XML */ + parsedBody: KeyRotationPolicy; + }; +}; + +/** Optional parameters. */ +export interface KeyVaultClientUpdateKeyRotationPolicyOptionalParams + extends coreHttp.OperationOptions {} + +/** Contains response data for the updateKeyRotationPolicy operation. */ +export type KeyVaultClientUpdateKeyRotationPolicyResponse = KeyRotationPolicy & { + /** The underlying HTTP response. */ + _response: coreHttp.HttpResponse & { + /** The response body as text (string format) */ + bodyAsText: string; + + /** The response body as parsed JSON or XML */ + parsedBody: KeyRotationPolicy; + }; +}; + +/** Optional parameters. */ +export interface KeyVaultClientGetRandomBytesOptionalParams extends coreHttp.OperationOptions {} + +/** Contains response data for the getRandomBytes operation. */ +export type KeyVaultClientGetRandomBytesResponse = RandomBytes & { + /** The underlying HTTP response. */ + _response: coreHttp.HttpResponse & { + /** The response body as text (string format) */ + bodyAsText: string; + + /** The response body as parsed JSON or XML */ + parsedBody: RandomBytes; + }; +}; + +/** Optional parameters. */ +export interface KeyVaultClientGetKeyVersionsNextOptionalParams extends coreHttp.OperationOptions { /** Maximum number of results to return in a page. If not specified the service will return up to 25 results. */ maxresults?: number; } @@ -896,8 +1154,7 @@ export type KeyVaultClientGetKeyVersionsNextResponse = KeyListResult & { }; /** Optional parameters. */ -export interface KeyVaultClientGetKeysNextOptionalParams - extends coreHttp.OperationOptions { +export interface KeyVaultClientGetKeysNextOptionalParams extends coreHttp.OperationOptions { /** Maximum number of results to return in a page. If not specified the service will return up to 25 results. */ maxresults?: number; } @@ -915,8 +1172,7 @@ export type KeyVaultClientGetKeysNextResponse = KeyListResult & { }; /** Optional parameters. */ -export interface KeyVaultClientGetDeletedKeysNextOptionalParams - extends coreHttp.OperationOptions { +export interface KeyVaultClientGetDeletedKeysNextOptionalParams extends coreHttp.OperationOptions { /** Maximum number of results to return in a page. If not specified the service will return up to 25 results. */ maxresults?: number; } @@ -934,8 +1190,7 @@ export type KeyVaultClientGetDeletedKeysNextResponse = DeletedKeyListResult & { }; /** Optional parameters. */ -export interface KeyVaultClientOptionalParams - extends coreHttp.ServiceClientOptions { +export interface KeyVaultClientOptionalParams extends coreHttp.ServiceClientOptions { /** Overrides client endpoint. */ endpoint?: string; } diff --git a/sdk/keyvault/keyvault-keys/src/generated/models/mappers.ts b/sdk/keyvault/keyvault-keys/src/generated/models/mappers.ts index 597309054153..7c2fd278f194 100644 --- a/sdk/keyvault/keyvault-keys/src/generated/models/mappers.ts +++ b/sdk/keyvault/keyvault-keys/src/generated/models/mappers.ts @@ -62,6 +62,13 @@ export const KeyCreateParameters: coreHttp.CompositeMapper = { type: { name: "String" } + }, + releasePolicy: { + serializedName: "release_policy", + type: { + name: "Composite", + className: "KeyReleasePolicy" + } } } } @@ -108,6 +115,28 @@ export const Attributes: coreHttp.CompositeMapper = { } }; +export const KeyReleasePolicy: coreHttp.CompositeMapper = { + type: { + name: "Composite", + className: "KeyReleasePolicy", + modelProperties: { + contentType: { + defaultValue: "application/json; charset=utf-8", + serializedName: "contentType", + type: { + name: "String" + } + }, + data: { + serializedName: "data", + type: { + name: "Base64Url" + } + } + } + } +}; + export const KeyBundle: coreHttp.CompositeMapper = { type: { name: "Composite", @@ -140,6 +169,13 @@ export const KeyBundle: coreHttp.CompositeMapper = { type: { name: "Boolean" } + }, + releasePolicy: { + serializedName: "release_policy", + type: { + name: "Composite", + className: "KeyReleasePolicy" + } } } } @@ -332,6 +368,13 @@ export const KeyImportParameters: coreHttp.CompositeMapper = { name: "Dictionary", value: { type: { name: "String" } } } + }, + releasePolicy: { + serializedName: "release_policy", + type: { + name: "Composite", + className: "KeyReleasePolicy" + } } } } @@ -366,6 +409,13 @@ export const KeyUpdateParameters: coreHttp.CompositeMapper = { name: "Dictionary", value: { type: { name: "String" } } } + }, + releasePolicy: { + serializedName: "release_policy", + type: { + name: "Composite", + className: "KeyReleasePolicy" + } } } } @@ -622,6 +672,81 @@ export const KeyVerifyResult: coreHttp.CompositeMapper = { } }; +export const KeyExportParameters: coreHttp.CompositeMapper = { + type: { + name: "Composite", + className: "KeyExportParameters", + modelProperties: { + wrappingKey: { + serializedName: "wrappingKey", + type: { + name: "Composite", + className: "JsonWebKey" + } + }, + wrappingKid: { + serializedName: "wrappingKid", + type: { + name: "String" + } + }, + enc: { + serializedName: "enc", + type: { + name: "String" + } + } + } + } +}; + +export const KeyReleaseParameters: coreHttp.CompositeMapper = { + type: { + name: "Composite", + className: "KeyReleaseParameters", + modelProperties: { + target: { + constraints: { + MinLength: 1 + }, + serializedName: "target", + required: true, + type: { + name: "String" + } + }, + nonce: { + serializedName: "nonce", + type: { + name: "String" + } + }, + enc: { + serializedName: "enc", + type: { + name: "String" + } + } + } + } +}; + +export const KeyReleaseResult: coreHttp.CompositeMapper = { + type: { + name: "Composite", + className: "KeyReleaseResult", + modelProperties: { + value: { + serializedName: "value", + readOnly: true, + type: { + name: "String" + } + } + } + } +}; + export const DeletedKeyListResult: coreHttp.CompositeMapper = { type: { name: "Composite", @@ -651,6 +776,165 @@ export const DeletedKeyListResult: coreHttp.CompositeMapper = { } }; +export const KeyRotationPolicy: coreHttp.CompositeMapper = { + type: { + name: "Composite", + className: "KeyRotationPolicy", + modelProperties: { + id: { + serializedName: "id", + readOnly: true, + type: { + name: "String" + } + }, + lifetimeActions: { + serializedName: "lifetimeActions", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "LifetimeActions" + } + } + } + }, + attributes: { + serializedName: "attributes", + type: { + name: "Composite", + className: "KeyRotationPolicyAttributes" + } + } + } + } +}; + +export const LifetimeActions: coreHttp.CompositeMapper = { + type: { + name: "Composite", + className: "LifetimeActions", + modelProperties: { + trigger: { + serializedName: "trigger", + type: { + name: "Composite", + className: "LifetimeActionsTrigger" + } + }, + action: { + serializedName: "action", + type: { + name: "Composite", + className: "LifetimeActionsType" + } + } + } + } +}; + +export const LifetimeActionsTrigger: coreHttp.CompositeMapper = { + type: { + name: "Composite", + className: "LifetimeActionsTrigger", + modelProperties: { + timeAfterCreate: { + serializedName: "timeAfterCreate", + type: { + name: "String" + } + }, + timeBeforeExpiry: { + serializedName: "timeBeforeExpiry", + type: { + name: "String" + } + } + } + } +}; + +export const LifetimeActionsType: coreHttp.CompositeMapper = { + type: { + name: "Composite", + className: "LifetimeActionsType", + modelProperties: { + type: { + serializedName: "type", + type: { + name: "Enum", + allowedValues: ["rotate", "notify"] + } + } + } + } +}; + +export const KeyRotationPolicyAttributes: coreHttp.CompositeMapper = { + type: { + name: "Composite", + className: "KeyRotationPolicyAttributes", + modelProperties: { + expiryTime: { + serializedName: "expiryTime", + type: { + name: "String" + } + }, + created: { + serializedName: "created", + readOnly: true, + type: { + name: "UnixTime" + } + }, + updated: { + serializedName: "updated", + readOnly: true, + type: { + name: "UnixTime" + } + } + } + } +}; + +export const GetRandomBytesRequest: coreHttp.CompositeMapper = { + type: { + name: "Composite", + className: "GetRandomBytesRequest", + modelProperties: { + count: { + constraints: { + InclusiveMaximum: 128, + InclusiveMinimum: 1 + }, + serializedName: "count", + required: true, + type: { + name: "Number" + } + } + } + } +}; + +export const RandomBytes: coreHttp.CompositeMapper = { + type: { + name: "Composite", + className: "RandomBytes", + modelProperties: { + value: { + serializedName: "value", + type: { + name: "Base64Url" + } + } + } + } +}; + export const KeyProperties: coreHttp.CompositeMapper = { type: { name: "Composite", @@ -709,6 +993,12 @@ export const KeyAttributes: coreHttp.CompositeMapper = { type: { name: "String" } + }, + exportable: { + serializedName: "exportable", + type: { + name: "Boolean" + } } } } diff --git a/sdk/keyvault/keyvault-keys/src/generated/models/parameters.ts b/sdk/keyvault/keyvault-keys/src/generated/models/parameters.ts index 037b1aebf02c..0d8fce9f470f 100644 --- a/sdk/keyvault/keyvault-keys/src/generated/models/parameters.ts +++ b/sdk/keyvault/keyvault-keys/src/generated/models/parameters.ts @@ -18,7 +18,11 @@ import { KeyRestoreParameters as KeyRestoreParametersMapper, KeyOperationsParameters as KeyOperationsParametersMapper, KeySignParameters as KeySignParametersMapper, - KeyVerifyParameters as KeyVerifyParametersMapper + KeyVerifyParameters as KeyVerifyParametersMapper, + KeyExportParameters as KeyExportParametersMapper, + KeyReleaseParameters as KeyReleaseParametersMapper, + KeyRotationPolicy as KeyRotationPolicyMapper, + GetRandomBytesRequest as GetRandomBytesRequestMapper } from "../models/mappers"; export const contentType: OperationParameter = { @@ -80,6 +84,11 @@ export const curve: OperationParameter = { mapper: KeyCreateParametersMapper }; +export const releasePolicy: OperationParameter = { + parameterPath: ["options", "releasePolicy"], + mapper: KeyCreateParametersMapper +}; + export const vaultBaseUrl: OperationURLParameter = { parameterPath: "vaultBaseUrl", mapper: { @@ -137,6 +146,11 @@ export const tags1: OperationParameter = { mapper: KeyImportParametersMapper }; +export const releasePolicy1: OperationParameter = { + parameterPath: ["options", "releasePolicy"], + mapper: KeyImportParametersMapper +}; + export const keyName1: OperationURLParameter = { parameterPath: "keyName", mapper: { @@ -163,6 +177,11 @@ export const tags2: OperationParameter = { mapper: KeyUpdateParametersMapper }; +export const releasePolicy2: OperationParameter = { + parameterPath: ["options", "releasePolicy"], + mapper: KeyUpdateParametersMapper +}; + export const keyVersion: OperationURLParameter = { parameterPath: "keyVersion", mapper: { @@ -243,6 +262,46 @@ export const signature: OperationParameter = { mapper: KeyVerifyParametersMapper }; +export const wrappingKey: OperationParameter = { + parameterPath: ["options", "wrappingKey"], + mapper: KeyExportParametersMapper +}; + +export const wrappingKid: OperationParameter = { + parameterPath: ["options", "wrappingKid"], + mapper: KeyExportParametersMapper +}; + +export const enc: OperationParameter = { + parameterPath: ["options", "enc"], + mapper: KeyExportParametersMapper +}; + +export const target: OperationParameter = { + parameterPath: "target", + mapper: KeyReleaseParametersMapper +}; + +export const nonce: OperationParameter = { + parameterPath: ["options", "nonce"], + mapper: KeyReleaseParametersMapper +}; + +export const enc1: OperationParameter = { + parameterPath: ["options", "enc"], + mapper: KeyReleaseParametersMapper +}; + +export const keyRotationPolicy: OperationParameter = { + parameterPath: "keyRotationPolicy", + mapper: KeyRotationPolicyMapper +}; + +export const count: OperationParameter = { + parameterPath: "count", + mapper: GetRandomBytesRequestMapper +}; + export const nextLink: OperationURLParameter = { parameterPath: "nextLink", mapper: { diff --git a/sdk/keyvault/keyvault-keys/src/index.ts b/sdk/keyvault/keyvault-keys/src/index.ts index c246503f620c..1253b8f828a6 100644 --- a/sdk/keyvault/keyvault-keys/src/index.ts +++ b/sdk/keyvault/keyvault-keys/src/index.ts @@ -59,7 +59,8 @@ import { KeyClientOptions, CryptographyClientOptions, LATEST_API_VERSION, - CreateOctKeyOptions + CreateOctKeyOptions, + GetRandomBytesOptions } from "./keysModels"; import { CryptographyClient } from "./cryptographyClient"; @@ -136,6 +137,7 @@ export { EncryptResult, GetDeletedKeyOptions, GetKeyOptions, + GetRandomBytesOptions, ImportKeyOptions, JsonWebKey, KeyCurveName, @@ -650,6 +652,24 @@ export class KeyClient { }); } + /** + * Gets the requested number of bytes containing random values from a managed HSM. + * + * Example usage: + * ```ts + * let client = new KeyClient(vaultUrl, credentials); + * let bytes = await client.getRandomBytes(10); + * ``` + * @param count - The number of bytes to generate between 1 and 128 inclusive. + * @param options - The optional parameters. + */ + public getRandomBytes(count: number, options: GetRandomBytesOptions = {}): Promise { + return withTrace("getRandomBytes", options, async (updatedOptions) => { + const response = await this.client.getRandomBytes(this.vaultUrl, count, updatedOptions); + return response.value!; + }); + } + /** * @internal * @hidden diff --git a/sdk/keyvault/keyvault-keys/src/keysModels.ts b/sdk/keyvault/keyvault-keys/src/keysModels.ts index b59aca85498a..bb74f9fe2f60 100644 --- a/sdk/keyvault/keyvault-keys/src/keysModels.ts +++ b/sdk/keyvault/keyvault-keys/src/keysModels.ts @@ -6,17 +6,16 @@ import { DeletionRecoveryLevel, JsonWebKeyType as KeyType, KnownJsonWebKeyType as KnownKeyTypes, - JsonWebKeyOperation as KeyOperation, - KnownJsonWebKeyOperation as KnownKeyOperations + JsonWebKeyOperation as KeyOperation } from "./generated/models"; import { KeyCurveName } from "./cryptographyClientModels"; -export { KeyType, KnownKeyTypes, KeyOperation, KnownKeyOperations }; +export { KeyType, KnownKeyTypes, KeyOperation }; /** * The latest supported Key Vault service API version */ -export const LATEST_API_VERSION = "7.2"; +export const LATEST_API_VERSION = "7.3-preview"; /** * The optional parameters accepted by the KeyVault's KeyClient @@ -475,3 +474,26 @@ export interface RestoreKeyBackupOptions extends coreHttp.OperationOptions {} * An interface representing the options of the cryptography API methods, go to the {@link CryptographyClient} for more information. */ export interface CryptographyOptions extends coreHttp.OperationOptions {} + +/** + * Options for {@link KeyClient.getRandomBytes} + */ +export interface GetRandomBytesOptions extends coreHttp.OperationOptions {} + +/** Known values of {@link KeyOperation} that the service accepts. */ +export enum KnownKeyOperations { + /** Key operation - encrypt */ + Encrypt = "encrypt", + /** Key operation - encrypt */ + Decrypt = "decrypt", + /** Key operation - encrypt */ + Sign = "sign", + /** Key operation - encrypt */ + Verify = "verify", + /** Key operation - encrypt */ + WrapKey = "wrapKey", + /** Key operation - encrypt */ + UnwrapKey = "unwrapKey", + /** Key operation - encrypt */ + Import = "import" +} diff --git a/sdk/keyvault/keyvault-keys/swagger/README.md b/sdk/keyvault/keyvault-keys/swagger/README.md index 197577e0ac0b..d2ae7e69c5fe 100644 --- a/sdk/keyvault/keyvault-keys/swagger/README.md +++ b/sdk/keyvault/keyvault-keys/swagger/README.md @@ -3,21 +3,17 @@ > see https://aka.ms/autorest ```yaml -typescript: - package-name: "@azure/keyvault-keys" -use-extension: - "@autorest/typescript": "6.0.0-dev.20210111.1" +package-name: "@azure/keyvault-keys" azure-arm: false generate-metadata: false add-credentials: false +use-core-v2: false license-header: MICROSOFT_MIT_NO_VERSION -input-file: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/1e2c9f3ec93078da8078389941531359e274f32a/specification/keyvault/data-plane/Microsoft.KeyVault/stable/7.2/keys.json +input-file: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/f4a4badda9e19dca5cab216f3dd8b45362aeb90b/specification/keyvault/data-plane/Microsoft.KeyVault/preview/7.3-preview/keys.json output-folder: ../ source-code-folder-path: ./src/generated disable-async-iterators: true api-version-parameter: choice -v3: true -hide-clients: true package-version: 4.3.0-beta.1 ``` diff --git a/sdk/keyvault/keyvault-keys/test/public/CRUD.hsm.spec.ts b/sdk/keyvault/keyvault-keys/test/public/keyClient.hsm.spec.ts similarity index 68% rename from sdk/keyvault/keyvault-keys/test/public/CRUD.hsm.spec.ts rename to sdk/keyvault/keyvault-keys/test/public/keyClient.hsm.spec.ts index b993b581ace8..561fcba34407 100644 --- a/sdk/keyvault/keyvault-keys/test/public/CRUD.hsm.spec.ts +++ b/sdk/keyvault/keyvault-keys/test/public/keyClient.hsm.spec.ts @@ -10,6 +10,7 @@ import { authenticate } from "../utils/testAuthentication"; import TestClient from "../utils/testClient"; import { CreateOctKeyOptions } from "../../src/keysModels"; import { getServiceVersion, onVersions } from "../utils/utils.common"; +import { supportsTracing } from "../../../keyvault-common/test/utils/supportsTracing"; onVersions({ minVer: "7.2" }).describe( "Keys client - create, read, update and delete operations for managed HSM", @@ -49,5 +50,26 @@ onVersions({ minVer: "7.2" }).describe( assert.equal(result.keyType, "oct-HSM"); await testClient.flushKey(keyName); }); + + onVersions({ minVer: "7.3-preview" }).describe("getRandomBytes", () => { + it("can return the required number of bytes", async () => { + const randomBytes = await hsmClient.getRandomBytes(10); + assert.exists(randomBytes); + assert.equal(randomBytes!.length, 10); + }); + + it("returns an error when bytes is out of range", async () => { + await assert.isRejected(hsmClient.getRandomBytes(-1)); + await assert.isRejected(hsmClient.getRandomBytes(0)); + await assert.isRejected(hsmClient.getRandomBytes(129)); + }); + + it("supports tracing", async () => { + await supportsTracing( + (tracingOptions) => hsmClient.getRandomBytes(128, { tracingOptions }), + ["Azure.KeyVault.Keys.KeyClient.getRandomBytes"] + ); + }); + }); } ); diff --git a/sdk/keyvault/keyvault-keys/test/public/CRUD.spec.ts b/sdk/keyvault/keyvault-keys/test/public/keyClient.spec.ts similarity index 100% rename from sdk/keyvault/keyvault-keys/test/public/CRUD.spec.ts rename to sdk/keyvault/keyvault-keys/test/public/keyClient.spec.ts diff --git a/sdk/keyvault/keyvault-keys/test/utils/utils.common.ts b/sdk/keyvault/keyvault-keys/test/utils/utils.common.ts index 14faadfac17b..8528c5be3989 100644 --- a/sdk/keyvault/keyvault-keys/test/utils/utils.common.ts +++ b/sdk/keyvault/keyvault-keys/test/utils/utils.common.ts @@ -49,7 +49,7 @@ export function getServiceVersion(): string { /** * The known API versions that we support. */ -export const serviceVersions = ["7.0", "7.1", "7.2"] as const; +export const serviceVersions = ["7.0", "7.1", "7.2", "7.3-preview"] as const; /** * A convenience wrapper allowing us to limit service versions without using the `versionsToTest` wrapper. From 4784937d794e3eef9b2101d5478942c441bae5b8 Mon Sep 17 00:00:00 2001 From: praveenkuttappan <55455725+praveenkuttappan@users.noreply.github.com> Date: Fri, 25 Jun 2021 18:55:22 -0400 Subject: [PATCH 07/49] Fix pipeline error for test-utils (#15899) --- eng/pipelines/templates/jobs/ci.yml | 4 ++++ eng/pipelines/templates/stages/archetype-sdk-client.yml | 1 + eng/pipelines/templates/steps/build.yml | 8 ++++++-- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/eng/pipelines/templates/jobs/ci.yml b/eng/pipelines/templates/jobs/ci.yml index f1a755558c9e..8dd7c0baef1f 100644 --- a/eng/pipelines/templates/jobs/ci.yml +++ b/eng/pipelines/templates/jobs/ci.yml @@ -19,6 +19,9 @@ parameters: - name: MatrixReplace type: object default: [] + - name: IncludeRelease + type: boolean + default: true jobs: - job: "Build" @@ -42,6 +45,7 @@ jobs: Artifacts: ${{ parameters.Artifacts }} ServiceDirectory: ${{ parameters.ServiceDirectory }} TestPipeline: ${{ parameters.TestPipeline }} + IncludeRelease: ${{ parameters.IncludeRelease }} - job: "Analyze" variables: diff --git a/eng/pipelines/templates/stages/archetype-sdk-client.yml b/eng/pipelines/templates/stages/archetype-sdk-client.yml index e278177465b6..97da87eccf11 100644 --- a/eng/pipelines/templates/stages/archetype-sdk-client.yml +++ b/eng/pipelines/templates/stages/archetype-sdk-client.yml @@ -58,6 +58,7 @@ stages: - ${{ each filter in parameters.MatrixFilters }}: - ${{ filter}} MatrixReplace: ${{ parameters.MatrixReplace }} + IncludeRelease: ${{ parameters.IncludeRelease }} # The Prerelease and Release stages are conditioned on whether we are building a pull request and the branch. - ${{if and(ne(variables['Build.Reason'], 'PullRequest'), eq(variables['System.TeamProject'], 'internal'), eq(parameters.IncludeRelease,true))}}: diff --git a/eng/pipelines/templates/steps/build.yml b/eng/pipelines/templates/steps/build.yml index 2ff746ebc439..d4230bcbef1e 100644 --- a/eng/pipelines/templates/steps/build.yml +++ b/eng/pipelines/templates/steps/build.yml @@ -2,6 +2,7 @@ parameters: Artifacts: [] TestPipeline: false ServiceDirectory: not-specified + IncludeRelease: true steps: - template: /eng/common/pipelines/templates/steps/set-test-pipeline-version.yml @@ -73,8 +74,11 @@ steps: New-Item -Type Directory -Name $artifactName -Path $(Build.ArtifactStagingDirectory) > $null Copy-Item sdk/${{parameters.ServiceDirectory}}/**/$artifactName-*.tgz $(Build.ArtifactStagingDirectory)/$artifactName Copy-Item sdk/${{parameters.ServiceDirectory}}/**/browser/$artifactName-*.zip $(Build.ArtifactStagingDirectory)/$artifactName - New-Item -Type Directory -Name documentation -Path $(Build.ArtifactStagingDirectory)/$artifactName > $null - Copy-Item $(Build.SourcesDirectory)/docGen/$artifactName.zip $(Build.ArtifactStagingDirectory)/$artifactName/documentation + if ($${{ parameters.IncludeRelease }} -eq $true) + { + New-Item -Type Directory -Name documentation -Path $(Build.ArtifactStagingDirectory)/$artifactName > $null + Copy-Item $(Build.SourcesDirectory)/docGen/$artifactName.zip $(Build.ArtifactStagingDirectory)/$artifactName/documentation + } } displayName: 'Copy Packages' From 82085fff046b5509d7d00ffb829ed86c0dd51808 Mon Sep 17 00:00:00 2001 From: Ramya Rao Date: Fri, 25 Jun 2021 15:57:49 -0700 Subject: [PATCH 08/49] Prepare to move to @types/node v12 (#16012) As part of #7022, we will be moving the version of `@types/node` from 8 to 12 This PR has the changes required to fix the build errors that occurred when trying out this change - The [Agent](https://nodejs.org/docs/latest-v12.x/api/http.html#http_class_http_agent) class in Node.js 12 has an extra property `maxTotalSockets`. The docs say there is a default value for this, but it it is still marked as a mandatory property in the types. We use our own interface for this class for the purposes of user providing their own custom agent. Am casting it in this PR to the expected type. If anyone has better ideas here, am all ears :) - `global.URL` is not a thing as per the types for Node.js 12. We needed this to support Node.js 8 - Fixing the types for `port` in the parsed url The actual move to v12 for `@types/node` will be done in a separate PR --- sdk/core/core-rest-pipeline/src/nodeHttpClient.ts | 2 +- .../internal/node/interactiveBrowserCredential.spec.ts | 7 ------- sdk/test-utils/perfstress/src/policy.ts | 4 ++-- 3 files changed, 3 insertions(+), 10 deletions(-) diff --git a/sdk/core/core-rest-pipeline/src/nodeHttpClient.ts b/sdk/core/core-rest-pipeline/src/nodeHttpClient.ts index f750d303e3c8..4dafde592688 100644 --- a/sdk/core/core-rest-pipeline/src/nodeHttpClient.ts +++ b/sdk/core/core-rest-pipeline/src/nodeHttpClient.ts @@ -207,7 +207,7 @@ class NodeHttpClient implements HttpClient { throw new Error(`Cannot connect to ${request.url} while allowInsecureConnection is false.`); } - const agent = request.agent ?? this.getOrCreateAgent(request, isInsecure); + const agent = (request.agent as http.Agent) ?? this.getOrCreateAgent(request, isInsecure); const options: http.RequestOptions = { agent, hostname: url.hostname, diff --git a/sdk/identity/identity/test/internal/node/interactiveBrowserCredential.spec.ts b/sdk/identity/identity/test/internal/node/interactiveBrowserCredential.spec.ts index ca006da32690..b90d1b8e62ff 100644 --- a/sdk/identity/identity/test/internal/node/interactiveBrowserCredential.spec.ts +++ b/sdk/identity/identity/test/internal/node/interactiveBrowserCredential.spec.ts @@ -12,8 +12,6 @@ import { InteractiveBrowserCredential } from "../../../src"; import { MsalTestCleanup, msalNodeTestSetup } from "../../msalTestUtils"; import { interactiveBrowserMockable } from "../../../src/msal/nodeFlows/msalOpenBrowser"; -import { URL } from "url"; - declare global { namespace NodeJS { interface Global { @@ -38,11 +36,6 @@ describe("InteractiveBrowserCredential (internal)", function() { const scope = "https://vault.azure.net/.default"; it("Throws an expected error if no browser is available", async function(this: Context) { - // On Node 8, URL is not defined. We use URL on the msalOpenBrowser.ts file. - if (process.version.startsWith("v8.")) { - global.URL = URL; - } - // The SinonStub type does not include this second parameter to throws(). const testErrorMessage = "No browsers available on this test."; (sandbox.stub(interactiveBrowserMockable, "open") as any).throws("TestError", testErrorMessage); diff --git a/sdk/test-utils/perfstress/src/policy.ts b/sdk/test-utils/perfstress/src/policy.ts index d0093035f852..c259da90607b 100644 --- a/sdk/test-utils/perfstress/src/policy.ts +++ b/sdk/test-utils/perfstress/src/policy.ts @@ -14,7 +14,7 @@ import * as url from "url"; */ export class PerfStressPolicy extends BaseRequestPolicy { private host: string; - private port?: string; + private port?: string | null; /** * It receives the common parameters sent to any core-http policy, plus the host and the port. @@ -27,7 +27,7 @@ export class PerfStressPolicy extends BaseRequestPolicy { nextPolicy: RequestPolicy, options: RequestPolicyOptions, host: string, - port?: string + port?: string | null ) { super(nextPolicy, options); this.host = host; From b7296744277582914c0e863ef07626915ae77ea5 Mon Sep 17 00:00:00 2001 From: Ramya Rao Date: Fri, 25 Jun 2021 16:00:09 -0700 Subject: [PATCH 09/49] Update Node.js & browser support in README (#16011) --- .../dev-tool/src/templates/sampleReadme.md.ts | 3 +- samples/cors/ts/README.md | 2 +- samples/frameworks/electron/ts/README.md | 2 +- samples/frameworks/react/ts/README.md | 2 +- samples/web-workers/README.md | 4 +- .../ai-anomaly-detector/README.md | 9 +- .../app-configuration/README.md | 11 +- .../app-configuration/sample-react/README.md | 2 +- sdk/attestation/attestation/README.md | 123 +++++++++--------- .../container-registry/README.md | 8 +- sdk/core/core-amqp/README.md | 7 +- sdk/core/core-client-rest/README.md | 7 +- sdk/core/core-client/README.md | 7 +- sdk/core/core-crypto/README.md | 7 +- sdk/core/core-http/README.md | 10 +- sdk/core/core-rest-pipeline/README.md | 7 +- sdk/core/core-util/README.md | 7 +- sdk/core/core-xml/README.md | 7 +- sdk/cosmosdb/cosmos/README.md | 2 +- sdk/deviceupdate/iot-device-update/README.md | 2 +- sdk/digitaltwins/digital-twins-core/README.md | 6 +- sdk/eventgrid/eventgrid/README.md | 12 +- sdk/eventhub/event-hubs/README.md | 12 +- .../event-hubs/samples-browser/README.md | 2 +- .../event-hubs/samples-express/README.md | 2 +- .../event-hubs/samples/v5/browser/README.md | 2 +- .../event-hubs/samples/v5/express/README.md | 2 +- .../samples/v5/javascript/README.md | 2 +- .../samples/v5/typescript/README.md | 2 +- .../eventhubs-checkpointstore-blob/README.md | 18 ++- .../ai-form-recognizer/README.md | 10 +- .../identity/samples/javascript/README.md | 2 +- .../identity/samples/typescript/README.md | 2 +- sdk/identity/perf-tests/identity/README.md | 3 - sdk/iot/iot-modelsrepository/README.md | 6 +- sdk/keyvault/keyvault-secrets/README.md | 10 +- .../ai-metrics-advisor/README.md | 5 +- .../mixedreality-authentication/README.md | 2 +- .../monitor-opentelemetry-exporter/README.md | 12 +- .../@azure/storage-blob/javascript/README.md | 2 +- .../@azure/storage-blob/typescript/README.md | 2 +- sdk/monitor/monitor-query/README.md | 11 +- sdk/quantum/quantum-jobs/README.md | 2 +- .../schema-registry-avro/README.md | 2 +- sdk/schemaregistry/schema-registry/README.md | 2 +- sdk/search/search-documents/README.md | 11 +- .../samples/javascript/README.md | 2 +- .../samples/typescript/README.md | 2 +- sdk/servicebus/service-bus/README.md | 9 +- sdk/storage/storage-blob-changefeed/README.md | 12 +- .../samples/javascript/README.md | 2 +- .../samples/typescript/README.md | 2 +- sdk/storage/storage-blob/README.md | 12 +- .../storage-blob/samples/javascript/README.md | 2 +- .../storage-blob/samples/typescript/README.md | 2 +- sdk/storage/storage-file-datalake/README.md | 12 +- .../samples/javascript/README.md | 2 +- .../samples/typescript/README.md | 2 +- sdk/storage/storage-file-share/README.md | 12 +- .../samples/javascript/README.md | 2 +- .../samples/typescript/README.md | 2 +- sdk/storage/storage-queue/README.md | 12 +- .../samples/javascript/README.md | 2 +- .../samples/typescript/README.md | 2 +- sdk/synapse/synapse-access-control/README.md | 6 +- sdk/synapse/synapse-artifacts/README.md | 6 +- .../README.md | 6 +- sdk/synapse/synapse-monitoring/README.md | 6 +- sdk/synapse/synapse-spark/README.md | 6 +- sdk/template/template/README.md | 5 +- sdk/textanalytics/ai-text-analytics/README.md | 5 +- sdk/web-pubsub/web-pubsub-express/README.md | 2 +- sdk/web-pubsub/web-pubsub/README.md | 2 +- 73 files changed, 336 insertions(+), 174 deletions(-) diff --git a/common/tools/dev-tool/src/templates/sampleReadme.md.ts b/common/tools/dev-tool/src/templates/sampleReadme.md.ts index e8134874edd4..3d5179c38284 100644 --- a/common/tools/dev-tool/src/templates/sampleReadme.md.ts +++ b/common/tools/dev-tool/src/templates/sampleReadme.md.ts @@ -6,7 +6,6 @@ import YAML from "yaml"; import prettier from "prettier"; -import { MIN_SUPPORTED_NODE_VERSION } from "../util/sampleConfiguration"; import { SampleReadmeConfiguration } from "../util/sampleGenerationInfo"; /** @@ -166,7 +165,7 @@ ${table(info)} ## Prerequisites -The sample programs are compatible with Node.js >=${MIN_SUPPORTED_NODE_VERSION}. +The sample programs are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/). ${(() => { if (info.useTypeScript) { diff --git a/samples/cors/ts/README.md b/samples/cors/ts/README.md index 6b00b2e2e812..901bd7c038f6 100644 --- a/samples/cors/ts/README.md +++ b/samples/cors/ts/README.md @@ -37,7 +37,7 @@ This sample demonstrates a few alternatives to integrating with Azure Key Vault ## Prerequisites -The sample is compatible with Node.js >= 8.0.0 +The sample is compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/) Before running the samples in Node, they must be compiled to JavaScript using the TypeScript compiler. For more information on TypeScript, see the [TypeScript documentation][typescript]. diff --git a/samples/frameworks/electron/ts/README.md b/samples/frameworks/electron/ts/README.md index f5eaded2b3ff..66ec3b7c8d9e 100644 --- a/samples/frameworks/electron/ts/README.md +++ b/samples/frameworks/electron/ts/README.md @@ -9,7 +9,7 @@ In this sample, we build a simple [Electron][electron] application and integrati ## Prerequisites -The samples are compatible with Node.js >= 8.0.0. +The samples are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/) Before running the samples in Node, they must be compiled to JavaScript using the TypeScript compiler. For more information on TypeScript, see the [TypeScript documentation][typescript]. diff --git a/samples/frameworks/react/ts/README.md b/samples/frameworks/react/ts/README.md index 6bcb75274acc..6669d7a4cd5d 100644 --- a/samples/frameworks/react/ts/README.md +++ b/samples/frameworks/react/ts/README.md @@ -9,7 +9,7 @@ In this sample, we build a simple Todo application in React using [create-react- ## Prerequisites -The samples are compatible with Node.js >= 8.0.0. +The samples are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/). Before running the samples in Node, they must be compiled to JavaScript using the TypeScript compiler. For more information on TypeScript, see the [TypeScript documentation][typescript]. diff --git a/samples/web-workers/README.md b/samples/web-workers/README.md index 6ee676a2d543..ebe9d895f511 100644 --- a/samples/web-workers/README.md +++ b/samples/web-workers/README.md @@ -12,7 +12,7 @@ In this sample we demonstrate how to polyfill the necessary APIs for using our l ### XML Parsing -When used in the browser, our XML parsing library relies on DOM APIs to support parsing and stringifying XML. Since the DOM APIs are generally available this reduces bundle size and minimizes our dependencies. When running from a Web Worker, however, DOM APIs are not available. This is a browser limitation and requires a polyfill before importing our client libraries in web workers. +When used in the browser, our XML parsing library relies on DOM APIs to support parsing and stringifying XML. Since the DOM APIs are generally available this reduces bundle size and minimizes our dependencies. When running from a Web Worker, however, DOM APIs are not available. This is a browser limitation and requires a polyfill before importing our client libraries in web workers. > Note: Not all client libraries use XML. When running in a web worker, our library will emit a useful error explaining what APIs are required if they are missing so that you can add them as needed. @@ -20,7 +20,7 @@ In these samples we use [JSDOM][jsdom] but you can use any library that provides ## Prerequisites -The samples are compatible with Node.js >= 8.0.0. +The samples are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/). Before running the TypeScript samples, they must be compiled to JavaScript using the TypeScript compiler. For more information on TypeScript, see the [TypeScript documentation][typescript]. diff --git a/sdk/anomalydetector/ai-anomaly-detector/README.md b/sdk/anomalydetector/ai-anomaly-detector/README.md index 5a3e1e4969d9..2c0e3f8dac40 100644 --- a/sdk/anomalydetector/ai-anomaly-detector/README.md +++ b/sdk/anomalydetector/ai-anomaly-detector/README.md @@ -6,8 +6,8 @@ Key links: - [Source code](https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/anomalydetector/ai-anomaly-detector/) - [Package (NPM)](https://www.npmjs.com/package/@azure/ai-anomaly-detector) -- [API reference documentation](https://docs.microsoft.com/javascript/api/@azure/ai-anomaly-detector) -- [Product documentation](https://docs.microsoft.com/azure/cognitive-services/anomaly-detector/) +- [API reference documentation](https://docs.microsoft.com/javascript/api/@azure/ai-anomaly-detector) +- [Product documentation](https://docs.microsoft.com/azure/cognitive-services/anomaly-detector/) - [Samples](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/anomalydetector/ai-anomaly-detector/samples) ## Key concepts @@ -22,7 +22,10 @@ The `AnomalyDetectorClient` provides methods for anomaly detection: ### Currently supported environments -- Node.js version 8.x.x or higher +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ### Prerequisites diff --git a/sdk/appconfiguration/app-configuration/README.md b/sdk/appconfiguration/app-configuration/README.md index d4ce5d88fb10..6ff3e01d9005 100644 --- a/sdk/appconfiguration/app-configuration/README.md +++ b/sdk/appconfiguration/app-configuration/README.md @@ -24,10 +24,17 @@ Key links: npm install @azure/app-configuration ``` +### Currently supported environments + +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. + ### Prerequisites -- You must have an [Azure Subscription](https://azure.microsoft.com) and an [App Configuration](https://docs.microsoft.com/azure/azure-app-configuration/) resource to use this package. -- Node.js version 8.x.x or higher +- An [Azure Subscription](https://azure.microsoft.com) +- An [App Configuration](https://docs.microsoft.com/azure/azure-app-configuration/) resource ### Create an App Configuration resource diff --git a/sdk/appconfiguration/app-configuration/sample-react/README.md b/sdk/appconfiguration/app-configuration/sample-react/README.md index b74c4757d55c..edf3a602c234 100644 --- a/sdk/appconfiguration/app-configuration/sample-react/README.md +++ b/sdk/appconfiguration/app-configuration/sample-react/README.md @@ -4,7 +4,7 @@ This sample application shows how to use the Feature Flags. ## Prerequisites -The samples are compatible with Node.js >= 8.0.0. +The samples are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/). You need [an Azure subscription][freesub] and the following resources created to run this sample: diff --git a/sdk/attestation/attestation/README.md b/sdk/attestation/attestation/README.md index c286f33ef2a6..afec50a24ce6 100644 --- a/sdk/attestation/attestation/README.md +++ b/sdk/attestation/attestation/README.md @@ -14,25 +14,28 @@ For a more complete view of Azure libraries, see the [azure sdk typescript relea Key links: -- [Source code][source_code] -- [Package (NPM)][Attestation_npm] -- [API reference documentation][API_reference] +- [Source code][source_code] +- [Package (NPM)][attestation_npm] +- [API reference documentation][api_reference] - [Product documentation](https://docs.microsoft.com/azure/attestation/) ## Getting started ### Currently supported environments -- Node.js version 8.x.x or higher +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ### Prerequisites -- An Azure subscription. To use Azure services, including the Microsoft Azure Attestation service, you'll need a subscription. If you do not have an existing Azure account, you may sign up for a [free trial][azure_sub] or use your [Visual Studio Subscription](https://visualstudio.microsoft.com/subscriptions/) benefits when you [create an account](https://account.windowsazure.com/Home/Index). +- An [Azure Subscription](https://azure.microsoft.com) - An existing Azure Attestation Instance, or you can use the "shared provider" available in each Azure region. If you need to create an Azure Attestation service instance, you can use the Azure Portal or [Azure CLI][azure_cli]. ### Install the @azure/attestation package -Install the Microsoft Azure Attestation client library for JavaScript with [NPM][Attestation_npm]: +Install the Microsoft Azure Attestation client library for JavaScript with [NPM][attestation_npm]: ```Powershell npm install @azure/attestation @@ -41,9 +44,9 @@ npm install @azure/attestation ### Authenticate the client In order to interact with the Microsoft Azure Attestation service, you'll need to create an instance of the [Attestation Client][attestation_client] or [Attestation Administration Client][attestation_admin_client] class. You need a **attestation instance url**, which you may see as "DNS Name" in the portal, - and **client secret credentials (client id, client secret, tenant id)** to instantiate a client object. +and **client secret credentials (client id, client secret, tenant id)** to instantiate a client object. -Client secret credential authentication is being used in this getting started section but you can find more ways to authenticate with [Azure identity][azure_identity]. To use the [DefaultAzureCredential][DefaultAzureCredential] provider shown below, +Client secret credential authentication is being used in this getting started section but you can find more ways to authenticate with [Azure identity][azure_identity]. To use the [DefaultAzureCredential][defaultazurecredential] provider shown below, or other credential providers provided with the Azure SDK, you should install the Azure.Identity package: ```Powershell @@ -56,35 +59,35 @@ Use the [Azure CLI][azure_cli] snippet below to create/get client secret credent - Create a service principal and configure its access to Azure resources: - ```Powershell - az ad sp create-for-rbac -n --skip-assignment - ``` + ```Powershell + az ad sp create-for-rbac -n --skip-assignment + ``` - Output: + Output: - ```json - { - "appId": "generated-app-ID", - "displayName": "dummy-app-name", - "name": "http://dummy-app-name", - "password": "random-password", - "tenant": "tenant-ID" - } - ``` + ```json + { + "appId": "generated-app-ID", + "displayName": "dummy-app-name", + "name": "http://dummy-app-name", + "password": "random-password", + "tenant": "tenant-ID" + } + ``` - Take note of the service principal objectId - ```Powershell - az ad sp show --id --query objectId - ``` + ```Powershell + az ad sp show --id --query objectId + ``` - Output: + Output: - ```Powershell - "" - ``` + ```Powershell + "" + ``` -- Use the returned credentials above to set **AZURE_CLIENT_ID** (appId), **AZURE_CLIENT_SECRET** (password), and **AZURE_TENANT_ID** (tenant) environment variables. The following example shows a way to do this in Powershell: +- Use the returned credentials above to set **AZURE_CLIENT_ID** (appId), **AZURE_CLIENT_SECRET** (password), and **AZURE_TENANT_ID** (tenant) environment variables. The following example shows a way to do this in Powershell: ```Powershell $Env:AZURE_CLIENT_ID="generated-app-ID" @@ -99,7 +102,7 @@ For more information about the Azure Identity APIs and how to use them, see [Azu There are four major families of functionality provided in this preview SDK: - [SGX and TPM enclave attestation.](#attestation) -- [MAA Attestation Token signing certificate discovery and validation.](#attestation-token-signing-certificate-discovery-and-validation) +- [MAA Attestation Token signing certificate discovery and validation.](#attestation-token-signing-certificate-discovery-and-validation) - [Attestation Policy management.](#policy-management) - [Attestation policy management certificate management](#policy-management-certificate-management) (yes, policy management management). @@ -143,9 +146,9 @@ clients to "roll" the policy management certificates. ### Isolated Mode and AAD Mode -Each Microsoft Azure Attestation service instance operates in either "AAD" mode or "Isolated" mode. When an MAA instance is operating in AAD mode, it means that the customer which created the attestation instance allows Azure Active Directory and Azure Role Based Access control policies to verify access to the attestation instance. +Each Microsoft Azure Attestation service instance operates in either "AAD" mode or "Isolated" mode. When an MAA instance is operating in AAD mode, it means that the customer which created the attestation instance allows Azure Active Directory and Azure Role Based Access control policies to verify access to the attestation instance. -### *AttestationType* +### _AttestationType_ The Microsoft Azure Attestation service supports attesting different types of evidence depending on the environment. Currently, MAA supports the following Trusted Execution environments: @@ -186,13 +189,13 @@ The `getPolicy` method retrieves the attestation policy from the service. Attestation Policies are instanced on a per-attestation type basis, the `AttestationType` parameter defines the type to retrieve. ```js - const policyResult = await adminClient.getPolicy(attestationType); +const policyResult = await adminClient.getPolicy(attestationType); - // The text policy document is available in the `policyResult.value` - // property. +// The text policy document is available in the `policyResult.value` +// property. - // The actual attestation token returned by the MAA service is available - // in `policyResult.token`. +// The actual attestation token returned by the MAA service is available +// in `policyResult.token`. ``` ### Set an attestation policy for a specified attestation type @@ -222,20 +225,19 @@ There are two properties provided in the [PolicyResult][attestation_policy_resul To verify the hash, clients can generate an attestation token and verify the hash generated from that token: ```js - const expectedPolicy = AttestationToken.create( - { - body: new StoredAttestationPolicy(minimalPolicy).serialize(), - signer: signer - }); - - // Use your favorite SHA256 hash generator function to create a hash of the - // stringized JWS. The tests in this package use `KJUR.crypto.Util.hashString(buffer, "sha256")` - // from the `jsrsasign` library, but any crypto library will - // work. - const expectedHash = generateSha256Hash(expectedPolicy.serialize()); - - // The hash returned in expectedHash will match the value in - // `setResult.value.policy_token_hash. +const expectedPolicy = AttestationToken.create({ + body: new StoredAttestationPolicy(minimalPolicy).serialize(), + signer: signer +}); + +// Use your favorite SHA256 hash generator function to create a hash of the +// stringized JWS. The tests in this package use `KJUR.crypto.Util.hashString(buffer, "sha256")` +// from the `jsrsasign` library, but any crypto library will +// work. +const expectedHash = generateSha256Hash(expectedPolicy.serialize()); + +// The hash returned in expectedHash will match the value in +// `setResult.value.policy_token_hash. ``` ### Attest SGX Enclave @@ -248,7 +250,7 @@ One solution to this problem is what is known as "Secure Key Release", which is To implement the "Secure Key Release" pattern, the enclave code generates an ephemeral asymmetric key. It then serializes the public portion of the key to some format (possibly a JSON Web Key, or PEM, or some other serialization format). -The enclave code then calculates the SHA256 value of the public key and passes it as an input to code which generates an SGX Quote (for OpenEnclave, that would be the [oe_get_evidence](https://openenclave.io/apidocs/v0.14/attester_8h_a7d197e42468636e95a6ab97b8e74c451.html#a7d197e42468636e95a6ab97b8e74c451) or [oe_get_report](https://openenclave.io/apidocs/v0.14/enclave_8h_aefcb89c91a9078d595e255bd7901ac71.html#aefcb89c91a9078d595e255bd7901ac71)). +The enclave code then calculates the SHA256 value of the public key and passes it as an input to code which generates an SGX Quote (for OpenEnclave, that would be the [oe_get_evidence](https://openenclave.io/apidocs/v0.14/attester_8h_a7d197e42468636e95a6ab97b8e74c451.html#a7d197e42468636e95a6ab97b8e74c451) or [oe_get_report](https://openenclave.io/apidocs/v0.14/enclave_8h_aefcb89c91a9078d595e255bd7901ac71.html#aefcb89c91a9078d595e255bd7901ac71)). The client then sends the SGX quote and the serialized key to the attestation service. The attestation service will validate the quote and ensure that the hash of the key is present in the quote and will issue an "Attestation Token". @@ -259,11 +261,9 @@ This example shows one common pattern of calling into the attestation service to This example assumes that you have an existing `AttestationClient` object which is configured with the base URI for your endpoint. It also assumes that you have an SGX Quote (`quote`) generated from within the SGX enclave you are attesting, and "Runtime Data" (`binaryRuntimeData`) which is referenced in the SGX Quote. ```ts - const attestationResult = await client.attestOpenEnclave( - quote, - { - runTimeData: new AttestationData(binaryRuntimeData, false), - }); +const attestationResult = await client.attestOpenEnclave(quote, { + runTimeData: new AttestationData(binaryRuntimeData, false) +}); ``` If the `isJson` parameter to the `AttestationData` constructor is not provided, @@ -323,17 +323,18 @@ If you encounter any bugs or have suggestions, please file an issue in the section of the project. + [source_code]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/attestation/attestation [azure_identity]: https://azuresdkdocs.blob.core.windows.net/$web/javascript/azure-identity/2.0.0-beta.3/index.html -[DefaultAzureCredential]: https://azuresdkdocs.blob.core.windows.net/$web/javascript/azure-identity/2.0.0-beta.3/classes/defaultazurecredential.html -[attestation_policy_result]:https://azuresdkdocs.blob.core.windows.net/$web/javascript/azure-attestation/1.0.0-beta.2/interfaces/policyresult.html +[defaultazurecredential]: https://azuresdkdocs.blob.core.windows.net/$web/javascript/azure-identity/2.0.0-beta.3/classes/defaultazurecredential.html +[attestation_policy_result]: https://azuresdkdocs.blob.core.windows.net/$web/javascript/azure-attestation/1.0.0-beta.2/interfaces/policyresult.html [attestation_client]: https://azuresdkdocs.blob.core.windows.net/$web/javascript/azure-attestation/1.0.0-beta.2/classes/attestationclient.html [attestation_admin_client]: https://azuresdkdocs.blob.core.windows.net/$web/javascript/azure-attestation/1.0.0-beta.2/classes/attestationclient.html [attestation_response]: https://azuresdkdocs.blob.core.windows.net/$web/javascript/azure-attestation/1.0.0-beta.2/interfaces/attestationresponse.html [attestation_policy_result_parameters]: https://www.microsoft.com/ [attest_sgx]: https://azuresdkdocs.blob.core.windows.net/$web/javascript/azure-attestation/1.0.0-beta.2/classes/attestation.html#attestsgxenclave [attestation_npm]: https://www.npmjs.com/package/@azure/attestation -[API_reference]:https://azuresdkdocs.blob.core.windows.net/$web/javascript/azure-attestation/1.0.0-beta.2/index.html +[api_reference]: https://azuresdkdocs.blob.core.windows.net/$web/javascript/azure-attestation/1.0.0-beta.2/index.html [style-guide-msft]: https://docs.microsoft.com/style-guide/capitalization [style-guide-cloud]: https://aka.ms/azsdk/cloud-style-guide [microsoft_code_of_conduct]: https://opensource.microsoft.com/codeofconduct/ @@ -341,7 +342,7 @@ section of the project. [azure_sub]: https://azure.microsoft.com/free/ [code_of_conduct]: https://opensource.microsoft.com/codeofconduct/ [json_web_token]: https://tools.ietf.org/html/rfc7519 -[JWK]: https://tools.ietf.org/html/rfc7517 +[jwk]: https://tools.ietf.org/html/rfc7517 [base64url_encoding]: https://tools.ietf.org/html/rfc4648#section-5 [contributing]: https://github.com/Azure/azure-sdk-for-js/blob/main/CONTRIBUTING.md [coc_faq]: https://opensource.microsoft.com/codeofconduct/faq/ diff --git a/sdk/containerregistry/container-registry/README.md b/sdk/containerregistry/container-registry/README.md index e50c8193411e..8a2ee1b1eb71 100644 --- a/sdk/containerregistry/container-registry/README.md +++ b/sdk/containerregistry/container-registry/README.md @@ -20,11 +20,15 @@ Use the client library for Azure Container Registry to: ### Currently supported environments -- Node.js version 8.x or higher +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ### Prerequisites -You need an [Azure subscription][azure_sub] and a [Container Registry account][container_registry_docs] to use this package. +- An [Azure Subscription](https://azure.microsoft.com) +- A [Container Registry account][container_registry_docs] To create a new Container Registry, you can use the [Azure Portal][container_registry_create_portal], [Azure PowerShell][container_registry_create_ps], or the [Azure CLI][container_registry_create_cli]. diff --git a/sdk/core/core-amqp/README.md b/sdk/core/core-amqp/README.md index 501af61fb46d..fb04fb486d65 100644 --- a/sdk/core/core-amqp/README.md +++ b/sdk/core/core-amqp/README.md @@ -14,9 +14,12 @@ Install this library using npm as follows: npm install @azure/core-amqp ``` -### Prerequisites +### Currently supported environments -If you are using this package in a Node.js application, then use Node.js 8.x or higher. +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ## Key concepts diff --git a/sdk/core/core-client-rest/README.md b/sdk/core/core-client-rest/README.md index 4cdcdbe50460..4a095693277f 100644 --- a/sdk/core/core-client-rest/README.md +++ b/sdk/core/core-client-rest/README.md @@ -6,7 +6,12 @@ This library is primarily intended to be used in code generated by [AutoRest](ht ### Requirements -- [Node.js](https://nodejs.org) version > 8.x +### Currently supported environments + +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ### Installation diff --git a/sdk/core/core-client/README.md b/sdk/core/core-client/README.md index 04d1b88b1d4b..3cae0857ee55 100644 --- a/sdk/core/core-client/README.md +++ b/sdk/core/core-client/README.md @@ -4,9 +4,12 @@ This library is primarily intended to be used in code generated by [AutoRest](ht ## Getting started -### Requirements +### Currently supported environments -- [Node.js](https://nodejs.org) version > 8.x +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ### Installation diff --git a/sdk/core/core-crypto/README.md b/sdk/core/core-crypto/README.md index 0e5e0738f7f4..f609cf210dfc 100644 --- a/sdk/core/core-crypto/README.md +++ b/sdk/core/core-crypto/README.md @@ -6,7 +6,12 @@ This library is primarily intended to contain cryptographic helper functions for ### Requirements -- [Node.js](https://nodejs.org) version > 8.x +### Currently supported environments + +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ### Installation diff --git a/sdk/core/core-http/README.md b/sdk/core/core-http/README.md index 860078fff69e..2ee90212ff09 100644 --- a/sdk/core/core-http/README.md +++ b/sdk/core/core-http/README.md @@ -4,14 +4,12 @@ This is the core HTTP pipeline for Azure SDK JavaScript libraries which work in ## Getting started -### Requirements +### Currently supported environments -- [Node.js](https://nodejs.org) version > 8.x -- Typescript compiler +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. -```shell -npm install -g typescript -``` +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ### Installation diff --git a/sdk/core/core-rest-pipeline/README.md b/sdk/core/core-rest-pipeline/README.md index 4412f183a9bb..28e1808b5cf3 100644 --- a/sdk/core/core-rest-pipeline/README.md +++ b/sdk/core/core-rest-pipeline/README.md @@ -6,7 +6,12 @@ This is the core HTTP pipeline for Azure SDK JavaScript libraries which work in ### Requirements -- [Node.js](https://nodejs.org) version > 8.x +### Currently supported environments + +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ### Installation diff --git a/sdk/core/core-util/README.md b/sdk/core/core-util/README.md index 299357f28332..a975072b968f 100644 --- a/sdk/core/core-util/README.md +++ b/sdk/core/core-util/README.md @@ -6,7 +6,12 @@ This library is intended to provide various shared utility functions for client ### Requirements -- [Node.js](https://nodejs.org) version > 8.x +### Currently supported environments + +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ### Installation diff --git a/sdk/core/core-xml/README.md b/sdk/core/core-xml/README.md index 63acacf44ad1..902a7dafc21e 100644 --- a/sdk/core/core-xml/README.md +++ b/sdk/core/core-xml/README.md @@ -6,7 +6,12 @@ This library is primarily intended to be used in code generated by [AutoRest](ht ### Requirements -- [Node.js](https://nodejs.org) version > 8.x +### Currently supported environments + +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ### Installation diff --git a/sdk/cosmosdb/cosmos/README.md b/sdk/cosmosdb/cosmos/README.md index 9d6d0f456e1b..5006c6544919 100644 --- a/sdk/cosmosdb/cosmos/README.md +++ b/sdk/cosmosdb/cosmos/README.md @@ -203,7 +203,7 @@ try { ### Transpiling -The Azure SDKs are designed to support ES5 JavaScript syntax and a minimum version of Node 8. If you need support for earlier JavaScript runtimes such as Internet Explorer or Node 6, you will need to transpile the SDK code as part of your build process. +The Azure SDKs are designed to support ES5 JavaScript syntax and [LTS versions of Node.js](https://nodejs.org/about/releases/). If you need support for earlier JavaScript runtimes such as Internet Explorer or Node 6, you will need to transpile the SDK code as part of your build process. ### Handle transient errors with retries diff --git a/sdk/deviceupdate/iot-device-update/README.md b/sdk/deviceupdate/iot-device-update/README.md index f9413b812fa4..f97bd2266f1c 100644 --- a/sdk/deviceupdate/iot-device-update/README.md +++ b/sdk/deviceupdate/iot-device-update/README.md @@ -8,7 +8,7 @@ The library provides access to the Device Update for IoT Hub service that enable ### Currently supported environments -- Node.js version 8.x.x or higher +- [LTS versions of Node.js](https://nodejs.org/about/releases/) ### Prerequisites diff --git a/sdk/digitaltwins/digital-twins-core/README.md b/sdk/digitaltwins/digital-twins-core/README.md index 5f5b5245d50b..2856d11c03d4 100644 --- a/sdk/digitaltwins/digital-twins-core/README.md +++ b/sdk/digitaltwins/digital-twins-core/README.md @@ -6,8 +6,10 @@ This package contains an isomorphic SDK for Azure Digital Twins API to provide a ### Currently supported environments -- Node.js version 8.x.x or higher -- Browser JavaScript +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ### Prerequisites diff --git a/sdk/eventgrid/eventgrid/README.md b/sdk/eventgrid/eventgrid/README.md index 5e5681e18e48..6f1e21cb518a 100644 --- a/sdk/eventgrid/eventgrid/README.md +++ b/sdk/eventgrid/eventgrid/README.md @@ -18,12 +18,12 @@ Use the client library to: ### Currently supported environments -- Node.js version 8.x.x or higher -- Browser JavaScript - - Apple Safari: latest two versions - - Google Chrome: latest two versions - - Microsoft Edge: all supported versions - - Mozilla FireFox: latest two versions +### Currently supported environments + +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ### Prerequisites diff --git a/sdk/eventhub/event-hubs/README.md b/sdk/eventhub/event-hubs/README.md index 5656075c7919..70db54a67360 100644 --- a/sdk/eventhub/event-hubs/README.md +++ b/sdk/eventhub/event-hubs/README.md @@ -27,11 +27,17 @@ Install the Azure Event Hubs client library using npm `npm install @azure/event-hubs` +### Currently supported environments + +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. + ### Prerequisites -You must have an [Azure subscription](https://azure.microsoft.com/free/) and a -[Event Hubs Namespace](https://docs.microsoft.com/azure/event-hubs/) to use this package. -If you are using this package in a Node.js application, then use Node.js 8.x or higher. +- An [Azure subscription](https://azure.microsoft.com/free/) +- An [Event Hubs Namespace](https://docs.microsoft.com/azure/event-hubs/) #### Configure Typescript diff --git a/sdk/eventhub/event-hubs/samples-browser/README.md b/sdk/eventhub/event-hubs/samples-browser/README.md index e37554524b8e..63cca58db52c 100644 --- a/sdk/eventhub/event-hubs/samples-browser/README.md +++ b/sdk/eventhub/event-hubs/samples-browser/README.md @@ -22,7 +22,7 @@ This sample programs show how to use the JavaScript client libraries for Azure E ## Prerequisites -The samples are compatible with Node.js >= 8.0.0 and run in browsers that support async/await (e.g. Edge, Firefox, Chrome.) +The samples are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/) and run in browsers that support async/await (e.g. Edge, Firefox, Chrome.) You need [an Azure subscription][freesub] and [an Azure Event Hub resource][azhubacct] to run these sample programs. Samples retrieve credentials using the [InteractiveBrowserCredential][browsercred] from `@azure/identity`. diff --git a/sdk/eventhub/event-hubs/samples-express/README.md b/sdk/eventhub/event-hubs/samples-express/README.md index be5e68b8ec86..cafe39c216f7 100644 --- a/sdk/eventhub/event-hubs/samples-express/README.md +++ b/sdk/eventhub/event-hubs/samples-express/README.md @@ -10,7 +10,7 @@ One scenario is building an HTTP-based service that accepts events as part of an ## Prerequisites -The samples are compatible with Node.js >= 8.0.0 and run in express. +The samples are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/) and run in express. You need [an Azure subscription][freesub] and [an Azure Event Hub resource][azhubacct] to run these sample programs. diff --git a/sdk/eventhub/event-hubs/samples/v5/browser/README.md b/sdk/eventhub/event-hubs/samples/v5/browser/README.md index e37554524b8e..63cca58db52c 100644 --- a/sdk/eventhub/event-hubs/samples/v5/browser/README.md +++ b/sdk/eventhub/event-hubs/samples/v5/browser/README.md @@ -22,7 +22,7 @@ This sample programs show how to use the JavaScript client libraries for Azure E ## Prerequisites -The samples are compatible with Node.js >= 8.0.0 and run in browsers that support async/await (e.g. Edge, Firefox, Chrome.) +The samples are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/) and run in browsers that support async/await (e.g. Edge, Firefox, Chrome.) You need [an Azure subscription][freesub] and [an Azure Event Hub resource][azhubacct] to run these sample programs. Samples retrieve credentials using the [InteractiveBrowserCredential][browsercred] from `@azure/identity`. diff --git a/sdk/eventhub/event-hubs/samples/v5/express/README.md b/sdk/eventhub/event-hubs/samples/v5/express/README.md index be5e68b8ec86..cafe39c216f7 100644 --- a/sdk/eventhub/event-hubs/samples/v5/express/README.md +++ b/sdk/eventhub/event-hubs/samples/v5/express/README.md @@ -10,7 +10,7 @@ One scenario is building an HTTP-based service that accepts events as part of an ## Prerequisites -The samples are compatible with Node.js >= 8.0.0 and run in express. +The samples are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/) and run in express. You need [an Azure subscription][freesub] and [an Azure Event Hub resource][azhubacct] to run these sample programs. diff --git a/sdk/eventhub/event-hubs/samples/v5/javascript/README.md b/sdk/eventhub/event-hubs/samples/v5/javascript/README.md index e231efd49ea2..3a168874e742 100644 --- a/sdk/eventhub/event-hubs/samples/v5/javascript/README.md +++ b/sdk/eventhub/event-hubs/samples/v5/javascript/README.md @@ -23,7 +23,7 @@ These sample programs show how to use the JavaScript client libraries for Azure ## Prerequisites -The sample programs are compatible with Node.js >=12.0.0. +The sample programs are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/). You need [an Azure subscription][freesub] and the following Azure resources to run these sample programs: diff --git a/sdk/eventhub/event-hubs/samples/v5/typescript/README.md b/sdk/eventhub/event-hubs/samples/v5/typescript/README.md index 5ef84e59494a..37d3c5a10373 100644 --- a/sdk/eventhub/event-hubs/samples/v5/typescript/README.md +++ b/sdk/eventhub/event-hubs/samples/v5/typescript/README.md @@ -23,7 +23,7 @@ These sample programs show how to use the TypeScript client libraries for Azure ## Prerequisites -The sample programs are compatible with Node.js >=12.0.0. +The sample programs are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/). Before running the samples in Node, they must be compiled to JavaScript using the TypeScript compiler. For more information on TypeScript, see the [TypeScript documentation][typescript]. Install the TypeScript compiler using: diff --git a/sdk/eventhub/eventhubs-checkpointstore-blob/README.md b/sdk/eventhub/eventhubs-checkpointstore-blob/README.md index 0fe085452376..9d797d546e05 100644 --- a/sdk/eventhub/eventhubs-checkpointstore-blob/README.md +++ b/sdk/eventhub/eventhubs-checkpointstore-blob/README.md @@ -6,17 +6,25 @@ An Azure Blob storage based solution to store checkpoints and to aid in load bal ## Getting started +### Currently supported environments + +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. + +### Prerequisites + +- An [Azure subscription](https://azure.microsoft.com/free/) +- An [Event Hubs Namespace](https://docs.microsoft.com/azure/event-hubs/) +- A [Storage account](https://docs.microsoft.com/azure/storage/blobs/storage-blobs-introduction) + ### Install the package Install the Azure Event Hubs Checkpoint Store Blob library using npm `npm install @azure/eventhubs-checkpointstore-blob` -**Prerequisites**: You must have an [Azure subscription](https://azure.microsoft.com/free/), an -[Event Hubs Namespace](https://docs.microsoft.com/azure/event-hubs/) to use this package, and a [Storage account](https://docs.microsoft.com/azure/storage/blobs/storage-blobs-introduction) - -If you are using this package in a Node.js application, then use Node.js 8.x or higher. - ### Configure Typescript TypeScript users need to have Node type definitions installed: diff --git a/sdk/formrecognizer/ai-form-recognizer/README.md b/sdk/formrecognizer/ai-form-recognizer/README.md index 3559603dfaa7..abad31debe7a 100644 --- a/sdk/formrecognizer/ai-form-recognizer/README.md +++ b/sdk/formrecognizer/ai-form-recognizer/README.md @@ -16,10 +16,16 @@ Azure Cognitive Services [Form Recognizer](https://azure.microsoft.com/services/ ## Getting started +### Currently supported environments + +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. + ### Prerequisites -- [Node.js](https://nodejs.org/) version 8.x.x or higher -- An [Azure subscription][azure_sub]. +- An [Azure subscription](https://azure.microsoft.com/free/) - A [Cognitive Services or Form Recognizer resource][fr_or_cs_resource]. If you need to create the resource, you can use the [Azure Portal][azure_portal] or [Azure CLI][azure_cli]. #### Create a Form Recognizer resource diff --git a/sdk/identity/identity/samples/javascript/README.md b/sdk/identity/identity/samples/javascript/README.md index 372288c6fdd5..65f379a3794e 100644 --- a/sdk/identity/identity/samples/javascript/README.md +++ b/sdk/identity/identity/samples/javascript/README.md @@ -20,7 +20,7 @@ These sample programs show how to use the JavaScript client libraries for Azure ## Prerequisites -The samples are compatible with Node.js >= 8.0.0. +The samples are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/). You need [an Azure subscription][freesub] and [an Azure Key Vault][azkeyvault] to run these sample programs. diff --git a/sdk/identity/identity/samples/typescript/README.md b/sdk/identity/identity/samples/typescript/README.md index bb33229b0c14..537aeaae9ec7 100644 --- a/sdk/identity/identity/samples/typescript/README.md +++ b/sdk/identity/identity/samples/typescript/README.md @@ -20,7 +20,7 @@ These sample programs show how to use the TypeScript client libraries for Azure ## Prerequisites -The samples are compatible with Node.ts >= 8.0.0. +The samples are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/). Before running the samples in Node, they must be compiled to TypeScript using the TypeScript compiler. For more information on TypeScript, see the [TypeScript documentation][typescript]. Install the TypeScript compiler using diff --git a/sdk/identity/perf-tests/identity/README.md b/sdk/identity/perf-tests/identity/README.md index b88cbee15974..ac4ebfc1594e 100644 --- a/sdk/identity/perf-tests/identity/README.md +++ b/sdk/identity/perf-tests/identity/README.md @@ -1,8 +1,5 @@ ### Guide -**Important:** -These tests won't work on Node 8 nor Node 15. - 1. Build the Identity perf tests package `rush build -t perf-identity`. 2. Copy the `sample.env` file and name it as `.env`. 3. Populate the `.env` file with your Azure Credentials. diff --git a/sdk/iot/iot-modelsrepository/README.md b/sdk/iot/iot-modelsrepository/README.md index 6929ea69e592..0753a1165e7d 100644 --- a/sdk/iot/iot-modelsrepository/README.md +++ b/sdk/iot/iot-modelsrepository/README.md @@ -16,8 +16,10 @@ The Azure IoT Models Repository library for JavaScript provides functionality fo ### Currently supported environments -- Node.js version 8.x.x or higher -- Browser JavaScript +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ### How to Install diff --git a/sdk/keyvault/keyvault-secrets/README.md b/sdk/keyvault/keyvault-secrets/README.md index 2d2f356e3d82..cc12e3849811 100644 --- a/sdk/keyvault/keyvault-secrets/README.md +++ b/sdk/keyvault/keyvault-secrets/README.md @@ -23,10 +23,14 @@ Use the client library for Azure Key Vault Secrets in your Node.js application t ## Getting started -**Prerequisites**: You must have an [Azure subscription](https://azure.microsoft.com/free/) and a -[Key Vault resource](https://docs.microsoft.com/azure/key-vault/quick-create-portal) to use this package. +### Currently supported environments -If you are using this package in a Node.js application, then use Node.js 8.x or higher. +- [LTS versions of Node.js](https://nodejs.org/about/releases/) + +### Prerequisites + +- An [Azure subscription](https://azure.microsoft.com/free/) +- A[Key Vault resource](https://docs.microsoft.com/azure/key-vault/quick-create-portal) ### Install the package diff --git a/sdk/metricsadvisor/ai-metrics-advisor/README.md b/sdk/metricsadvisor/ai-metrics-advisor/README.md index 48c691adcbcb..c2d19107320a 100644 --- a/sdk/metricsadvisor/ai-metrics-advisor/README.md +++ b/sdk/metricsadvisor/ai-metrics-advisor/README.md @@ -17,7 +17,10 @@ Metrics Advisor is a part of Azure Cognitive Services that uses AI perform data ### Currently supported environments -- Node.js version 8.x.x or higher +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ### Prerequisites diff --git a/sdk/mixedreality/mixedreality-authentication/README.md b/sdk/mixedreality/mixedreality-authentication/README.md index efc2668f3a60..288023bba79c 100644 --- a/sdk/mixedreality/mixedreality-authentication/README.md +++ b/sdk/mixedreality/mixedreality-authentication/README.md @@ -15,7 +15,7 @@ token from the STS that can be used to access Mixed Reality services. ### Currently supported environments -- Node.js version 8.x.x or higher +- [LTS versions of Node.js](https://nodejs.org/about/releases/) ### Prerequisites diff --git a/sdk/monitor/monitor-opentelemetry-exporter/README.md b/sdk/monitor/monitor-opentelemetry-exporter/README.md index e030b57c45dc..ba19340f85a9 100644 --- a/sdk/monitor/monitor-opentelemetry-exporter/README.md +++ b/sdk/monitor/monitor-opentelemetry-exporter/README.md @@ -10,11 +10,17 @@ This exporter package assumes your application is [already instrumented](https:/ `npm install @azure/monitor-opentelemetry-exporter` +### Currently supported environments + +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. + ### Prerequisites -You must have an [Azure subscription](https://azure.microsoft.com/free/) and a -[Application Insights workspace](https://docs.microsoft.com/azure/azure-monitor/app/app-insights-overview/) to use this package. -If you are using this package in a Node.js application, then use Node.js 8.5.0 or higher. +- An [Azure subscription](https://azure.microsoft.com/free/) +- An [Application Insights workspace](https://docs.microsoft.com/azure/azure-monitor/app/app-insights-overview/) ### Distributed Tracing diff --git a/sdk/monitor/monitor-opentelemetry-exporter/samples/@azure/storage-blob/javascript/README.md b/sdk/monitor/monitor-opentelemetry-exporter/samples/@azure/storage-blob/javascript/README.md index f592db7aa39c..2b06bd02e38f 100644 --- a/sdk/monitor/monitor-opentelemetry-exporter/samples/@azure/storage-blob/javascript/README.md +++ b/sdk/monitor/monitor-opentelemetry-exporter/samples/@azure/storage-blob/javascript/README.md @@ -8,7 +8,7 @@ These sample programs show how to use the JavaScript client libraries for Azure ## Prerequisites -The sample are compatible with Node.js >= 8.0.0, except for the samples that use the async `for await` syntax, which require Node.js >= 10.0.0. +The samples are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/). You need [an Azure subscription][freesub] and [an Azure Storage account][azstorage] to run these sample programs. Samples retrieve credentials to access the storage account from environment variables. Alternatively, edit the source code to include the appropriate credentials. See each individual sample for details on which environment variables/credentials it requires to function. diff --git a/sdk/monitor/monitor-opentelemetry-exporter/samples/@azure/storage-blob/typescript/README.md b/sdk/monitor/monitor-opentelemetry-exporter/samples/@azure/storage-blob/typescript/README.md index dfe091aa40df..9d8b602ead41 100644 --- a/sdk/monitor/monitor-opentelemetry-exporter/samples/@azure/storage-blob/typescript/README.md +++ b/sdk/monitor/monitor-opentelemetry-exporter/samples/@azure/storage-blob/typescript/README.md @@ -8,7 +8,7 @@ These sample programs show how to use the TypeScript client libraries for Azure ## Prerequisites -The samples are compatible with Node.js >= 8.0.0, except for the samples that use the async `for await` syntax, which require a Node.js >= 10.0.0. +The samples are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/). Before running the samples in Node, they must be compiled to JavaScript using the TypeScript compiler. For more information on TypeScript, see the [TypeScript documentation][typescript]. Install the TypeScript compiler using diff --git a/sdk/monitor/monitor-query/README.md b/sdk/monitor/monitor-query/README.md index 869c8c2bf9ca..9e2b7dda6ff4 100644 --- a/sdk/monitor/monitor-query/README.md +++ b/sdk/monitor/monitor-query/README.md @@ -21,10 +21,17 @@ Use the client library for Azure Monitor to: npm install @azure/monitor-query ``` +### Currently supported environments + +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. + ### Prerequisites -- You must have an [Azure Subscription](https://azure.microsoft.com) and an [Azure Monitor][azure_monitor_product_documentation] resource to use this package. -- Node.js version 8.x.x or higher +- An [Azure Subscription](https://azure.microsoft.com) +- An [Azure Monitor][azure_monitor_product_documentation] resource ### Create an Azure Monitor resource diff --git a/sdk/quantum/quantum-jobs/README.md b/sdk/quantum/quantum-jobs/README.md index 1af8f14b5586..65fb3c1ff45d 100644 --- a/sdk/quantum/quantum-jobs/README.md +++ b/sdk/quantum/quantum-jobs/README.md @@ -23,7 +23,7 @@ npm install @azure/quantum-jobs ### Prerequisites -- Node.js version 8.x.x or higher +- [LTS versions of Node.js](https://nodejs.org/about/releases/) - [Azure subscription](https://azure.microsoft.com/free/) - [Azure Quantum Workspace][workspaces] diff --git a/sdk/schemaregistry/schema-registry-avro/README.md b/sdk/schemaregistry/schema-registry-avro/README.md index 6c9f1616d841..ed4dbcdb0619 100644 --- a/sdk/schemaregistry/schema-registry-avro/README.md +++ b/sdk/schemaregistry/schema-registry-avro/README.md @@ -12,7 +12,7 @@ Schema Registry schema identifiers and Avro-encoded data. ## Getting started -- Node.js version 8.x.x or higher +- [LTS versions of Node.js](https://nodejs.org/about/releases/) ### Prerequisites diff --git a/sdk/schemaregistry/schema-registry/README.md b/sdk/schemaregistry/schema-registry/README.md index b36e71f28969..1570c35fe2b2 100644 --- a/sdk/schemaregistry/schema-registry/README.md +++ b/sdk/schemaregistry/schema-registry/README.md @@ -12,7 +12,7 @@ schema identifiers rather than full schemas. ## Getting started -- Node.js version 8.x.x or higher +- [LTS versions of Node.js](https://nodejs.org/about/releases/) ### Prerequisites diff --git a/sdk/search/search-documents/README.md b/sdk/search/search-documents/README.md index 6c3cd90e6e66..535bef75c2be 100644 --- a/sdk/search/search-documents/README.md +++ b/sdk/search/search-documents/README.md @@ -34,8 +34,17 @@ Use the @azure/search-documents client library to: npm install @azure/search-documents ``` +### Currently supported environments + +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. + ### Prerequisites -This package supports [Node.js](https://nodejs.org/) version 8.x.x or higher. You need an [Azure subscription][azure_sub] and a [search service][create_search_service_docs] to use this package. + +- An [Azure subscription](https://azure.microsoft.com/free/) +- A [Search service][create_search_service_docs] To create a new search service, you can use the [Azure portal][create_search_service_docs], [Azure PowerShell][create_search_service_ps], or the [Azure CLI][create_search_service_cli]. Here's an example using the Azure CLI to create a free instance for getting started: diff --git a/sdk/search/search-documents/samples/javascript/README.md b/sdk/search/search-documents/samples/javascript/README.md index 8759e21fb677..d8c9d48dd99e 100644 --- a/sdk/search/search-documents/samples/javascript/README.md +++ b/sdk/search/search-documents/samples/javascript/README.md @@ -52,7 +52,7 @@ These sample programs show how to use the JavaScript client libraries for Azure ## Prerequisites -The samples are compatible with Node.js >= 8.0.0. +The samples are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/). You need [an Azure subscription][freesub] and [an Azure Cognitive Search service][search_resource] to run these sample programs. Samples retrieve credentials to access the Azure Cognitive Search endpoint from environment variables. Alternatively, edit the source code to include the appropriate credentials. See each individual sample for details on which environment variables/credentials it requires to function. diff --git a/sdk/search/search-documents/samples/typescript/README.md b/sdk/search/search-documents/samples/typescript/README.md index 29b51f4b19e5..b8a34f4e53ee 100644 --- a/sdk/search/search-documents/samples/typescript/README.md +++ b/sdk/search/search-documents/samples/typescript/README.md @@ -52,7 +52,7 @@ These sample programs show how to use the TypeScript client libraries for Azure ## Prerequisites -The samples are compatible with Node.js >= 8.0.0. +The samples are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/). Before running the samples in Node, they must be compiled to JavaScript using the TypeScript compiler. For more information on TypeScript, see the [TypeScript documentation][typescript]. Install the TypeScript compiler using diff --git a/sdk/servicebus/service-bus/README.md b/sdk/servicebus/service-bus/README.md index 8f68bf1aae76..94e5bc16c362 100644 --- a/sdk/servicebus/service-bus/README.md +++ b/sdk/servicebus/service-bus/README.md @@ -27,11 +27,14 @@ Install the latest version for the Azure Service Bus client library using npm. `npm install @azure/service-bus` +### Currently supported environments + +- [LTS versions of Node.js](https://nodejs.org/about/releases/) + ### Prerequisites -You must have an [Azure subscription](https://azure.microsoft.com/free/) and a -[Service Bus Namespace](https://docs.microsoft.com/azure/service-bus-messaging/) to use this package. -If you are using this package in a Node.js application, then use Node.js 8.x or higher. +- An [Azure subscription](https://azure.microsoft.com/free/) +- A [Service Bus Namespace](https://docs.microsoft.com/azure/service-bus-messaging/) ### Configure Typescript diff --git a/sdk/storage/storage-blob-changefeed/README.md b/sdk/storage/storage-blob-changefeed/README.md index 25185386971b..08910937b2a1 100644 --- a/sdk/storage/storage-blob-changefeed/README.md +++ b/sdk/storage/storage-blob-changefeed/README.md @@ -19,7 +19,17 @@ Use the client libraries in this package to: ## Getting started -**Prerequisites**: You must have an [Azure subscription](https://azure.microsoft.com/free/) and a [Storage Account](https://docs.microsoft.com/azure/storage/blobs/storage-quickstart-blobs-portal) to use this package. If you are using this package in a Node.js application, then Node.js version 8.0.0 or higher is required. +### Currently supported environments + +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. + +### Prerequisites + +- An [Azure subscription](https://azure.microsoft.com/free/) +- A [Storage Account](https://docs.microsoft.com/azure/storage/blobs/storage-quickstart-blobs-portal) ### Install the package diff --git a/sdk/storage/storage-blob-changefeed/samples/javascript/README.md b/sdk/storage/storage-blob-changefeed/samples/javascript/README.md index 53e08c852bd9..6b91406f94ec 100644 --- a/sdk/storage/storage-blob-changefeed/samples/javascript/README.md +++ b/sdk/storage/storage-blob-changefeed/samples/javascript/README.md @@ -19,7 +19,7 @@ These sample programs show how to use the JavaScript client libraries for Azure ## Prerequisites -The sample are compatible with Node.js >= 8.0.0, except for the samples that use the async `for await` syntax, which require Node.js >= 10.0.0. +The samples are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/). You need [an Azure subscription][freesub] and [an Azure Storage account][azstorage] to run these sample programs. Samples retrieve credentials to access the storage account from environment variables. Alternatively, edit the source code to include the appropriate credentials. See each individual sample for details on which environment variables/credentials it requires to function. diff --git a/sdk/storage/storage-blob-changefeed/samples/typescript/README.md b/sdk/storage/storage-blob-changefeed/samples/typescript/README.md index 38d4e7e10b88..f9abbc33fc69 100644 --- a/sdk/storage/storage-blob-changefeed/samples/typescript/README.md +++ b/sdk/storage/storage-blob-changefeed/samples/typescript/README.md @@ -19,7 +19,7 @@ These sample programs show how to use the TypeScript client libraries for Azure ## Prerequisites -The samples are compatible with Node.js >= 8.0.0, except for the samples that use the async `for await` syntax, which require a Node.js >= 10.0.0. +The samples are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/). Before running the samples in Node, they must be compiled to JavaScript using the TypeScript compiler. For more information on TypeScript, see the [TypeScript documentation][typescript]. Install the TypeScript compiler using diff --git a/sdk/storage/storage-blob/README.md b/sdk/storage/storage-blob/README.md index b6fcf181208e..e239c8f958f0 100644 --- a/sdk/storage/storage-blob/README.md +++ b/sdk/storage/storage-blob/README.md @@ -21,7 +21,17 @@ Use the client libraries in this package to: ## Getting started -**Prerequisites**: You must have an [Azure subscription](https://azure.microsoft.com/free/) and a [Storage Account](https://docs.microsoft.com/azure/storage/blobs/storage-quickstart-blobs-portal) to use this package. If you are using this package in a Node.js application, then Node.js version 8.0.0 or higher is required. +### Currently supported environments + +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. + +### Prerequisites + +- An [Azure subscription](https://azure.microsoft.com/free/) +- A [Storage Account](https://docs.microsoft.com/azure/storage/blobs/storage-quickstart-blobs-portal) ### Install the package diff --git a/sdk/storage/storage-blob/samples/javascript/README.md b/sdk/storage/storage-blob/samples/javascript/README.md index 036cea636bfc..48a41ec17359 100644 --- a/sdk/storage/storage-blob/samples/javascript/README.md +++ b/sdk/storage/storage-blob/samples/javascript/README.md @@ -32,7 +32,7 @@ These sample programs show how to use the JavaScript client libraries for Azure ## Prerequisites -The sample are compatible with Node.js >= 8.0.0, except for the samples that use the async `for await` syntax, which require Node.js >= 10.0.0. +The samples are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/). You need [an Azure subscription][freesub] and [an Azure Storage account][azstorage] to run these sample programs. Samples retrieve credentials to access the storage account from environment variables. Alternatively, edit the source code to include the appropriate credentials. See each individual sample for details on which environment variables/credentials it requires to function. diff --git a/sdk/storage/storage-blob/samples/typescript/README.md b/sdk/storage/storage-blob/samples/typescript/README.md index d7f129ee2f7a..198b8a7d7b81 100644 --- a/sdk/storage/storage-blob/samples/typescript/README.md +++ b/sdk/storage/storage-blob/samples/typescript/README.md @@ -32,7 +32,7 @@ These sample programs show how to use the TypeScript client libraries for Azure ## Prerequisites -The samples are compatible with Node.js >= 8.0.0, except for the samples that use the async `for await` syntax, which require a Node.js >= 10.0.0. +The samples are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/). Before running the samples in Node, they must be compiled to JavaScript using the TypeScript compiler. For more information on TypeScript, see the [TypeScript documentation][typescript]. Install the TypeScript compiler using diff --git a/sdk/storage/storage-file-datalake/README.md b/sdk/storage/storage-file-datalake/README.md index b4e23c66022e..971999f593e8 100644 --- a/sdk/storage/storage-file-datalake/README.md +++ b/sdk/storage/storage-file-datalake/README.md @@ -18,7 +18,17 @@ Use the client libraries in this package to: ## Getting started -**Prerequisites**: You must have an [Azure subscription](https://azure.microsoft.com/free/) and a [Storage Account](https://docs.microsoft.com/azure/storage/blobs/data-lake-storage-quickstart-create-account?toc=%2Fazure%2Fstorage%2Fblobs%2Ftoc.json#create-an-account-using-the-azure-portal) to use this package. If you are using this package in a Node.js application, then Node.js version 8.0.0 or higher is required. +### Currently supported environments + +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. + +### Prerequisites + +- An [Azure subscription](https://azure.microsoft.com/free/) +- A [Storage Account](https://docs.microsoft.com/azure/storage/common/storage-account-create) ### Install the package diff --git a/sdk/storage/storage-file-datalake/samples/javascript/README.md b/sdk/storage/storage-file-datalake/samples/javascript/README.md index 585eadde4fbd..5f023f1a3e25 100644 --- a/sdk/storage/storage-file-datalake/samples/javascript/README.md +++ b/sdk/storage/storage-file-datalake/samples/javascript/README.md @@ -18,7 +18,7 @@ These sample programs show how to use the JavaScript client libraries for Azure ## Prerequisites -The sample are compatible with Node.js >= 8.0.0, except for the samples that use the async `for await` syntax, which require Node.js >= 10.0.0. +The samples are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/). You need [an Azure subscription][freesub] and [an Azure Storage account][azstorage] to run these sample programs. Samples retrieve credentials to access the storage account from environment variables. Alternatively, edit the source code to include the appropriate credentials. See each individual sample for details on which environment variables/credentials it requires to function. diff --git a/sdk/storage/storage-file-datalake/samples/typescript/README.md b/sdk/storage/storage-file-datalake/samples/typescript/README.md index 8eb1ab20cb09..05892a7c9c6f 100644 --- a/sdk/storage/storage-file-datalake/samples/typescript/README.md +++ b/sdk/storage/storage-file-datalake/samples/typescript/README.md @@ -18,7 +18,7 @@ These sample programs show how to use the TypeScript client libraries for Azure ## Prerequisites -The samples are compatible with Node.js >= 8.0.0, except for the samples that use the async `for await` syntax, which require a Node.js >= 10.0.0. +The samples are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/). Before running the samples in Node, they must be compiled to JavaScript using the TypeScript compiler. For more information on TypeScript, see the [TypeScript documentation][typescript]. Install the TypeScript compiler using diff --git a/sdk/storage/storage-file-share/README.md b/sdk/storage/storage-file-share/README.md index ffa8022732f8..8d66bef0291f 100644 --- a/sdk/storage/storage-file-share/README.md +++ b/sdk/storage/storage-file-share/README.md @@ -24,7 +24,17 @@ Use the client libraries in this package to: ## Getting started -**Prerequisites**: You must have an [Azure subscription](https://azure.microsoft.com/free/) and a [Storage Account](https://docs.microsoft.com/azure/storage/files/storage-how-to-use-files-portal) to use this package. If you are using this package in a Node.js application, then Node.js version 8.0.0 or higher is required. +### Currently supported environments + +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. + +### Prerequisites + +- An [Azure subscription](https://azure.microsoft.com/free/) +- A [Storage Account](https://docs.microsoft.com/azure/storage/common/storage-account-create) ### Install the package diff --git a/sdk/storage/storage-file-share/samples/javascript/README.md b/sdk/storage/storage-file-share/samples/javascript/README.md index 034ad71b44db..b9cda74db589 100644 --- a/sdk/storage/storage-file-share/samples/javascript/README.md +++ b/sdk/storage/storage-file-share/samples/javascript/README.md @@ -27,7 +27,7 @@ These sample programs show how to use the JavaScript client libraries for Azure ## Prerequisites -The sample are compatible with Node.js >= 8.0.0, except for the samples that use the async `for await` syntax, which require Node.js >= 10.0.0. +The samples are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/). You need [an Azure subscription][freesub] and [an Azure Storage account][azstorage] to run these sample programs. Samples retrieve credentials to access the storage account from environment variables. Alternatively, edit the source code to include the appropriate credentials. See each individual sample for details on which environment variables/credentials it requires to function. diff --git a/sdk/storage/storage-file-share/samples/typescript/README.md b/sdk/storage/storage-file-share/samples/typescript/README.md index 8f7f6cd1a89d..b433b23e41f0 100644 --- a/sdk/storage/storage-file-share/samples/typescript/README.md +++ b/sdk/storage/storage-file-share/samples/typescript/README.md @@ -27,7 +27,7 @@ These sample programs show how to use the TypeScript client libraries for Azure ## Prerequisites -The samples are compatible with Node.js >= 8.0.0, except for the samples that use the async `for await` syntax, which require a Node.js >= 10.0.0. +The samples are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/). Before running the samples in Node, they must be compiled to JavaScript using the TypeScript compiler. For more information on TypeScript, see the [TypeScript documentation][typescript]. Install the TypeScript compiler using diff --git a/sdk/storage/storage-queue/README.md b/sdk/storage/storage-queue/README.md index 1894ce456bba..9de24b3bca84 100644 --- a/sdk/storage/storage-queue/README.md +++ b/sdk/storage/storage-queue/README.md @@ -19,7 +19,17 @@ Use the client libraries in this package to: ## Getting started -**Prerequisites**: You must have an [Azure subscription](https://azure.microsoft.com/free/) and a [Storage Account](https://docs.microsoft.com/azure/storage/queues/storage-quickstart-queues-portal) to use this package. If you are using this package in a Node.js application, then Node.js version 8.0.0 or higher is required. +### Currently supported environments + +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. + +### Prerequisites + +- An [Azure subscription](https://azure.microsoft.com/free/) +- A [Storage Account](https://docs.microsoft.com/azure/storage/common/storage-account-create) ### Install the package diff --git a/sdk/storage/storage-queue/samples/javascript/README.md b/sdk/storage/storage-queue/samples/javascript/README.md index 7cd54404315b..dc29ef488406 100644 --- a/sdk/storage/storage-queue/samples/javascript/README.md +++ b/sdk/storage/storage-queue/samples/javascript/README.md @@ -25,7 +25,7 @@ These sample programs show how to use the JavaScript client libraries for Azure ## Prerequisites -The sample are compatible with Node.js >= 8.0.0, except for the samples that use the async `for await` syntax, which require Node.js >= 10.0.0. +The samples are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/). You need [an Azure subscription][freesub] and [an Azure Storage account][azstorage] to run these sample programs. Samples retrieve credentials to access the storage account from environment variables. Alternatively, edit the source code to include the appropriate credentials. See each individual sample for details on which environment variables/credentials it requires to function. diff --git a/sdk/storage/storage-queue/samples/typescript/README.md b/sdk/storage/storage-queue/samples/typescript/README.md index 9fa63fb33b32..19e91cabd683 100644 --- a/sdk/storage/storage-queue/samples/typescript/README.md +++ b/sdk/storage/storage-queue/samples/typescript/README.md @@ -25,7 +25,7 @@ These sample programs show how to use the TypeScript client libraries for Azure ## Prerequisites -The samples are compatible with Node.js >= 8.0.0, except for the samples that use the async `for await` syntax, which require a Node.js >= 10.0.0. +The samples are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/). Before running the samples in Node, they must be compiled to JavaScript using the TypeScript compiler. For more information on TypeScript, see the [TypeScript documentation][typescript]. Install the TypeScript compiler using diff --git a/sdk/synapse/synapse-access-control/README.md b/sdk/synapse/synapse-access-control/README.md index 340d4f9ec4e2..41717dbfb9f2 100644 --- a/sdk/synapse/synapse-access-control/README.md +++ b/sdk/synapse/synapse-access-control/README.md @@ -12,8 +12,10 @@ npm install @azure/synapse-access-control ### Currently supported environments -- Node.js version 8.x.x or higher -- Browser JavaScript +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ## Key concepts diff --git a/sdk/synapse/synapse-artifacts/README.md b/sdk/synapse/synapse-artifacts/README.md index bfd18efa8d1e..34dbd1f493d6 100644 --- a/sdk/synapse/synapse-artifacts/README.md +++ b/sdk/synapse/synapse-artifacts/README.md @@ -12,8 +12,10 @@ npm install @azure/synapse-artifacts ### Currently supported environments -- Node.js version 8.x.x or higher -- Browser JavaScript +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ## Key concepts diff --git a/sdk/synapse/synapse-managed-private-endpoints/README.md b/sdk/synapse/synapse-managed-private-endpoints/README.md index ed1907e29f01..ab29b21b0de2 100644 --- a/sdk/synapse/synapse-managed-private-endpoints/README.md +++ b/sdk/synapse/synapse-managed-private-endpoints/README.md @@ -12,8 +12,10 @@ npm install @azure/synapse-managed-private-endpoints ### Currently supported environments -- Node.js version 8.x.x or higher -- Browser JavaScript +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ## Key concepts diff --git a/sdk/synapse/synapse-monitoring/README.md b/sdk/synapse/synapse-monitoring/README.md index 4d4fa2785896..8a1b402b4637 100644 --- a/sdk/synapse/synapse-monitoring/README.md +++ b/sdk/synapse/synapse-monitoring/README.md @@ -12,8 +12,10 @@ npm install @azure/synapse-monitoring ### Currently supported environments -- Node.js version 8.x.x or higher -- Browser JavaScript +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ## Key concepts diff --git a/sdk/synapse/synapse-spark/README.md b/sdk/synapse/synapse-spark/README.md index 6c3ccf8fafb9..7c8a5f62ed7e 100644 --- a/sdk/synapse/synapse-spark/README.md +++ b/sdk/synapse/synapse-spark/README.md @@ -12,8 +12,10 @@ npm install @azure/synapse-spark ### Currently supported environments -- Node.js version 8.x.x or higher -- Browser JavaScript +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ## Key concepts diff --git a/sdk/template/template/README.md b/sdk/template/template/README.md index 1eac9887bbf8..751515cdeb5e 100644 --- a/sdk/template/template/README.md +++ b/sdk/template/template/README.md @@ -8,7 +8,10 @@ This project is used as a template package for the Azure SDK for JavaScript. It ### Currently supported environments -- Node.js version 8.x or higher +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ### Prerequisites diff --git a/sdk/textanalytics/ai-text-analytics/README.md b/sdk/textanalytics/ai-text-analytics/README.md index 88ae43f0f630..bf7f9ea7cc66 100644 --- a/sdk/textanalytics/ai-text-analytics/README.md +++ b/sdk/textanalytics/ai-text-analytics/README.md @@ -31,7 +31,10 @@ Use the client library to: ### Currently supported environments -- Node.js version 8.x.x or higher +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge, and Firefox. + +See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ### Prerequisites diff --git a/sdk/web-pubsub/web-pubsub-express/README.md b/sdk/web-pubsub/web-pubsub-express/README.md index cf662b4d67b7..7793acbbd36a 100644 --- a/sdk/web-pubsub/web-pubsub-express/README.md +++ b/sdk/web-pubsub/web-pubsub-express/README.md @@ -20,7 +20,7 @@ Use the express library to: ### Currently supported environments -- [Node.js](https://nodejs.org/) version 8.x.x or higher +- [LTS versions of Node.js](https://nodejs.org/about/releases/) - [Express](https://expressjs.com/) version 4.x.x or higher ### Prerequisites diff --git a/sdk/web-pubsub/web-pubsub/README.md b/sdk/web-pubsub/web-pubsub/README.md index 30b329111d07..4777f9e2ce21 100644 --- a/sdk/web-pubsub/web-pubsub/README.md +++ b/sdk/web-pubsub/web-pubsub/README.md @@ -35,7 +35,7 @@ Use the library to: ### Currently supported environments -- [Node.js](https://nodejs.org/) version 8.x.x or higher +- [LTS versions of Node.js](https://nodejs.org/about/releases/) ### Prerequisites From 1a5d100e5da36507c4d8ccaba9994b439ff9500d Mon Sep 17 00:00:00 2001 From: KarishmaGhiya Date: Fri, 25 Jun 2021 18:01:16 -0700 Subject: [PATCH 10/49] remove _response from response types (#16019) --- .../review/ai-metrics-advisor.api.md | 112 +----- .../src/metricsAdvisorAdministrationClient.ts | 79 ++-- .../src/metricsAdvisorClient.ts | 117 ++---- .../ai-metrics-advisor/src/models.ts | 352 +----------------- 4 files changed, 59 insertions(+), 601 deletions(-) diff --git a/sdk/metricsadvisor/ai-metrics-advisor/review/ai-metrics-advisor.api.md b/sdk/metricsadvisor/ai-metrics-advisor/review/ai-metrics-advisor.api.md index 7747aa7b95fc..0e7c07d847a3 100644 --- a/sdk/metricsadvisor/ai-metrics-advisor/review/ai-metrics-advisor.api.md +++ b/sdk/metricsadvisor/ai-metrics-advisor/review/ai-metrics-advisor.api.md @@ -4,7 +4,6 @@ ```ts -import * as coreHttp from '@azure/core-http'; import { OperationOptions } from '@azure/core-http'; import { PagedAsyncIterableIterator } from '@azure/core-paging'; import { PipelineOptions } from '@azure/core-http'; @@ -13,10 +12,6 @@ import { TokenCredential } from '@azure/core-auth'; // @public export interface AlertConfigurationsPageResponse extends Array { - _response: coreHttp.HttpResponse & { - bodyAsText: string; - parsedBody: any; - }; } // @public @@ -25,19 +20,11 @@ export type AlertQueryTimeMode = "AnomalyTime" | "CreatedTime" | "ModifiedTime"; // @public export interface AlertsPageResponse extends Array { continuationToken?: string; - _response: coreHttp.HttpResponse & { - bodyAsText: string; - parsedBody: any; - }; } // @public export interface AnomaliesPageResponse extends Array { continuationToken?: string; - _response: coreHttp.HttpResponse & { - bodyAsText: string; - parsedBody: any; - }; } // @public @@ -232,10 +219,6 @@ export interface CreateDataFeedOptions extends OperationOptions { // @public export interface CredentialsPageResponse extends Array { continuationToken?: string; - _response: coreHttp.HttpResponse & { - bodyAsText: string; - parsedBody: any; - }; } // @public @@ -344,10 +327,6 @@ export type DataFeedSourcePatch = Partial & { // @public export interface DataFeedsPageResponse extends Array { continuationToken?: string; - _response: coreHttp.HttpResponse & { - bodyAsText: string; - parsedBody: any; - }; } // @public @@ -504,10 +483,6 @@ export interface DetectionConditionsCommonPatch { // @public export interface DetectionConfigurationsPageResponse extends Array { - _response: coreHttp.HttpResponse & { - bodyAsText: string; - parsedBody: any; - }; } // @public @@ -516,10 +491,6 @@ export type DimensionKey = Record; // @public export interface DimensionValuesPageResponse extends Array { continuationToken?: string; - _response: coreHttp.HttpResponse & { - bodyAsText: string; - parsedBody: any; - }; } // @public @@ -553,71 +524,32 @@ export type FeedbackQueryTimeMode = "MetricTimestamp" | "FeedbackCreatedTime"; export type FeedbackType = "Anomaly" | "ChangePoint" | "Period" | "Comment"; // @public -export type GetAlertConfigResponse = AnomalyAlertConfiguration & { - _response: coreHttp.HttpResponse & { - bodyAsText: string; - parsedBody: any; - }; -}; +export type GetAlertConfigResponse = AnomalyAlertConfiguration; // @public -export type GetDataFeedResponse = MetricsAdvisorDataFeed & { - _response: coreHttp.HttpResponse & { - bodyAsText: string; - parsedBody: any; - }; -}; +export type GetDataFeedResponse = MetricsAdvisorDataFeed; // @public -export type GetDataSourceCredentialEntityResponse = DataSourceCredentialEntityUnion & { - _response: coreHttp.HttpResponse & { - bodyAsText: string; - parsedBody: any; - }; -}; +export type GetDataSourceCredentialEntityResponse = DataSourceCredentialEntityUnion; // @public -export type GetDetectionConfigResponse = AnomalyDetectionConfiguration & { - _response: coreHttp.HttpResponse & { - bodyAsText: string; - parsedBody: any; - }; -}; +export type GetDetectionConfigResponse = AnomalyDetectionConfiguration; // @public -export type GetFeedbackResponse = MetricFeedbackUnion & { - _response: coreHttp.HttpResponse & { - bodyAsText: string; - parsedBody: any; - }; -}; +export type GetFeedbackResponse = MetricFeedbackUnion; // @public -export type GetHookResponse = NotificationHookUnion & { - _response: coreHttp.HttpResponse & { - bodyAsText: string; - parsedBody: any; - }; -}; +export type GetHookResponse = NotificationHookUnion; // @public export type GetIncidentRootCauseResponse = { rootCauses: IncidentRootCause[]; - _response: coreHttp.HttpResponse & { - bodyAsText: string; - parsedBody: any; - }; }; // @public export type GetIngestionProgressResponse = { readonly latestSuccessTimestamp?: number; readonly latestActiveTimestamp?: number; -} & { - _response: coreHttp.HttpResponse & { - bodyAsText: string; - parsedBody: any; - }; }; // @public @@ -626,10 +558,6 @@ export interface GetMetricEnrichedSeriesDataOptions extends OperationOptions { // @public export interface GetMetricEnrichedSeriesDataResponse extends Array { - _response: coreHttp.HttpResponse & { - bodyAsText: string; - parsedBody: any; - }; } // @public @@ -639,10 +567,6 @@ export interface GetMetricSeriesDataOptions extends OperationOptions { // @public export interface GetMetricSeriesDataResponse extends Array { continuationToken?: string; - _response: coreHttp.HttpResponse & { - bodyAsText: string; - parsedBody: any; - }; } // @public @@ -664,10 +588,6 @@ export type HardThresholdConditionUnion = { // @public export interface HooksPageResponse extends Array { continuationToken?: string; - _response: coreHttp.HttpResponse & { - bodyAsText: string; - parsedBody: any; - }; } // @public @@ -681,10 +601,6 @@ export interface IncidentRootCause { // @public export interface IncidentsPageResponse extends Array { continuationToken?: string; - _response: coreHttp.HttpResponse & { - bodyAsText: string; - parsedBody: any; - }; } // @public @@ -708,10 +624,6 @@ export interface IngestionStatus { // @public export interface IngestionStatusPageResponse extends Array { continuationToken?: string; - _response: coreHttp.HttpResponse & { - bodyAsText: string; - parsedBody: any; - }; } // @public @@ -928,10 +840,6 @@ export interface MetricEnrichedSeriesData { // @public export interface MetricEnrichmentStatusPageResponse extends Array { continuationToken?: string; - _response: coreHttp.HttpResponse & { - bodyAsText: string; - parsedBody: any; - }; } // @public @@ -946,10 +854,6 @@ export interface MetricFeedbackCommon { // @public export interface MetricFeedbackPageResponse extends Array { continuationToken?: string; - _response: coreHttp.HttpResponse & { - bodyAsText: string; - parsedBody: any; - }; } // @public @@ -1082,10 +986,6 @@ export type MetricSeriesGroupDetectionCondition = DetectionConditionsCommon & { // @public export interface MetricSeriesPageResponse extends Array { continuationToken?: string; - _response: coreHttp.HttpResponse & { - bodyAsText: string; - parsedBody: any; - }; } // @public diff --git a/sdk/metricsadvisor/ai-metrics-advisor/src/metricsAdvisorAdministrationClient.ts b/sdk/metricsadvisor/ai-metrics-advisor/src/metricsAdvisorAdministrationClient.ts index fe7014943516..9d8af0b2ce72 100644 --- a/sdk/metricsadvisor/ai-metrics-advisor/src/metricsAdvisorAdministrationClient.ts +++ b/sdk/metricsadvisor/ai-metrics-advisor/src/metricsAdvisorAdministrationClient.ts @@ -308,7 +308,7 @@ export class MetricsAdvisorAdministrationClient { const requestOptions = operationOptionsToRequestOptionsBase(finalOptions); const result = await this.client.getDataFeedById(id, requestOptions); const resultDataFeed: MetricsAdvisorDataFeed = fromServiceDataFeedDetailUnion(result); - return { ...resultDataFeed, _response: result._response }; + return resultDataFeed; } catch (e) { span.setStatus({ code: SpanStatusCode.ERROR, @@ -429,10 +429,7 @@ export class MetricsAdvisorAdministrationClient { enumerable: true, value: segmentResponse.nextLink }); - yield Object.defineProperty(resultArray, "_response", { - enumerable: false, - value: segmentResponse._response - }); + yield resultArray; continuationToken = segmentResponse.nextLink; } @@ -452,10 +449,7 @@ export class MetricsAdvisorAdministrationClient { enumerable: true, value: segmentResponse.nextLink }); - yield Object.defineProperty(resultArray, "_response", { - enumerable: false, - value: segmentResponse._response - }); + yield resultArray; continuationToken = segmentResponse.nextLink; } @@ -513,7 +507,7 @@ export class MetricsAdvisorAdministrationClient { }; const result = await this.client.updateDataFeed(dataFeedId, patchBody, requestOptions); const resultDataFeed: MetricsAdvisorDataFeed = fromServiceDataFeedDetailUnion(result); - return { ...resultDataFeed, _response: result._response }; + return resultDataFeed; } catch (e) { span.setStatus({ code: SpanStatusCode.ERROR, @@ -607,10 +601,7 @@ export class MetricsAdvisorAdministrationClient { try { const requestOptions = operationOptionsToRequestOptionsBase(finalOptions); const result = await this.client.getAnomalyDetectionConfiguration(id, requestOptions); - return { - ...fromServiceAnomalyDetectionConfiguration(result), - _response: result._response - }; + return fromServiceAnomalyDetectionConfiguration(result); } catch (e) { span.setStatus({ code: SpanStatusCode.ERROR, @@ -647,10 +638,7 @@ export class MetricsAdvisorAdministrationClient { transformed, requestOptions ); - return { - ...fromServiceAnomalyDetectionConfiguration(result), - _response: result._response - }; + return fromServiceAnomalyDetectionConfiguration(result); } catch (e) { span.setStatus({ code: SpanStatusCode.ERROR, @@ -752,7 +740,7 @@ export class MetricsAdvisorAdministrationClient { transformed, requestOptions ); - return { ...fromServiceAlertConfiguration(result), _response: result._response }; + return fromServiceAlertConfiguration(result); } catch (e) { span.setStatus({ code: SpanStatusCode.ERROR, @@ -782,7 +770,7 @@ export class MetricsAdvisorAdministrationClient { try { const requestOptions = operationOptionsToRequestOptionsBase(finalOptions); const result = await this.client.getAnomalyAlertingConfiguration(id, requestOptions); - return { ...fromServiceAlertConfiguration(result), _response: result._response }; + return fromServiceAlertConfiguration(result); } catch (e) { span.setStatus({ code: SpanStatusCode.ERROR, @@ -834,10 +822,7 @@ export class MetricsAdvisorAdministrationClient { ); const alertConfigurations = segment.value?.map((c) => fromServiceAlertConfiguration(c)) ?? []; - yield Object.defineProperty(alertConfigurations, "_response", { - enumerable: false, - value: segment._response - }); + yield alertConfigurations; } private async *listItemsOfAlertingConfigurations( @@ -1001,7 +986,7 @@ export class MetricsAdvisorAdministrationClient { const resultHookResponse: NotificationHookUnion = fromServiceHookInfoUnion( result._response.parsedBody ); - return { ...resultHookResponse, _response: result._response }; + return resultHookResponse; } catch (e) { span.setStatus({ code: SpanStatusCode.ERROR, @@ -1029,10 +1014,7 @@ export class MetricsAdvisorAdministrationClient { enumerable: true, value: segmentResponse.nextLink }); - yield Object.defineProperty(resultArray, "_response", { - enumerable: false, - value: segmentResponse._response - }); + yield resultArray; continuationToken = segmentResponse.nextLink; } @@ -1045,10 +1027,7 @@ export class MetricsAdvisorAdministrationClient { enumerable: true, value: segmentResponse.nextLink }); - yield Object.defineProperty(resultArray, "_response", { - enumerable: false, - value: segmentResponse._response - }); + yield resultArray; continuationToken = segmentResponse.nextLink; } } @@ -1158,7 +1137,7 @@ export class MetricsAdvisorAdministrationClient { const resultHookResponse: NotificationHookUnion = fromServiceHookInfoUnion( result._response.parsedBody ); - return { ...resultHookResponse, _response: result._response }; + return resultHookResponse; } catch (e) { span.setStatus({ code: SpanStatusCode.ERROR, @@ -1202,10 +1181,7 @@ export class MetricsAdvisorAdministrationClient { // Service doesn't support server-side paging now const segment = await this.client.getAnomalyDetectionConfigurationsByMetric(metricId, options); const configs = segment.value?.map((c) => fromServiceAnomalyDetectionConfiguration(c)) ?? []; - const resultArray = Object.defineProperty(configs, "_response", { - enumerable: false, - value: segment._response - }); + const resultArray = configs; yield resultArray; } @@ -1329,8 +1305,7 @@ export class MetricsAdvisorAdministrationClient { const response = await this.client.getIngestionProgress(dataFeedId, requestOptions); return { latestActiveTimestamp: response.latestActiveTimestamp?.getTime(), - latestSuccessTimestamp: response.latestSuccessTimestamp?.getTime(), - _response: response._response + latestSuccessTimestamp: response.latestSuccessTimestamp?.getTime() }; } catch (e) { span.setStatus({ @@ -1377,10 +1352,7 @@ export class MetricsAdvisorAdministrationClient { value: segmentResponse.nextLink } ); - yield Object.defineProperty(resultArray, "_response", { - enumerable: false, - value: segmentResponse._response - }); + yield resultArray; continuationToken = segmentResponse.nextLink; } @@ -1411,10 +1383,7 @@ export class MetricsAdvisorAdministrationClient { value: segmentResponse.nextLink } ); - yield Object.defineProperty(resultArray, "_response", { - enumerable: false, - value: segmentResponse._response - }); + yield resultArray; continuationToken = segmentResponse.nextLink; } @@ -1630,7 +1599,7 @@ export class MetricsAdvisorAdministrationClient { const requestOptions = operationOptionsToRequestOptionsBase(finalOptions); const result = await this.client.getCredential(id, requestOptions); const resultCred = fromServiceCredential(result); - return { ...resultCred, _response: result._response }; + return resultCred; } catch (e) { span.setStatus({ code: SpanStatusCode.ERROR, @@ -1745,10 +1714,7 @@ export class MetricsAdvisorAdministrationClient { enumerable: true, value: segmentResponse.nextLink }); - yield Object.defineProperty(resultArray, "_response", { - enumerable: false, - value: segmentResponse._response - }); + yield resultArray; continuationToken = segmentResponse.nextLink; } @@ -1767,10 +1733,7 @@ export class MetricsAdvisorAdministrationClient { enumerable: true, value: segmentResponse.nextLink }); - yield Object.defineProperty(resultArray, "_response", { - enumerable: false, - value: segmentResponse._response - }); + yield resultArray; continuationToken = segmentResponse.nextLink; } @@ -1798,7 +1761,7 @@ export class MetricsAdvisorAdministrationClient { requestOptions ); const resultCred = fromServiceCredential(result); - return { ...resultCred, _response: result._response }; + return resultCred; } catch (e) { span.setStatus({ code: SpanStatusCode.ERROR, diff --git a/sdk/metricsadvisor/ai-metrics-advisor/src/metricsAdvisorClient.ts b/sdk/metricsadvisor/ai-metrics-advisor/src/metricsAdvisorClient.ts index 1e038aae8b55..beecd45eb6fc 100644 --- a/sdk/metricsadvisor/ai-metrics-advisor/src/metricsAdvisorClient.ts +++ b/sdk/metricsadvisor/ai-metrics-advisor/src/metricsAdvisorClient.ts @@ -257,10 +257,7 @@ export class MetricsAdvisorClient { enumerable: true, value: segmentResponse.nextLink }); - yield Object.defineProperty(resultArray, "_response", { - enumerable: false, - value: segmentResponse._response - }); + yield resultArray; continuationToken = segmentResponse.nextLink; } @@ -285,10 +282,7 @@ export class MetricsAdvisorClient { enumerable: true, value: segmentResponse.nextLink }); - yield Object.defineProperty(resultArray, "_response", { - enumerable: false, - value: segmentResponse._response - }); + yield resultArray; continuationToken = segmentResponse.nextLink; } } @@ -454,10 +448,7 @@ export class MetricsAdvisorClient { enumerable: true, value: segmentResponse.nextLink }); - yield Object.defineProperty(resultArray, "_response", { - enumerable: false, - value: segmentResponse._response - }); + yield resultArray; continuationToken = segmentResponse.nextLink; } @@ -489,10 +480,7 @@ export class MetricsAdvisorClient { enumerable: true, value: segmentResponse.nextLink }); - yield Object.defineProperty(resultArray, "_response", { - enumerable: false, - value: segmentResponse._response - }); + yield resultArray; continuationToken = segmentResponse.nextLink; } } @@ -637,10 +625,7 @@ export class MetricsAdvisorClient { enumerable: true, value: segmentResponse.nextLink }); - yield Object.defineProperty(resultArray, "_response", { - enumerable: false, - value: segmentResponse._response - }); + yield resultArray; continuationToken = segmentResponse.nextLink; } @@ -672,10 +657,7 @@ export class MetricsAdvisorClient { enumerable: true, value: segmentResponse.nextLink }); - yield Object.defineProperty(resultArray, "_response", { - enumerable: false, - value: segmentResponse._response - }); + yield resultArray; continuationToken = segmentResponse.nextLink; } @@ -825,10 +807,7 @@ export class MetricsAdvisorClient { }; }); - return Object.defineProperty(results, "_response", { - enumerable: false, - value: result._response - }); + return results; } /** @@ -881,10 +860,7 @@ export class MetricsAdvisorClient { enumerable: true, value: segmentResponse.nextLink }); - yield Object.defineProperty(resultArray, "_response", { - enumerable: false, - value: segmentResponse._response - }); + yield resultArray; continuationToken = segmentResponse.nextLink; } @@ -913,10 +889,7 @@ export class MetricsAdvisorClient { enumerable: true, value: segmentResponse.nextLink }); - yield Object.defineProperty(resultArray, "_response", { - enumerable: false, - value: segmentResponse._response - }); + yield resultArray; } } @@ -1070,10 +1043,7 @@ export class MetricsAdvisorClient { enumerable: true, value: segmentResponse.nextLink }); - yield Object.defineProperty(resultArray, "_response", { - enumerable: false, - value: segmentResponse._response - }); + yield resultArray; continuationToken = segmentResponse.nextLink; } @@ -1090,10 +1060,7 @@ export class MetricsAdvisorClient { enumerable: true, value: segmentResponse.nextLink }); - yield Object.defineProperty(resultArray, "_response", { - enumerable: false, - value: segmentResponse._response - }); + yield resultArray; continuationToken = segmentResponse.nextLink; } @@ -1268,10 +1235,7 @@ export class MetricsAdvisorClient { enumerable: true, value: segmentResponse.nextLink }); - yield Object.defineProperty(resultArray, "_response", { - enumerable: false, - value: segmentResponse._response - }); + yield resultArray; continuationToken = segmentResponse.nextLink; } @@ -1302,10 +1266,7 @@ export class MetricsAdvisorClient { enumerable: true, value: segmentResponse.nextLink }); - yield Object.defineProperty(resultArray, "_response", { - enumerable: false, - value: segmentResponse._response - }); + yield resultArray; continuationToken = segmentResponse.nextLink; } @@ -1461,8 +1422,7 @@ export class MetricsAdvisorClient { }; }); return { - rootCauses: transformed, - _response: result._response + rootCauses: transformed }; } catch (e) { span.setStatus({ @@ -1529,10 +1489,7 @@ export class MetricsAdvisorClient { try { const requestOptions = operationOptionsToRequestOptionsBase(finalOptions); const result = await this.client.getMetricFeedback(id, requestOptions); - return { - ...fromServiceMetricFeedbackUnion(result), - _response: result._response - }; + return fromServiceMetricFeedbackUnion(result); } catch (e) { span.setStatus({ code: SpanStatusCode.ERROR, @@ -1581,10 +1538,7 @@ export class MetricsAdvisorClient { enumerable: true, value: segmentResponse.nextLink }); - yield Object.defineProperty(resultArray, "_response", { - enumerable: false, - value: segmentResponse._response - }); + yield resultArray; continuationToken = segmentResponse.nextLink; } @@ -1602,10 +1556,7 @@ export class MetricsAdvisorClient { enumerable: true, value: segmentResponse.nextLink }); - yield Object.defineProperty(resultArray, "_response", { - enumerable: false, - value: segmentResponse._response - }); + yield resultArray; continuationToken = segmentResponse.nextLink; } @@ -1740,10 +1691,6 @@ export class MetricsAdvisorClient { values: s.valueList }; }) || []; - Object.defineProperty(resultArray, "_response", { - enumerable: false, - value: result._response - }); return resultArray as GetMetricSeriesDataResponse; } @@ -1775,10 +1722,7 @@ export class MetricsAdvisorClient { enumerable: true, value: segmentResponse.nextLink }); - yield Object.defineProperty(resultArray, "_response", { - enumerable: false, - value: segmentResponse._response - }); + yield resultArray; continuationToken = segmentResponse.nextLink; } @@ -1801,10 +1745,7 @@ export class MetricsAdvisorClient { enumerable: true, value: segmentResponse.nextLink }); - yield Object.defineProperty(resultArray, "_response", { - enumerable: false, - value: segmentResponse._response - }); + yield resultArray; continuationToken = segmentResponse.nextLink; } @@ -1937,10 +1878,7 @@ export class MetricsAdvisorClient { enumerable: true, value: segmentResponse.nextLink }); - yield Object.defineProperty(resultArray, "_response", { - enumerable: false, - value: segmentResponse._response - }); + yield resultArray; continuationToken = segmentResponse.nextLink; } @@ -1957,10 +1895,7 @@ export class MetricsAdvisorClient { enumerable: true, value: segmentResponse.nextLink }); - yield Object.defineProperty(resultArray, "_response", { - enumerable: false, - value: segmentResponse._response - }); + yield resultArray; continuationToken = segmentResponse.nextLink; } @@ -2100,10 +2035,7 @@ export class MetricsAdvisorClient { value: segmentResponse.nextLink } ); - yield Object.defineProperty(resultArray, "_response", { - enumerable: false, - value: segmentResponse._response - }); + yield resultArray; continuationToken = segmentResponse.nextLink; } @@ -2129,10 +2061,7 @@ export class MetricsAdvisorClient { value: segmentResponse.nextLink } ); - yield Object.defineProperty(resultArray, "_response", { - enumerable: false, - value: segmentResponse._response - }); + yield resultArray; continuationToken = segmentResponse.nextLink; } diff --git a/sdk/metricsadvisor/ai-metrics-advisor/src/models.ts b/sdk/metricsadvisor/ai-metrics-advisor/src/models.ts index 354ce2b6679b..78fcda2c5ef8 100644 --- a/sdk/metricsadvisor/ai-metrics-advisor/src/models.ts +++ b/sdk/metricsadvisor/ai-metrics-advisor/src/models.ts @@ -1,8 +1,6 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import * as coreHttp from "@azure/core-http"; - import { SuppressCondition, SmartDetectionCondition, @@ -1664,163 +1662,44 @@ export interface MetricEnrichedSeriesData { /** * Contains response data for the getDataFeed operation. */ -export type GetDataFeedResponse = MetricsAdvisorDataFeed & { - /** - * The underlying HTTP response. - */ - _response: coreHttp.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: any; - }; -}; +export type GetDataFeedResponse = MetricsAdvisorDataFeed; /** * Contains response data for the getAnomalyDetectionConfiguration operation. */ -export type GetDetectionConfigResponse = AnomalyDetectionConfiguration & { - /** - * The underlying HTTP response. - */ - _response: coreHttp.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: any; - }; -}; +export type GetDetectionConfigResponse = AnomalyDetectionConfiguration; /** * Contains response data for the getAnomalyAlertConfiguration operation. */ -export type GetAlertConfigResponse = AnomalyAlertConfiguration & { - /** - * The underlying HTTP response. - */ - _response: coreHttp.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: any; - }; -}; +export type GetAlertConfigResponse = AnomalyAlertConfiguration; /** * Contains response data for the getHook operation. */ -export type GetHookResponse = NotificationHookUnion & { - /** - * The underlying HTTP response. - */ - _response: coreHttp.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: any; - }; -}; +export type GetHookResponse = NotificationHookUnion; /** * Contains response data for the getCredentialEntity operation. */ -export type GetDataSourceCredentialEntityResponse = DataSourceCredentialEntityUnion & { - /** - * The underlying HTTP response. - */ - _response: coreHttp.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: any; - }; -}; +export type GetDataSourceCredentialEntityResponse = DataSourceCredentialEntityUnion; /** * Contains response data for the getMetricEnrichedSeriesData operation. */ -export interface GetMetricEnrichedSeriesDataResponse extends Array { - /** - * The underlying HTTP response. - */ - _response: coreHttp.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: any; - }; -} +export interface GetMetricEnrichedSeriesDataResponse extends Array {} /** * Contains response data for the getIncidentRootCause operation. */ export type GetIncidentRootCauseResponse = { rootCauses: IncidentRootCause[]; - /** - * The underlying HTTP response. - */ - _response: coreHttp.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: any; - }; }; /** * Contains response data for the getFeedback operation. */ -export type GetFeedbackResponse = MetricFeedbackUnion & { - /** - * The underlying HTTP response. - */ - _response: coreHttp.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: any; - }; -}; +export type GetFeedbackResponse = MetricFeedbackUnion; /** * Contains response data for the listAlertsForAlertConfiguration operation. @@ -1830,20 +1709,6 @@ export interface AlertsPageResponse extends Array { * Continuation token to pass to `byPage()` to resume listing of more results if available. */ continuationToken?: string; - /** - * The underlying HTTP response. - */ - _response: coreHttp.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: any; - }; } /** @@ -1854,20 +1719,6 @@ export interface AnomaliesPageResponse extends Array { * Continuation token to pass to `byPage()` to resume listing of more results if available. */ continuationToken?: string; - /** - * The underlying HTTP response. - */ - _response: coreHttp.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: any; - }; } /** @@ -1878,20 +1729,6 @@ export interface DimensionValuesPageResponse extends Array { * Continuation token to pass to `byPage()` to resume listing of more results if available. */ continuationToken?: string; - /** - * The underlying HTTP response. - */ - _response: coreHttp.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: any; - }; } /** @@ -1902,20 +1739,6 @@ export interface IncidentsPageResponse extends Array { * Continuation token to pass to `byPage()` to resume listing of more results if available. */ continuationToken?: string; - /** - * The underlying HTTP response. - */ - _response: coreHttp.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: any; - }; } /** @@ -1926,20 +1749,6 @@ export interface MetricSeriesPageResponse extends Array * Continuation token to pass to `byPage()` to resume listing of more results if available. */ continuationToken?: string; - /** - * The underlying HTTP response. - */ - _response: coreHttp.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: any; - }; } /** @@ -1968,20 +1777,6 @@ export interface MetricEnrichmentStatusPageResponse extends Array { * Continuation token to pass to `byPage()` to resume listing of more results if available. */ continuationToken?: string; - /** - * The underlying HTTP response. - */ - _response: coreHttp.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: any; - }; } /** @@ -2016,20 +1797,6 @@ export interface GetMetricSeriesDataResponse extends Array { * Continuation token to pass to `byPage()` to resume listing of more results if available. */ continuationToken?: string; - /** - * The underlying HTTP response. - */ - _response: coreHttp.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: any; - }; } export interface IngestionStatus { @@ -2054,20 +1821,6 @@ export interface IngestionStatusPageResponse extends Array { * Continuation token to pass to `byPage()` to resume listing of more results if available. */ continuationToken?: string; - /** - * The underlying HTTP response. - */ - _response: coreHttp.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: any; - }; } /** @@ -2078,60 +1831,16 @@ export interface MetricFeedbackPageResponse extends Array { * Continuation token to pass to `byPage()` to resume listing of more results if available. */ continuationToken?: string; - /** - * The underlying HTTP response. - */ - _response: coreHttp.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: any; - }; } /** * Contains response data for the listAlertConfigs operation. */ -export interface AlertConfigurationsPageResponse extends Array { - /** - * The underlying HTTP response. - */ - _response: coreHttp.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: any; - }; -} +export interface AlertConfigurationsPageResponse extends Array {} /** * Contains response data for the listAnomalyDetectionConfigurations operation. */ -export interface DetectionConfigurationsPageResponse extends Array { - /** - * The underlying HTTP response. - */ - _response: coreHttp.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: any; - }; -} +export interface DetectionConfigurationsPageResponse extends Array {} /** * Contains response data for the listHooks operation. @@ -2141,20 +1850,6 @@ export interface HooksPageResponse extends Array { * Continuation token to pass to `byPage()` to resume listing of more results if available. */ continuationToken?: string; - /** - * The underlying HTTP response. - */ - _response: coreHttp.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: any; - }; } /** @@ -2171,21 +1866,6 @@ export type GetIngestionProgressResponse = { * null indicates not available */ readonly latestActiveTimestamp?: number; -} & { - /** - * The underlying HTTP response. - */ - _response: coreHttp.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: any; - }; }; /** @@ -2353,18 +2033,4 @@ export interface CredentialsPageResponse extends Array Date: Fri, 25 Jun 2021 22:39:55 -0700 Subject: [PATCH 11/49] Automatic rush update recheck (#16022) --- common/config/rush/pnpm-lock.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index 3df7abcb75b5..91a96cc1dab9 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -10583,6 +10583,9 @@ packages: '@types/node': 8.10.66 '@types/uuid': 8.3.0 dotenv: 8.6.0 + eslint: 7.29.0 + prettier: 1.19.1 + rimraf: 3.0.2 ts-node: 9.1.1_typescript@4.2.4 tslib: 2.3.0 typescript: 4.2.4 @@ -10590,7 +10593,7 @@ packages: dev: false name: '@rush-temp/perf-app-configuration' resolution: - integrity: sha512-i2b4+TTev+rOwl+F2AqZoAyVcrP7/qP4IkOI9KeSEWSjbizV7wKmvzpENQylboaW5EJoe7XqxGIUDLxuDxWVWQ== + integrity: sha512-O15mVhuC7Jxq1ChINDVhi4J0NaKC8SP9tYLCgh9vMraFdvP0S9r6KyxgEPsirXUwQ6HADWU2vZ7ue+DygnyINA== tarball: file:projects/perf-app-configuration.tgz version: 0.0.0 file:projects/perf-core-rest-pipeline.tgz: From ff90eba4b19bafe137171ad2b628095db8cde6d4 Mon Sep 17 00:00:00 2001 From: Ramya Rao Date: Mon, 28 Jun 2021 09:39:22 -0700 Subject: [PATCH 12/49] Prepare Storage packages to move to @types/node v12 (#16020) * Use BufferEncoding as encoding is not a string in Node.js 12 * Fix typing issue for fsStat returning unknown --- sdk/storage/storage-blob/src/utils/utils.node.ts | 6 +++--- sdk/storage/storage-common/src/BufferScheduler.ts | 4 ++-- .../storage-file-datalake/src/utils/BufferScheduler.ts | 4 ++-- sdk/storage/storage-file-datalake/src/utils/utils.node.ts | 7 +++---- .../storage-file-share/src/utils/BufferScheduler.ts | 4 ++-- sdk/storage/storage-file-share/src/utils/utils.node.ts | 2 +- 6 files changed, 13 insertions(+), 14 deletions(-) diff --git a/sdk/storage/storage-blob/src/utils/utils.node.ts b/sdk/storage/storage-blob/src/utils/utils.node.ts index 98f2b3a78c61..2ca67292ab65 100644 --- a/sdk/storage/storage-blob/src/utils/utils.node.ts +++ b/sdk/storage/storage-blob/src/utils/utils.node.ts @@ -18,7 +18,7 @@ export async function streamToBuffer( buffer: Buffer, offset: number, end: number, - encoding?: string + encoding?: BufferEncoding ): Promise { let pos = 0; // Position in stream const count = end - offset; // Total amount of data needed in stream @@ -72,7 +72,7 @@ export async function streamToBuffer( export async function streamToBuffer2( stream: NodeJS.ReadableStream, buffer: Buffer, - encoding?: string + encoding?: BufferEncoding ): Promise { let pos = 0; // Position in stream const bufferSize = buffer.length; @@ -113,7 +113,7 @@ export async function streamToBuffer2( */ export async function streamToBuffer3( readableStream: NodeJS.ReadableStream, - encoding?: string + encoding?: BufferEncoding ): Promise { return new Promise((resolve, reject) => { const chunks: Buffer[] = []; diff --git a/sdk/storage/storage-common/src/BufferScheduler.ts b/sdk/storage/storage-common/src/BufferScheduler.ts index 6435aba9059e..b6554a8a7772 100644 --- a/sdk/storage/storage-common/src/BufferScheduler.ts +++ b/sdk/storage/storage-common/src/BufferScheduler.ts @@ -92,7 +92,7 @@ export class BufferScheduler { /** * Encoding of the input Readable stream which has string data type instead of Buffer. */ - private encoding?: string; + private encoding?: BufferEncoding; /** * How many buffers have been allocated. @@ -141,7 +141,7 @@ export class BufferScheduler { maxBuffers: number, outgoingHandler: OutgoingHandler, concurrency: number, - encoding?: string + encoding?: BufferEncoding ) { if (bufferSize <= 0) { throw new RangeError(`bufferSize must be larger than 0, current is ${bufferSize}`); diff --git a/sdk/storage/storage-file-datalake/src/utils/BufferScheduler.ts b/sdk/storage/storage-file-datalake/src/utils/BufferScheduler.ts index c3a03a6c80a0..0280098cfb66 100644 --- a/sdk/storage/storage-file-datalake/src/utils/BufferScheduler.ts +++ b/sdk/storage/storage-file-datalake/src/utils/BufferScheduler.ts @@ -87,7 +87,7 @@ export class BufferScheduler { /** * Encoding of the input Readable stream which has string data type instead of Buffer. */ - private encoding?: string; + private encoding?: BufferEncoding; /** * How many buffers have been allocated. @@ -136,7 +136,7 @@ export class BufferScheduler { maxBuffers: number, outgoingHandler: OutgoingHandler, concurrency: number, - encoding?: string + encoding?: BufferEncoding ) { if (bufferSize <= 0) { throw new RangeError(`bufferSize must be larger than 0, current is ${bufferSize}`); diff --git a/sdk/storage/storage-file-datalake/src/utils/utils.node.ts b/sdk/storage/storage-file-datalake/src/utils/utils.node.ts index 7b56941c75bb..931104e82a74 100644 --- a/sdk/storage/storage-file-datalake/src/utils/utils.node.ts +++ b/sdk/storage/storage-file-datalake/src/utils/utils.node.ts @@ -3,7 +3,6 @@ import * as fs from "fs"; import * as util from "util"; -import { isNode } from "@azure/core-http"; /** * Reads a readable stream into buffer. Fill the buffer from offset to end. @@ -19,7 +18,7 @@ export async function streamToBuffer( buffer: Buffer, offset: number, end: number, - encoding?: string + encoding?: BufferEncoding ): Promise { let pos = 0; // Position in stream const count = end - offset; // Total amount of data needed in stream @@ -73,7 +72,7 @@ export async function streamToBuffer( export async function streamToBuffer2( stream: NodeJS.ReadableStream, buffer: Buffer, - encoding?: string + encoding?: BufferEncoding ): Promise { let pos = 0; // Position in stream const bufferSize = buffer.length; @@ -110,6 +109,6 @@ export async function streamToBuffer2( * * Promisified version of fs.stat(). */ -export const fsStat = util.promisify(isNode ? fs.stat : function stat() {}); +export const fsStat = util.promisify(fs.stat); export const fsCreateReadStream = fs.createReadStream; diff --git a/sdk/storage/storage-file-share/src/utils/BufferScheduler.ts b/sdk/storage/storage-file-share/src/utils/BufferScheduler.ts index f5131d0dfb33..56988ccb5fd9 100644 --- a/sdk/storage/storage-file-share/src/utils/BufferScheduler.ts +++ b/sdk/storage/storage-file-share/src/utils/BufferScheduler.ts @@ -87,7 +87,7 @@ export class BufferScheduler { /** * Encoding of the input Readable stream which has string data type instead of Buffer. */ - private encoding?: string; + private encoding?: BufferEncoding; /** * How many buffers have been allocated. @@ -136,7 +136,7 @@ export class BufferScheduler { maxBuffers: number, outgoingHandler: OutgoingHandler, concurrency: number, - encoding?: string + encoding?: BufferEncoding ) { if (bufferSize <= 0) { throw new RangeError(`bufferSize must be larger than 0, current is ${bufferSize}`); diff --git a/sdk/storage/storage-file-share/src/utils/utils.node.ts b/sdk/storage/storage-file-share/src/utils/utils.node.ts index b773afe82221..547cca0fbcc4 100644 --- a/sdk/storage/storage-file-share/src/utils/utils.node.ts +++ b/sdk/storage/storage-file-share/src/utils/utils.node.ts @@ -18,7 +18,7 @@ export async function streamToBuffer( buffer: Buffer, offset: number, end: number, - encoding?: string + encoding?: BufferEncoding ): Promise { let pos = 0; // Position in stream const count = end - offset; // Total amount of data needed in stream From 23de687fd5de387a64abd8446da8ae8cd93a3f5a Mon Sep 17 00:00:00 2001 From: Ramya Rao Date: Mon, 28 Jun 2021 09:39:57 -0700 Subject: [PATCH 13/49] Update KV readmes with support policy (#16013) --- samples/cors/ts/README.md | 2 +- samples/frameworks/electron/ts/README.md | 2 +- sdk/keyvault/keyvault-admin/README.md | 9 ++++++--- sdk/keyvault/keyvault-certificates/README.md | 15 +++++++++------ sdk/keyvault/keyvault-keys/README.md | 9 ++++++--- sdk/keyvault/keyvault-secrets/README.md | 2 +- 6 files changed, 24 insertions(+), 15 deletions(-) diff --git a/samples/cors/ts/README.md b/samples/cors/ts/README.md index 901bd7c038f6..7b01e47a8f8f 100644 --- a/samples/cors/ts/README.md +++ b/samples/cors/ts/README.md @@ -37,7 +37,7 @@ This sample demonstrates a few alternatives to integrating with Azure Key Vault ## Prerequisites -The sample is compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/) +The sample is compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/). Before running the samples in Node, they must be compiled to JavaScript using the TypeScript compiler. For more information on TypeScript, see the [TypeScript documentation][typescript]. diff --git a/samples/frameworks/electron/ts/README.md b/samples/frameworks/electron/ts/README.md index 66ec3b7c8d9e..6699219a05be 100644 --- a/samples/frameworks/electron/ts/README.md +++ b/samples/frameworks/electron/ts/README.md @@ -9,7 +9,7 @@ In this sample, we build a simple [Electron][electron] application and integrati ## Prerequisites -The samples are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/) +The samples are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/). Before running the samples in Node, they must be compiled to JavaScript using the TypeScript compiler. For more information on TypeScript, see the [TypeScript documentation][typescript]. diff --git a/sdk/keyvault/keyvault-admin/README.md b/sdk/keyvault/keyvault-admin/README.md index bf2b8d461582..2d20671354f1 100644 --- a/sdk/keyvault/keyvault-admin/README.md +++ b/sdk/keyvault/keyvault-admin/README.md @@ -20,11 +20,14 @@ Install the Azure Key Vault administration client library for JavaScript and Typ npm install @azure/keyvault-admin ``` +### Currently supported environments + +- [LTS versions of Node.js](https://nodejs.org/about/releases/) + ### Prerequisites -- An [Azure subscription][azure-sub]. -- An existing Azure Key Vault Managed HSM. If you need to create an Azure Key Vault, you can use the [Azure CLI][azure-cli]. -- Use [Node.js](https://nodejs.org/) 10.x or higher. +- An [Azure subscription](https://azure.microsoft.com/free/) +- A [Key Vault resource](https://docs.microsoft.com/azure/key-vault/quick-create-portal) #### Getting Azure credentials diff --git a/sdk/keyvault/keyvault-certificates/README.md b/sdk/keyvault/keyvault-certificates/README.md index 8ddd5d6dcdc0..7c261fdc44bc 100644 --- a/sdk/keyvault/keyvault-certificates/README.md +++ b/sdk/keyvault/keyvault-certificates/README.md @@ -20,18 +20,21 @@ Use the client library for Azure Key Vault Certificates in your Node.js applicat ## Getting started +### Currently supported environments + +- [LTS versions of Node.js](https://nodejs.org/about/releases/) + +### Prerequisites + +- An [Azure subscription](https://azure.microsoft.com/free/) +- A [Key Vault resource](https://docs.microsoft.com/azure/key-vault/quick-create-portal) + ### Install the package Install the Azure Key Vault Certificates client library using npm `npm install @azure/keyvault-certificates` -### Prerequisites - -- An [Azure subscription](https://azure.microsoft.com/free/). -- An existing Azure Key Vault. If you need to create an Azure Key Vault, you can use the [Azure CLI](https://docs.microsoft.com/azure/key-vault/general/quick-create-cli). -- Use [Node.js](https://nodejs.org/) 10.x or higher. - ### Install the identity library Key Vault clients authenticate using the Azure Identity Library. Install it as well using npm diff --git a/sdk/keyvault/keyvault-keys/README.md b/sdk/keyvault/keyvault-keys/README.md index 045a8b08d009..5b605a7e3696 100644 --- a/sdk/keyvault/keyvault-keys/README.md +++ b/sdk/keyvault/keyvault-keys/README.md @@ -30,11 +30,14 @@ Using the cryptography client available in this library you also have access to: ## Getting started +### Currently supported environments + +- [LTS versions of Node.js](https://nodejs.org/about/releases/) + ### Prerequisites -- An [Azure subscription][azure-sub]. -- An existing Azure Key Vault Managed HSM. If you need to create an Azure Key Vault, you can use the [Azure CLI][azure-cli]. -- Use [Node.js](https://nodejs.org/) 10.x or higher. +- An [Azure subscription](https://azure.microsoft.com/free/) +- A [Key Vault resource](https://docs.microsoft.com/azure/key-vault/quick-create-portal) ### Install the package diff --git a/sdk/keyvault/keyvault-secrets/README.md b/sdk/keyvault/keyvault-secrets/README.md index cc12e3849811..ea8d84fdcd8d 100644 --- a/sdk/keyvault/keyvault-secrets/README.md +++ b/sdk/keyvault/keyvault-secrets/README.md @@ -30,7 +30,7 @@ Use the client library for Azure Key Vault Secrets in your Node.js application t ### Prerequisites - An [Azure subscription](https://azure.microsoft.com/free/) -- A[Key Vault resource](https://docs.microsoft.com/azure/key-vault/quick-create-portal) +- A [Key Vault resource](https://docs.microsoft.com/azure/key-vault/quick-create-portal) ### Install the package From d3647f86a9f8e29f6376ef1e04015dd5e94d63a7 Mon Sep 17 00:00:00 2001 From: Zachary Foster Date: Mon, 28 Jun 2021 13:01:04 -0400 Subject: [PATCH 14/49] [Cosmos] Simple endpoint refresh interval (#15781) * adds simple background refresh * Adds setInterval with unref * cleanup * wip prenock * wip * Removes recorder, fixes timeout in tests * extract api * fix lint * format * Adds flag * lint * Fix parition spelling * modify endpoint check * fix tests * Comment proxy * adds back copyright * skip session spec * Fix session token * Fix session spec on emulator --- sdk/cosmosdb/cosmos/review/cosmos.api.md | 11 +- sdk/cosmosdb/cosmos/src/ClientContext.ts | 10 +- sdk/cosmosdb/cosmos/src/CosmosClient.ts | 52 ++++++ sdk/cosmosdb/cosmos/src/common/constants.ts | 2 +- .../cosmos/src/documents/ConnectionPolicy.ts | 22 ++- .../cosmos/src/globalEndpointManager.ts | 6 +- .../routing/CollectionRoutingMapFactory.ts | 4 +- sdk/cosmosdb/cosmos/src/routing/QueryRange.ts | 4 +- .../cosmos/test/internal/session.spec.ts | 93 +++++++---- .../test/internal/unit/sasToken.spec.ts | 6 +- .../cosmos/test/public/common/TestHelpers.ts | 6 +- .../public/functional/authorization.spec.ts | 30 +++- .../test/public/functional/client.spec.ts | 49 +++++- .../test/public/functional/database.spec.ts | 6 +- .../public/functional/databaseaccount.spec.ts | 6 +- .../public/functional/npcontainer.spec.ts | 5 + .../test/public/functional/offer.spec.ts | 6 +- .../test/public/functional/plugin.spec.ts | 3 + .../test/public/functional/query.spec.ts | 6 +- .../public/integration/authorization.spec.ts | 16 +- .../test/public/integration/failover.spec.ts | 3 + .../public/integration/multiregion.spec.ts | 2 + .../test/public/integration/proxy.spec.ts | 152 +++++++++--------- .../test/public/integration/split.spec.ts | 6 +- .../integration/sslVerification.spec.ts | 9 +- 25 files changed, 371 insertions(+), 144 deletions(-) diff --git a/sdk/cosmosdb/cosmos/review/cosmos.api.md b/sdk/cosmosdb/cosmos/review/cosmos.api.md index 4cbbc5a450ba..4fddb5d875ef 100644 --- a/sdk/cosmosdb/cosmos/review/cosmos.api.md +++ b/sdk/cosmosdb/cosmos/review/cosmos.api.md @@ -112,8 +112,12 @@ export class ClientContext { // (undocumented) getReadEndpoint(): Promise; // (undocumented) + getReadEndpoints(): Promise; + // (undocumented) getWriteEndpoint(): Promise; // (undocumented) + getWriteEndpoints(): Promise; + // (undocumented) partitionKeyDefinitionCache: { [containerUrl: string]: any; }; @@ -235,7 +239,9 @@ export enum ConnectionMode { // @public export interface ConnectionPolicy { connectionMode?: ConnectionMode; + enableBackgroundEndpointRefreshing?: boolean; enableEndpointDiscovery?: boolean; + endpointRefreshRateInMs?: number; preferredLocations?: string[]; requestTimeout?: number; retryOptions?: RetryOptions; @@ -399,7 +405,7 @@ export const Constants: { MaxExclusive: string; min: string; }; - EffectiveParitionKeyConstants: { + EffectivePartitionKeyConstants: { MinimumInclusiveEffectivePartitionKey: string; MaximumExclusiveEffectivePartitionKey: string; }; @@ -486,9 +492,12 @@ export class CosmosClient { constructor(options: CosmosClientOptions); database(id: string): Database; readonly databases: Databases; + dispose(): void; getDatabaseAccount(options?: RequestOptions): Promise>; getReadEndpoint(): Promise; + getReadEndpoints(): Promise; getWriteEndpoint(): Promise; + getWriteEndpoints(): Promise; offer(id: string): Offer; readonly offers: Offers; } diff --git a/sdk/cosmosdb/cosmos/src/ClientContext.ts b/sdk/cosmosdb/cosmos/src/ClientContext.ts index 996e528190e9..4123ec8e9a99 100644 --- a/sdk/cosmosdb/cosmos/src/ClientContext.ts +++ b/sdk/cosmosdb/cosmos/src/ClientContext.ts @@ -37,7 +37,7 @@ export class ClientContext { private readonly sessionContainer: SessionContainer; private connectionPolicy: ConnectionPolicy; - public partitionKeyDefinitionCache: { [containerUrl: string]: any }; // TODO: ParitionKeyDefinitionCache + public partitionKeyDefinitionCache: { [containerUrl: string]: any }; // TODO: PartitionKeyDefinitionCache public constructor( private cosmosClientOptions: CosmosClientOptions, private globalEndpointManager: GlobalEndpointManager @@ -544,6 +544,14 @@ export class ClientContext { return this.globalEndpointManager.getReadEndpoint(); } + public getWriteEndpoints(): Promise { + return this.globalEndpointManager.getWriteEndpoints(); + } + + public getReadEndpoints(): Promise { + return this.globalEndpointManager.getReadEndpoints(); + } + public async bulk({ body, path, diff --git a/sdk/cosmosdb/cosmos/src/CosmosClient.ts b/sdk/cosmosdb/cosmos/src/CosmosClient.ts index baa4e67ea9f6..d06509e09fa4 100644 --- a/sdk/cosmosdb/cosmos/src/CosmosClient.ts +++ b/sdk/cosmosdb/cosmos/src/CosmosClient.ts @@ -50,6 +50,7 @@ export class CosmosClient { */ public readonly offers: Offers; private clientContext: ClientContext; + private endpointRefresher: NodeJS.Timer; /** * Creates a new {@link CosmosClient} object from a connection string. Your database connection string can be found in the Azure Portal */ @@ -93,6 +94,16 @@ export class CosmosClient { async (opts: RequestOptions) => this.getDatabaseAccount(opts) ); this.clientContext = new ClientContext(optionsOrConnectionString, globalEndpointManager); + if ( + optionsOrConnectionString.connectionPolicy?.enableEndpointDiscovery && + optionsOrConnectionString.connectionPolicy?.enableBackgroundEndpointRefreshing + ) { + this.backgroundRefreshEndpointList( + globalEndpointManager, + optionsOrConnectionString.connectionPolicy.endpointRefreshRateInMs || + defaultConnectionPolicy.endpointRefreshRateInMs + ); + } this.databases = new Databases(this, this.clientContext); this.offers = new Offers(this, this.clientContext); @@ -126,6 +137,24 @@ export class CosmosClient { return this.clientContext.getReadEndpoint(); } + /** + * Gets the known write endpoints. Useful for troubleshooting purposes. + * + * The urls may contain a region suffix (e.g. "-eastus") if we're using location specific endpoints. + */ + public getWriteEndpoints(): Promise { + return this.clientContext.getWriteEndpoints(); + } + + /** + * Gets the currently used read endpoint. Useful for troubleshooting purposes. + * + * The url may contain a region suffix (e.g. "-eastus") if we're using location specific endpoints. + */ + public getReadEndpoints(): Promise { + return this.clientContext.getReadEndpoints(); + } + /** * Used for reading, updating, or deleting a existing database by id or accessing containers belonging to that database. * @@ -153,4 +182,27 @@ export class CosmosClient { public offer(id: string): Offer { return new Offer(this, id, this.clientContext); } + + /** + * Clears background endpoint refresher. Use client.dispose() when destroying the CosmosClient within another process. + */ + public dispose(): void { + clearTimeout(this.endpointRefresher); + } + + private async backgroundRefreshEndpointList( + globalEndpointManager: GlobalEndpointManager, + refreshRate: number + ) { + this.endpointRefresher = setInterval(() => { + try { + globalEndpointManager.refreshEndpointList(); + } catch (e) { + console.warn("Failed to refresh endpoints", e); + } + }, refreshRate); + if (this.endpointRefresher.unref && typeof this.endpointRefresher.unref === "function") { + this.endpointRefresher.unref(); + } + } } diff --git a/sdk/cosmosdb/cosmos/src/common/constants.ts b/sdk/cosmosdb/cosmos/src/common/constants.ts index b9658b6c3771..94f9f116c5ff 100644 --- a/sdk/cosmosdb/cosmos/src/common/constants.ts +++ b/sdk/cosmosdb/cosmos/src/common/constants.ts @@ -218,7 +218,7 @@ export const Constants = { min: "min" }, - EffectiveParitionKeyConstants: { + EffectivePartitionKeyConstants: { MinimumInclusiveEffectivePartitionKey: "", MaximumExclusiveEffectivePartitionKey: "FF" } diff --git a/sdk/cosmosdb/cosmos/src/documents/ConnectionPolicy.ts b/sdk/cosmosdb/cosmos/src/documents/ConnectionPolicy.ts index d287bd9fc4b2..15550021fae6 100644 --- a/sdk/cosmosdb/cosmos/src/documents/ConnectionPolicy.ts +++ b/sdk/cosmosdb/cosmos/src/documents/ConnectionPolicy.ts @@ -10,7 +10,10 @@ export interface ConnectionPolicy { connectionMode?: ConnectionMode; /** Request timeout (time to wait for response from network peer). Represented in milliseconds. */ requestTimeout?: number; - /** Flag to enable/disable automatic redirecting of requests based on read/write operations. */ + /** + * Flag to enable/disable automatic redirecting of requests based on read/write operations. Default true. + * Required to call client.dispose() when this is set to true after destroying the CosmosClient inside another process or in the browser. + */ enableEndpointDiscovery?: boolean; /** List of azure regions to be used as preferred locations for read requests. */ preferredLocations?: string[]; @@ -21,16 +24,27 @@ export interface ConnectionPolicy { * Default is `false`. */ useMultipleWriteLocations?: boolean; + /** Rate in milliseconds at which the client will refresh the endpoints list in the background */ + endpointRefreshRateInMs?: number; + /** Flag to enable/disable background refreshing of endpoints. Defaults to false. + * Endpoint discovery using `enableEndpointsDiscovery` will still work for failed requests. */ + enableBackgroundEndpointRefreshing?: boolean; } /** * @hidden */ -export const defaultConnectionPolicy = Object.freeze({ +export const defaultConnectionPolicy: ConnectionPolicy = Object.freeze({ connectionMode: ConnectionMode.Gateway, requestTimeout: 60000, enableEndpointDiscovery: true, preferredLocations: [], - retryOptions: {}, - useMultipleWriteLocations: true + retryOptions: { + maxRetryAttemptCount: 9, + fixedRetryIntervalInMilliseconds: 100, + maxWaitTimeInSeconds: 30 + }, + useMultipleWriteLocations: true, + endpointRefreshRateInMs: 300000, + enableBackgroundEndpointRefreshing: true }); diff --git a/sdk/cosmosdb/cosmos/src/globalEndpointManager.ts b/sdk/cosmosdb/cosmos/src/globalEndpointManager.ts index ca5593f8bdc6..ce5e11c3c06e 100644 --- a/sdk/cosmosdb/cosmos/src/globalEndpointManager.ts +++ b/sdk/cosmosdb/cosmos/src/globalEndpointManager.ts @@ -25,8 +25,8 @@ export class GlobalEndpointManager { * List of azure regions to be used as preferred locations for read requests. */ private preferredLocations: string[]; - private writeableLocations: Location[]; - private readableLocations: Location[]; + private writeableLocations: Location[] = []; + private readableLocations: Location[] = []; /** * @param options - The document client instance. @@ -114,7 +114,7 @@ export class GlobalEndpointManager { return this.defaultEndpoint; } - if (!this.readableLocations || !this.writeableLocations) { + if (this.readableLocations.length === 0 || this.writeableLocations.length === 0) { const { resource: databaseAccount } = await this.readDatabaseAccount({ urlConnection: this.defaultEndpoint }); diff --git a/sdk/cosmosdb/cosmos/src/routing/CollectionRoutingMapFactory.ts b/sdk/cosmosdb/cosmos/src/routing/CollectionRoutingMapFactory.ts index 1762f641ccaa..36da53bbceea 100644 --- a/sdk/cosmosdb/cosmos/src/routing/CollectionRoutingMapFactory.ts +++ b/sdk/cosmosdb/cosmos/src/routing/CollectionRoutingMapFactory.ts @@ -55,11 +55,11 @@ function isCompleteSetOfRange(partitionKeyOrderedRange: any): boolean { const lastRange = partitionKeyOrderedRange[partitionKeyOrderedRange.length - 1]; isComplete = firstRange[Constants.PartitionKeyRange.MinInclusive] === - Constants.EffectiveParitionKeyConstants.MinimumInclusiveEffectivePartitionKey; + Constants.EffectivePartitionKeyConstants.MinimumInclusiveEffectivePartitionKey; isComplete = isComplete && lastRange[Constants.PartitionKeyRange.MaxExclusive] === - Constants.EffectiveParitionKeyConstants.MaximumExclusiveEffectivePartitionKey; + Constants.EffectivePartitionKeyConstants.MaximumExclusiveEffectivePartitionKey; for (let i = 1; i < partitionKeyOrderedRange.length; i++) { const previousRange = partitionKeyOrderedRange[i - 1]; diff --git a/sdk/cosmosdb/cosmos/src/routing/QueryRange.ts b/sdk/cosmosdb/cosmos/src/routing/QueryRange.ts index 0cb52dd33921..be07a14f4e92 100644 --- a/sdk/cosmosdb/cosmos/src/routing/QueryRange.ts +++ b/sdk/cosmosdb/cosmos/src/routing/QueryRange.ts @@ -55,8 +55,8 @@ export class QueryRange { public isFullRange(): boolean { return ( - this.min === Constants.EffectiveParitionKeyConstants.MinimumInclusiveEffectivePartitionKey && - this.max === Constants.EffectiveParitionKeyConstants.MaximumExclusiveEffectivePartitionKey && + this.min === Constants.EffectivePartitionKeyConstants.MinimumInclusiveEffectivePartitionKey && + this.max === Constants.EffectivePartitionKeyConstants.MaximumExclusiveEffectivePartitionKey && this.isMinInclusive === true && this.isMaxInclusive === false ); diff --git a/sdk/cosmosdb/cosmos/test/internal/session.spec.ts b/sdk/cosmosdb/cosmos/test/internal/session.spec.ts index abe398f276a6..ff6885fc4c2d 100644 --- a/sdk/cosmosdb/cosmos/test/internal/session.spec.ts +++ b/sdk/cosmosdb/cosmos/test/internal/session.spec.ts @@ -4,7 +4,7 @@ import assert from "assert"; import { Context } from "mocha"; import { Suite } from "mocha"; import * as sinon from "sinon"; -import { ClientContext } from "../../src"; +import { ClientContext, PluginConfig, PluginOn } from "../../src"; import { OperationType, ResourceType, trimSlashes } from "../../src/common"; import { ConsistencyLevel } from "../../src"; import { Constants, CosmosClient } from "../../src"; @@ -14,6 +14,7 @@ import { endpoint, masterKey } from "../public/common/_testConfig"; import { getTestDatabase, removeAllDatabases } from "../public/common/TestHelpers"; import * as RequestHandler from "../../src/request/RequestHandler"; import { RequestContext } from "../../src"; +import { Response } from "../../src/request/Response"; // TODO: there is alot of "any" types for tokens here // TODO: there is alot of leaky document client stuff here that will make removing document client hard @@ -21,7 +22,8 @@ import { RequestContext } from "../../src"; const client = new CosmosClient({ endpoint, key: masterKey, - consistencyLevel: ConsistencyLevel.Session + consistencyLevel: ConsistencyLevel.Session, + connectionPolicy: { enableBackgroundEndpointRefreshing: false } }); function getCollection2TokenMap( @@ -30,7 +32,63 @@ function getCollection2TokenMap( return (sessionContainer as any).collectionResourceIdToSessionTokens; } -describe("Session Token", function(this: Suite) { +describe("New session token", function() { + it("preserves tokens", async function() { + let response: Response; + let rqContext: RequestContext; + const plugins: PluginConfig[] = [ + { + on: PluginOn.request, + plugin: async (context, next) => { + rqContext = context; + response = await next(context); + return response; + } + } + ]; + const sessionClient = new CosmosClient({ + endpoint, + key: masterKey, + consistencyLevel: ConsistencyLevel.Session, + connectionPolicy: { enableBackgroundEndpointRefreshing: false }, + plugins + }); + const containerId = "sessionTestColl"; + + const containerDefinition = { + id: containerId, + partitionKey: { paths: ["/id"] } + }; + const containerOptions = { offerThroughput: 25100 }; + + const clientContext: ClientContext = (sessionClient as any).clientContext; + const sessionContainer: SessionContainer = (clientContext as any).sessionContainer; + const database = await getTestDatabase("session test", sessionClient); + + const { resource: createdContainerDef } = await database.containers.create( + containerDefinition, + containerOptions + ); + const container = database.container(createdContainerDef.id); + + const resp = await container.items.create({ id: "1" }); + await container.item("1").read(); + + await container.item("1").read(); + const responseToken = resp.headers["x-ms-session-token"]; + const token = sessionContainer.get({ + isNameBased: true, + operationType: OperationType.Create, + resourceAddress: container.url, + resourceType: ResourceType.item, + resourceId: "1" + }); + assert.equal(responseToken, token); + assert.equal(responseToken, rqContext.headers["x-ms-session-token"]); + }); +}); + +describe.skip("Session Token", function(this: Suite) { this.timeout(process.env.MOCHA_TIMEOUT || 20000); const containerId = "sessionTestColl"; @@ -341,37 +399,12 @@ describe("Session Token", function(this: Suite) { await container.item("1", "1").read(); }); - // TODO: chrande - looks like this might be broken by going name based? - // We never had a name based version of this test. Looks like we fail to set the session token - // because OwnerId is missing on the header. This only happens for name based. - it.skip("client should not have session token of a container created by another client", async function() { - const client2 = new CosmosClient({ - endpoint, - key: masterKey, - consistencyLevel: ConsistencyLevel.Session - }); - const database = await getTestDatabase("clientshouldnothaveanotherclienttoken"); - await database.containers.create(containerDefinition, containerOptions); - const container = database.container(containerDefinition.id); - await container.read(); - await client2 - .database(database.id) - .container(containerDefinition.id) - .delete(); - await client2.database(database.id).containers.create(containerDefinition, containerOptions); - await client2 - .database(database.id) - .container(containerDefinition.id) - .read(); - assert.equal((client as any).clientContext.getSessionToken(container.url), ""); // TODO: _self - assert.notEqual((client2 as any).clientContext.getSessionToken(container.url), ""); - }); - it("validate session container update on 'Not found' with 'undefined' status code for non master resource", async function() { const client2 = new CosmosClient({ endpoint, key: masterKey, - consistencyLevel: ConsistencyLevel.Session + consistencyLevel: ConsistencyLevel.Session, + connectionPolicy: { enableBackgroundEndpointRefreshing: false } }); const db = await getTestDatabase("session test", client); diff --git a/sdk/cosmosdb/cosmos/test/internal/unit/sasToken.spec.ts b/sdk/cosmosdb/cosmos/test/internal/unit/sasToken.spec.ts index 6186a8e7c730..0fd371f30ec9 100644 --- a/sdk/cosmosdb/cosmos/test/internal/unit/sasToken.spec.ts +++ b/sdk/cosmosdb/cosmos/test/internal/unit/sasToken.spec.ts @@ -31,7 +31,8 @@ describe.skip("SAS Token Authorization", function() { process.env.NODE_TLS_REJECT_UNAUTHORIZED = "0"; const client = new CosmosClient({ endpoint, - key: key + key: key, + connectionPolicy: { enableBackgroundEndpointRefreshing: false } }); const database = client.database(sasTokenProperties.databaseName); @@ -56,7 +57,8 @@ describe.skip("SAS Token Authorization", function() { "type=sas&ver=1.0&sig=pCgZFxV9JQN1i3vzYNTfQldW1No7I+MSgN628TZcJAI=;dXNlcjEKCi9kYnMvZGIxL2NvbGxzL2NvbGwxLwoKNUZFRTY2MDEKNjIxM0I3MDEKMAo2MAowCkZGRkZGRkZGCjAK"; const sasTokenClient = new CosmosClient({ endpoint, - key: userSasTokenKey + key: userSasTokenKey, + connectionPolicy: { enableBackgroundEndpointRefreshing: false } }); const dbs = await sasTokenClient.databases.readAll().fetchAll(); diff --git a/sdk/cosmosdb/cosmos/test/public/common/TestHelpers.ts b/sdk/cosmosdb/cosmos/test/public/common/TestHelpers.ts index ae06614822da..0d77b1ea13e9 100644 --- a/sdk/cosmosdb/cosmos/test/public/common/TestHelpers.ts +++ b/sdk/cosmosdb/cosmos/test/public/common/TestHelpers.ts @@ -17,7 +17,11 @@ import { endpoint, masterKey } from "./_testConfig"; import { DatabaseRequest } from "../../../src"; import { ContainerRequest } from "../../../src"; -const defaultClient = new CosmosClient({ endpoint, key: masterKey }); +const defaultClient = new CosmosClient({ + endpoint, + key: masterKey, + connectionPolicy: { enableBackgroundEndpointRefreshing: false } +}); export function addEntropy(name: string): string { return name + getEntropy(); diff --git a/sdk/cosmosdb/cosmos/test/public/functional/authorization.spec.ts b/sdk/cosmosdb/cosmos/test/public/functional/authorization.spec.ts index faa0d7a21753..85759ab8b11e 100644 --- a/sdk/cosmosdb/cosmos/test/public/functional/authorization.spec.ts +++ b/sdk/cosmosdb/cosmos/test/public/functional/authorization.spec.ts @@ -20,19 +20,31 @@ describe("NodeJS CRUD Tests", function(this: Suite) { describe("Validate Authorization", function() { it("should handle all the key options", async function() { - const clientOptionsKey = new CosmosClient({ endpoint, key: masterKey }); + const clientOptionsKey = new CosmosClient({ + endpoint, + key: masterKey, + connectionPolicy: { enableBackgroundEndpointRefreshing: false } + }); assert( undefined !== (await clientOptionsKey.databases.readAll().fetchAll()), "Should be able to fetch list of databases" ); - const clientOptionsAuthKey = new CosmosClient({ endpoint, key: masterKey }); + const clientOptionsAuthKey = new CosmosClient({ + endpoint, + key: masterKey, + connectionPolicy: { enableBackgroundEndpointRefreshing: false } + }); assert( undefined !== (await clientOptionsAuthKey.databases.readAll().fetchAll()), "Should be able to fetch list of databases" ); - const clientOptionsAuthMasterKey = new CosmosClient({ endpoint, key: masterKey }); + const clientOptionsAuthMasterKey = new CosmosClient({ + endpoint, + key: masterKey, + connectionPolicy: { enableBackgroundEndpointRefreshing: false } + }); assert( undefined !== (await clientOptionsAuthMasterKey.databases.readAll().fetchAll()), "Should be able to fetch list of databases" @@ -139,7 +151,11 @@ describe("NodeJS CRUD Tests", function(this: Suite) { resourceTokens[entities.coll1.id] = (entities.permissionOnColl1 as any)._token; resourceTokens[entities.doc1.id] = (entities.permissionOnColl1 as any)._token; - const col1Client = new CosmosClient({ endpoint, resourceTokens }); + const col1Client = new CosmosClient({ + endpoint, + resourceTokens, + connectionPolicy: { enableBackgroundEndpointRefreshing: false } + }); // 1. Success-- Use Col1 Permission to Read const { resource: successColl1 } = await col1Client @@ -229,7 +245,11 @@ describe("NodeJS CRUD Tests", function(this: Suite) { const resourceTokens: any = {}; resourceTokens[container.id] = (permission as any)._token; - const restrictedClient = new CosmosClient({ endpoint, resourceTokens }); + const restrictedClient = new CosmosClient({ + endpoint, + resourceTokens, + connectionPolicy: { enableBackgroundEndpointRefreshing: false } + }); await restrictedClient .database(container.database.id) .container(container.id) diff --git a/sdk/cosmosdb/cosmos/test/public/functional/client.spec.ts b/sdk/cosmosdb/cosmos/test/public/functional/client.spec.ts index c7f8e434f30e..9500a70cb931 100644 --- a/sdk/cosmosdb/cosmos/test/public/functional/client.spec.ts +++ b/sdk/cosmosdb/cosmos/test/public/functional/client.spec.ts @@ -13,8 +13,9 @@ import { } from "../common/TestHelpers"; import AbortController from "node-abort-controller"; import { UsernamePasswordCredential } from "@azure/identity"; +import { defaultConnectionPolicy } from "../../../src/documents"; -describe("NodeJS CRUD Tests", function(this: Suite) { +describe("Client Tests", function(this: Suite) { this.timeout(process.env.MOCHA_TIMEOUT || 20000); describe("Validate client request timeout", function() { @@ -24,7 +25,7 @@ describe("NodeJS CRUD Tests", function(this: Suite) { const client = new CosmosClient({ endpoint, key: masterKey, - connectionPolicy: { requestTimeout: 1 } + connectionPolicy: { requestTimeout: 1, enableBackgroundEndpointRefreshing: false } }); // create database try { @@ -40,13 +41,15 @@ describe("NodeJS CRUD Tests", function(this: Suite) { it("Accepts node Agent", function() { const client = new CosmosClient({ endpoint: "https://faaaaaake.com", - agent: new Agent() + agent: new Agent(), + connectionPolicy: { enableBackgroundEndpointRefreshing: false } }); assert.ok(client !== undefined, "client shouldn't be undefined if it succeeded"); }); it("Accepts a connection string", function() { const client = new CosmosClient(`AccountEndpoint=${endpoint};AccountKey=${masterKey};`); assert.ok(client !== undefined, "client shouldn't be undefined if it succeeded"); + client.dispose(); }); it("throws on a bad connection string", function() { assert.throws(() => new CosmosClient(`bad;Connection=string;`)); @@ -64,7 +67,8 @@ describe("NodeJS CRUD Tests", function(this: Suite) { ); const client = new CosmosClient({ endpoint, - aadCredentials: credentials + aadCredentials: credentials, + connectionPolicy: { enableBackgroundEndpointRefreshing: false } }); await client.databases.readAll().fetchAll(); } catch (e) { @@ -85,6 +89,7 @@ describe("NodeJS CRUD Tests", function(this: Suite) { console.log(err); assert.equal(err.name, "AbortError", "client should throw exception"); } + client.dispose(); }); it("should throw exception if passed an already aborted signal", async function() { const client = new CosmosClient({ endpoint, key: masterKey }); @@ -97,6 +102,7 @@ describe("NodeJS CRUD Tests", function(this: Suite) { } catch (err) { assert.equal(err.name, "AbortError", "client should throw exception"); } + client.dispose(); }); it("should abort a query", async function() { const container = await getTestContainer("abort query"); @@ -124,6 +130,41 @@ describe("NodeJS CRUD Tests", function(this: Suite) { } catch (err) { assert.fail(err); } + client.dispose(); + }); + }); + describe("Background refresher", async function() { + // not async to leverage done() callback inside setTimeout + it("should fetch new endpoints", function(done) { + // set refresh rate to 700ms + const client = new CosmosClient({ + endpoint, + key: masterKey, + connectionPolicy: { + ...defaultConnectionPolicy, + endpointRefreshRateInMs: 700, + enableBackgroundEndpointRefreshing: true + } + }); + + // then timeout 1.2s so that we first fetch no endpoints, then after it refreshes we see them + client + .getReadEndpoints() + .then((firstEndpoints) => { + assert.equal(firstEndpoints.length, 0); + setTimeout(() => { + client + .getReadEndpoints() + .then((endpoints) => { + assert.notEqual(firstEndpoints, endpoints); + done(); + return; + }) + .catch(console.warn); + }, 1200); + return; + }) + .catch(console.warn); }); }); }); diff --git a/sdk/cosmosdb/cosmos/test/public/functional/database.spec.ts b/sdk/cosmosdb/cosmos/test/public/functional/database.spec.ts index 12eae6b1b3ad..757ef1ee6171 100644 --- a/sdk/cosmosdb/cosmos/test/public/functional/database.spec.ts +++ b/sdk/cosmosdb/cosmos/test/public/functional/database.spec.ts @@ -12,7 +12,11 @@ import { } from "../common/TestHelpers"; import { DatabaseRequest } from "../../../src"; -const client = new CosmosClient({ endpoint, key: masterKey }); +const client = new CosmosClient({ + endpoint, + key: masterKey, + connectionPolicy: { enableBackgroundEndpointRefreshing: false } +}); describe("NodeJS CRUD Tests", function(this: Suite) { this.timeout(process.env.MOCHA_TIMEOUT || 10000); diff --git a/sdk/cosmosdb/cosmos/test/public/functional/databaseaccount.spec.ts b/sdk/cosmosdb/cosmos/test/public/functional/databaseaccount.spec.ts index 9e5c8d210430..7d34cc0abc46 100644 --- a/sdk/cosmosdb/cosmos/test/public/functional/databaseaccount.spec.ts +++ b/sdk/cosmosdb/cosmos/test/public/functional/databaseaccount.spec.ts @@ -6,7 +6,11 @@ import { Suite } from "mocha"; import { CosmosClient } from "../../../src"; import { endpoint, masterKey } from "../common/_testConfig"; -const client = new CosmosClient({ endpoint, key: masterKey }); +const client = new CosmosClient({ + endpoint, + key: masterKey, + connectionPolicy: { enableBackgroundEndpointRefreshing: false } +}); describe("NodeJS CRUD Tests", function(this: Suite) { this.timeout(process.env.MOCHA_TIMEOUT || 10000); diff --git a/sdk/cosmosdb/cosmos/test/public/functional/npcontainer.spec.ts b/sdk/cosmosdb/cosmos/test/public/functional/npcontainer.spec.ts index c5f5da1a6b2a..29279bdc5bab 100644 --- a/sdk/cosmosdb/cosmos/test/public/functional/npcontainer.spec.ts +++ b/sdk/cosmosdb/cosmos/test/public/functional/npcontainer.spec.ts @@ -46,6 +46,11 @@ describe("Non Partitioned Container", function() { container = client.database(npContainer.database.id).container(npContainer.id); }); + after(async () => { + client.dispose(); + legacyClient.dispose(); + }); + it("should handle item CRUD", async () => { // read items const { resources: items } = await container.items.readAll().fetchAll(); diff --git a/sdk/cosmosdb/cosmos/test/public/functional/offer.spec.ts b/sdk/cosmosdb/cosmos/test/public/functional/offer.spec.ts index 6c51bd8dffe4..403302d22f07 100644 --- a/sdk/cosmosdb/cosmos/test/public/functional/offer.spec.ts +++ b/sdk/cosmosdb/cosmos/test/public/functional/offer.spec.ts @@ -7,7 +7,11 @@ import { Constants, CosmosClient } from "../../../src"; import { endpoint, masterKey } from "../common/_testConfig"; import { getTestContainer, removeAllDatabases } from "../common/TestHelpers"; -const client = new CosmosClient({ endpoint, key: masterKey }); +const client = new CosmosClient({ + endpoint, + key: masterKey, + connectionPolicy: { enableBackgroundEndpointRefreshing: false } +}); const validateOfferResponseBody = function(offer: any): void { assert(offer.id, "Id cannot be null"); diff --git a/sdk/cosmosdb/cosmos/test/public/functional/plugin.spec.ts b/sdk/cosmosdb/cosmos/test/public/functional/plugin.spec.ts index 18007836a409..257cf0ca791d 100644 --- a/sdk/cosmosdb/cosmos/test/public/functional/plugin.spec.ts +++ b/sdk/cosmosdb/cosmos/test/public/functional/plugin.spec.ts @@ -45,6 +45,7 @@ describe("Plugin", function() { assert.notEqual(response, undefined); assert.equal(response.statusCode, successResponse.code); assert.deepEqual(response.resource, successResponse.result); + client.dispose(); }); it("should handle all operations", async function() { @@ -86,6 +87,7 @@ describe("Plugin", function() { assert.notEqual(response, undefined); assert.equal(response.statusCode, successResponse.code); assert.deepEqual(response.resource, successResponse.result); + client.dispose(); }); it("should allow next to be called", async function() { @@ -135,5 +137,6 @@ describe("Plugin", function() { assert.notEqual(response, undefined); assert.equal(response.statusCode, successResponse.code); assert.deepEqual(response.resource, successResponse.result); + client.dispose(); }); }); diff --git a/sdk/cosmosdb/cosmos/test/public/functional/query.spec.ts b/sdk/cosmosdb/cosmos/test/public/functional/query.spec.ts index 2ef50172b89a..08f5089502ba 100644 --- a/sdk/cosmosdb/cosmos/test/public/functional/query.spec.ts +++ b/sdk/cosmosdb/cosmos/test/public/functional/query.spec.ts @@ -7,7 +7,11 @@ import { Container } from "../../../src/"; import { endpoint, masterKey } from "../common/_testConfig"; import { getTestContainer, getTestDatabase, removeAllDatabases } from "../common/TestHelpers"; -const client = new CosmosClient({ endpoint, key: masterKey }); +const client = new CosmosClient({ + endpoint, + key: masterKey, + connectionPolicy: { enableBackgroundEndpointRefreshing: false } +}); // TODO: This is required for Node 6 and above, so just putting it in here. // Might want to decide on only supporting async iterators once Node supports them officially. diff --git a/sdk/cosmosdb/cosmos/test/public/integration/authorization.spec.ts b/sdk/cosmosdb/cosmos/test/public/integration/authorization.spec.ts index 09b121089106..1c9587c309ca 100644 --- a/sdk/cosmosdb/cosmos/test/public/integration/authorization.spec.ts +++ b/sdk/cosmosdb/cosmos/test/public/integration/authorization.spec.ts @@ -76,7 +76,8 @@ describe("Authorization", function(this: Suite) { const clientReadPermission = new CosmosClient({ endpoint, - resourceTokens: rTokens + resourceTokens: rTokens, + connectionPolicy: { enableBackgroundEndpointRefreshing: false } }); const { resource: coll } = await clientReadPermission @@ -89,7 +90,8 @@ describe("Authorization", function(this: Suite) { it("Accessing container by permissionFeed", async function() { const clientReadPermission = new CosmosClient({ endpoint, - permissionFeed: [collReadPermission] + permissionFeed: [collReadPermission], + connectionPolicy: { enableBackgroundEndpointRefreshing: false } }); // self link must be used to access a resource using permissionFeed @@ -112,6 +114,7 @@ describe("Authorization", function(this: Suite) { } catch (err) { assert(err !== undefined); // TODO: should check that we get the right error message } + clientNoPermission.dispose(); }); it("Accessing document by permissionFeed of parent container", async function() { @@ -120,7 +123,8 @@ describe("Authorization", function(this: Suite) { }); const clientReadPermission = new CosmosClient({ endpoint, - permissionFeed: [collReadPermission] + permissionFeed: [collReadPermission], + connectionPolicy: { enableBackgroundEndpointRefreshing: false } }); assert.equal("document1", createdDoc.id, "invalid documnet create"); @@ -137,7 +141,8 @@ describe("Authorization", function(this: Suite) { rTokens[container.id] = collAllPermission._token; const clientAllPermission = new CosmosClient({ endpoint, - resourceTokens: rTokens + resourceTokens: rTokens, + connectionPolicy: { enableBackgroundEndpointRefreshing: false } }); // delete container @@ -150,7 +155,8 @@ describe("Authorization", function(this: Suite) { it("Modifying container by permissionFeed", async function() { const clientAllPermission = new CosmosClient({ endpoint, - permissionFeed: [collAllPermission] + permissionFeed: [collAllPermission], + connectionPolicy: { enableBackgroundEndpointRefreshing: false } }); // self link must be used to access a resource using permissionFeed diff --git a/sdk/cosmosdb/cosmos/test/public/integration/failover.spec.ts b/sdk/cosmosdb/cosmos/test/public/integration/failover.spec.ts index 77cca9e85457..67b25e4d6fcb 100644 --- a/sdk/cosmosdb/cosmos/test/public/integration/failover.spec.ts +++ b/sdk/cosmosdb/cosmos/test/public/integration/failover.spec.ts @@ -172,6 +172,7 @@ describe("Region Failover", () => { lastEndpointCalled, "https://failovertest-australiaeast.documents.azure.com:443/" ); + client.dispose(); }); it("on database not found, region dropped", async () => { @@ -212,6 +213,7 @@ describe("Region Failover", () => { lastEndpointCalled, "https://failovertest-australiaeast.documents.azure.com:443/" ); + client.dispose(); }); it("all endpoints unavailable, fallback to user supplied endpoint", async () => { @@ -250,5 +252,6 @@ describe("Region Failover", () => { await containerRef.item("any", undefined).read(); await containerRef.item("any", undefined).read(); assert.strictEqual(lastEndpointCalled, "https://failovertest.documents.azure.com/"); + client.dispose(); }); }); diff --git a/sdk/cosmosdb/cosmos/test/public/integration/multiregion.spec.ts b/sdk/cosmosdb/cosmos/test/public/integration/multiregion.spec.ts index f66aaea60c49..1aa883d59465 100644 --- a/sdk/cosmosdb/cosmos/test/public/integration/multiregion.spec.ts +++ b/sdk/cosmosdb/cosmos/test/public/integration/multiregion.spec.ts @@ -153,6 +153,7 @@ describe("Multi-region tests", function(this: Suite) { .item("foo", undefined) .read(); assert.equal(lastEndpointCalled, "https://failovertest-australiaeast.documents.azure.com:443/"); + client.dispose(); }); it("Preferred locations should be honored for writeEndpoint", async function() { @@ -193,5 +194,6 @@ describe("Multi-region tests", function(this: Suite) { .container("foo") .items.upsert({ id: "foo", _partitionKey: "bar" }); assert.equal(lastEndpointCalled, "https://failovertest-australiaeast.documents.azure.com:443/"); + client.dispose(); }); }); diff --git a/sdk/cosmosdb/cosmos/test/public/integration/proxy.spec.ts b/sdk/cosmosdb/cosmos/test/public/integration/proxy.spec.ts index 66409b058b0d..8931c80e7e30 100644 --- a/sdk/cosmosdb/cosmos/test/public/integration/proxy.spec.ts +++ b/sdk/cosmosdb/cosmos/test/public/integration/proxy.spec.ts @@ -1,82 +1,84 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import * as http from "http"; -import { Context } from "mocha"; -import * as net from "net"; -import { URL } from "url"; -import ProxyAgent from "proxy-agent"; -import { CosmosClient } from "../../../src"; -import { endpoint, masterKey } from "../common/_testConfig"; -import { addEntropy } from "../common/TestHelpers"; +// import * as http from "http"; +// import { Context } from "mocha"; +// import * as net from "net"; +// import { URL } from "url"; +// import ProxyAgent from "proxy-agent"; +// import { CosmosClient } from "../../../src"; +// import { endpoint, masterKey } from "../common/_testConfig"; +// import { addEntropy } from "../common/TestHelpers"; -const isBrowser = new Function("try {return this===window;}catch(e){ return false;}"); -if (!isBrowser()) { - describe("Validate http proxy setting in environment variable", function() { - const proxy = http.createServer((req, resp) => { - resp.writeHead(200, { "Content-Type": "text/plain" }); - resp.end(); - }); +// const isBrowser = new Function("try {return this===window;}catch(e){ return false;}"); +// if (!isBrowser()) { +// describe("Validate http proxy setting in environment variable", function() { +// const proxy = http.createServer((req, resp) => { +// resp.writeHead(200, { "Content-Type": "text/plain" }); +// resp.end(); +// }); - proxy.on("connect", (req, clientSocket, head) => { - const serverUrl = new URL(`http://${req.url}`); - const serverSocket = net.connect(parseInt(serverUrl.port, 10), serverUrl.hostname, () => { - clientSocket.write( - "HTTP/1.1 200 Connection Established\r\n" + "Proxy-agent: Node.js-Proxy\r\n" + "\r\n" - ); - serverSocket.write(head); - serverSocket.pipe(clientSocket); - clientSocket.pipe(serverSocket); - }); - }); +// proxy.on("connect", (req, clientSocket, head) => { +// const serverUrl = new URL(`http://${req.url}`); +// const serverSocket = net.connect(parseInt(serverUrl.port, 10), serverUrl.hostname, () => { +// clientSocket.write( +// "HTTP/1.1 200 Connection Established\r\n" + "Proxy-agent: Node.js-Proxy\r\n" + "\r\n" +// ); +// serverSocket.write(head); +// serverSocket.pipe(clientSocket); +// clientSocket.pipe(serverSocket); +// }); +// }); - const proxyPort = 8989; - const agent = new ProxyAgent(`http://127.0.0.1:${8989}`) as any; +// const proxyPort = 8989; +// const agent = new ProxyAgent(`http://127.0.0.1:${8989}`) as any; - it("nativeApi Client Should successfully execute request", async function() { - return new Promise((resolve) => { - proxy.listen(proxyPort, "127.0.0.1", async () => { - try { - const client = new CosmosClient({ - endpoint, - key: masterKey, - agent - }); - // create database - await client.databases.create({ - id: addEntropy("ProxyTest") - }); - resolve(); - } finally { - proxy.close(); - } - }); - }); - }); +// it("nativeApi Client Should successfully execute request", async function() { +// return new Promise((resolve) => { +// proxy.listen(proxyPort, "127.0.0.1", async () => { +// try { +// const client = new CosmosClient({ +// endpoint, +// key: masterKey, +// agent, +// connectionPolicy: { enableBackgroundEndpointRefreshing: false } +// }); +// // create database +// await client.databases.create({ +// id: addEntropy("ProxyTest") +// }); +// resolve(); +// } finally { +// proxy.close(); +// } +// }); +// }); +// }); - it("nativeApi Client Should execute request in error while the proxy setting is not correct", async function(this: Context) { - this.timeout(process.env.MOCHA_TIMEOUT || 30000); - return new Promise((resolve, reject) => { - proxy.listen(proxyPort + 1, "127.0.0.1", async () => { - try { - const client = new CosmosClient({ - endpoint, - key: masterKey, - agent - }); - // create database - await client.databases.create({ - id: addEntropy("ProxyTest") - }); - reject( - new Error("Should create database in error while the proxy setting is not correct") - ); - } catch (err) { - resolve(); - } finally { - proxy.close(); - } - }); - }); - }); - }); -} +// it("nativeApi Client Should execute request in error while the proxy setting is not correct", async function(this: Context) { +// this.timeout(process.env.MOCHA_TIMEOUT || 30000); +// return new Promise((resolve, reject) => { +// proxy.listen(proxyPort + 1, "127.0.0.1", async () => { +// try { +// const client = new CosmosClient({ +// endpoint, +// key: masterKey, +// agent, +// connectionPolicy: { enableBackgroundEndpointRefreshing: false } +// }); +// // create database +// await client.databases.create({ +// id: addEntropy("ProxyTest") +// }); +// reject( +// new Error("Should create database in error while the proxy setting is not correct") +// ); +// } catch (err) { +// resolve(); +// } finally { +// proxy.close(); +// } +// }); +// }); +// }); +// }); +// } diff --git a/sdk/cosmosdb/cosmos/test/public/integration/split.spec.ts b/sdk/cosmosdb/cosmos/test/public/integration/split.spec.ts index 1b918df4ad80..e001e3ff3159 100644 --- a/sdk/cosmosdb/cosmos/test/public/integration/split.spec.ts +++ b/sdk/cosmosdb/cosmos/test/public/integration/split.spec.ts @@ -70,7 +70,8 @@ describe("Partition Splits", () => { ]; const client = new CosmosClient({ ...options, - plugins + plugins, + connectionPolicy: { enableBackgroundEndpointRefreshing: false } } as any); const { resources } = await client .database(container.database.id) @@ -104,7 +105,8 @@ describe("Partition Splits", () => { ]; const client = new CosmosClient({ ...options, - plugins + plugins, + connectionPolicy: { enableBackgroundEndpointRefreshing: false } } as any); // fetchAll() diff --git a/sdk/cosmosdb/cosmos/test/public/integration/sslVerification.spec.ts b/sdk/cosmosdb/cosmos/test/public/integration/sslVerification.spec.ts index 4bef2fa523a4..d761d9339767 100644 --- a/sdk/cosmosdb/cosmos/test/public/integration/sslVerification.spec.ts +++ b/sdk/cosmosdb/cosmos/test/public/integration/sslVerification.spec.ts @@ -12,7 +12,11 @@ const masterKey = describe("Validate SSL verification check for emulator #nosignoff", function() { it("should throw exception", async function() { try { - const client = new CosmosClient({ endpoint, key: masterKey }); + const client = new CosmosClient({ + endpoint, + key: masterKey, + connectionPolicy: { enableBackgroundEndpointRefreshing: false } + }); // create database await getTestDatabase("ssl verification", client); } catch (err) { @@ -27,7 +31,8 @@ describe("Validate SSL verification check for emulator #nosignoff", function() { key: masterKey, agent: new https.Agent({ rejectUnauthorized: false - }) + }), + connectionPolicy: { enableBackgroundEndpointRefreshing: false } }); // create database From 00ea0672389d29f720aeab291fe039d892a1e957 Mon Sep 17 00:00:00 2001 From: praveenkuttappan <55455725+praveenkuttappan@users.noreply.github.com> Date: Mon, 28 Jun 2021 13:11:52 -0400 Subject: [PATCH 15/49] Support track2 management packages (#15975) * Support track2 management packages --- eng/tools/rush-runner.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/eng/tools/rush-runner.js b/eng/tools/rush-runner.js index 68ed7f89cfc3..3710e620592a 100644 --- a/eng/tools/rush-runner.js +++ b/eng/tools/rush-runner.js @@ -54,7 +54,6 @@ const getPackageJsons = (searchDir) => { // This gets all the directories with package.json at the `sdk//` level excluding "arm-" packages const sdkDirectories = fs .readdirSync(searchDir) - .filter((f) => !f.startsWith("arm-")) // exclude libraries starting with "arm-" .map((f) => path.join(searchDir, f, "package.json")); // turn potential directory names into package.json paths // This gets all the directories with package.json at the `sdk///perf-tests` level excluding "-track-1" perf test packages @@ -78,7 +77,7 @@ const getServicePackages = (baseDir, serviceDirs) => { const packageJsons = getPackageJsons(searchDir); for (const filePath of packageJsons) { const contents = JSON.parse(fs.readFileSync(filePath, "utf8")); - if (contents["sdk-type"] === "client") { + if (contents["sdk-type"] === "client" || contents["sdk-type"] === "mgmt") { packageNames.push(contents.name); packageDirs.push(path.dirname(filePath)); } From facf5c1ce564921eadbbd243aace0f736d82d2e1 Mon Sep 17 00:00:00 2001 From: Ramya Rao Date: Mon, 28 Jun 2021 10:24:19 -0700 Subject: [PATCH 16/49] Fix lint script for app config perf test (#16046) Perf test packages should not be using the eslint plugin Fixes the below error ``` ESLint couldn't find the plugin "@azure/eslint-plugin-azure-sdk". (The package "@azure/eslint-plugin-azure-sdk" was not found when loaded as a Node module from the directory "/home/vsts/work/1/s/sdk".) It's likely that the plugin isn't installed correctly. Try reinstalling by running the following: npm install @azure/eslint-plugin-azure-sdk@latest --save-dev The plugin "@azure/eslint-plugin-azure-sdk" was referenced from the config file in "../../../.eslintrc.json". ``` --- .../perf-tests/app-configuration/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/appconfiguration/perf-tests/app-configuration/package.json b/sdk/appconfiguration/perf-tests/app-configuration/package.json index ad44b1c7f811..82d4ed432be0 100644 --- a/sdk/appconfiguration/perf-tests/app-configuration/package.json +++ b/sdk/appconfiguration/perf-tests/app-configuration/package.json @@ -36,8 +36,8 @@ "integration-test:browser": "echo skipped", "integration-test:node": "echo skipped", "integration-test": "echo skipped", - "lint:fix": "eslint package.json src test --ext .ts --fix --fix-type [problem,suggestion]", - "lint": "eslint package.json src test --ext .ts -f html -o app-config-perf-test-lintReport.html || exit 0", + "lint:fix": "eslint --no-eslintrc -c ../../../.eslintrc.internal.json package.json test --ext .ts --fix --fix-type [problem,suggestion]", + "lint": "eslint --no-eslintrc -c ../../../.eslintrc.internal.json package.json test --ext .ts", "pack": "npm pack 2>&1", "prebuild": "npm run clean", "unit-test:browser": "echo skipped", From 37d3ed9e8ee60909b16c543d4acba427e8012a4a Mon Sep 17 00:00:00 2001 From: Maor Leger Date: Mon, 28 Jun 2021 12:02:15 -0700 Subject: [PATCH 17/49] [core-rest] - Update core-client-paging-rest to use the latest core-rest-pipeline (#16045) This PR updates the newly added `@azure-rest/core-client-paging` package to use the same version of `@azure/core-rest-pipeline` that the other packages use. We recently GA'd (on main, not released yet) version 1.1.0 of `@azure/core-rest-pipeline` and want to keep everyone on the latest version. --- sdk/core/core-client-paging-rest/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/core/core-client-paging-rest/package.json b/sdk/core/core-client-paging-rest/package.json index 280db0713bc3..fcbfdf4bad2e 100644 --- a/sdk/core/core-client-paging-rest/package.json +++ b/sdk/core/core-client-paging-rest/package.json @@ -62,7 +62,7 @@ "prettier": "@azure/eslint-plugin-azure-sdk/prettier.json", "dependencies": { "@azure/core-paging": "^1.1.1", - "@azure/core-rest-pipeline": "^1.0.3", + "@azure/core-rest-pipeline": "^1.1.0", "@azure-rest/core-client": "1.0.0-beta.5", "tslib": "^2.2.0" }, From 13772c290e51dd533030ad6d988fe49d4a1024af Mon Sep 17 00:00:00 2001 From: Ramya Rao Date: Mon, 28 Jun 2021 12:21:08 -0700 Subject: [PATCH 18/49] Fix linter errors in app config perf tests (#16048) Follow up for #16046 to fix the resulting linter errors --- .../test/listSettings.spec.ts | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/sdk/appconfiguration/perf-tests/app-configuration/test/listSettings.spec.ts b/sdk/appconfiguration/perf-tests/app-configuration/test/listSettings.spec.ts index 5f7910d81d4a..f2d60d6e86ac 100644 --- a/sdk/appconfiguration/perf-tests/app-configuration/test/listSettings.spec.ts +++ b/sdk/appconfiguration/perf-tests/app-configuration/test/listSettings.spec.ts @@ -23,15 +23,18 @@ export class ListSettingsTest extends AppConfigTest { } }; - public async globalSetup() { + public async globalSetup(): Promise { + if (!this.parsedOptions.count.value) { + return; + } await executeParallel( - async (_count: number, _index: number) => { + async () => { await this.client.addConfigurationSetting({ key: ListSettingsTest.prefix + generateUuid(), value: "random" }); }, - this.parsedOptions.count.value!, + this.parsedOptions.count.value, 32 ); } @@ -40,12 +43,13 @@ export class ListSettingsTest extends AppConfigTest { for await (const response of this.client .listConfigurationSettings({ keyFilter: ListSettingsTest.prefix + "*" }) .byPage()) { + // eslint-disable-next-line no-empty for (const _ of response.items) { } } } - public async globalCleanup() { + public async globalCleanup(): Promise { const keys: string[] = []; for await (const response of this.client .listConfigurationSettings({ keyFilter: ListSettingsTest.prefix + "*" }) @@ -54,11 +58,14 @@ export class ListSettingsTest extends AppConfigTest { keys.push(setting.key); } } + if (!this.parsedOptions.count.value) { + return; + } await executeParallel( - async (count: number, _: number) => { + async (count: number) => { await this.client.deleteConfigurationSetting({ key: keys[count] }); }, - this.parsedOptions.count.value!, + this.parsedOptions.count.value, 32 ); } From 21f28dcfdb87737fa6a611d6a55980dca8017b42 Mon Sep 17 00:00:00 2001 From: Jeff Fisher Date: Mon, 28 Jun 2021 13:02:34 -0700 Subject: [PATCH 19/49] [web-pubsub] Migrate `@azure/web-pubsub` to new core pipeline (#16010) Update to latest core packages and improve pipeline robustness. --- dataplane.code-workspace | 6 + .../core-rest-pipeline/src/nodeHttpClient.ts | 13 +- .../src/policies/decompressResponsePolicy.ts | 5 +- .../web-pubsub-express/CHANGELOG.md | 4 + .../web-pubsub-express/package.json | 8 +- sdk/web-pubsub/web-pubsub/CHANGELOG.md | 5 + sdk/web-pubsub/web-pubsub/README.md | 12 + sdk/web-pubsub/web-pubsub/package.json | 7 +- .../web-pubsub/review/web-pubsub.api.md | 54 ++- .../web-pubsub/samples-dev/broadcasting.ts | 5 +- .../web-pubsub/samples-dev/directMessage.ts | 5 +- .../web-pubsub/samples-dev/managingGroups.ts | 6 +- .../samples/v1/javascript/README.md | 11 +- .../samples/v1/javascript/broadcasting.js | 5 +- .../samples/v1/javascript/directMessage.js | 5 +- .../samples/v1/javascript/managingGroups.js | 6 +- .../samples/v1/javascript/package.json | 2 +- .../samples/v1/typescript/README.md | 13 +- .../samples/v1/typescript/package.json | 2 +- .../samples/v1/typescript/src/broadcasting.ts | 5 +- .../v1/typescript/src/directMessage.ts | 5 +- .../v1/typescript/src/managingGroups.ts | 6 +- .../samples/v1/typescript/tsconfig.json | 4 +- .../generated/azureWebPubSubServiceRestAPI.ts | 22 - .../azureWebPubSubServiceRestAPIContext.ts | 49 --- .../src/generated/generatedClient.ts | 29 ++ .../src/generated/generatedClientContext.ts | 56 +++ .../web-pubsub/src/generated/index.ts | 13 +- .../web-pubsub/src/generated/models/index.ts | 128 +++--- .../src/generated/models/parameters.ts | 52 ++- .../src/generated/operations/healthApi.ts | 39 +- .../src/generated/operations/index.ts | 8 + .../src/generated/operations/webPubSub.ts | 406 +++++++----------- .../operationsInterfaces/healthApi.ts | 20 + .../generated/operationsInterfaces/index.ts | 10 + .../operationsInterfaces/webPubSub.ts | 272 ++++++++++++ sdk/web-pubsub/web-pubsub/src/groupClient.ts | 157 ++----- sdk/web-pubsub/web-pubsub/src/hubClient.ts | 217 +++++----- sdk/web-pubsub/web-pubsub/src/utils.ts | 34 +- .../src/webPubSubCredentialPolicy.ts | 63 ++- sdk/web-pubsub/web-pubsub/swagger/README.md | 28 ++ sdk/web-pubsub/web-pubsub/test/conn.spec.ts | 2 +- sdk/web-pubsub/web-pubsub/test/groups.spec.ts | 47 +- sdk/web-pubsub/web-pubsub/test/hubs.spec.ts | 72 ++-- 44 files changed, 1124 insertions(+), 794 deletions(-) delete mode 100644 sdk/web-pubsub/web-pubsub/src/generated/azureWebPubSubServiceRestAPI.ts delete mode 100644 sdk/web-pubsub/web-pubsub/src/generated/azureWebPubSubServiceRestAPIContext.ts create mode 100644 sdk/web-pubsub/web-pubsub/src/generated/generatedClient.ts create mode 100644 sdk/web-pubsub/web-pubsub/src/generated/generatedClientContext.ts create mode 100644 sdk/web-pubsub/web-pubsub/src/generated/operationsInterfaces/healthApi.ts create mode 100644 sdk/web-pubsub/web-pubsub/src/generated/operationsInterfaces/index.ts create mode 100644 sdk/web-pubsub/web-pubsub/src/generated/operationsInterfaces/webPubSub.ts create mode 100644 sdk/web-pubsub/web-pubsub/swagger/README.md diff --git a/dataplane.code-workspace b/dataplane.code-workspace index 8ffbd11b10f8..c4631d5b7e7b 100644 --- a/dataplane.code-workspace +++ b/dataplane.code-workspace @@ -271,6 +271,12 @@ { "name": "iot-device-update", "path": "sdk/deviceupdate/iot-device-update" + }, + { + "path": "sdk/web-pubsub/web-pubsub" + }, + { + "path": "sdk/web-pubsub/web-pubsub-express" } ], "settings": { diff --git a/sdk/core/core-rest-pipeline/src/nodeHttpClient.ts b/sdk/core/core-rest-pipeline/src/nodeHttpClient.ts index 4dafde592688..a99dc5fe9e35 100644 --- a/sdk/core/core-rest-pipeline/src/nodeHttpClient.ts +++ b/sdk/core/core-rest-pipeline/src/nodeHttpClient.ts @@ -129,6 +129,13 @@ class NodeHttpClient implements HttpClient { request }; + // Responses to HEAD must not have a body. + // If they do return a body, that body must be ignored. + if (request.method === "HEAD") { + resolve(response); + return; + } + responseStream = shouldDecompress ? getDecodedResponseStream(res, headers) : res; const onDownloadProgress = request.onDownloadProgress; @@ -142,7 +149,11 @@ class NodeHttpClient implements HttpClient { if (request.streamResponseStatusCodes?.has(response.status)) { response.readableStreamBody = responseStream; } else { - response.bodyAsText = await streamToText(responseStream); + try { + response.bodyAsText = await streamToText(responseStream); + } catch (e) { + reject(e); + } } resolve(response); diff --git a/sdk/core/core-rest-pipeline/src/policies/decompressResponsePolicy.ts b/sdk/core/core-rest-pipeline/src/policies/decompressResponsePolicy.ts index df1362ae56f4..1e0e2cfdfca8 100644 --- a/sdk/core/core-rest-pipeline/src/policies/decompressResponsePolicy.ts +++ b/sdk/core/core-rest-pipeline/src/policies/decompressResponsePolicy.ts @@ -17,7 +17,10 @@ export function decompressResponsePolicy(): PipelinePolicy { return { name: decompressResponsePolicyName, async sendRequest(request: PipelineRequest, next: SendRequest): Promise { - request.headers.set("Accept-Encoding", "gzip,deflate"); + // HEAD requests have no body + if (request.method !== "HEAD") { + request.headers.set("Accept-Encoding", "gzip,deflate"); + } return next(request); } }; diff --git a/sdk/web-pubsub/web-pubsub-express/CHANGELOG.md b/sdk/web-pubsub/web-pubsub-express/CHANGELOG.md index 846478ea6578..c51977452d12 100644 --- a/sdk/web-pubsub/web-pubsub-express/CHANGELOG.md +++ b/sdk/web-pubsub/web-pubsub-express/CHANGELOG.md @@ -1,5 +1,9 @@ # Release History +## 1.0.0-beta.2 (UNRELEASED) + +- Removed unnecessary dependencies. + ## 1.0.0-beta.1 (2021-04-23) This is the first release of the @azure/web-pubsub-express package. diff --git a/sdk/web-pubsub/web-pubsub-express/package.json b/sdk/web-pubsub/web-pubsub-express/package.json index 094056cc13cb..99360680a689 100644 --- a/sdk/web-pubsub/web-pubsub-express/package.json +++ b/sdk/web-pubsub/web-pubsub-express/package.json @@ -1,6 +1,6 @@ { "name": "@azure/web-pubsub-express", - "version": "1.0.0-beta.1", + "version": "1.0.0-beta.2", "description": "Azure Web PubSub CloudEvents handlers", "sdk-type": "client", "main": "dist/index.js", @@ -57,18 +57,12 @@ "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/search/search/", "sideEffects": false, "dependencies": { - "@azure/core-auth": "^1.3.0", - "@azure/core-http": "^2.0.0", - "@azure/core-tracing": "1.0.0-preview.12", - "@azure/logger": "^1.0.0", "tslib": "^2.2.0", - "jsonwebtoken": "^8.5.1", "cloudevents": "^4.0.0" }, "devDependencies": { "@azure/dev-tool": "^1.0.0", "@azure/eslint-plugin-azure-sdk": "^3.0.0", - "@azure/identity": "^1.1.0", "@azure/test-utils-recorder": "^1.0.0", "@microsoft/api-extractor": "7.7.11", "@rollup/plugin-commonjs": "11.0.2", diff --git a/sdk/web-pubsub/web-pubsub/CHANGELOG.md b/sdk/web-pubsub/web-pubsub/CHANGELOG.md index b1857bb3fb2b..abeefa1f3536 100644 --- a/sdk/web-pubsub/web-pubsub/CHANGELOG.md +++ b/sdk/web-pubsub/web-pubsub/CHANGELOG.md @@ -2,8 +2,13 @@ ## 1.0.0-beta.3 (Unreleased) +### Breaking Changes + +- `hasUser` has been removed from `GroupClient` as that operation is no longer supported by the service. +- Updated to have void returns for most operations. If you were previously using `RestResponse`, you can instead use the `onResponse` callback in the operation options. See README for an example. ## 1.0.0-beta.2 (2021-05-19) + Remove "url" dependency ## 1.0.0-beta.1 (2021-04-23) diff --git a/sdk/web-pubsub/web-pubsub/README.md b/sdk/web-pubsub/web-pubsub/README.md index 4777f9e2ce21..d9f4dc9e44e0 100644 --- a/sdk/web-pubsub/web-pubsub/README.md +++ b/sdk/web-pubsub/web-pubsub/README.md @@ -118,6 +118,18 @@ const payload = new Uint8Array(10); await serviceClient.sendToAll(payload.buffer); ``` +### Access the raw HTTP response for an operation + +```js +const { WebPubSubServiceClient } = require("@azure/web-pubsub"); + +function onResponse(rawResponse: FullOperationResponse): void { + console.log(rawResponse); +} +const serviceClient = new WebPubSubServiceClient("", ""); +await serviceClient.sendToAll({ message: "Hello world!" }, { onResponse }); +``` + ## Troubleshooting ### Enable logs diff --git a/sdk/web-pubsub/web-pubsub/package.json b/sdk/web-pubsub/web-pubsub/package.json index 43b2e553d4f9..cd574cd137b2 100644 --- a/sdk/web-pubsub/web-pubsub/package.json +++ b/sdk/web-pubsub/web-pubsub/package.json @@ -29,7 +29,7 @@ "test:node": "npm run build:test && npm run unit-test:node && npm run integration-test:node", "test": "npm run build:test && npm run unit-test && npm run integration-test", "unit-test:browser": "echo \"Browser is not supported.\" && exit 0", - "unit-test:node": "mocha --reporter ../../../common/tools/mocha-multi-reporter.js dist-test/index.node.js", + "unit-test:node": "mocha --exit --reporter ../../../common/tools/mocha-multi-reporter.js dist-test/index.node.js", "unit-test": "npm run unit-test:node && npm run unit-test:browser", "docs": "typedoc --excludePrivate --excludeNotExported --excludeExternals --stripInternal --mode file --out ./dist/docs ./src" }, @@ -61,7 +61,8 @@ "sideEffects": false, "dependencies": { "@azure/core-auth": "^1.3.0", - "@azure/core-http": "^2.0.0", + "@azure/core-client": "^1.0.0", + "@azure/core-rest-pipeline": "^1.1.0", "@azure/core-tracing": "1.0.0-preview.12", "@azure/logger": "^1.0.0", "tslib": "^2.2.0", @@ -78,12 +79,12 @@ "@rollup/plugin-multi-entry": "^3.0.0", "@rollup/plugin-node-resolve": "^8.0.0", "@rollup/plugin-replace": "^2.2.0", + "@types/chai": "^4.1.6", "@types/jsonwebtoken": "~8.5.0", "@types/mocha": "^7.0.2", "@types/node": "^8.0.0", "@types/query-string": "6.2.0", "@types/sinon": "^9.0.4", - "assert": "^1.4.1", "chai": "^4.2.0", "cross-env": "^7.0.2", "dotenv": "^8.2.0", diff --git a/sdk/web-pubsub/web-pubsub/review/web-pubsub.api.md b/sdk/web-pubsub/web-pubsub/review/web-pubsub.api.md index e3f62209e86f..0e09a22288b4 100644 --- a/sdk/web-pubsub/web-pubsub/review/web-pubsub.api.md +++ b/sdk/web-pubsub/web-pubsub/review/web-pubsub.api.md @@ -5,10 +5,9 @@ ```ts import { AzureKeyCredential } from '@azure/core-auth'; -import { HttpRequestBody } from '@azure/core-http'; -import { OperationOptions } from '@azure/core-http'; -import { PipelineOptions } from '@azure/core-http'; -import { RestResponse } from '@azure/core-http'; +import { CommonClientOptions } from '@azure/core-client'; +import { OperationOptions } from '@azure/core-client'; +import { RequestBodyType } from '@azure/core-rest-pipeline'; export { AzureKeyCredential } @@ -40,7 +39,7 @@ export interface GroupAddUserOptions extends OperationOptions { } // @public -export interface GroupAdminClientOptions extends PipelineOptions { +export interface GroupAdminClientOptions extends CommonClientOptions { } // @public @@ -72,7 +71,7 @@ export interface HasConnectionOptions extends OperationOptions { } // @public -export interface HubAdminClientOptions extends PipelineOptions { +export interface HubAdminClientOptions extends CommonClientOptions { } // @public @@ -141,18 +140,17 @@ export type Permission = "joinLeaveGroup" | "sendToGroup"; // @public (undocumented) export interface WebPubSubGroup { - addConnection(connectionId: string, options?: GroupAddConnectionOptions): Promise; - addUser(username: string, options?: GroupAddUserOptions): Promise; + addConnection(connectionId: string, options?: GroupAddConnectionOptions): Promise; + addUser(username: string, options?: GroupAddUserOptions): Promise; readonly apiVersion: string; readonly endpoint: string; readonly groupName: string; - hasUser(username: string, options?: GroupHasUserOptions): Promise; readonly hubName: string; - removeConnection(connectionId: string, options?: GroupRemoveConnectionOptions): Promise; - removeUser(username: string, options?: GroupRemoveUserOptions): Promise; - sendToAll(message: string, options: GroupSendTextToAllOptions): Promise; - sendToAll(message: JSONTypes, options?: GroupSendToAllOptions): Promise; - sendToAll(message: HttpRequestBody, options?: GroupSendToAllOptions): Promise; + removeConnection(connectionId: string, options?: GroupRemoveConnectionOptions): Promise; + removeUser(username: string, options?: GroupRemoveUserOptions): Promise; + sendToAll(message: string, options: GroupSendTextToAllOptions): Promise; + sendToAll(message: JSONTypes, options?: GroupSendToAllOptions): Promise; + sendToAll(message: RequestBodyType, options?: GroupSendToAllOptions): Promise; } // @public @@ -160,27 +158,27 @@ export class WebPubSubServiceClient { constructor(connectionString: string, hubName: string, options?: HubAdminClientOptions); constructor(endpoint: string, credential: AzureKeyCredential, hubName: string, options?: HubAdminClientOptions); readonly apiVersion: string; - closeConnection(connectionId: string, options?: CloseConnectionOptions): Promise; + closeConnection(connectionId: string, options?: CloseConnectionOptions): Promise; endpoint: string; getAuthenticationToken(options?: GetAuthenticationTokenOptions): Promise; - grantPermission(connectionId: string, permission: Permission, options?: HubGrantPermissionOptions): Promise; + grantPermission(connectionId: string, permission: Permission, options?: HubGrantPermissionOptions): Promise; group(groupName: string): WebPubSubGroup; hasConnection(connectionId: string, options?: HasConnectionOptions): Promise; hasGroup(groupName: string, options?: HubHasGroupOptions): Promise; - hasPermission(connectionId: string, permission: Permission, options?: HubHasPermissionOptions): Promise; + hasPermission(connectionId: string, permission: Permission, options?: HubHasPermissionOptions): Promise; hasUser(username: string, options?: HubHasUserOptions): Promise; readonly hubName: string; - removeUserFromAllGroups(userId: string, options?: CloseConnectionOptions): Promise; - revokePermission(connectionId: string, permission: Permission, options?: HubRevokePermissionOptions): Promise; - sendToAll(message: string, options: HubSendTextToAllOptions): Promise; - sendToAll(message: JSONTypes, options?: HubSendToAllOptions): Promise; - sendToAll(message: HttpRequestBody, options?: HubSendToAllOptions): Promise; - sendToConnection(connectionId: string, message: string, options: HubSendTextToConnectionOptions): Promise; - sendToConnection(connectionId: string, message: JSONTypes, options?: HubSendToConnectionOptions): Promise; - sendToConnection(connectionId: string, message: HttpRequestBody | JSONTypes, options?: HubSendToConnectionOptions | HubSendTextToConnectionOptions): Promise; - sendToUser(username: string, message: string, options: HubSendTextToUserOptions): Promise; - sendToUser(username: string, message: JSONTypes, options?: HubSendToUserOptions): Promise; - sendToUser(username: string, message: HttpRequestBody, options?: HubSendToUserOptions | HubSendTextToUserOptions): Promise; + removeUserFromAllGroups(userId: string, options?: CloseConnectionOptions): Promise; + revokePermission(connectionId: string, permission: Permission, options?: HubRevokePermissionOptions): Promise; + sendToAll(message: string, options: HubSendTextToAllOptions): Promise; + sendToAll(message: JSONTypes, options?: HubSendToAllOptions): Promise; + sendToAll(message: RequestBodyType, options?: HubSendToAllOptions): Promise; + sendToConnection(connectionId: string, message: string, options: HubSendTextToConnectionOptions): Promise; + sendToConnection(connectionId: string, message: JSONTypes, options?: HubSendToConnectionOptions): Promise; + sendToConnection(connectionId: string, message: RequestBodyType, options?: HubSendToConnectionOptions | HubSendTextToConnectionOptions): Promise; + sendToUser(username: string, message: string, options: HubSendTextToUserOptions): Promise; + sendToUser(username: string, message: JSONTypes, options?: HubSendToUserOptions): Promise; + sendToUser(username: string, message: RequestBodyType, options?: HubSendToUserOptions | HubSendTextToUserOptions): Promise; } diff --git a/sdk/web-pubsub/web-pubsub/samples-dev/broadcasting.ts b/sdk/web-pubsub/web-pubsub/samples-dev/broadcasting.ts index 264d515a668d..16cf7e219330 100644 --- a/sdk/web-pubsub/web-pubsub/samples-dev/broadcasting.ts +++ b/sdk/web-pubsub/web-pubsub/samples-dev/broadcasting.ts @@ -28,4 +28,7 @@ async function main() { chatHub.sendToAll(data.buffer); } -main(); +main().catch((e) => { + console.error("Sample encountered an error", e); + process.exit(1); +}); diff --git a/sdk/web-pubsub/web-pubsub/samples-dev/directMessage.ts b/sdk/web-pubsub/web-pubsub/samples-dev/directMessage.ts index 5c95c679ec8f..69287999bd72 100644 --- a/sdk/web-pubsub/web-pubsub/samples-dev/directMessage.ts +++ b/sdk/web-pubsub/web-pubsub/samples-dev/directMessage.ts @@ -20,4 +20,7 @@ async function main() { await chatHub.sendToUser("Tn3XcrAbHI0OE36XvbWwige4ac096c1", "Hi there!"); } -main(); +main().catch((e) => { + console.error("Sample encountered an error", e); + process.exit(1); +}); diff --git a/sdk/web-pubsub/web-pubsub/samples-dev/managingGroups.ts b/sdk/web-pubsub/web-pubsub/samples-dev/managingGroups.ts index 3cbce6279765..c94b31f37409 100644 --- a/sdk/web-pubsub/web-pubsub/samples-dev/managingGroups.ts +++ b/sdk/web-pubsub/web-pubsub/samples-dev/managingGroups.ts @@ -16,7 +16,6 @@ const adminGroup = chatHub.group("admin"); async function main() { // adding and removing users await adminGroup.addUser("bterlson"); - await adminGroup.hasUser("bterlson"); // true await adminGroup.removeUser("xirzec"); // adding and removing specific connections @@ -24,4 +23,7 @@ async function main() { await adminGroup.removeConnection("Tn3XcrAbHI0OE36XvbWwige4ac096c1"); } -main(); +main().catch((e) => { + console.error("Sample encountered an error", e); + process.exit(1); +}); diff --git a/sdk/web-pubsub/web-pubsub/samples/v1/javascript/README.md b/sdk/web-pubsub/web-pubsub/samples/v1/javascript/README.md index 538651801e3a..84c6cdb979d0 100644 --- a/sdk/web-pubsub/web-pubsub/samples/v1/javascript/README.md +++ b/sdk/web-pubsub/web-pubsub/samples/v1/javascript/README.md @@ -51,8 +51,13 @@ Alternatively, run a single sample with the correct environment variables set (s npx cross-env WPS_CONNECTION_STRING="" node broadcasting.js ``` -[broadcasting]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/web-pubsub/web-pubsub/samples/v1/javascript/broadcasting.js -[directmessage]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/web-pubsub/web-pubsub/samples/v1/javascript/directMessage.js -[managinggroups]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/web-pubsub/web-pubsub/samples/v1/javascript/managingGroups.js +## Next Steps + +Take a look at our [API Documentation][apiref] for more information about the APIs that are available in the clients. + +[broadcasting]: https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/web-pubsub/web-pubsub/samples/v1/javascript/broadcasting.js +[directmessage]: https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/web-pubsub/web-pubsub/samples/v1/javascript/directMessage.js +[managinggroups]: https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/web-pubsub/web-pubsub/samples/v1/javascript/managingGroups.js +[apiref]: https://docs.microsoft.com/javascript/api/@azure/web-pubsub [freesub]: https://azure.microsoft.com/free/ [package]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/web-pubsub/web-pubsub/README.md diff --git a/sdk/web-pubsub/web-pubsub/samples/v1/javascript/broadcasting.js b/sdk/web-pubsub/web-pubsub/samples/v1/javascript/broadcasting.js index 60b05f59db64..ca018d17667a 100644 --- a/sdk/web-pubsub/web-pubsub/samples/v1/javascript/broadcasting.js +++ b/sdk/web-pubsub/web-pubsub/samples/v1/javascript/broadcasting.js @@ -28,4 +28,7 @@ async function main() { chatHub.sendToAll(data.buffer); } -main(); +main().catch((e) => { + console.error("Sample encountered an error", e); + process.exit(1); +}); diff --git a/sdk/web-pubsub/web-pubsub/samples/v1/javascript/directMessage.js b/sdk/web-pubsub/web-pubsub/samples/v1/javascript/directMessage.js index 748f5b650292..705d516c7e14 100644 --- a/sdk/web-pubsub/web-pubsub/samples/v1/javascript/directMessage.js +++ b/sdk/web-pubsub/web-pubsub/samples/v1/javascript/directMessage.js @@ -20,4 +20,7 @@ async function main() { await chatHub.sendToUser("Tn3XcrAbHI0OE36XvbWwige4ac096c1", "Hi there!"); } -main(); +main().catch((e) => { + console.error("Sample encountered an error", e); + process.exit(1); +}); diff --git a/sdk/web-pubsub/web-pubsub/samples/v1/javascript/managingGroups.js b/sdk/web-pubsub/web-pubsub/samples/v1/javascript/managingGroups.js index 1da4eacc4956..8b3b42e9a796 100644 --- a/sdk/web-pubsub/web-pubsub/samples/v1/javascript/managingGroups.js +++ b/sdk/web-pubsub/web-pubsub/samples/v1/javascript/managingGroups.js @@ -16,7 +16,6 @@ const adminGroup = chatHub.group("admin"); async function main() { // adding and removing users await adminGroup.addUser("bterlson"); - await adminGroup.hasUser("bterlson"); // true await adminGroup.removeUser("xirzec"); // adding and removing specific connections @@ -24,4 +23,7 @@ async function main() { await adminGroup.removeConnection("Tn3XcrAbHI0OE36XvbWwige4ac096c1"); } -main(); +main().catch((e) => { + console.error("Sample encountered an error", e); + process.exit(1); +}); diff --git a/sdk/web-pubsub/web-pubsub/samples/v1/javascript/package.json b/sdk/web-pubsub/web-pubsub/samples/v1/javascript/package.json index 27c8fa3ed048..ec25a6cabaec 100644 --- a/sdk/web-pubsub/web-pubsub/samples/v1/javascript/package.json +++ b/sdk/web-pubsub/web-pubsub/samples/v1/javascript/package.json @@ -3,7 +3,7 @@ "private": true, "version": "1.0.0", "description": "Azure Web PubSub client library samples for JavaScript", - "engine": { + "engines": { "node": ">=12.0.0" }, "repository": { diff --git a/sdk/web-pubsub/web-pubsub/samples/v1/typescript/README.md b/sdk/web-pubsub/web-pubsub/samples/v1/typescript/README.md index 316aa3b738bf..36f44ac39c40 100644 --- a/sdk/web-pubsub/web-pubsub/samples/v1/typescript/README.md +++ b/sdk/web-pubsub/web-pubsub/samples/v1/typescript/README.md @@ -54,7 +54,7 @@ npm run build 4. Run whichever samples you like (note that some samples may require additional setup, see the table above): ```bash -node dist/broadcasting.ts +node dist/broadcasting.js ``` Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): @@ -63,9 +63,14 @@ Alternatively, run a single sample with the correct environment variables set (s npx cross-env WPS_CONNECTION_STRING="" node dist/broadcasting.js ``` -[broadcasting]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/web-pubsub/web-pubsub/samples/v1/typescript/src/broadcasting.ts -[directmessage]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/web-pubsub/web-pubsub/samples/v1/typescript/src/directMessage.ts -[managinggroups]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/web-pubsub/web-pubsub/samples/v1/typescript/src/managingGroups.ts +## Next Steps + +Take a look at our [API Documentation][apiref] for more information about the APIs that are available in the clients. + +[broadcasting]: https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/web-pubsub/web-pubsub/samples/v1/typescript/src/broadcasting.ts +[directmessage]: https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/web-pubsub/web-pubsub/samples/v1/typescript/src/directMessage.ts +[managinggroups]: https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/web-pubsub/web-pubsub/samples/v1/typescript/src/managingGroups.ts +[apiref]: https://docs.microsoft.com/javascript/api/@azure/web-pubsub [freesub]: https://azure.microsoft.com/free/ [package]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/web-pubsub/web-pubsub/README.md [typescript]: https://www.typescriptlang.org/docs/home.html diff --git a/sdk/web-pubsub/web-pubsub/samples/v1/typescript/package.json b/sdk/web-pubsub/web-pubsub/samples/v1/typescript/package.json index 27324ebbf8ff..fbc610cdf817 100644 --- a/sdk/web-pubsub/web-pubsub/samples/v1/typescript/package.json +++ b/sdk/web-pubsub/web-pubsub/samples/v1/typescript/package.json @@ -3,7 +3,7 @@ "private": true, "version": "1.0.0", "description": "Azure Web PubSub client library samples for TypeScript", - "engine": { + "engines": { "node": ">=12.0.0" }, "scripts": { diff --git a/sdk/web-pubsub/web-pubsub/samples/v1/typescript/src/broadcasting.ts b/sdk/web-pubsub/web-pubsub/samples/v1/typescript/src/broadcasting.ts index 264d515a668d..16cf7e219330 100644 --- a/sdk/web-pubsub/web-pubsub/samples/v1/typescript/src/broadcasting.ts +++ b/sdk/web-pubsub/web-pubsub/samples/v1/typescript/src/broadcasting.ts @@ -28,4 +28,7 @@ async function main() { chatHub.sendToAll(data.buffer); } -main(); +main().catch((e) => { + console.error("Sample encountered an error", e); + process.exit(1); +}); diff --git a/sdk/web-pubsub/web-pubsub/samples/v1/typescript/src/directMessage.ts b/sdk/web-pubsub/web-pubsub/samples/v1/typescript/src/directMessage.ts index 5c95c679ec8f..69287999bd72 100644 --- a/sdk/web-pubsub/web-pubsub/samples/v1/typescript/src/directMessage.ts +++ b/sdk/web-pubsub/web-pubsub/samples/v1/typescript/src/directMessage.ts @@ -20,4 +20,7 @@ async function main() { await chatHub.sendToUser("Tn3XcrAbHI0OE36XvbWwige4ac096c1", "Hi there!"); } -main(); +main().catch((e) => { + console.error("Sample encountered an error", e); + process.exit(1); +}); diff --git a/sdk/web-pubsub/web-pubsub/samples/v1/typescript/src/managingGroups.ts b/sdk/web-pubsub/web-pubsub/samples/v1/typescript/src/managingGroups.ts index 3cbce6279765..c94b31f37409 100644 --- a/sdk/web-pubsub/web-pubsub/samples/v1/typescript/src/managingGroups.ts +++ b/sdk/web-pubsub/web-pubsub/samples/v1/typescript/src/managingGroups.ts @@ -16,7 +16,6 @@ const adminGroup = chatHub.group("admin"); async function main() { // adding and removing users await adminGroup.addUser("bterlson"); - await adminGroup.hasUser("bterlson"); // true await adminGroup.removeUser("xirzec"); // adding and removing specific connections @@ -24,4 +23,7 @@ async function main() { await adminGroup.removeConnection("Tn3XcrAbHI0OE36XvbWwige4ac096c1"); } -main(); +main().catch((e) => { + console.error("Sample encountered an error", e); + process.exit(1); +}); diff --git a/sdk/web-pubsub/web-pubsub/samples/v1/typescript/tsconfig.json b/sdk/web-pubsub/web-pubsub/samples/v1/typescript/tsconfig.json index 71d1d0fb1f54..416c2dd82e00 100644 --- a/sdk/web-pubsub/web-pubsub/samples/v1/typescript/tsconfig.json +++ b/sdk/web-pubsub/web-pubsub/samples/v1/typescript/tsconfig.json @@ -11,5 +11,7 @@ "outDir": "dist", "rootDir": "src" }, - "include": ["src/**.ts"] + "include": [ + "src/**.ts" + ] } diff --git a/sdk/web-pubsub/web-pubsub/src/generated/azureWebPubSubServiceRestAPI.ts b/sdk/web-pubsub/web-pubsub/src/generated/azureWebPubSubServiceRestAPI.ts deleted file mode 100644 index 8120eed23c8b..000000000000 --- a/sdk/web-pubsub/web-pubsub/src/generated/azureWebPubSubServiceRestAPI.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { HealthApi, WebPubSub } from "./operations"; -import { AzureWebPubSubServiceRestAPIContext } from "./azureWebPubSubServiceRestAPIContext"; -import { AzureWebPubSubServiceRestAPIOptionalParams } from "./models"; - -export class AzureWebPubSubServiceRestAPI extends AzureWebPubSubServiceRestAPIContext { - /** - * Initializes a new instance of the AzureWebPubSubServiceRestAPI class. - * @param $host server parameter - * @param options The parameter options - */ - constructor( - $host: string, - options?: AzureWebPubSubServiceRestAPIOptionalParams - ) { - super($host, options); - this.healthApi = new HealthApi(this); - this.webPubSub = new WebPubSub(this); - } - - healthApi: HealthApi; - webPubSub: WebPubSub; -} diff --git a/sdk/web-pubsub/web-pubsub/src/generated/azureWebPubSubServiceRestAPIContext.ts b/sdk/web-pubsub/web-pubsub/src/generated/azureWebPubSubServiceRestAPIContext.ts deleted file mode 100644 index ebde7cb2b07a..000000000000 --- a/sdk/web-pubsub/web-pubsub/src/generated/azureWebPubSubServiceRestAPIContext.ts +++ /dev/null @@ -1,49 +0,0 @@ -import * as coreHttp from "@azure/core-http"; -import { AzureWebPubSubServiceRestAPIOptionalParams } from "./models"; - -const packageName = "WebPubSub"; -const packageVersion = "1.0.0"; - -/** - * @hidden - */ -export class AzureWebPubSubServiceRestAPIContext extends coreHttp.ServiceClient { - $host: string; - apiVersion?: string; - - /** - * Initializes a new instance of the AzureWebPubSubServiceRestAPIContext class. - * @param $host server parameter - * @param options The parameter options - */ - constructor( - $host: string, - options?: AzureWebPubSubServiceRestAPIOptionalParams - ) { - if ($host === undefined) { - throw new Error("'$host' cannot be null"); - } - - // Initializing default values for options - if (!options) { - options = {}; - } - - if (!options.userAgent) { - const defaultUserAgent = coreHttp.getDefaultUserAgentValue(); - options.userAgent = `${packageName}/${packageVersion} ${defaultUserAgent}`; - } - - super(undefined, options); - - this.requestContentType = "application/json; charset=utf-8"; - - this.baseUri = options.endpoint || "{$host}"; - - // Parameter assignments - this.$host = $host; - - // Assigning values to Constant parameters - this.apiVersion = options.apiVersion || "2020-10-01"; - } -} diff --git a/sdk/web-pubsub/web-pubsub/src/generated/generatedClient.ts b/sdk/web-pubsub/web-pubsub/src/generated/generatedClient.ts new file mode 100644 index 000000000000..8d21514017e9 --- /dev/null +++ b/sdk/web-pubsub/web-pubsub/src/generated/generatedClient.ts @@ -0,0 +1,29 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { HealthApiImpl, WebPubSubImpl } from "./operations"; +import { HealthApi, WebPubSub } from "./operationsInterfaces"; +import { GeneratedClientContext } from "./generatedClientContext"; +import { GeneratedClientOptionalParams } from "./models"; + +/** @internal */ +export class GeneratedClient extends GeneratedClientContext { + /** + * Initializes a new instance of the GeneratedClient class. + * @param $host server parameter + * @param options The parameter options + */ + constructor($host: string, options?: GeneratedClientOptionalParams) { + super($host, options); + this.healthApi = new HealthApiImpl(this); + this.webPubSub = new WebPubSubImpl(this); + } + + healthApi: HealthApi; + webPubSub: WebPubSub; +} diff --git a/sdk/web-pubsub/web-pubsub/src/generated/generatedClientContext.ts b/sdk/web-pubsub/web-pubsub/src/generated/generatedClientContext.ts new file mode 100644 index 000000000000..1c45c0b3f2fe --- /dev/null +++ b/sdk/web-pubsub/web-pubsub/src/generated/generatedClientContext.ts @@ -0,0 +1,56 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import * as coreClient from "@azure/core-client"; +import { GeneratedClientOptionalParams } from "./models"; + +/** @internal */ +export class GeneratedClientContext extends coreClient.ServiceClient { + $host: string; + apiVersion?: string; + + /** + * Initializes a new instance of the GeneratedClientContext class. + * @param $host server parameter + * @param options The parameter options + */ + constructor($host: string, options?: GeneratedClientOptionalParams) { + if ($host === undefined) { + throw new Error("'$host' cannot be null"); + } + + // Initializing default values for options + if (!options) { + options = {}; + } + const defaults: GeneratedClientOptionalParams = { + requestContentType: "application/json; charset=utf-8" + }; + + const packageDetails = `azsdk-js-web-pubsub/1.0.0-beta.3`; + const userAgentPrefix = + options.userAgentOptions && options.userAgentOptions.userAgentPrefix + ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}` + : `${packageDetails}`; + + const optionsWithDefaults = { + ...defaults, + ...options, + userAgentOptions: { + userAgentPrefix + }, + baseUri: options.endpoint || "{$host}" + }; + super(optionsWithDefaults); + // Parameter assignments + this.$host = $host; + + // Assigning values to Constant parameters + this.apiVersion = options.apiVersion || "2021-05-01-preview"; + } +} diff --git a/sdk/web-pubsub/web-pubsub/src/generated/index.ts b/sdk/web-pubsub/web-pubsub/src/generated/index.ts index 819be2b64f38..707d58f011e8 100644 --- a/sdk/web-pubsub/web-pubsub/src/generated/index.ts +++ b/sdk/web-pubsub/web-pubsub/src/generated/index.ts @@ -1,3 +1,12 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + export * from "./models"; -export { AzureWebPubSubServiceRestAPI } from "./azureWebPubSubServiceRestAPI"; -export { AzureWebPubSubServiceRestAPIContext } from "./azureWebPubSubServiceRestAPIContext"; +export { GeneratedClient } from "./generatedClient"; +export { GeneratedClientContext } from "./generatedClientContext"; +export * from "./operationsInterfaces"; diff --git a/sdk/web-pubsub/web-pubsub/src/generated/models/index.ts b/sdk/web-pubsub/web-pubsub/src/generated/models/index.ts index 92f0d7591988..696bd106983c 100644 --- a/sdk/web-pubsub/web-pubsub/src/generated/models/index.ts +++ b/sdk/web-pubsub/web-pubsub/src/generated/models/index.ts @@ -1,114 +1,142 @@ -import * as coreHttp from "@azure/core-http"; - -/** Known values of {@link Enum0} that the service accepts. */ -export const enum KnownEnum0 { - SendToGroup = "sendToGroup", - JoinLeaveGroup = "joinLeaveGroup" -} - -/** - * Defines values for Enum0. \ - * {@link KnownEnum0} can be used interchangeably with Enum0, - * this enum contains the known values that the service supports. - * ### Know values supported by the service - * **sendToGroup** \ - * **joinLeaveGroup** +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -export type Enum0 = string; - -/** Known values of {@link Enum1} that the service accepts. */ -export const enum KnownEnum1 { - SendToGroup = "sendToGroup", - JoinLeaveGroup = "joinLeaveGroup" -} -/** - * Defines values for Enum1. \ - * {@link KnownEnum1} can be used interchangeably with Enum1, - * this enum contains the known values that the service supports. - * ### Know values supported by the service - * **sendToGroup** \ - * **joinLeaveGroup** - */ -export type Enum1 = string; +import * as coreClient from "@azure/core-client"; -/** Known values of {@link Enum2} that the service accepts. */ -export const enum KnownEnum2 { +/** Known values of {@link WebPubSubPermission} that the service accepts. */ +export const enum KnownWebPubSubPermission { SendToGroup = "sendToGroup", JoinLeaveGroup = "joinLeaveGroup" } /** - * Defines values for Enum2. \ - * {@link KnownEnum2} can be used interchangeably with Enum2, + * Defines values for WebPubSubPermission. \ + * {@link KnownWebPubSubPermission} can be used interchangeably with WebPubSubPermission, * this enum contains the known values that the service supports. - * ### Know values supported by the service + * ### Known values supported by the service * **sendToGroup** \ * **joinLeaveGroup** */ -export type Enum2 = string; +export type WebPubSubPermission = string; /** Defines values for ContentType. */ export type ContentType = "application/json" | "application/octet-stream"; +/** Optional parameters. */ +export interface HealthApiGetServiceStatusOptionalParams + extends coreClient.OperationOptions {} + /** Optional parameters. */ export interface WebPubSubSendToAll$binaryOptionalParams - extends coreHttp.OperationOptions { + extends coreClient.OperationOptions { /** Excluded connection Ids. */ excluded?: string[]; } /** Optional parameters. */ export interface WebPubSubSendToAll$textOptionalParams - extends coreHttp.OperationOptions { + extends coreClient.OperationOptions { /** Excluded connection Ids. */ excluded?: string[]; } +/** Optional parameters. */ +export interface WebPubSubConnectionExistsOptionalParams + extends coreClient.OperationOptions {} + /** Optional parameters. */ export interface WebPubSubCloseClientConnectionOptionalParams - extends coreHttp.OperationOptions { + extends coreClient.OperationOptions { /** The reason closing the client connection. */ reason?: string; } +/** Optional parameters. */ +export interface WebPubSubSendToConnection$binaryOptionalParams + extends coreClient.OperationOptions {} + +/** Optional parameters. */ +export interface WebPubSubSendToConnection$textOptionalParams + extends coreClient.OperationOptions {} + +/** Optional parameters. */ +export interface WebPubSubGroupExistsOptionalParams + extends coreClient.OperationOptions {} + /** Optional parameters. */ export interface WebPubSubSendToGroup$binaryOptionalParams - extends coreHttp.OperationOptions { + extends coreClient.OperationOptions { /** Excluded connection Ids */ excluded?: string[]; } /** Optional parameters. */ export interface WebPubSubSendToGroup$textOptionalParams - extends coreHttp.OperationOptions { + extends coreClient.OperationOptions { /** Excluded connection Ids */ excluded?: string[]; } +/** Optional parameters. */ +export interface WebPubSubAddConnectionToGroupOptionalParams + extends coreClient.OperationOptions {} + +/** Optional parameters. */ +export interface WebPubSubRemoveConnectionFromGroupOptionalParams + extends coreClient.OperationOptions {} + +/** Optional parameters. */ +export interface WebPubSubUserExistsOptionalParams + extends coreClient.OperationOptions {} + +/** Optional parameters. */ +export interface WebPubSubSendToUser$binaryOptionalParams + extends coreClient.OperationOptions {} + +/** Optional parameters. */ +export interface WebPubSubSendToUser$textOptionalParams + extends coreClient.OperationOptions {} + +/** Optional parameters. */ +export interface WebPubSubAddUserToGroupOptionalParams + extends coreClient.OperationOptions {} + +/** Optional parameters. */ +export interface WebPubSubRemoveUserFromGroupOptionalParams + extends coreClient.OperationOptions {} + +/** Optional parameters. */ +export interface WebPubSubRemoveUserFromAllGroupsOptionalParams + extends coreClient.OperationOptions {} + /** Optional parameters. */ export interface WebPubSubGrantPermissionOptionalParams - extends coreHttp.OperationOptions { - /** Optional. If not set, grant the permission to all the targets. If set, grant the permission to the specific target. The meaning of the target depends on the specific permission. */ + extends coreClient.OperationOptions { + /** The meaning of the target depends on the specific permission. For joinLeaveGroup and sendToGroup, targetName is a required parameter standing for the group name. */ targetName?: string; } /** Optional parameters. */ export interface WebPubSubRevokePermissionOptionalParams - extends coreHttp.OperationOptions { - /** Optional. If not set, revoke the permission for all targets. If set, revoke the permission for the specific target. The meaning of the target depends on the specific permission. */ + extends coreClient.OperationOptions { + /** The meaning of the target depends on the specific permission. For joinLeaveGroup and sendToGroup, targetName is a required parameter standing for the group name. */ targetName?: string; } /** Optional parameters. */ export interface WebPubSubCheckPermissionOptionalParams - extends coreHttp.OperationOptions { - /** Optional. If not set, get the permission for all targets. If set, get the permission for the specific target. The meaning of the target depends on the specific permission. */ + extends coreClient.OperationOptions { + /** The meaning of the target depends on the specific permission. For joinLeaveGroup and sendToGroup, targetName is a required parameter standing for the group name. */ targetName?: string; } /** Optional parameters. */ -export interface AzureWebPubSubServiceRestAPIOptionalParams - extends coreHttp.ServiceClientOptions { +export interface GeneratedClientOptionalParams + extends coreClient.ServiceClientOptions { /** Api Version */ apiVersion?: string; /** Overrides client endpoint. */ diff --git a/sdk/web-pubsub/web-pubsub/src/generated/models/parameters.ts b/sdk/web-pubsub/web-pubsub/src/generated/models/parameters.ts index f98d0f9f1ab2..be1ac001e190 100644 --- a/sdk/web-pubsub/web-pubsub/src/generated/models/parameters.ts +++ b/sdk/web-pubsub/web-pubsub/src/generated/models/parameters.ts @@ -1,9 +1,16 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + import { OperationURLParameter, OperationQueryParameter, - OperationParameter, - QueryCollectionFormat -} from "@azure/core-http"; + OperationParameter +} from "@azure/core-client"; export const $host: OperationURLParameter = { parameterPath: "$host", @@ -20,7 +27,7 @@ export const $host: OperationURLParameter = { export const apiVersion: OperationQueryParameter = { parameterPath: "apiVersion", mapper: { - defaultValue: "2020-10-01", + defaultValue: "2021-05-01-preview", isConstant: true, serializedName: "api-version", type: { @@ -78,6 +85,9 @@ export const message1: OperationParameter = { export const hub: OperationURLParameter = { parameterPath: "hub", mapper: { + constraints: { + Pattern: new RegExp("^[A-Za-z][A-Za-z0-9_`,.[\\]]{0,127}$") + }, serializedName: "hub", required: true, type: { @@ -99,12 +109,15 @@ export const excluded: OperationQueryParameter = { } } }, - collectionFormat: QueryCollectionFormat.Multi + collectionFormat: "Multi" }; export const connectionId: OperationURLParameter = { parameterPath: "connectionId", mapper: { + constraints: { + MinLength: 1 + }, serializedName: "connectionId", required: true, type: { @@ -126,6 +139,10 @@ export const reason: OperationQueryParameter = { export const group: OperationURLParameter = { parameterPath: "group", mapper: { + constraints: { + MaxLength: 1024, + MinLength: 1 + }, serializedName: "group", required: true, type: { @@ -137,6 +154,9 @@ export const group: OperationURLParameter = { export const userId: OperationURLParameter = { parameterPath: "userId", mapper: { + constraints: { + MinLength: 1 + }, serializedName: "userId", required: true, type: { @@ -165,25 +185,3 @@ export const targetName: OperationQueryParameter = { } } }; - -export const permission1: OperationURLParameter = { - parameterPath: "permission", - mapper: { - serializedName: "permission", - required: true, - type: { - name: "String" - } - } -}; - -export const permission2: OperationURLParameter = { - parameterPath: "permission", - mapper: { - serializedName: "permission", - required: true, - type: { - name: "String" - } - } -}; diff --git a/sdk/web-pubsub/web-pubsub/src/generated/operations/healthApi.ts b/sdk/web-pubsub/web-pubsub/src/generated/operations/healthApi.ts index d6f7330231e2..09557e899e9c 100644 --- a/sdk/web-pubsub/web-pubsub/src/generated/operations/healthApi.ts +++ b/sdk/web-pubsub/web-pubsub/src/generated/operations/healthApi.ts @@ -1,16 +1,26 @@ -import * as coreHttp from "@azure/core-http"; +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { HealthApi } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; import * as Parameters from "../models/parameters"; -import { AzureWebPubSubServiceRestAPIContext } from "../azureWebPubSubServiceRestAPIContext"; +import { GeneratedClientContext } from "../generatedClientContext"; +import { HealthApiGetServiceStatusOptionalParams } from "../models"; /** Class representing a HealthApi. */ -export class HealthApi { - private readonly client: AzureWebPubSubServiceRestAPIContext; +export class HealthApiImpl implements HealthApi { + private readonly client: GeneratedClientContext; /** * Initialize a new instance of the class HealthApi class. * @param client Reference to the service client */ - constructor(client: AzureWebPubSubServiceRestAPIContext) { + constructor(client: GeneratedClientContext) { this.client = client; } @@ -18,22 +28,19 @@ export class HealthApi { * Get service health status. * @param options The options parameters. */ - getHealthStatus( - options?: coreHttp.OperationOptions - ): Promise { - const operationArguments: coreHttp.OperationArguments = { - options: coreHttp.operationOptionsToRequestOptionsBase(options || {}) - }; + getServiceStatus( + options?: HealthApiGetServiceStatusOptionalParams + ): Promise { return this.client.sendOperationRequest( - operationArguments, - getHealthStatusOperationSpec - ) as Promise; + { options }, + getServiceStatusOperationSpec + ); } } // Operation Specifications -const serializer = new coreHttp.Serializer({}, /* isXml */ false); +const serializer = coreClient.createSerializer({}, /* isXml */ false); -const getHealthStatusOperationSpec: coreHttp.OperationSpec = { +const getServiceStatusOperationSpec: coreClient.OperationSpec = { path: "/api/health", httpMethod: "HEAD", responses: { 200: {}, default: {} }, diff --git a/sdk/web-pubsub/web-pubsub/src/generated/operations/index.ts b/sdk/web-pubsub/web-pubsub/src/generated/operations/index.ts index 5694ebd9630f..7c403f3e5b7f 100644 --- a/sdk/web-pubsub/web-pubsub/src/generated/operations/index.ts +++ b/sdk/web-pubsub/web-pubsub/src/generated/operations/index.ts @@ -1,2 +1,10 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + export * from "./healthApi"; export * from "./webPubSub"; diff --git a/sdk/web-pubsub/web-pubsub/src/generated/operations/webPubSub.ts b/sdk/web-pubsub/web-pubsub/src/generated/operations/webPubSub.ts index fa7965fd79bb..e2564b4a479e 100644 --- a/sdk/web-pubsub/web-pubsub/src/generated/operations/webPubSub.ts +++ b/sdk/web-pubsub/web-pubsub/src/generated/operations/webPubSub.ts @@ -1,30 +1,50 @@ -import * as coreHttp from "@azure/core-http"; +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { WebPubSub } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; +import * as coreRestPipeline from "@azure/core-rest-pipeline"; import * as Parameters from "../models/parameters"; -import { AzureWebPubSubServiceRestAPIContext } from "../azureWebPubSubServiceRestAPIContext"; +import { GeneratedClientContext } from "../generatedClientContext"; import { ContentType, WebPubSubSendToAll$binaryOptionalParams, WebPubSubSendToAll$textOptionalParams, + WebPubSubConnectionExistsOptionalParams, WebPubSubCloseClientConnectionOptionalParams, + WebPubSubSendToConnection$binaryOptionalParams, + WebPubSubSendToConnection$textOptionalParams, + WebPubSubGroupExistsOptionalParams, WebPubSubSendToGroup$binaryOptionalParams, WebPubSubSendToGroup$textOptionalParams, - Enum0, + WebPubSubAddConnectionToGroupOptionalParams, + WebPubSubRemoveConnectionFromGroupOptionalParams, + WebPubSubUserExistsOptionalParams, + WebPubSubSendToUser$binaryOptionalParams, + WebPubSubSendToUser$textOptionalParams, + WebPubSubAddUserToGroupOptionalParams, + WebPubSubRemoveUserFromGroupOptionalParams, + WebPubSubRemoveUserFromAllGroupsOptionalParams, + WebPubSubPermission, WebPubSubGrantPermissionOptionalParams, - Enum1, WebPubSubRevokePermissionOptionalParams, - Enum2, WebPubSubCheckPermissionOptionalParams } from "../models"; /** Class representing a WebPubSub. */ -export class WebPubSub { - private readonly client: AzureWebPubSubServiceRestAPIContext; +export class WebPubSubImpl implements WebPubSub { + private readonly client: GeneratedClientContext; /** * Initialize a new instance of the class WebPubSub class. * @param client Reference to the service client */ - constructor(client: AzureWebPubSubServiceRestAPIContext) { + constructor(client: GeneratedClientContext) { this.client = client; } @@ -39,9 +59,9 @@ export class WebPubSub { sendToAll( hub: string, contentType: ContentType, - message: coreHttp.HttpRequestBody, + message: coreRestPipeline.RequestBodyType, options?: WebPubSubSendToAll$binaryOptionalParams - ): Promise; + ): Promise; /** * Broadcast content inside request body to all the connected client connections. * @param hub Target hub name, which should start with alphabetic characters and only contain @@ -55,7 +75,7 @@ export class WebPubSub { contentType: "text/plain", message: string, options?: WebPubSubSendToAll$textOptionalParams - ): Promise; + ): Promise; /** * Broadcast content inside request body to all the connected client connections. * @param args Includes all the parameters for this operation. @@ -65,13 +85,13 @@ export class WebPubSub { | [ string, ContentType, - coreHttp.HttpRequestBody, + coreRestPipeline.RequestBodyType, WebPubSubSendToAll$binaryOptionalParams? ] | [string, "text/plain", string, WebPubSubSendToAll$textOptionalParams?] - ): Promise { - let operationSpec: coreHttp.OperationSpec; - let operationArguments: coreHttp.OperationArguments; + ): Promise { + let operationSpec: coreClient.OperationSpec; + let operationArguments: coreClient.OperationArguments; let options; if ( args[1] === "application/json" || @@ -99,13 +119,8 @@ export class WebPubSub { `"contentType" must be a valid value but instead was "${args[1]}".` ); } - operationArguments.options = coreHttp.operationOptionsToRequestOptionsBase( - options || {} - ); - return this.client.sendOperationRequest( - operationArguments, - operationSpec - ) as Promise; + operationArguments.options = options || {}; + return this.client.sendOperationRequest(operationArguments, operationSpec); } /** @@ -118,17 +133,12 @@ export class WebPubSub { connectionExists( hub: string, connectionId: string, - options?: coreHttp.OperationOptions - ): Promise { - const operationArguments: coreHttp.OperationArguments = { - hub, - connectionId, - options: coreHttp.operationOptionsToRequestOptionsBase(options || {}) - }; + options?: WebPubSubConnectionExistsOptionalParams + ): Promise { return this.client.sendOperationRequest( - operationArguments, + { hub, connectionId, options }, connectionExistsOperationSpec - ) as Promise; + ); } /** @@ -142,16 +152,11 @@ export class WebPubSub { hub: string, connectionId: string, options?: WebPubSubCloseClientConnectionOptionalParams - ): Promise { - const operationArguments: coreHttp.OperationArguments = { - hub, - connectionId, - options: coreHttp.operationOptionsToRequestOptionsBase(options || {}) - }; + ): Promise { return this.client.sendOperationRequest( - operationArguments, + { hub, connectionId, options }, closeClientConnectionOperationSpec - ) as Promise; + ); } /** @@ -167,9 +172,9 @@ export class WebPubSub { hub: string, connectionId: string, contentType: ContentType, - message: coreHttp.HttpRequestBody, - options?: coreHttp.OperationOptions - ): Promise; + message: coreRestPipeline.RequestBodyType, + options?: WebPubSubSendToConnection$binaryOptionalParams + ): Promise; /** * Send content inside request body to the specific connection. * @param hub Target hub name, which should start with alphabetic characters and only contain @@ -184,8 +189,8 @@ export class WebPubSub { connectionId: string, contentType: "text/plain", message: string, - options?: coreHttp.OperationOptions - ): Promise; + options?: WebPubSubSendToConnection$textOptionalParams + ): Promise; /** * Send content inside request body to the specific connection. * @param args Includes all the parameters for this operation. @@ -196,13 +201,19 @@ export class WebPubSub { string, string, ContentType, - coreHttp.HttpRequestBody, - coreHttp.OperationOptions? + coreRestPipeline.RequestBodyType, + WebPubSubSendToConnection$binaryOptionalParams? + ] + | [ + string, + string, + "text/plain", + string, + WebPubSubSendToConnection$textOptionalParams? ] - | [string, string, "text/plain", string, coreHttp.OperationOptions?] - ): Promise { - let operationSpec: coreHttp.OperationSpec; - let operationArguments: coreHttp.OperationArguments; + ): Promise { + let operationSpec: coreClient.OperationSpec; + let operationArguments: coreClient.OperationArguments; let options; if ( args[2] === "application/json" || @@ -232,13 +243,8 @@ export class WebPubSub { `"contentType" must be a valid value but instead was "${args[2]}".` ); } - operationArguments.options = coreHttp.operationOptionsToRequestOptionsBase( - options || {} - ); - return this.client.sendOperationRequest( - operationArguments, - operationSpec - ) as Promise; + operationArguments.options = options || {}; + return this.client.sendOperationRequest(operationArguments, operationSpec); } /** @@ -251,17 +257,12 @@ export class WebPubSub { groupExists( hub: string, group: string, - options?: coreHttp.OperationOptions - ): Promise { - const operationArguments: coreHttp.OperationArguments = { - hub, - group, - options: coreHttp.operationOptionsToRequestOptionsBase(options || {}) - }; + options?: WebPubSubGroupExistsOptionalParams + ): Promise { return this.client.sendOperationRequest( - operationArguments, + { hub, group, options }, groupExistsOperationSpec - ) as Promise; + ); } /** @@ -277,9 +278,9 @@ export class WebPubSub { hub: string, group: string, contentType: ContentType, - message: coreHttp.HttpRequestBody, + message: coreRestPipeline.RequestBodyType, options?: WebPubSubSendToGroup$binaryOptionalParams - ): Promise; + ): Promise; /** * Send content inside request body to a group of connections. * @param hub Target hub name, which should start with alphabetic characters and only contain @@ -295,7 +296,7 @@ export class WebPubSub { contentType: "text/plain", message: string, options?: WebPubSubSendToGroup$textOptionalParams - ): Promise; + ): Promise; /** * Send content inside request body to a group of connections. * @param args Includes all the parameters for this operation. @@ -306,7 +307,7 @@ export class WebPubSub { string, string, ContentType, - coreHttp.HttpRequestBody, + coreRestPipeline.RequestBodyType, WebPubSubSendToGroup$binaryOptionalParams? ] | [ @@ -316,9 +317,9 @@ export class WebPubSub { string, WebPubSubSendToGroup$textOptionalParams? ] - ): Promise { - let operationSpec: coreHttp.OperationSpec; - let operationArguments: coreHttp.OperationArguments; + ): Promise { + let operationSpec: coreClient.OperationSpec; + let operationArguments: coreClient.OperationArguments; let options; if ( args[2] === "application/json" || @@ -348,13 +349,8 @@ export class WebPubSub { `"contentType" must be a valid value but instead was "${args[2]}".` ); } - operationArguments.options = coreHttp.operationOptionsToRequestOptionsBase( - options || {} - ); - return this.client.sendOperationRequest( - operationArguments, - operationSpec - ) as Promise; + operationArguments.options = options || {}; + return this.client.sendOperationRequest(operationArguments, operationSpec); } /** @@ -369,18 +365,12 @@ export class WebPubSub { hub: string, group: string, connectionId: string, - options?: coreHttp.OperationOptions - ): Promise { - const operationArguments: coreHttp.OperationArguments = { - hub, - group, - connectionId, - options: coreHttp.operationOptionsToRequestOptionsBase(options || {}) - }; + options?: WebPubSubAddConnectionToGroupOptionalParams + ): Promise { return this.client.sendOperationRequest( - operationArguments, + { hub, group, connectionId, options }, addConnectionToGroupOperationSpec - ) as Promise; + ); } /** @@ -395,18 +385,12 @@ export class WebPubSub { hub: string, group: string, connectionId: string, - options?: coreHttp.OperationOptions - ): Promise { - const operationArguments: coreHttp.OperationArguments = { - hub, - group, - connectionId, - options: coreHttp.operationOptionsToRequestOptionsBase(options || {}) - }; + options?: WebPubSubRemoveConnectionFromGroupOptionalParams + ): Promise { return this.client.sendOperationRequest( - operationArguments, + { hub, group, connectionId, options }, removeConnectionFromGroupOperationSpec - ) as Promise; + ); } /** @@ -419,17 +403,12 @@ export class WebPubSub { userExists( hub: string, userId: string, - options?: coreHttp.OperationOptions - ): Promise { - const operationArguments: coreHttp.OperationArguments = { - hub, - userId, - options: coreHttp.operationOptionsToRequestOptionsBase(options || {}) - }; + options?: WebPubSubUserExistsOptionalParams + ): Promise { return this.client.sendOperationRequest( - operationArguments, + { hub, userId, options }, userExistsOperationSpec - ) as Promise; + ); } /** @@ -445,9 +424,9 @@ export class WebPubSub { hub: string, userId: string, contentType: ContentType, - message: coreHttp.HttpRequestBody, - options?: coreHttp.OperationOptions - ): Promise; + message: coreRestPipeline.RequestBodyType, + options?: WebPubSubSendToUser$binaryOptionalParams + ): Promise; /** * Send content inside request body to the specific user. * @param hub Target hub name, which should start with alphabetic characters and only contain @@ -462,8 +441,8 @@ export class WebPubSub { userId: string, contentType: "text/plain", message: string, - options?: coreHttp.OperationOptions - ): Promise; + options?: WebPubSubSendToUser$textOptionalParams + ): Promise; /** * Send content inside request body to the specific user. * @param args Includes all the parameters for this operation. @@ -474,13 +453,19 @@ export class WebPubSub { string, string, ContentType, - coreHttp.HttpRequestBody, - coreHttp.OperationOptions? + coreRestPipeline.RequestBodyType, + WebPubSubSendToUser$binaryOptionalParams? + ] + | [ + string, + string, + "text/plain", + string, + WebPubSubSendToUser$textOptionalParams? ] - | [string, string, "text/plain", string, coreHttp.OperationOptions?] - ): Promise { - let operationSpec: coreHttp.OperationSpec; - let operationArguments: coreHttp.OperationArguments; + ): Promise { + let operationSpec: coreClient.OperationSpec; + let operationArguments: coreClient.OperationArguments; let options; if ( args[2] === "application/json" || @@ -510,39 +495,8 @@ export class WebPubSub { `"contentType" must be a valid value but instead was "${args[2]}".` ); } - operationArguments.options = coreHttp.operationOptionsToRequestOptionsBase( - options || {} - ); - return this.client.sendOperationRequest( - operationArguments, - operationSpec - ) as Promise; - } - - /** - * Check whether a user exists in the target group. - * @param hub Target hub name, which should start with alphabetic characters and only contain - * alpha-numeric characters or underscore. - * @param group Target group name, which length should be greater than 0 and less than 1025. - * @param userId Target user Id. - * @param options The options parameters. - */ - userExistsInGroup( - hub: string, - group: string, - userId: string, - options?: coreHttp.OperationOptions - ): Promise { - const operationArguments: coreHttp.OperationArguments = { - hub, - group, - userId, - options: coreHttp.operationOptionsToRequestOptionsBase(options || {}) - }; - return this.client.sendOperationRequest( - operationArguments, - userExistsInGroupOperationSpec - ) as Promise; + operationArguments.options = options || {}; + return this.client.sendOperationRequest(operationArguments, operationSpec); } /** @@ -557,18 +511,12 @@ export class WebPubSub { hub: string, group: string, userId: string, - options?: coreHttp.OperationOptions - ): Promise { - const operationArguments: coreHttp.OperationArguments = { - hub, - group, - userId, - options: coreHttp.operationOptionsToRequestOptionsBase(options || {}) - }; + options?: WebPubSubAddUserToGroupOptionalParams + ): Promise { return this.client.sendOperationRequest( - operationArguments, + { hub, group, userId, options }, addUserToGroupOperationSpec - ) as Promise; + ); } /** @@ -583,18 +531,12 @@ export class WebPubSub { hub: string, group: string, userId: string, - options?: coreHttp.OperationOptions - ): Promise { - const operationArguments: coreHttp.OperationArguments = { - hub, - group, - userId, - options: coreHttp.operationOptionsToRequestOptionsBase(options || {}) - }; + options?: WebPubSubRemoveUserFromGroupOptionalParams + ): Promise { return this.client.sendOperationRequest( - operationArguments, + { hub, group, userId, options }, removeUserFromGroupOperationSpec - ) as Promise; + ); } /** @@ -607,17 +549,12 @@ export class WebPubSub { removeUserFromAllGroups( hub: string, userId: string, - options?: coreHttp.OperationOptions - ): Promise { - const operationArguments: coreHttp.OperationArguments = { - hub, - userId, - options: coreHttp.operationOptionsToRequestOptionsBase(options || {}) - }; + options?: WebPubSubRemoveUserFromAllGroupsOptionalParams + ): Promise { return this.client.sendOperationRequest( - operationArguments, + { hub, userId, options }, removeUserFromAllGroupsOperationSpec - ) as Promise; + ); } /** @@ -630,20 +567,14 @@ export class WebPubSub { */ grantPermission( hub: string, - permission: Enum0, + permission: WebPubSubPermission, connectionId: string, options?: WebPubSubGrantPermissionOptionalParams - ): Promise { - const operationArguments: coreHttp.OperationArguments = { - hub, - permission, - connectionId, - options: coreHttp.operationOptionsToRequestOptionsBase(options || {}) - }; + ): Promise { return this.client.sendOperationRequest( - operationArguments, + { hub, permission, connectionId, options }, grantPermissionOperationSpec - ) as Promise; + ); } /** @@ -656,20 +587,14 @@ export class WebPubSub { */ revokePermission( hub: string, - permission: Enum1, + permission: WebPubSubPermission, connectionId: string, options?: WebPubSubRevokePermissionOptionalParams - ): Promise { - const operationArguments: coreHttp.OperationArguments = { - hub, - permission, - connectionId, - options: coreHttp.operationOptionsToRequestOptionsBase(options || {}) - }; + ): Promise { return this.client.sendOperationRequest( - operationArguments, + { hub, permission, connectionId, options }, revokePermissionOperationSpec - ) as Promise; + ); } /** @@ -682,26 +607,20 @@ export class WebPubSub { */ checkPermission( hub: string, - permission: Enum2, + permission: WebPubSubPermission, connectionId: string, options?: WebPubSubCheckPermissionOptionalParams - ): Promise { - const operationArguments: coreHttp.OperationArguments = { - hub, - permission, - connectionId, - options: coreHttp.operationOptionsToRequestOptionsBase(options || {}) - }; + ): Promise { return this.client.sendOperationRequest( - operationArguments, + { hub, permission, connectionId, options }, checkPermissionOperationSpec - ) as Promise; + ); } } // Operation Specifications -const serializer = new coreHttp.Serializer({}, /* isXml */ false); +const serializer = coreClient.createSerializer({}, /* isXml */ false); -const sendToAll$binaryOperationSpec: coreHttp.OperationSpec = { +const sendToAll$binaryOperationSpec: coreClient.OperationSpec = { path: "/api/hubs/{hub}/:send", httpMethod: "POST", responses: { 202: {}, default: {} }, @@ -712,7 +631,7 @@ const sendToAll$binaryOperationSpec: coreHttp.OperationSpec = { mediaType: "binary", serializer }; -const sendToAll$textOperationSpec: coreHttp.OperationSpec = { +const sendToAll$textOperationSpec: coreClient.OperationSpec = { path: "/api/hubs/{hub}/:send", httpMethod: "POST", responses: { 202: {}, default: {} }, @@ -723,7 +642,7 @@ const sendToAll$textOperationSpec: coreHttp.OperationSpec = { mediaType: "text", serializer }; -const connectionExistsOperationSpec: coreHttp.OperationSpec = { +const connectionExistsOperationSpec: coreClient.OperationSpec = { path: "/api/hubs/{hub}/connections/{connectionId}", httpMethod: "HEAD", responses: { 200: {}, 404: {}, default: {} }, @@ -731,7 +650,7 @@ const connectionExistsOperationSpec: coreHttp.OperationSpec = { urlParameters: [Parameters.$host, Parameters.hub, Parameters.connectionId], serializer }; -const closeClientConnectionOperationSpec: coreHttp.OperationSpec = { +const closeClientConnectionOperationSpec: coreClient.OperationSpec = { path: "/api/hubs/{hub}/connections/{connectionId}", httpMethod: "DELETE", responses: { 200: {}, default: {} }, @@ -739,7 +658,7 @@ const closeClientConnectionOperationSpec: coreHttp.OperationSpec = { urlParameters: [Parameters.$host, Parameters.hub, Parameters.connectionId], serializer }; -const sendToConnection$binaryOperationSpec: coreHttp.OperationSpec = { +const sendToConnection$binaryOperationSpec: coreClient.OperationSpec = { path: "/api/hubs/{hub}/connections/{connectionId}/:send", httpMethod: "POST", responses: { 202: {}, default: {} }, @@ -750,7 +669,7 @@ const sendToConnection$binaryOperationSpec: coreHttp.OperationSpec = { mediaType: "binary", serializer }; -const sendToConnection$textOperationSpec: coreHttp.OperationSpec = { +const sendToConnection$textOperationSpec: coreClient.OperationSpec = { path: "/api/hubs/{hub}/connections/{connectionId}/:send", httpMethod: "POST", responses: { 202: {}, default: {} }, @@ -761,7 +680,7 @@ const sendToConnection$textOperationSpec: coreHttp.OperationSpec = { mediaType: "text", serializer }; -const groupExistsOperationSpec: coreHttp.OperationSpec = { +const groupExistsOperationSpec: coreClient.OperationSpec = { path: "/api/hubs/{hub}/groups/{group}", httpMethod: "HEAD", responses: { 200: {}, 404: {}, default: {} }, @@ -769,7 +688,7 @@ const groupExistsOperationSpec: coreHttp.OperationSpec = { urlParameters: [Parameters.$host, Parameters.hub, Parameters.group], serializer }; -const sendToGroup$binaryOperationSpec: coreHttp.OperationSpec = { +const sendToGroup$binaryOperationSpec: coreClient.OperationSpec = { path: "/api/hubs/{hub}/groups/{group}/:send", httpMethod: "POST", responses: { 202: {}, default: {} }, @@ -780,7 +699,7 @@ const sendToGroup$binaryOperationSpec: coreHttp.OperationSpec = { mediaType: "binary", serializer }; -const sendToGroup$textOperationSpec: coreHttp.OperationSpec = { +const sendToGroup$textOperationSpec: coreClient.OperationSpec = { path: "/api/hubs/{hub}/groups/{group}/:send", httpMethod: "POST", responses: { 202: {}, default: {} }, @@ -791,7 +710,7 @@ const sendToGroup$textOperationSpec: coreHttp.OperationSpec = { mediaType: "text", serializer }; -const addConnectionToGroupOperationSpec: coreHttp.OperationSpec = { +const addConnectionToGroupOperationSpec: coreClient.OperationSpec = { path: "/api/hubs/{hub}/groups/{group}/connections/{connectionId}", httpMethod: "PUT", responses: { 200: {}, 404: {}, default: {} }, @@ -804,10 +723,10 @@ const addConnectionToGroupOperationSpec: coreHttp.OperationSpec = { ], serializer }; -const removeConnectionFromGroupOperationSpec: coreHttp.OperationSpec = { +const removeConnectionFromGroupOperationSpec: coreClient.OperationSpec = { path: "/api/hubs/{hub}/groups/{group}/connections/{connectionId}", httpMethod: "DELETE", - responses: { 200: {}, 404: {}, default: {} }, + responses: { 200: {}, default: {} }, queryParameters: [Parameters.apiVersion], urlParameters: [ Parameters.$host, @@ -817,7 +736,7 @@ const removeConnectionFromGroupOperationSpec: coreHttp.OperationSpec = { ], serializer }; -const userExistsOperationSpec: coreHttp.OperationSpec = { +const userExistsOperationSpec: coreClient.OperationSpec = { path: "/api/hubs/{hub}/users/{userId}", httpMethod: "HEAD", responses: { 200: {}, 404: {}, default: {} }, @@ -825,7 +744,7 @@ const userExistsOperationSpec: coreHttp.OperationSpec = { urlParameters: [Parameters.$host, Parameters.hub, Parameters.userId], serializer }; -const sendToUser$binaryOperationSpec: coreHttp.OperationSpec = { +const sendToUser$binaryOperationSpec: coreClient.OperationSpec = { path: "/api/hubs/{hub}/users/{userId}/:send", httpMethod: "POST", responses: { 202: {}, default: {} }, @@ -836,7 +755,7 @@ const sendToUser$binaryOperationSpec: coreHttp.OperationSpec = { mediaType: "binary", serializer }; -const sendToUser$textOperationSpec: coreHttp.OperationSpec = { +const sendToUser$textOperationSpec: coreClient.OperationSpec = { path: "/api/hubs/{hub}/users/{userId}/:send", httpMethod: "POST", responses: { 202: {}, default: {} }, @@ -847,23 +766,10 @@ const sendToUser$textOperationSpec: coreHttp.OperationSpec = { mediaType: "text", serializer }; -const userExistsInGroupOperationSpec: coreHttp.OperationSpec = { - path: "/api/hubs/{hub}/users/{userId}/groups/{group}", - httpMethod: "HEAD", - responses: { 200: {}, 404: {}, default: {} }, - queryParameters: [Parameters.apiVersion], - urlParameters: [ - Parameters.$host, - Parameters.hub, - Parameters.group, - Parameters.userId - ], - serializer -}; -const addUserToGroupOperationSpec: coreHttp.OperationSpec = { +const addUserToGroupOperationSpec: coreClient.OperationSpec = { path: "/api/hubs/{hub}/users/{userId}/groups/{group}", httpMethod: "PUT", - responses: { 200: {}, default: {} }, + responses: { 200: {}, 404: {}, default: {} }, queryParameters: [Parameters.apiVersion], urlParameters: [ Parameters.$host, @@ -873,7 +779,7 @@ const addUserToGroupOperationSpec: coreHttp.OperationSpec = { ], serializer }; -const removeUserFromGroupOperationSpec: coreHttp.OperationSpec = { +const removeUserFromGroupOperationSpec: coreClient.OperationSpec = { path: "/api/hubs/{hub}/users/{userId}/groups/{group}", httpMethod: "DELETE", responses: { 200: {}, default: {} }, @@ -886,7 +792,7 @@ const removeUserFromGroupOperationSpec: coreHttp.OperationSpec = { ], serializer }; -const removeUserFromAllGroupsOperationSpec: coreHttp.OperationSpec = { +const removeUserFromAllGroupsOperationSpec: coreClient.OperationSpec = { path: "/api/hubs/{hub}/users/{userId}/groups", httpMethod: "DELETE", responses: { 200: {}, default: {} }, @@ -894,7 +800,7 @@ const removeUserFromAllGroupsOperationSpec: coreHttp.OperationSpec = { urlParameters: [Parameters.$host, Parameters.hub, Parameters.userId], serializer }; -const grantPermissionOperationSpec: coreHttp.OperationSpec = { +const grantPermissionOperationSpec: coreClient.OperationSpec = { path: "/api/hubs/{hub}/permissions/{permission}/connections/{connectionId}", httpMethod: "PUT", responses: { 200: {}, default: {} }, @@ -907,7 +813,7 @@ const grantPermissionOperationSpec: coreHttp.OperationSpec = { ], serializer }; -const revokePermissionOperationSpec: coreHttp.OperationSpec = { +const revokePermissionOperationSpec: coreClient.OperationSpec = { path: "/api/hubs/{hub}/permissions/{permission}/connections/{connectionId}", httpMethod: "DELETE", responses: { 200: {}, default: {} }, @@ -916,11 +822,11 @@ const revokePermissionOperationSpec: coreHttp.OperationSpec = { Parameters.$host, Parameters.hub, Parameters.connectionId, - Parameters.permission1 + Parameters.permission ], serializer }; -const checkPermissionOperationSpec: coreHttp.OperationSpec = { +const checkPermissionOperationSpec: coreClient.OperationSpec = { path: "/api/hubs/{hub}/permissions/{permission}/connections/{connectionId}", httpMethod: "HEAD", responses: { 200: {}, 404: {}, default: {} }, @@ -929,7 +835,7 @@ const checkPermissionOperationSpec: coreHttp.OperationSpec = { Parameters.$host, Parameters.hub, Parameters.connectionId, - Parameters.permission2 + Parameters.permission ], serializer }; diff --git a/sdk/web-pubsub/web-pubsub/src/generated/operationsInterfaces/healthApi.ts b/sdk/web-pubsub/web-pubsub/src/generated/operationsInterfaces/healthApi.ts new file mode 100644 index 000000000000..a91014ad3fa8 --- /dev/null +++ b/sdk/web-pubsub/web-pubsub/src/generated/operationsInterfaces/healthApi.ts @@ -0,0 +1,20 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { HealthApiGetServiceStatusOptionalParams } from "../models"; + +/** Interface representing a HealthApi. */ +export interface HealthApi { + /** + * Get service health status. + * @param options The options parameters. + */ + getServiceStatus( + options?: HealthApiGetServiceStatusOptionalParams + ): Promise; +} diff --git a/sdk/web-pubsub/web-pubsub/src/generated/operationsInterfaces/index.ts b/sdk/web-pubsub/web-pubsub/src/generated/operationsInterfaces/index.ts new file mode 100644 index 000000000000..7c403f3e5b7f --- /dev/null +++ b/sdk/web-pubsub/web-pubsub/src/generated/operationsInterfaces/index.ts @@ -0,0 +1,10 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +export * from "./healthApi"; +export * from "./webPubSub"; diff --git a/sdk/web-pubsub/web-pubsub/src/generated/operationsInterfaces/webPubSub.ts b/sdk/web-pubsub/web-pubsub/src/generated/operationsInterfaces/webPubSub.ts new file mode 100644 index 000000000000..6538420c85e8 --- /dev/null +++ b/sdk/web-pubsub/web-pubsub/src/generated/operationsInterfaces/webPubSub.ts @@ -0,0 +1,272 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import * as coreRestPipeline from "@azure/core-rest-pipeline"; +import { + ContentType, + WebPubSubSendToAll$binaryOptionalParams, + WebPubSubSendToAll$textOptionalParams, + WebPubSubConnectionExistsOptionalParams, + WebPubSubCloseClientConnectionOptionalParams, + WebPubSubSendToConnection$binaryOptionalParams, + WebPubSubSendToConnection$textOptionalParams, + WebPubSubGroupExistsOptionalParams, + WebPubSubSendToGroup$binaryOptionalParams, + WebPubSubSendToGroup$textOptionalParams, + WebPubSubAddConnectionToGroupOptionalParams, + WebPubSubRemoveConnectionFromGroupOptionalParams, + WebPubSubUserExistsOptionalParams, + WebPubSubSendToUser$binaryOptionalParams, + WebPubSubSendToUser$textOptionalParams, + WebPubSubAddUserToGroupOptionalParams, + WebPubSubRemoveUserFromGroupOptionalParams, + WebPubSubRemoveUserFromAllGroupsOptionalParams, + WebPubSubPermission, + WebPubSubGrantPermissionOptionalParams, + WebPubSubRevokePermissionOptionalParams, + WebPubSubCheckPermissionOptionalParams +} from "../models"; + +/** Interface representing a WebPubSub. */ +export interface WebPubSub { + /** + * Broadcast content inside request body to all the connected client connections. + * @param args Includes all the parameters for this operation. + */ + sendToAll( + ...args: + | [ + string, + ContentType, + coreRestPipeline.RequestBodyType, + WebPubSubSendToAll$binaryOptionalParams? + ] + | [string, "text/plain", string, WebPubSubSendToAll$textOptionalParams?] + ): Promise; + /** + * Check if the connection with the given connectionId exists. + * @param hub Target hub name, which should start with alphabetic characters and only contain + * alpha-numeric characters or underscore. + * @param connectionId The connection Id. + * @param options The options parameters. + */ + connectionExists( + hub: string, + connectionId: string, + options?: WebPubSubConnectionExistsOptionalParams + ): Promise; + /** + * Close the client connection. + * @param hub Target hub name, which should start with alphabetic characters and only contain + * alpha-numeric characters or underscore. + * @param connectionId Target connection Id. + * @param options The options parameters. + */ + closeClientConnection( + hub: string, + connectionId: string, + options?: WebPubSubCloseClientConnectionOptionalParams + ): Promise; + /** + * Send content inside request body to the specific connection. + * @param args Includes all the parameters for this operation. + */ + sendToConnection( + ...args: + | [ + string, + string, + ContentType, + coreRestPipeline.RequestBodyType, + WebPubSubSendToConnection$binaryOptionalParams? + ] + | [ + string, + string, + "text/plain", + string, + WebPubSubSendToConnection$textOptionalParams? + ] + ): Promise; + /** + * Check if there are any client connections inside the given group + * @param hub Target hub name, which should start with alphabetic characters and only contain + * alpha-numeric characters or underscore. + * @param group Target group name, which length should be greater than 0 and less than 1025. + * @param options The options parameters. + */ + groupExists( + hub: string, + group: string, + options?: WebPubSubGroupExistsOptionalParams + ): Promise; + /** + * Send content inside request body to a group of connections. + * @param args Includes all the parameters for this operation. + */ + sendToGroup( + ...args: + | [ + string, + string, + ContentType, + coreRestPipeline.RequestBodyType, + WebPubSubSendToGroup$binaryOptionalParams? + ] + | [ + string, + string, + "text/plain", + string, + WebPubSubSendToGroup$textOptionalParams? + ] + ): Promise; + /** + * Add a connection to the target group. + * @param hub Target hub name, which should start with alphabetic characters and only contain + * alpha-numeric characters or underscore. + * @param group Target group name, which length should be greater than 0 and less than 1025. + * @param connectionId Target connection Id + * @param options The options parameters. + */ + addConnectionToGroup( + hub: string, + group: string, + connectionId: string, + options?: WebPubSubAddConnectionToGroupOptionalParams + ): Promise; + /** + * Remove a connection from the target group. + * @param hub Target hub name, which should start with alphabetic characters and only contain + * alpha-numeric characters or underscore. + * @param group Target group name, which length should be greater than 0 and less than 1025. + * @param connectionId Target connection Id. + * @param options The options parameters. + */ + removeConnectionFromGroup( + hub: string, + group: string, + connectionId: string, + options?: WebPubSubRemoveConnectionFromGroupOptionalParams + ): Promise; + /** + * Check if there are any client connections connected for the given user. + * @param hub Target hub name, which should start with alphabetic characters and only contain + * alpha-numeric characters or underscore. + * @param userId Target user Id. + * @param options The options parameters. + */ + userExists( + hub: string, + userId: string, + options?: WebPubSubUserExistsOptionalParams + ): Promise; + /** + * Send content inside request body to the specific user. + * @param args Includes all the parameters for this operation. + */ + sendToUser( + ...args: + | [ + string, + string, + ContentType, + coreRestPipeline.RequestBodyType, + WebPubSubSendToUser$binaryOptionalParams? + ] + | [ + string, + string, + "text/plain", + string, + WebPubSubSendToUser$textOptionalParams? + ] + ): Promise; + /** + * Add a user to the target group. + * @param hub Target hub name, which should start with alphabetic characters and only contain + * alpha-numeric characters or underscore. + * @param group Target group name, which length should be greater than 0 and less than 1025. + * @param userId Target user Id. + * @param options The options parameters. + */ + addUserToGroup( + hub: string, + group: string, + userId: string, + options?: WebPubSubAddUserToGroupOptionalParams + ): Promise; + /** + * Remove a user from the target group. + * @param hub Target hub name, which should start with alphabetic characters and only contain + * alpha-numeric characters or underscore. + * @param group Target group name, which length should be greater than 0 and less than 1025. + * @param userId Target user Id. + * @param options The options parameters. + */ + removeUserFromGroup( + hub: string, + group: string, + userId: string, + options?: WebPubSubRemoveUserFromGroupOptionalParams + ): Promise; + /** + * Remove a user from all groups. + * @param hub Target hub name, which should start with alphabetic characters and only contain + * alpha-numeric characters or underscore. + * @param userId Target user Id. + * @param options The options parameters. + */ + removeUserFromAllGroups( + hub: string, + userId: string, + options?: WebPubSubRemoveUserFromAllGroupsOptionalParams + ): Promise; + /** + * Grant permission to the connection. + * @param hub Target hub name, which should start with alphabetic characters and only contain + * alpha-numeric characters or underscore. + * @param permission The permission: current supported actions are joinLeaveGroup and sendToGroup. + * @param connectionId Target connection Id. + * @param options The options parameters. + */ + grantPermission( + hub: string, + permission: WebPubSubPermission, + connectionId: string, + options?: WebPubSubGrantPermissionOptionalParams + ): Promise; + /** + * Revoke permission for the connection. + * @param hub Target hub name, which should start with alphabetic characters and only contain + * alpha-numeric characters or underscore. + * @param permission The permission: current supported actions are joinLeaveGroup and sendToGroup. + * @param connectionId Target connection Id. + * @param options The options parameters. + */ + revokePermission( + hub: string, + permission: WebPubSubPermission, + connectionId: string, + options?: WebPubSubRevokePermissionOptionalParams + ): Promise; + /** + * Check if a connection has permission to the specified action. + * @param hub Target hub name, which should start with alphabetic characters and only contain + * alpha-numeric characters or underscore. + * @param permission The permission: current supported actions are joinLeaveGroup and sendToGroup. + * @param connectionId Target connection Id. + * @param options The options parameters. + */ + checkPermission( + hub: string, + permission: WebPubSubPermission, + connectionId: string, + options?: WebPubSubCheckPermissionOptionalParams + ): Promise; +} diff --git a/sdk/web-pubsub/web-pubsub/src/groupClient.ts b/sdk/web-pubsub/web-pubsub/src/groupClient.ts index 26c272e858a4..8ccaf395090c 100644 --- a/sdk/web-pubsub/web-pubsub/src/groupClient.ts +++ b/sdk/web-pubsub/web-pubsub/src/groupClient.ts @@ -1,23 +1,18 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import { - OperationOptions, - RestResponse, - RestError, - HttpRequestBody, - PipelineOptions -} from "@azure/core-http"; -import { AzureWebPubSubServiceRestAPI as GeneratedClient } from "./generated/azureWebPubSubServiceRestAPI"; +import { CommonClientOptions, FullOperationResponse, OperationOptions } from "@azure/core-client"; +import { RestError, RequestBodyType } from "@azure/core-rest-pipeline"; +import { GeneratedClient } from "./generated/generatedClient"; import { createSpan } from "./tracing"; import normalizeSendToAllOptions from "./normalizeOptions"; -import { getContentTypeForMessage } from "./utils"; +import { getPayloadForMessage } from "./utils"; import { JSONTypes } from "./hubClient"; /** * Options for constructing a GroupAdmin client. */ -export interface GroupAdminClientOptions extends PipelineOptions {} +export interface GroupAdminClientOptions extends CommonClientOptions {} /** * Options for adding a connection to a group. @@ -92,7 +87,7 @@ export interface WebPubSubGroup { * @param connectionId The connection id to add to this group * @param options Additional options */ - addConnection(connectionId: string, options?: GroupAddConnectionOptions): Promise; + addConnection(connectionId: string, options?: GroupAddConnectionOptions): Promise; /** * Remove a specific connection from this group @@ -100,10 +95,7 @@ export interface WebPubSubGroup { * @param connectionId The connection id to remove from this group * @param options Additional options */ - removeConnection( - connectionId: string, - options?: GroupRemoveConnectionOptions - ): Promise; + removeConnection(connectionId: string, options?: GroupRemoveConnectionOptions): Promise; /** * Add a user to this group @@ -111,15 +103,7 @@ export interface WebPubSubGroup { * @param username The user name to add * @param options Additional options */ - addUser(username: string, options?: GroupAddUserOptions): Promise; - - /** - * Check if a user is in this group - * - * @param username The user name to check for - * @param options Additional options - */ - hasUser(username: string, options?: GroupHasUserOptions): Promise; + addUser(username: string, options?: GroupAddUserOptions): Promise; /** * Remove a user from this group @@ -127,7 +111,7 @@ export interface WebPubSubGroup { * @param username The user name to remove * @param options Additional options */ - removeUser(username: string, options?: GroupRemoveUserOptions): Promise; + removeUser(username: string, options?: GroupRemoveUserOptions): Promise; /** * Send a text message to every connection in this group @@ -135,21 +119,21 @@ export interface WebPubSubGroup { * @param message The message to send * @param options Additional options */ - sendToAll(message: string, options: GroupSendTextToAllOptions): Promise; + sendToAll(message: string, options: GroupSendTextToAllOptions): Promise; /** * Send a json message to every connection in this group * * @param message The message to send * @param options Additional options */ - sendToAll(message: JSONTypes, options?: GroupSendToAllOptions): Promise; + sendToAll(message: JSONTypes, options?: GroupSendToAllOptions): Promise; /** * Send a binary message to every connection in this group * * @param message The binary message to send * @param options Additional options */ - sendToAll(message: HttpRequestBody, options?: GroupSendToAllOptions): Promise; + sendToAll(message: RequestBodyType, options?: GroupSendToAllOptions): Promise; } /** @@ -196,31 +180,32 @@ export class WebPubSubGroupImpl implements WebPubSubGroup { public async addConnection( connectionId: string, options: GroupAddConnectionOptions = {} - ): Promise { + ): Promise { const { span, updatedOptions } = createSpan( "WebPubSubServiceClient-group-addConnection", options ); try { - const res = await this.client.webPubSub.addConnectionToGroup( - this.hubName, - this.groupName, - connectionId, - updatedOptions - ); - - if (res._response.status === 404) { - throw new RestError( - `Connection id '${connectionId}' doesn't exist`, - undefined, - res._response.status, - res._response.request, - res._response - ); + let response: FullOperationResponse | undefined; + function onResponse(rawResponse: FullOperationResponse, flatResponse: unknown): void { + response = rawResponse; + if (updatedOptions.onResponse) { + updatedOptions.onResponse(rawResponse, flatResponse); + } + } + await this.client.webPubSub.addConnectionToGroup(this.hubName, this.groupName, connectionId, { + ...updatedOptions, + onResponse + }); + + if (response?.status === 404) { + throw new RestError(`Connection id '${connectionId}' doesn't exist`, { + statusCode: response?.status, + request: response?.request, + response: response + }); } - - return res; } finally { span.end(); } @@ -235,21 +220,19 @@ export class WebPubSubGroupImpl implements WebPubSubGroup { public async removeConnection( connectionId: string, options: GroupRemoveConnectionOptions = {} - ): Promise { + ): Promise { const { span, updatedOptions } = createSpan( "WebPubSubServiceClient-group-removeConnection", options ); try { - const res = await this.client.webPubSub.removeConnectionFromGroup( + await this.client.webPubSub.removeConnectionFromGroup( this.hubName, this.groupName, connectionId, updatedOptions ); - - return res; } finally { span.end(); } @@ -261,52 +244,16 @@ export class WebPubSubGroupImpl implements WebPubSubGroup { * @param username The user name to add * @param options Additional options */ - public async addUser(username: string, options: GroupAddUserOptions = {}): Promise { + public async addUser(username: string, options: GroupAddUserOptions = {}): Promise { const { span, updatedOptions } = createSpan("WebPubSubServiceClient-group-addUser", options); try { - return await this.client.webPubSub.addUserToGroup( - this.hubName, - this.groupName, - username, - updatedOptions - ); - } finally { - span.end(); - } - } - - /** - * Check if a user is in this group - * - * @param username The user name to check for - * @param options Additional options - */ - public async hasUser(username: string, options: GroupHasUserOptions = {}): Promise { - const { span, updatedOptions } = createSpan("WebPubSubServiceClient-group-hasUser", options); - - try { - const res = await this.client.webPubSub.userExistsInGroup( + await this.client.webPubSub.addUserToGroup( this.hubName, this.groupName, username, updatedOptions ); - - if (res._response.status === 200) { - return true; - } else if (res._response.status === 404) { - return false; - } else { - // this is sad - wish this was handled by autorest. - throw new RestError( - res._response.bodyAsText!, - undefined, - res._response.status, - res._response.request, - res._response - ); - } } finally { span.end(); } @@ -318,14 +265,11 @@ export class WebPubSubGroupImpl implements WebPubSubGroup { * @param username The user name to remove * @param options Additional options */ - public async removeUser( - username: string, - options: GroupRemoveUserOptions = {} - ): Promise { + public async removeUser(username: string, options: GroupRemoveUserOptions = {}): Promise { const { span, updatedOptions } = createSpan("WebPubSubServiceClient-group-removeUser", options); try { - return await this.client.webPubSub.removeUserFromGroup( + await this.client.webPubSub.removeUserFromGroup( this.hubName, this.groupName, username, @@ -342,49 +286,40 @@ export class WebPubSubGroupImpl implements WebPubSubGroup { * @param message The message to send * @param options Additional options */ - public async sendToAll( - message: string, - options: GroupSendTextToAllOptions - ): Promise; + public async sendToAll(message: string, options: GroupSendTextToAllOptions): Promise; /** * Send a json message to every connection in this group * * @param message The message to send * @param options Additional options */ - public async sendToAll( - message: JSONTypes, - options?: GroupSendToAllOptions - ): Promise; + public async sendToAll(message: JSONTypes, options?: GroupSendToAllOptions): Promise; /** * Send a binary message to every connection in this group * * @param message The binary message to send * @param options Additional options */ - public async sendToAll( - message: HttpRequestBody, - options?: GroupSendToAllOptions - ): Promise; + public async sendToAll(message: RequestBodyType, options?: GroupSendToAllOptions): Promise; public async sendToAll( - message: string | HttpRequestBody, + message: JSONTypes | RequestBodyType, options: GroupSendToAllOptions | GroupSendTextToAllOptions = {} - ): Promise { + ): Promise { const normalizedOptions = normalizeSendToAllOptions(options); const { span, updatedOptions } = createSpan( "WebPubSubServiceClient-group-sendToAll", normalizedOptions ); - const contentType = getContentTypeForMessage(message, updatedOptions); + const { contentType, payload } = getPayloadForMessage(message, updatedOptions); try { - return await this.client.webPubSub.sendToGroup( + await this.client.webPubSub.sendToGroup( this.hubName, this.groupName, - contentType as any, - contentType === "application/json" ? JSON.stringify(message) : message, + contentType, + payload as any, updatedOptions ); } finally { diff --git a/sdk/web-pubsub/web-pubsub/src/hubClient.ts b/sdk/web-pubsub/web-pubsub/src/hubClient.ts index 0bbe449b358b..77f8d537dd44 100644 --- a/sdk/web-pubsub/web-pubsub/src/hubClient.ts +++ b/sdk/web-pubsub/web-pubsub/src/hubClient.ts @@ -1,25 +1,18 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import { - OperationOptions, - RestResponse, - RestError, - HttpRequestBody, - InternalPipelineOptions, - createPipelineFromOptions, - PipelineOptions -} from "@azure/core-http"; -import { AzureWebPubSubServiceRestAPI as GeneratedClient } from "./generated/azureWebPubSubServiceRestAPI"; +import { CommonClientOptions, FullOperationResponse, OperationOptions } from "@azure/core-client"; +import { InternalPipelineOptions, RestError, RequestBodyType } from "@azure/core-rest-pipeline"; +import { GeneratedClient } from "./generated/generatedClient"; import { WebPubSubGroup, WebPubSubGroupImpl } from "./groupClient"; import normalizeSendToAllOptions from "./normalizeOptions"; import { AzureKeyCredential } from "@azure/core-auth"; -import { webPubSubAzureKeyCredentialPolicyFactory } from "./webPubSubCredentialPolicy"; +import { webPubSubKeyCredentialPolicy } from "./webPubSubCredentialPolicy"; import { createSpan } from "./tracing"; import { logger } from "./logger"; import { parseConnectionString } from "./parseConnectionString"; import jwt from "jsonwebtoken"; -import { getContentTypeForMessage } from "./utils"; +import { getPayloadForMessage } from "./utils"; /** * Options for closing a connection to a hub. @@ -56,7 +49,7 @@ export type JSONTypes = string | number | boolean | object; /** * Options for constructing a HubAdmin client. */ -export interface HubAdminClientOptions extends PipelineOptions {} +export interface HubAdminClientOptions extends CommonClientOptions {} /** * Options for checking if a connection exists. @@ -259,7 +252,7 @@ export class WebPubSubServiceClient { this.endpoint = parsedCs.endpoint; this.credential = parsedCs.credential; this.hubName = credsOrHubName as string; - this.clientOptions = hubNameOrOpts as PipelineOptions; + this.clientOptions = hubNameOrOpts as HubAdminClientOptions; } const internalPipelineOptions: InternalPipelineOptions = { @@ -271,12 +264,8 @@ export class WebPubSubServiceClient { } }; - const pipeline = createPipelineFromOptions( - internalPipelineOptions, - webPubSubAzureKeyCredentialPolicyFactory(this.credential) - ); - - this.client = new GeneratedClient(this.endpoint, pipeline); + this.client = new GeneratedClient(this.endpoint, internalPipelineOptions); + this.client.pipeline.addPolicy(webPubSubKeyCredentialPolicy(this.credential)); } /** @@ -324,41 +313,39 @@ export class WebPubSubServiceClient { * @param message The text message to send * @param options Additional options */ - public async sendToAll(message: string, options: HubSendTextToAllOptions): Promise; + public async sendToAll(message: string, options: HubSendTextToAllOptions): Promise; /** * Broadcast a JSON message to all connections on this hub. * * @param message The JSON message to send * @param options Additional options */ - public async sendToAll(message: JSONTypes, options?: HubSendToAllOptions): Promise; + public async sendToAll(message: JSONTypes, options?: HubSendToAllOptions): Promise; /** * Broadcast a binary message to all connections on this hub. * * @param message The message to send * @param options Additional options */ - public async sendToAll( - message: HttpRequestBody, - options?: HubSendToAllOptions - ): Promise; + public async sendToAll(message: RequestBodyType, options?: HubSendToAllOptions): Promise; public async sendToAll( - message: HttpRequestBody | string, + message: RequestBodyType | JSONTypes, options: HubSendToAllOptions | HubSendTextToAllOptions = {} - ): Promise { + ): Promise { const normalizedOptions = normalizeSendToAllOptions(options); const { span, updatedOptions } = createSpan( "WebPubSubServiceClient-hub-sendToAll", normalizedOptions ); - const contentType = getContentTypeForMessage(message, updatedOptions); + const { contentType, payload } = getPayloadForMessage(message, updatedOptions); + try { return await this.client.webPubSub.sendToAll( this.hubName, - contentType as any, - contentType === "application/json" ? JSON.stringify(message) : message, + contentType, + payload as any, updatedOptions ); } finally { @@ -377,7 +364,7 @@ export class WebPubSubServiceClient { username: string, message: string, options: HubSendTextToUserOptions - ): Promise; + ): Promise; /** * Send a JSON message to a specific user @@ -390,7 +377,7 @@ export class WebPubSubServiceClient { username: string, message: JSONTypes, options?: HubSendToUserOptions - ): Promise; + ): Promise; /** * Send a binary message to a specific user @@ -401,24 +388,23 @@ export class WebPubSubServiceClient { */ public async sendToUser( username: string, - message: HttpRequestBody, + message: RequestBodyType, options?: HubSendToUserOptions | HubSendTextToUserOptions - ): Promise; + ): Promise; public async sendToUser( username: string, - message: string | HttpRequestBody, + message: RequestBodyType | JSONTypes, options: HubSendToUserOptions = {} - ): Promise { + ): Promise { const { span, updatedOptions } = createSpan("WebPubSubServiceClient-hub-sendToUser", options); - const contentType = getContentTypeForMessage(message, updatedOptions); - + const { contentType, payload } = getPayloadForMessage(message, updatedOptions); try { return await this.client.webPubSub.sendToUser( this.hubName, username, - contentType as any, - contentType === "application/json" ? JSON.stringify(message) : message, + contentType, + payload as any, updatedOptions ); } finally { @@ -437,7 +423,7 @@ export class WebPubSubServiceClient { connectionId: string, message: string, options: HubSendTextToConnectionOptions - ): Promise; + ): Promise; /** * Send a binary message to a specific connection @@ -450,7 +436,7 @@ export class WebPubSubServiceClient { connectionId: string, message: JSONTypes, options?: HubSendToConnectionOptions - ): Promise; + ): Promise; /** * Send a binary message to a specific connection @@ -461,26 +447,26 @@ export class WebPubSubServiceClient { */ public async sendToConnection( connectionId: string, - message: HttpRequestBody | JSONTypes, + message: RequestBodyType, options?: HubSendToConnectionOptions | HubSendTextToConnectionOptions - ): Promise; + ): Promise; public async sendToConnection( connectionId: string, - message: string | HttpRequestBody, + message: RequestBodyType | JSONTypes, options: HubSendToConnectionOptions = {} - ): Promise { + ): Promise { const { span, updatedOptions } = createSpan( "WebPubSubServiceClient-hub-sendToConnection", options ); - const contentType = getContentTypeForMessage(message, updatedOptions); + const { contentType, payload } = getPayloadForMessage(message, updatedOptions); try { return await this.client.webPubSub.sendToConnection( this.hubName, connectionId, - contentType as any, - contentType === "application/json" ? JSON.stringify(message) : message, + contentType, + payload as any, updatedOptions ); } finally { @@ -504,25 +490,30 @@ export class WebPubSubServiceClient { ); try { - const res = await this.client.webPubSub.connectionExists( - this.hubName, - connectionId, - updatedOptions - ); + let response: FullOperationResponse | undefined; + function onResponse(rawResponse: FullOperationResponse, flatResponse: unknown): void { + response = rawResponse; + if (updatedOptions.onResponse) { + updatedOptions.onResponse(rawResponse, flatResponse); + } + } - if (res._response.status === 200) { + await this.client.webPubSub.connectionExists(this.hubName, connectionId, { + ...updatedOptions, + onResponse + }); + + if (response?.status === 200) { return true; - } else if (res._response.status === 404) { + } else if (response?.status === 404) { return false; } else { // this is sad - wish this was handled by autorest. - throw new RestError( - res._response.bodyAsText!, - undefined, - res._response.status, - res._response.request, - res._response - ); + throw new RestError(response?.bodyAsText!, { + statusCode: response?.status, + request: response?.request, + response: response + }); } } finally { span.end(); @@ -538,7 +529,7 @@ export class WebPubSubServiceClient { public async closeConnection( connectionId: string, options: CloseConnectionOptions = {} - ): Promise { + ): Promise { const { span, updatedOptions } = createSpan( "WebPubSubServiceClient-hub-removeConnection", options @@ -563,18 +554,14 @@ export class WebPubSubServiceClient { public async removeUserFromAllGroups( userId: string, options: CloseConnectionOptions = {} - ): Promise { + ): Promise { const { span, updatedOptions } = createSpan( "WebPubSubServiceClient-hub-removeUserFromAllGroups", options ); try { - return await this.client.webPubSub.removeUserFromAllGroups( - this.hubName, - userId, - updatedOptions - ); + await this.client.webPubSub.removeUserFromAllGroups(this.hubName, userId, updatedOptions); } finally { span.end(); } @@ -590,20 +577,28 @@ export class WebPubSubServiceClient { const { span, updatedOptions } = createSpan("WebPubSubServiceClient-hub-hasGroup", options); try { - const res = await this.client.webPubSub.groupExists(this.hubName, groupName, updatedOptions); + let response: FullOperationResponse | undefined; + function onResponse(rawResponse: FullOperationResponse, flatResponse: unknown): void { + response = rawResponse; + if (updatedOptions.onResponse) { + updatedOptions.onResponse(rawResponse, flatResponse); + } + } + await this.client.webPubSub.groupExists(this.hubName, groupName, { + ...updatedOptions, + onResponse + }); - if (res._response.status === 200) { + if (response?.status === 200) { return true; - } else if (res._response.status === 404) { + } else if (response?.status === 404) { return false; } else { - throw new RestError( - res._response.bodyAsText!, - undefined, - res._response.status, - res._response.request, - res._response - ); + throw new RestError(response?.bodyAsText!, { + statusCode: response?.status, + request: response?.request, + response: response + }); } } finally { span.end(); @@ -620,21 +615,29 @@ export class WebPubSubServiceClient { const { span, updatedOptions } = createSpan("WebPubSubServiceClient-hub-hasUser", options); try { - const res = await this.client.webPubSub.userExists(this.hubName, username, updatedOptions); + let response: FullOperationResponse | undefined; + function onResponse(rawResponse: FullOperationResponse, flatResponse: unknown): void { + response = rawResponse; + if (updatedOptions.onResponse) { + updatedOptions.onResponse(rawResponse, flatResponse); + } + } + await this.client.webPubSub.userExists(this.hubName, username, { + ...updatedOptions, + onResponse + }); - if (res._response.status === 200) { + if (response?.status === 200) { return true; - } else if (res._response.status === 404) { + } else if (response?.status === 404) { return false; } else { // this is sad - wish this was handled by autorest. - throw new RestError( - res._response.bodyAsText!, - undefined, - res._response.status, - res._response.request, - res._response - ); + throw new RestError(response?.bodyAsText!, { + statusCode: response?.status, + request: response?.request, + response: response + }); } } finally { span.end(); @@ -710,19 +713,37 @@ export class WebPubSubServiceClient { connectionId: string, permission: Permission, options: HubHasPermissionOptions = {} - ) { + ): Promise { const { span, updatedOptions } = createSpan( "WebPubSubServiceClient-hub-hasPermission", options ); try { - return await this.client.webPubSub.checkPermission( - this.hubName, - permission, - connectionId, - updatedOptions - ); + let response: FullOperationResponse | undefined; + function onResponse(rawResponse: FullOperationResponse, flatResponse: unknown): void { + response = rawResponse; + if (updatedOptions.onResponse) { + updatedOptions.onResponse(rawResponse, flatResponse); + } + } + await this.client.webPubSub.checkPermission(this.hubName, permission, connectionId, { + ...updatedOptions, + onResponse + }); + + if (response?.status === 200) { + return true; + } else if (response?.status === 404) { + return false; + } else { + // this is sad - wish this was handled by autorest. + throw new RestError(response?.bodyAsText!, { + statusCode: response?.status, + request: response?.request, + response: response + }); + } } finally { span.end(); } diff --git a/sdk/web-pubsub/web-pubsub/src/utils.ts b/sdk/web-pubsub/web-pubsub/src/utils.ts index c991503009fe..0bf502f407f9 100644 --- a/sdk/web-pubsub/web-pubsub/src/utils.ts +++ b/sdk/web-pubsub/web-pubsub/src/utils.ts @@ -1,6 +1,6 @@ -import { HttpRequestBody } from "@azure/core-http"; +import { RequestBodyType } from "@azure/core-rest-pipeline"; -function isHttpRequestBody(obj: unknown): obj is HttpRequestBody { +function isRequestBody(obj: unknown): obj is RequestBodyType { return ( typeof obj === "function" || (typeof obj === "object" && @@ -11,18 +11,32 @@ function isHttpRequestBody(obj: unknown): obj is HttpRequestBody { ); } -export function getContentTypeForMessage( - message: unknown, - options: Record -): "text/plain" | "application/json" | "application/octet-stream" { +export interface TextPlainPayload { + contentType: "text/plain"; + payload: string; +} + +export interface JsonPayload { + contentType: "application/json"; + payload: string; +} + +export interface BinaryPayload { + contentType: "application/octet-stream"; + payload: RequestBodyType; +} + +export type Payload = TextPlainPayload | JsonPayload | BinaryPayload; + +export function getPayloadForMessage(message: unknown, options: Record): Payload { if (options?.contentType === "text/plain") { if (typeof message !== "string") { throw new TypeError("Message must be a string."); } - return "text/plain"; - } else if (isHttpRequestBody(message)) { - return "application/octet-stream"; + return { contentType: "text/plain", payload: message }; + } else if (isRequestBody(message)) { + return { contentType: "application/octet-stream", payload: message }; } else { - return "application/json"; + return { contentType: "application/json", payload: JSON.stringify(message) }; } } diff --git a/sdk/web-pubsub/web-pubsub/src/webPubSubCredentialPolicy.ts b/sdk/web-pubsub/web-pubsub/src/webPubSubCredentialPolicy.ts index c636304a279a..696dded592d1 100644 --- a/sdk/web-pubsub/web-pubsub/src/webPubSubCredentialPolicy.ts +++ b/sdk/web-pubsub/web-pubsub/src/webPubSubCredentialPolicy.ts @@ -1,48 +1,37 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. +import { KeyCredential } from "@azure/core-auth"; import { - BaseRequestPolicy, - RequestPolicy, - RequestPolicyOptions, - WebResource, - HttpOperationResponse -} from "@azure/core-http"; -import { AzureKeyCredential } from "@azure/core-auth"; + PipelineResponse, + PipelineRequest, + SendRequest, + PipelinePolicy +} from "@azure/core-rest-pipeline"; import jwt from "jsonwebtoken"; -export function webPubSubAzureKeyCredentialPolicyFactory(credential: AzureKeyCredential) { +/** + * The programmatic identifier of the webPubSubKeyCredentialPolicy. + */ +export const webPubSubKeyCredentialPolicyName = "webPubSubKeyCredentialPolicy"; + +/** + * Create an HTTP pipeline policy to authenticate a request + * using an `AzureKeyCredential` for Text Analytics + * @internal + */ +export function webPubSubKeyCredentialPolicy(credential: KeyCredential): PipelinePolicy { return { - create: (nextPolicy: RequestPolicy, options: RequestPolicyOptions) => { - return new WebPubSubKeyCredentialPolicy(nextPolicy, options, credential); + name: webPubSubKeyCredentialPolicyName, + sendRequest(request: PipelineRequest, next: SendRequest): Promise { + const bearerToken = jwt.sign({}, credential.key, { + audience: request.url, + expiresIn: "1h", + algorithm: "HS256" + }); + request.headers.set("Authorization", `Bearer ${bearerToken}`); + return next(request); } }; } - -export class WebPubSubKeyCredentialPolicy extends BaseRequestPolicy { - public credential: AzureKeyCredential; - - constructor( - nextPolicy: RequestPolicy, - options: RequestPolicyOptions, - credential: AzureKeyCredential - ) { - super(nextPolicy, options); - this.credential = credential; - } - - public sendRequest(request: WebResource): Promise { - request.headers.set( - "Authorization", - "Bearer " + - jwt.sign({}, this.credential.key, { - audience: request.url, - expiresIn: "1h", - algorithm: "HS256" - }) - ); - - return this._nextPolicy.sendRequest(request); - } -} diff --git a/sdk/web-pubsub/web-pubsub/swagger/README.md b/sdk/web-pubsub/web-pubsub/swagger/README.md new file mode 100644 index 000000000000..2972271766e8 --- /dev/null +++ b/sdk/web-pubsub/web-pubsub/swagger/README.md @@ -0,0 +1,28 @@ +# Azure Web PubSub Protocol Layer + +> see https://aka.ms/autorest + +## Configuration + +```yaml +package-name: "@azure/web-pubsub" +title: GeneratedClient +description: Web PubSub Client +generate-metadata: false +license-header: MICROSOFT_MIT_NO_VERSION +output-folder: ../ +source-code-folder-path: ./src/generated +input-file: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/webpubsub/data-plane/WebPubSub/preview/2021-05-01-preview/webpubsub.json +add-credentials: false +package-version: 1.0.0-beta.3 +v3: true +hide-clients: true +use-core-v2: true +use-extension: + "@autorest/modelerfour": "4.19.3" +``` + +## Customizations for Track 2 Generator + +See the [AutoRest samples](https://github.com/Azure/autorest/tree/master/Samples/3b-custom-transformations) +for more about how we're customizing things. diff --git a/sdk/web-pubsub/web-pubsub/test/conn.spec.ts b/sdk/web-pubsub/web-pubsub/test/conn.spec.ts index b276c9983407..8e2aa21717e4 100644 --- a/sdk/web-pubsub/web-pubsub/test/conn.spec.ts +++ b/sdk/web-pubsub/web-pubsub/test/conn.spec.ts @@ -2,7 +2,7 @@ // Licensed under the MIT license. /* eslint-disable no-invalid-this */ import { parseConnectionString } from "../src/parseConnectionString"; -import * as assert from "assert"; +import { assert } from "chai"; describe("Can parse connection string", function() { it("can parse valid connection string", async () => { diff --git a/sdk/web-pubsub/web-pubsub/test/groups.spec.ts b/sdk/web-pubsub/web-pubsub/test/groups.spec.ts index fb3f971b3d7c..a9f62745911a 100644 --- a/sdk/web-pubsub/web-pubsub/test/groups.spec.ts +++ b/sdk/web-pubsub/web-pubsub/test/groups.spec.ts @@ -3,14 +3,19 @@ /* eslint-disable no-invalid-this */ import { env, Recorder, record } from "@azure/test-utils-recorder"; import { WebPubSubServiceClient, WebPubSubGroup } from "../src"; -import * as assert from "assert"; +import { assert } from "chai"; import environmentSetup from "./testEnv"; -import { RestError } from "@azure/core-http"; +import { FullOperationResponse } from "@azure/core-client"; +import { RestError } from "@azure/core-rest-pipeline"; describe("Group client working with a group", function() { this.timeout(30000); let recorder: Recorder; let client: WebPubSubGroup; + let lastResponse: FullOperationResponse | undefined; + function onResponse(response: FullOperationResponse) { + lastResponse = response; + } beforeEach(function() { recorder = record(this, environmentSetup); const hubClient = new WebPubSubServiceClient(env.WPS_CONNECTION_STRING, "simplechat"); @@ -18,49 +23,37 @@ describe("Group client working with a group", function() { }); it("can broadcast to groups", async () => { - let res = await client.sendToAll("hello", { contentType: "text/plain" }); - assert.equal(res._response.status, 202); + await client.sendToAll("hello", { contentType: "text/plain", onResponse }); + assert.equal(lastResponse?.status, 202); - res = await client.sendToAll({ x: 1, y: 2 }); - assert.equal(res._response.status, 202); + await client.sendToAll({ x: 1, y: 2 }, { onResponse }); + assert.equal(lastResponse?.status, 202); const binaryMessage = new Uint8Array(10); - res = await client.sendToAll(binaryMessage.buffer); - assert.equal(res._response.status, 202); + await client.sendToAll(binaryMessage.buffer, { onResponse }); + assert.equal(lastResponse?.status, 202); }); it("can manage connections", async () => { // this endpoint returns 404 for connections not on the hub - let error: RestError; + let error: RestError | undefined; try { await client.addConnection("xxxx"); } catch (e) { error = e; } - assert.notStrictEqual(error!, undefined); - assert.equal(error!.name, "RestError"); + assert.exists(error); + assert.strictEqual(error?.name, "RestError"); // this endpoint just returns 200 if the connection isn't present - const res2 = await client.removeConnection("xxxx"); - assert.equal(res2._response.status, 200); + await client.removeConnection("xxxx", { onResponse }); + assert.equal(lastResponse?.status, 200); }); it("can manage users", async () => { - const res = await client.addUser("brian"); - assert.equal(res._response.status, 200); - - const hasBrian = await client.hasUser("brian"); - assert.ok(hasBrian); - - const hasJeff = await client.hasUser("jeff"); - assert.ok(!hasJeff); - - const res2 = await client.removeUser("brian"); - assert.equal(res2._response.status, 200); - - const hasBrianNow = await client.hasUser("brian"); - assert.ok(!hasBrianNow); + await client.addUser("brian"); + await client.removeUser("brian"); }); afterEach(async function() { diff --git a/sdk/web-pubsub/web-pubsub/test/hubs.spec.ts b/sdk/web-pubsub/web-pubsub/test/hubs.spec.ts index 00dbd13d085f..5dac4db0c96c 100644 --- a/sdk/web-pubsub/web-pubsub/test/hubs.spec.ts +++ b/sdk/web-pubsub/web-pubsub/test/hubs.spec.ts @@ -3,8 +3,9 @@ /* eslint-disable no-invalid-this */ import { env, Recorder, record } from "@azure/test-utils-recorder"; import { WebPubSubServiceClient, AzureKeyCredential } from "../src"; -import * as assert from "assert"; +import { assert } from "chai"; import environmentSetup from "./testEnv"; +import { FullOperationResponse } from "@azure/core-client"; describe("HubClient", function() { let recorder: Recorder; @@ -19,11 +20,6 @@ describe("HubClient", function() { }); describe("Constructing a HubClient", () => { - let cred: AzureKeyCredential; - beforeEach(function() { - cred = new AzureKeyCredential(env.WPS_API_KEY); - }); - it("takes a connection string, hub name, and options", () => { assert.doesNotThrow(() => { new WebPubSubServiceClient(env.WPS_CONNECTION_STRING, "test-hub", { @@ -34,62 +30,74 @@ describe("HubClient", function() { it("takes an endpoint, an API key, a hub name, and options", () => { assert.doesNotThrow(() => { - new WebPubSubServiceClient(env.ENDPOINT, cred, "test-hub", { - retryOptions: { maxRetries: 2 } - }); + new WebPubSubServiceClient( + env.ENDPOINT, + new AzureKeyCredential(env.WPS_API_KEY), + "test-hub", + { + retryOptions: { maxRetries: 2 } + } + ); }); }); }); describe("Working with a hub", function() { - this.timeout(30000); let client: WebPubSubServiceClient; + let lastResponse: FullOperationResponse | undefined; + function onResponse(response: FullOperationResponse) { + lastResponse = response; + } beforeEach(function() { client = new WebPubSubServiceClient(env.WPS_CONNECTION_STRING, "simplechat"); }); it("can broadcast", async () => { - let res = await client.sendToAll("hello", { contentType: "text/plain" }); - assert.equal(res._response.status, 202); + await client.sendToAll("hello", { contentType: "text/plain", onResponse }); + assert.equal(lastResponse?.status, 202); - res = await client.sendToAll({ x: 1, y: 2 }); - assert.equal(res._response.status, 202); + await client.sendToAll({ x: 1, y: 2 }, { onResponse }); + assert.equal(lastResponse?.status, 202); const binaryMessage = new Uint8Array(10); - res = await client.sendToAll(binaryMessage.buffer); - assert.equal(res._response.status, 202); + await client.sendToAll(binaryMessage.buffer, { onResponse }); + assert.equal(lastResponse?.status, 202); }); it("can send messages to a user", async () => { - let res = await client.sendToUser("brian", "hello", { contentType: "text/plain" }); - assert.equal(res._response.status, 202); + await client.sendToUser("brian", "hello", { + contentType: "text/plain", + onResponse + }); + assert.equal(lastResponse?.status, 202); - res = await client.sendToUser("brian", { x: 1, y: 2 }); - assert.equal(res._response.status, 202); + await client.sendToUser("brian", { x: 1, y: 2 }, { onResponse }); + assert.equal(lastResponse?.status, 202); const binaryMessage = new Uint8Array(10); - res = await client.sendToUser("brian", binaryMessage.buffer); - assert.equal(res._response.status, 202); + await client.sendToUser("brian", binaryMessage.buffer, { onResponse }); + assert.equal(lastResponse?.status, 202); }); it("can send messages to a connection", async () => { - let res = await client.sendToConnection("xxxx", "hello", { contentType: "text/plain" }); - assert.equal(res._response.status, 202); + await client.sendToConnection("xxxx", "hello", { contentType: "text/plain", onResponse }); + assert.equal(lastResponse?.status, 202); - res = await client.sendToConnection("xxxx", { x: 1, y: 2 }); - assert.equal(res._response.status, 202); + await client.sendToConnection("xxxx", { x: 1, y: 2 }, { onResponse }); + assert.equal(lastResponse?.status, 202); const binaryMessage = new Uint8Array(10); - res = await client.sendToConnection("xxxx", binaryMessage.buffer); - assert.equal(res._response.status, 202); + await client.sendToConnection("xxxx", binaryMessage.buffer, { onResponse }); + assert.equal(lastResponse?.status, 202); }); - it("can manage users", async () => { + // `removeUserFromAllGroups` always times out. + it.skip("can manage users", async () => { + this.timeout(Infinity); const res = await client.hasUser("foo"); assert.ok(!res); - - const res2 = await client.removeUserFromAllGroups("brian"); - assert.equal(res2._response.status, 200); + await client.removeUserFromAllGroups("brian", { onResponse }); + assert.equal(lastResponse?.status, 200); }); it("can check if a connection exists", async () => { From 5c5c2cfef6310c35aba40fad25e0a35a468a2fdc Mon Sep 17 00:00:00 2001 From: Matt Ellis Date: Mon, 28 Jun 2021 13:24:03 -0700 Subject: [PATCH 20/49] [EventGrid] Move to Core V2 Generator (#16047) As part of the development of the new pipeline, event grid was hand ported to use the new pipeline. Now that the code generator targets the new pipeline, we can start using it to generate the code. Since EventGrid includes the `/api/events` path segment in the Endpoint, We need to do a small amount of post processing of the generated code, to ensure `/api/events` is not appended to the endpoint (we do this by setting an empty path in the operation spec, which is as things were before moving over to the generator). Fixes #15823 --- sdk/eventgrid/eventgrid/package.json | 2 +- .../eventgrid/scripts/setPathToEmpty.js | 12 + .../src/generated/generatedClient.ts | 34 +- .../src/generated/generatedClientContext.ts | 29 +- .../eventgrid/src/generated/models/index.ts | 28 +- .../eventgrid/src/generated/models/mappers.ts | 330 +++++++++--------- sdk/eventgrid/eventgrid/swagger/README.md | 30 +- 7 files changed, 261 insertions(+), 204 deletions(-) create mode 100644 sdk/eventgrid/eventgrid/scripts/setPathToEmpty.js diff --git a/sdk/eventgrid/eventgrid/package.json b/sdk/eventgrid/eventgrid/package.json index 2bab3114d7a7..0a2b75a92b8a 100644 --- a/sdk/eventgrid/eventgrid/package.json +++ b/sdk/eventgrid/eventgrid/package.json @@ -60,7 +60,7 @@ }, "scripts": { "audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit", - "build:autorest": "autorest ./swagger/README.md --typescript --v3", + "build:autorest": "autorest ./swagger/README.md --typescript --v3 && node ./scripts/setPathToEmpty.js", "build:browser": "tsc -p . && cross-env ONLY_BROWSER=true rollup -c 2>&1", "build:node": "tsc -p . && cross-env ONLY_NODE=true rollup -c 2>&1", "build:samples": "echo Obsolete", diff --git a/sdk/eventgrid/eventgrid/scripts/setPathToEmpty.js b/sdk/eventgrid/eventgrid/scripts/setPathToEmpty.js new file mode 100644 index 000000000000..2b2c812937df --- /dev/null +++ b/sdk/eventgrid/eventgrid/scripts/setPathToEmpty.js @@ -0,0 +1,12 @@ +"use strict"; +const fs = require("fs"); + +// The "endpoint" shown in the portal and CLI for an Azure Event Grid includes the "/api/events" +// path parameter. We need to ensure that we don't add another "/api/events" suffix, but there +// is not a way to express this in swagger. So, we post process the generated client to ensure +// that the operation spec we build has the empty string for the path to append. +console.log("Updating ./scr/generate/generateClient.ts path entries"); +let data = fs.readFileSync("./src/generated/generatedClient.ts", "utf8"); +data = data.replace(new RegExp('path: "/api/events"', "g"), 'path: ""'); +fs.writeFileSync("./src/generated/generatedClient.ts", data, "utf8"); +console.log("Done Updating ./scr/generate/generateClient.ts path entries"); diff --git a/sdk/eventgrid/eventgrid/src/generated/generatedClient.ts b/sdk/eventgrid/eventgrid/src/generated/generatedClient.ts index 3c1bfb6c8472..cc90a7648b68 100644 --- a/sdk/eventgrid/eventgrid/src/generated/generatedClient.ts +++ b/sdk/eventgrid/eventgrid/src/generated/generatedClient.ts @@ -6,13 +6,20 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import { OperationOptions, OperationSpec, createSerializer } from "@azure/core-client"; +import * as coreClient from "@azure/core-client"; import * as Parameters from "./models/parameters"; import * as Mappers from "./models/mappers"; import { GeneratedClientContext } from "./generatedClientContext"; -import { GeneratedClientOptionalParams, EventGridEvent, CloudEvent } from "./models"; +import { + GeneratedClientOptionalParams, + EventGridEvent, + GeneratedClientPublishEventsOptionalParams, + CloudEvent, + GeneratedClientPublishCloudEventEventsOptionalParams, + GeneratedClientPublishCustomEventEventsOptionalParams +} from "./models"; -/** @hidden */ +/** @internal */ export class GeneratedClient extends GeneratedClientContext { /** * Initializes a new instance of the GeneratedClient class. @@ -31,9 +38,9 @@ export class GeneratedClient extends GeneratedClientContext { publishEvents( topicHostname: string, events: EventGridEvent[], - options?: OperationOptions + options?: GeneratedClientPublishEventsOptionalParams ): Promise { - return this.sendOperationRequest( + return this.sendOperationRequest( { topicHostname, events, options }, publishEventsOperationSpec ); @@ -48,9 +55,9 @@ export class GeneratedClient extends GeneratedClientContext { publishCloudEventEvents( topicHostname: string, events: CloudEvent[], - options?: OperationOptions + options?: GeneratedClientPublishCloudEventEventsOptionalParams ): Promise { - return this.sendOperationRequest( + return this.sendOperationRequest( { topicHostname, events, options }, publishCloudEventEventsOperationSpec ); @@ -65,19 +72,18 @@ export class GeneratedClient extends GeneratedClientContext { publishCustomEventEvents( topicHostname: string, events: any[], - options?: OperationOptions + options?: GeneratedClientPublishCustomEventEventsOptionalParams ): Promise { - return this.sendOperationRequest( + return this.sendOperationRequest( { topicHostname, events, options }, publishCustomEventEventsOperationSpec ); } } // Operation Specifications +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); -const serializer = createSerializer(Mappers, /* isXml */ false); - -const publishEventsOperationSpec: OperationSpec = { +const publishEventsOperationSpec: coreClient.OperationSpec = { path: "", httpMethod: "POST", responses: { 200: {}, default: {} }, @@ -88,7 +94,7 @@ const publishEventsOperationSpec: OperationSpec = { mediaType: "json", serializer }; -const publishCloudEventEventsOperationSpec: OperationSpec = { +const publishCloudEventEventsOperationSpec: coreClient.OperationSpec = { path: "", httpMethod: "POST", responses: { 200: {}, default: {} }, @@ -99,7 +105,7 @@ const publishCloudEventEventsOperationSpec: OperationSpec = { mediaType: "json", serializer }; -const publishCustomEventEventsOperationSpec: OperationSpec = { +const publishCustomEventEventsOperationSpec: coreClient.OperationSpec = { path: "", httpMethod: "POST", responses: { 200: {}, default: {} }, diff --git a/sdk/eventgrid/eventgrid/src/generated/generatedClientContext.ts b/sdk/eventgrid/eventgrid/src/generated/generatedClientContext.ts index e54dccb52e98..5e7b468d4700 100644 --- a/sdk/eventgrid/eventgrid/src/generated/generatedClientContext.ts +++ b/sdk/eventgrid/eventgrid/src/generated/generatedClientContext.ts @@ -6,32 +6,43 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import { ServiceClient } from "@azure/core-client"; +import * as coreClient from "@azure/core-client"; import { GeneratedClientOptionalParams } from "./models"; -export class GeneratedClientContext extends ServiceClient { +/** @internal */ +export class GeneratedClientContext extends coreClient.ServiceClient { apiVersion: string; /** * Initializes a new instance of the GeneratedClientContext class. * @param options The parameter options */ - constructor(options: GeneratedClientOptionalParams = {}) { + constructor(options?: GeneratedClientOptionalParams) { + // Initializing default values for options + if (!options) { + options = {}; + } const defaults: GeneratedClientOptionalParams = { requestContentType: "application/json; charset=utf-8" }; - const { endpoint, apiVersion, ...restOptions } = options; + const packageDetails = `azsdk-js-eventgrid/4.3.1`; + const userAgentPrefix = + options.userAgentOptions && options.userAgentOptions.userAgentPrefix + ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}` + : `${packageDetails}`; - const optionsWithDefaults: GeneratedClientOptionalParams = { + const optionsWithDefaults = { ...defaults, - ...restOptions, - baseUri: endpoint || "{topicHostname}" + ...options, + userAgentOptions: { + userAgentPrefix + }, + baseUri: options.endpoint || "{topicHostname}" }; - super(optionsWithDefaults); // Assigning values to Constant parameters - this.apiVersion = apiVersion || "2018-01-01"; + this.apiVersion = options.apiVersion || "2018-01-01"; } } diff --git a/sdk/eventgrid/eventgrid/src/generated/models/index.ts b/sdk/eventgrid/eventgrid/src/generated/models/index.ts index d13295545ec5..3fe8c0c9cb64 100644 --- a/sdk/eventgrid/eventgrid/src/generated/models/index.ts +++ b/sdk/eventgrid/eventgrid/src/generated/models/index.ts @@ -5,7 +5,8 @@ * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import { ServiceClientOptions } from "@azure/core-client"; + +import * as coreClient from "@azure/core-client"; export type MediaJobOutputUnion = MediaJobOutput | MediaJobOutputAsset; @@ -2369,7 +2370,7 @@ export const enum KnownAppAction { * Defines values for AppAction. \ * {@link KnownAppAction} can be used interchangeably with AppAction, * this enum contains the known values that the service supports. - * ### Know values supported by the service + * ### Known values supported by the service * **Restarted**: Web app was restarted. \ * **Stopped**: Web app was stopped. \ * **ChangedAppSettings**: There was an operation to change app setting on the web app. \ @@ -2393,7 +2394,7 @@ export const enum KnownStampKind { * Defines values for StampKind. \ * {@link KnownStampKind} can be used interchangeably with StampKind, * this enum contains the known values that the service supports. - * ### Know values supported by the service + * ### Known values supported by the service * **Public**: App Service Plan is running on a public stamp. \ * **AseV1**: App Service Plan is running on an App Service Environment V1. \ * **AseV2**: App Service Plan is running on an App Service Environment V2. @@ -2410,7 +2411,7 @@ export const enum KnownAppServicePlanAction { * Defines values for AppServicePlanAction. \ * {@link KnownAppServicePlanAction} can be used interchangeably with AppServicePlanAction, * this enum contains the known values that the service supports. - * ### Know values supported by the service + * ### Known values supported by the service * **Updated**: App Service plan is being updated. */ export type AppServicePlanAction = string; @@ -2429,7 +2430,7 @@ export const enum KnownAsyncStatus { * Defines values for AsyncStatus. \ * {@link KnownAsyncStatus} can be used interchangeably with AsyncStatus, * this enum contains the known values that the service supports. - * ### Know values supported by the service + * ### Known values supported by the service * **Started**: Async operation has started. \ * **Completed**: Async operation has completed. \ * **Failed**: Async operation failed to complete. @@ -2447,7 +2448,7 @@ export const enum KnownCommunicationCloudEnvironmentModel { * Defines values for CommunicationCloudEnvironmentModel. \ * {@link KnownCommunicationCloudEnvironmentModel} can be used interchangeably with CommunicationCloudEnvironmentModel, * this enum contains the known values that the service supports. - * ### Know values supported by the service + * ### Known values supported by the service * **public** \ * **dod** \ * **gcch** @@ -2484,7 +2485,20 @@ export type MediaJobErrorCategory = export type MediaJobRetry = "DoNotRetry" | "MayRetry"; /** Optional parameters. */ -export interface GeneratedClientOptionalParams extends ServiceClientOptions { +export interface GeneratedClientPublishEventsOptionalParams + extends coreClient.OperationOptions {} + +/** Optional parameters. */ +export interface GeneratedClientPublishCloudEventEventsOptionalParams + extends coreClient.OperationOptions {} + +/** Optional parameters. */ +export interface GeneratedClientPublishCustomEventEventsOptionalParams + extends coreClient.OperationOptions {} + +/** Optional parameters. */ +export interface GeneratedClientOptionalParams + extends coreClient.ServiceClientOptions { /** Api Version */ apiVersion?: string; /** Overrides client endpoint. */ diff --git a/sdk/eventgrid/eventgrid/src/generated/models/mappers.ts b/sdk/eventgrid/eventgrid/src/generated/models/mappers.ts index bd0ce68f509a..0fa5418fabe0 100644 --- a/sdk/eventgrid/eventgrid/src/generated/models/mappers.ts +++ b/sdk/eventgrid/eventgrid/src/generated/models/mappers.ts @@ -6,9 +6,9 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import { CompositeMapper } from "@azure/core-client"; +import * as coreClient from "@azure/core-client"; -export const EventGridEvent: CompositeMapper = { +export const EventGridEvent: coreClient.CompositeMapper = { type: { name: "Composite", className: "EventGridEvent", @@ -72,7 +72,7 @@ export const EventGridEvent: CompositeMapper = { } }; -export const CloudEvent: CompositeMapper = { +export const CloudEvent: coreClient.CompositeMapper = { type: { name: "Composite", className: "CloudEvent", @@ -146,7 +146,7 @@ export const CloudEvent: CompositeMapper = { } }; -export const StorageBlobCreatedEventData: CompositeMapper = { +export const StorageBlobCreatedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "StorageBlobCreatedEventData", @@ -239,7 +239,7 @@ export const StorageBlobCreatedEventData: CompositeMapper = { } }; -export const StorageBlobDeletedEventData: CompositeMapper = { +export const StorageBlobDeletedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "StorageBlobDeletedEventData", @@ -311,7 +311,7 @@ export const StorageBlobDeletedEventData: CompositeMapper = { } }; -export const StorageDirectoryCreatedEventData: CompositeMapper = { +export const StorageDirectoryCreatedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "StorageDirectoryCreatedEventData", @@ -376,7 +376,7 @@ export const StorageDirectoryCreatedEventData: CompositeMapper = { } }; -export const StorageDirectoryDeletedEventData: CompositeMapper = { +export const StorageDirectoryDeletedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "StorageDirectoryDeletedEventData", @@ -441,7 +441,7 @@ export const StorageDirectoryDeletedEventData: CompositeMapper = { } }; -export const StorageBlobRenamedEventData: CompositeMapper = { +export const StorageBlobRenamedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "StorageBlobRenamedEventData", @@ -506,7 +506,7 @@ export const StorageBlobRenamedEventData: CompositeMapper = { } }; -export const StorageDirectoryRenamedEventData: CompositeMapper = { +export const StorageDirectoryRenamedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "StorageDirectoryRenamedEventData", @@ -571,7 +571,7 @@ export const StorageDirectoryRenamedEventData: CompositeMapper = { } }; -export const StorageLifecyclePolicyCompletedEventData: CompositeMapper = { +export const StorageLifecyclePolicyCompletedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "StorageLifecyclePolicyCompletedEventData", @@ -608,7 +608,7 @@ export const StorageLifecyclePolicyCompletedEventData: CompositeMapper = { } }; -export const StorageLifecyclePolicyActionSummaryDetail: CompositeMapper = { +export const StorageLifecyclePolicyActionSummaryDetail: coreClient.CompositeMapper = { type: { name: "Composite", className: "StorageLifecyclePolicyActionSummaryDetail", @@ -638,7 +638,7 @@ export const StorageLifecyclePolicyActionSummaryDetail: CompositeMapper = { } }; -export const StorageBlobTierChangedEventData: CompositeMapper = { +export const StorageBlobTierChangedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "StorageBlobTierChangedEventData", @@ -717,7 +717,7 @@ export const StorageBlobTierChangedEventData: CompositeMapper = { } }; -export const StorageAsyncOperationInitiatedEventData: CompositeMapper = { +export const StorageAsyncOperationInitiatedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "StorageAsyncOperationInitiatedEventData", @@ -796,7 +796,7 @@ export const StorageAsyncOperationInitiatedEventData: CompositeMapper = { } }; -export const StorageBlobInventoryPolicyCompletedEventData: CompositeMapper = { +export const StorageBlobInventoryPolicyCompletedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "StorageBlobInventoryPolicyCompletedEventData", @@ -854,7 +854,7 @@ export const StorageBlobInventoryPolicyCompletedEventData: CompositeMapper = { } }; -export const EventHubCaptureFileCreatedEventData: CompositeMapper = { +export const EventHubCaptureFileCreatedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "EventHubCaptureFileCreatedEventData", @@ -926,7 +926,7 @@ export const EventHubCaptureFileCreatedEventData: CompositeMapper = { } }; -export const ResourceWriteSuccessEventData: CompositeMapper = { +export const ResourceWriteSuccessEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "ResourceWriteSuccessEventData", @@ -1012,7 +1012,7 @@ export const ResourceWriteSuccessEventData: CompositeMapper = { } }; -export const ResourceWriteFailureEventData: CompositeMapper = { +export const ResourceWriteFailureEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "ResourceWriteFailureEventData", @@ -1098,7 +1098,7 @@ export const ResourceWriteFailureEventData: CompositeMapper = { } }; -export const ResourceWriteCancelEventData: CompositeMapper = { +export const ResourceWriteCancelEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "ResourceWriteCancelEventData", @@ -1184,7 +1184,7 @@ export const ResourceWriteCancelEventData: CompositeMapper = { } }; -export const ResourceDeleteSuccessEventData: CompositeMapper = { +export const ResourceDeleteSuccessEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "ResourceDeleteSuccessEventData", @@ -1270,7 +1270,7 @@ export const ResourceDeleteSuccessEventData: CompositeMapper = { } }; -export const ResourceDeleteFailureEventData: CompositeMapper = { +export const ResourceDeleteFailureEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "ResourceDeleteFailureEventData", @@ -1356,7 +1356,7 @@ export const ResourceDeleteFailureEventData: CompositeMapper = { } }; -export const ResourceDeleteCancelEventData: CompositeMapper = { +export const ResourceDeleteCancelEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "ResourceDeleteCancelEventData", @@ -1442,7 +1442,7 @@ export const ResourceDeleteCancelEventData: CompositeMapper = { } }; -export const ResourceActionSuccessEventData: CompositeMapper = { +export const ResourceActionSuccessEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "ResourceActionSuccessEventData", @@ -1528,7 +1528,7 @@ export const ResourceActionSuccessEventData: CompositeMapper = { } }; -export const ResourceActionFailureEventData: CompositeMapper = { +export const ResourceActionFailureEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "ResourceActionFailureEventData", @@ -1614,7 +1614,7 @@ export const ResourceActionFailureEventData: CompositeMapper = { } }; -export const ResourceActionCancelEventData: CompositeMapper = { +export const ResourceActionCancelEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "ResourceActionCancelEventData", @@ -1700,7 +1700,7 @@ export const ResourceActionCancelEventData: CompositeMapper = { } }; -export const SubscriptionValidationEventData: CompositeMapper = { +export const SubscriptionValidationEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "SubscriptionValidationEventData", @@ -1725,7 +1725,7 @@ export const SubscriptionValidationEventData: CompositeMapper = { } }; -export const SubscriptionValidationResponse: CompositeMapper = { +export const SubscriptionValidationResponse: coreClient.CompositeMapper = { type: { name: "Composite", className: "SubscriptionValidationResponse", @@ -1741,7 +1741,7 @@ export const SubscriptionValidationResponse: CompositeMapper = { } }; -export const SubscriptionDeletedEventData: CompositeMapper = { +export const SubscriptionDeletedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "SubscriptionDeletedEventData", @@ -1758,7 +1758,7 @@ export const SubscriptionDeletedEventData: CompositeMapper = { } }; -export const DeviceLifeCycleEvent: CompositeMapper = { +export const DeviceLifeCycleEvent: coreClient.CompositeMapper = { type: { name: "Composite", className: "DeviceLifeCycleEvent", @@ -1788,7 +1788,7 @@ export const DeviceLifeCycleEvent: CompositeMapper = { } }; -export const DeviceTwinInfo: CompositeMapper = { +export const DeviceTwinInfo: coreClient.CompositeMapper = { type: { name: "Composite", className: "DeviceTwinInfo", @@ -1874,7 +1874,7 @@ export const DeviceTwinInfo: CompositeMapper = { } }; -export const DeviceTwinInfoProperties: CompositeMapper = { +export const DeviceTwinInfoProperties: coreClient.CompositeMapper = { type: { name: "Composite", className: "DeviceTwinInfoProperties", @@ -1897,7 +1897,7 @@ export const DeviceTwinInfoProperties: CompositeMapper = { } }; -export const DeviceTwin: CompositeMapper = { +export const DeviceTwin: coreClient.CompositeMapper = { type: { name: "Composite", className: "DeviceTwin", @@ -1920,7 +1920,7 @@ export const DeviceTwin: CompositeMapper = { } }; -export const DeviceTwinMetadata: CompositeMapper = { +export const DeviceTwinMetadata: coreClient.CompositeMapper = { type: { name: "Composite", className: "DeviceTwinMetadata", @@ -1936,7 +1936,7 @@ export const DeviceTwinMetadata: CompositeMapper = { } }; -export const DeviceTwinInfoX509Thumbprint: CompositeMapper = { +export const DeviceTwinInfoX509Thumbprint: coreClient.CompositeMapper = { type: { name: "Composite", className: "DeviceTwinInfoX509Thumbprint", @@ -1957,7 +1957,7 @@ export const DeviceTwinInfoX509Thumbprint: CompositeMapper = { } }; -export const DeviceConnectionStateEvent: CompositeMapper = { +export const DeviceConnectionStateEvent: coreClient.CompositeMapper = { type: { name: "Composite", className: "DeviceConnectionStateEvent", @@ -1994,7 +1994,7 @@ export const DeviceConnectionStateEvent: CompositeMapper = { } }; -export const DeviceConnectionStateEventInfo: CompositeMapper = { +export const DeviceConnectionStateEventInfo: coreClient.CompositeMapper = { type: { name: "Composite", className: "DeviceConnectionStateEventInfo", @@ -2010,7 +2010,7 @@ export const DeviceConnectionStateEventInfo: CompositeMapper = { } }; -export const DeviceTelemetryEvent: CompositeMapper = { +export const DeviceTelemetryEvent: coreClient.CompositeMapper = { type: { name: "Composite", className: "DeviceTelemetryEvent", @@ -2042,7 +2042,7 @@ export const DeviceTelemetryEvent: CompositeMapper = { } }; -export const ContainerRegistryEventData: CompositeMapper = { +export const ContainerRegistryEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "ContainerRegistryEventData", @@ -2100,7 +2100,7 @@ export const ContainerRegistryEventData: CompositeMapper = { } }; -export const ContainerRegistryEventTarget: CompositeMapper = { +export const ContainerRegistryEventTarget: coreClient.CompositeMapper = { type: { name: "Composite", className: "ContainerRegistryEventTarget", @@ -2158,7 +2158,7 @@ export const ContainerRegistryEventTarget: CompositeMapper = { } }; -export const ContainerRegistryEventRequest: CompositeMapper = { +export const ContainerRegistryEventRequest: coreClient.CompositeMapper = { type: { name: "Composite", className: "ContainerRegistryEventRequest", @@ -2202,7 +2202,7 @@ export const ContainerRegistryEventRequest: CompositeMapper = { } }; -export const ContainerRegistryEventActor: CompositeMapper = { +export const ContainerRegistryEventActor: coreClient.CompositeMapper = { type: { name: "Composite", className: "ContainerRegistryEventActor", @@ -2218,7 +2218,7 @@ export const ContainerRegistryEventActor: CompositeMapper = { } }; -export const ContainerRegistryEventSource: CompositeMapper = { +export const ContainerRegistryEventSource: coreClient.CompositeMapper = { type: { name: "Composite", className: "ContainerRegistryEventSource", @@ -2241,7 +2241,7 @@ export const ContainerRegistryEventSource: CompositeMapper = { } }; -export const ContainerRegistryArtifactEventData: CompositeMapper = { +export const ContainerRegistryArtifactEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "ContainerRegistryArtifactEventData", @@ -2278,7 +2278,7 @@ export const ContainerRegistryArtifactEventData: CompositeMapper = { } }; -export const ContainerRegistryArtifactEventTarget: CompositeMapper = { +export const ContainerRegistryArtifactEventTarget: coreClient.CompositeMapper = { type: { name: "Composite", className: "ContainerRegistryArtifactEventTarget", @@ -2336,7 +2336,7 @@ export const ContainerRegistryArtifactEventTarget: CompositeMapper = { } }; -export const ServiceBusActiveMessagesAvailableWithNoListenersEventData: CompositeMapper = { +export const ServiceBusActiveMessagesAvailableWithNoListenersEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "ServiceBusActiveMessagesAvailableWithNoListenersEventData", @@ -2387,7 +2387,7 @@ export const ServiceBusActiveMessagesAvailableWithNoListenersEventData: Composit } }; -export const ServiceBusDeadletterMessagesAvailableWithNoListenersEventData: CompositeMapper = { +export const ServiceBusDeadletterMessagesAvailableWithNoListenersEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "ServiceBusDeadletterMessagesAvailableWithNoListenersEventData", @@ -2438,7 +2438,7 @@ export const ServiceBusDeadletterMessagesAvailableWithNoListenersEventData: Comp } }; -export const ServiceBusActiveMessagesAvailablePeriodicNotificationsEventData: CompositeMapper = { +export const ServiceBusActiveMessagesAvailablePeriodicNotificationsEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: @@ -2490,7 +2490,7 @@ export const ServiceBusActiveMessagesAvailablePeriodicNotificationsEventData: Co } }; -export const ServiceBusDeadletterMessagesAvailablePeriodicNotificationsEventData: CompositeMapper = { +export const ServiceBusDeadletterMessagesAvailablePeriodicNotificationsEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: @@ -2542,7 +2542,7 @@ export const ServiceBusDeadletterMessagesAvailablePeriodicNotificationsEventData } }; -export const MediaJobStateChangeEventData: CompositeMapper = { +export const MediaJobStateChangeEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "MediaJobStateChangeEventData", @@ -2593,7 +2593,7 @@ export const MediaJobStateChangeEventData: CompositeMapper = { } }; -export const MediaJobError: CompositeMapper = { +export const MediaJobError: coreClient.CompositeMapper = { type: { name: "Composite", className: "MediaJobError", @@ -2667,7 +2667,7 @@ export const MediaJobError: CompositeMapper = { } }; -export const MediaJobErrorDetail: CompositeMapper = { +export const MediaJobErrorDetail: coreClient.CompositeMapper = { type: { name: "Composite", className: "MediaJobErrorDetail", @@ -2692,7 +2692,7 @@ export const MediaJobErrorDetail: CompositeMapper = { } }; -export const MediaJobOutput: CompositeMapper = { +export const MediaJobOutput: coreClient.CompositeMapper = { type: { name: "Composite", className: "MediaJobOutput", @@ -2749,7 +2749,7 @@ export const MediaJobOutput: CompositeMapper = { } }; -export const MediaJobOutputProgressEventData: CompositeMapper = { +export const MediaJobOutputProgressEventData: coreClient.CompositeMapper = { serializedName: "#Microsoft.Media.JobOutputProgress", type: { name: "Composite", @@ -2781,7 +2781,7 @@ export const MediaJobOutputProgressEventData: CompositeMapper = { } }; -export const MediaJobOutputStateChangeEventData: CompositeMapper = { +export const MediaJobOutputStateChangeEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "MediaJobOutputStateChangeEventData", @@ -2822,7 +2822,7 @@ export const MediaJobOutputStateChangeEventData: CompositeMapper = { } }; -export const MediaLiveEventEncoderConnectedEventData: CompositeMapper = { +export const MediaLiveEventEncoderConnectedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "MediaLiveEventEncoderConnectedEventData", @@ -2863,7 +2863,7 @@ export const MediaLiveEventEncoderConnectedEventData: CompositeMapper = { } }; -export const MediaLiveEventConnectionRejectedEventData: CompositeMapper = { +export const MediaLiveEventConnectionRejectedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "MediaLiveEventConnectionRejectedEventData", @@ -2912,7 +2912,7 @@ export const MediaLiveEventConnectionRejectedEventData: CompositeMapper = { } }; -export const MediaLiveEventEncoderDisconnectedEventData: CompositeMapper = { +export const MediaLiveEventEncoderDisconnectedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "MediaLiveEventEncoderDisconnectedEventData", @@ -2961,7 +2961,7 @@ export const MediaLiveEventEncoderDisconnectedEventData: CompositeMapper = { } }; -export const MediaLiveEventIncomingStreamReceivedEventData: CompositeMapper = { +export const MediaLiveEventIncomingStreamReceivedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "MediaLiveEventIncomingStreamReceivedEventData", @@ -3042,7 +3042,7 @@ export const MediaLiveEventIncomingStreamReceivedEventData: CompositeMapper = { } }; -export const MediaLiveEventIncomingStreamsOutOfSyncEventData: CompositeMapper = { +export const MediaLiveEventIncomingStreamsOutOfSyncEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "MediaLiveEventIncomingStreamsOutOfSyncEventData", @@ -3099,7 +3099,7 @@ export const MediaLiveEventIncomingStreamsOutOfSyncEventData: CompositeMapper = } }; -export const MediaLiveEventIncomingVideoStreamsOutOfSyncEventData: CompositeMapper = { +export const MediaLiveEventIncomingVideoStreamsOutOfSyncEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "MediaLiveEventIncomingVideoStreamsOutOfSyncEventData", @@ -3148,7 +3148,7 @@ export const MediaLiveEventIncomingVideoStreamsOutOfSyncEventData: CompositeMapp } }; -export const MediaLiveEventIncomingDataChunkDroppedEventData: CompositeMapper = { +export const MediaLiveEventIncomingDataChunkDroppedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "MediaLiveEventIncomingDataChunkDroppedEventData", @@ -3205,7 +3205,7 @@ export const MediaLiveEventIncomingDataChunkDroppedEventData: CompositeMapper = } }; -export const MediaLiveEventIngestHeartbeatEventData: CompositeMapper = { +export const MediaLiveEventIngestHeartbeatEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "MediaLiveEventIngestHeartbeatEventData", @@ -3310,7 +3310,7 @@ export const MediaLiveEventIngestHeartbeatEventData: CompositeMapper = { } }; -export const MediaLiveEventTrackDiscontinuityDetectedEventData: CompositeMapper = { +export const MediaLiveEventTrackDiscontinuityDetectedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "MediaLiveEventTrackDiscontinuityDetectedEventData", @@ -3375,7 +3375,7 @@ export const MediaLiveEventTrackDiscontinuityDetectedEventData: CompositeMapper } }; -export const MapsGeofenceEvent: CompositeMapper = { +export const MapsGeofenceEvent: coreClient.CompositeMapper = { type: { name: "Composite", className: "MapsGeofenceEvent", @@ -3428,7 +3428,7 @@ export const MapsGeofenceEvent: CompositeMapper = { } }; -export const MapsGeofenceGeometry: CompositeMapper = { +export const MapsGeofenceGeometry: coreClient.CompositeMapper = { type: { name: "Composite", className: "MapsGeofenceGeometry", @@ -3479,7 +3479,7 @@ export const MapsGeofenceGeometry: CompositeMapper = { } }; -export const AppConfigurationKeyValueModifiedEventData: CompositeMapper = { +export const AppConfigurationKeyValueModifiedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "AppConfigurationKeyValueModifiedEventData", @@ -3516,7 +3516,7 @@ export const AppConfigurationKeyValueModifiedEventData: CompositeMapper = { } }; -export const AppConfigurationKeyValueDeletedEventData: CompositeMapper = { +export const AppConfigurationKeyValueDeletedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "AppConfigurationKeyValueDeletedEventData", @@ -3553,7 +3553,7 @@ export const AppConfigurationKeyValueDeletedEventData: CompositeMapper = { } }; -export const SignalRServiceClientConnectionConnectedEventData: CompositeMapper = { +export const SignalRServiceClientConnectionConnectedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "SignalRServiceClientConnectionConnectedEventData", @@ -3590,7 +3590,7 @@ export const SignalRServiceClientConnectionConnectedEventData: CompositeMapper = } }; -export const SignalRServiceClientConnectionDisconnectedEventData: CompositeMapper = { +export const SignalRServiceClientConnectionDisconnectedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "SignalRServiceClientConnectionDisconnectedEventData", @@ -3634,7 +3634,7 @@ export const SignalRServiceClientConnectionDisconnectedEventData: CompositeMappe } }; -export const KeyVaultCertificateNewVersionCreatedEventData: CompositeMapper = { +export const KeyVaultCertificateNewVersionCreatedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "KeyVaultCertificateNewVersionCreatedEventData", @@ -3692,7 +3692,7 @@ export const KeyVaultCertificateNewVersionCreatedEventData: CompositeMapper = { } }; -export const KeyVaultCertificateNearExpiryEventData: CompositeMapper = { +export const KeyVaultCertificateNearExpiryEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "KeyVaultCertificateNearExpiryEventData", @@ -3750,7 +3750,7 @@ export const KeyVaultCertificateNearExpiryEventData: CompositeMapper = { } }; -export const KeyVaultCertificateExpiredEventData: CompositeMapper = { +export const KeyVaultCertificateExpiredEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "KeyVaultCertificateExpiredEventData", @@ -3808,7 +3808,7 @@ export const KeyVaultCertificateExpiredEventData: CompositeMapper = { } }; -export const KeyVaultKeyNewVersionCreatedEventData: CompositeMapper = { +export const KeyVaultKeyNewVersionCreatedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "KeyVaultKeyNewVersionCreatedEventData", @@ -3866,7 +3866,7 @@ export const KeyVaultKeyNewVersionCreatedEventData: CompositeMapper = { } }; -export const KeyVaultKeyNearExpiryEventData: CompositeMapper = { +export const KeyVaultKeyNearExpiryEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "KeyVaultKeyNearExpiryEventData", @@ -3924,7 +3924,7 @@ export const KeyVaultKeyNearExpiryEventData: CompositeMapper = { } }; -export const KeyVaultKeyExpiredEventData: CompositeMapper = { +export const KeyVaultKeyExpiredEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "KeyVaultKeyExpiredEventData", @@ -3982,7 +3982,7 @@ export const KeyVaultKeyExpiredEventData: CompositeMapper = { } }; -export const KeyVaultSecretNewVersionCreatedEventData: CompositeMapper = { +export const KeyVaultSecretNewVersionCreatedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "KeyVaultSecretNewVersionCreatedEventData", @@ -4040,7 +4040,7 @@ export const KeyVaultSecretNewVersionCreatedEventData: CompositeMapper = { } }; -export const KeyVaultSecretNearExpiryEventData: CompositeMapper = { +export const KeyVaultSecretNearExpiryEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "KeyVaultSecretNearExpiryEventData", @@ -4098,7 +4098,7 @@ export const KeyVaultSecretNearExpiryEventData: CompositeMapper = { } }; -export const KeyVaultSecretExpiredEventData: CompositeMapper = { +export const KeyVaultSecretExpiredEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "KeyVaultSecretExpiredEventData", @@ -4156,7 +4156,7 @@ export const KeyVaultSecretExpiredEventData: CompositeMapper = { } }; -export const KeyVaultAccessPolicyChangedEventData: CompositeMapper = { +export const KeyVaultAccessPolicyChangedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "KeyVaultAccessPolicyChangedEventData", @@ -4214,7 +4214,7 @@ export const KeyVaultAccessPolicyChangedEventData: CompositeMapper = { } }; -export const MachineLearningServicesModelRegisteredEventData: CompositeMapper = { +export const MachineLearningServicesModelRegisteredEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "MachineLearningServicesModelRegisteredEventData", @@ -4251,7 +4251,7 @@ export const MachineLearningServicesModelRegisteredEventData: CompositeMapper = } }; -export const MachineLearningServicesModelDeployedEventData: CompositeMapper = { +export const MachineLearningServicesModelDeployedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "MachineLearningServicesModelDeployedEventData", @@ -4295,7 +4295,7 @@ export const MachineLearningServicesModelDeployedEventData: CompositeMapper = { } }; -export const MachineLearningServicesRunCompletedEventData: CompositeMapper = { +export const MachineLearningServicesRunCompletedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "MachineLearningServicesRunCompletedEventData", @@ -4346,7 +4346,7 @@ export const MachineLearningServicesRunCompletedEventData: CompositeMapper = { } }; -export const MachineLearningServicesDatasetDriftDetectedEventData: CompositeMapper = { +export const MachineLearningServicesDatasetDriftDetectedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "MachineLearningServicesDatasetDriftDetectedEventData", @@ -4411,7 +4411,7 @@ export const MachineLearningServicesDatasetDriftDetectedEventData: CompositeMapp } }; -export const MachineLearningServicesRunStatusChangedEventData: CompositeMapper = { +export const MachineLearningServicesRunStatusChangedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "MachineLearningServicesRunStatusChangedEventData", @@ -4469,7 +4469,7 @@ export const MachineLearningServicesRunStatusChangedEventData: CompositeMapper = } }; -export const RedisPatchingCompletedEventData: CompositeMapper = { +export const RedisPatchingCompletedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "RedisPatchingCompletedEventData", @@ -4499,7 +4499,7 @@ export const RedisPatchingCompletedEventData: CompositeMapper = { } }; -export const RedisScalingCompletedEventData: CompositeMapper = { +export const RedisScalingCompletedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "RedisScalingCompletedEventData", @@ -4529,7 +4529,7 @@ export const RedisScalingCompletedEventData: CompositeMapper = { } }; -export const RedisExportRDBCompletedEventData: CompositeMapper = { +export const RedisExportRDBCompletedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "RedisExportRDBCompletedEventData", @@ -4559,7 +4559,7 @@ export const RedisExportRDBCompletedEventData: CompositeMapper = { } }; -export const RedisImportRDBCompletedEventData: CompositeMapper = { +export const RedisImportRDBCompletedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "RedisImportRDBCompletedEventData", @@ -4589,7 +4589,7 @@ export const RedisImportRDBCompletedEventData: CompositeMapper = { } }; -export const WebAppUpdatedEventData: CompositeMapper = { +export const WebAppUpdatedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "WebAppUpdatedEventData", @@ -4647,7 +4647,7 @@ export const WebAppUpdatedEventData: CompositeMapper = { } }; -export const AppEventTypeDetail: CompositeMapper = { +export const AppEventTypeDetail: coreClient.CompositeMapper = { type: { name: "Composite", className: "AppEventTypeDetail", @@ -4663,7 +4663,7 @@ export const AppEventTypeDetail: CompositeMapper = { } }; -export const WebBackupOperationStartedEventData: CompositeMapper = { +export const WebBackupOperationStartedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "WebBackupOperationStartedEventData", @@ -4721,7 +4721,7 @@ export const WebBackupOperationStartedEventData: CompositeMapper = { } }; -export const WebBackupOperationCompletedEventData: CompositeMapper = { +export const WebBackupOperationCompletedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "WebBackupOperationCompletedEventData", @@ -4779,7 +4779,7 @@ export const WebBackupOperationCompletedEventData: CompositeMapper = { } }; -export const WebBackupOperationFailedEventData: CompositeMapper = { +export const WebBackupOperationFailedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "WebBackupOperationFailedEventData", @@ -4837,7 +4837,7 @@ export const WebBackupOperationFailedEventData: CompositeMapper = { } }; -export const WebRestoreOperationStartedEventData: CompositeMapper = { +export const WebRestoreOperationStartedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "WebRestoreOperationStartedEventData", @@ -4895,7 +4895,7 @@ export const WebRestoreOperationStartedEventData: CompositeMapper = { } }; -export const WebRestoreOperationCompletedEventData: CompositeMapper = { +export const WebRestoreOperationCompletedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "WebRestoreOperationCompletedEventData", @@ -4953,7 +4953,7 @@ export const WebRestoreOperationCompletedEventData: CompositeMapper = { } }; -export const WebRestoreOperationFailedEventData: CompositeMapper = { +export const WebRestoreOperationFailedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "WebRestoreOperationFailedEventData", @@ -5011,7 +5011,7 @@ export const WebRestoreOperationFailedEventData: CompositeMapper = { } }; -export const WebSlotSwapStartedEventData: CompositeMapper = { +export const WebSlotSwapStartedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "WebSlotSwapStartedEventData", @@ -5069,7 +5069,7 @@ export const WebSlotSwapStartedEventData: CompositeMapper = { } }; -export const WebSlotSwapCompletedEventData: CompositeMapper = { +export const WebSlotSwapCompletedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "WebSlotSwapCompletedEventData", @@ -5127,7 +5127,7 @@ export const WebSlotSwapCompletedEventData: CompositeMapper = { } }; -export const WebSlotSwapFailedEventData: CompositeMapper = { +export const WebSlotSwapFailedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "WebSlotSwapFailedEventData", @@ -5185,7 +5185,7 @@ export const WebSlotSwapFailedEventData: CompositeMapper = { } }; -export const WebSlotSwapWithPreviewStartedEventData: CompositeMapper = { +export const WebSlotSwapWithPreviewStartedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "WebSlotSwapWithPreviewStartedEventData", @@ -5243,7 +5243,7 @@ export const WebSlotSwapWithPreviewStartedEventData: CompositeMapper = { } }; -export const WebSlotSwapWithPreviewCancelledEventData: CompositeMapper = { +export const WebSlotSwapWithPreviewCancelledEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "WebSlotSwapWithPreviewCancelledEventData", @@ -5301,7 +5301,7 @@ export const WebSlotSwapWithPreviewCancelledEventData: CompositeMapper = { } }; -export const WebAppServicePlanUpdatedEventData: CompositeMapper = { +export const WebAppServicePlanUpdatedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "WebAppServicePlanUpdatedEventData", @@ -5366,7 +5366,7 @@ export const WebAppServicePlanUpdatedEventData: CompositeMapper = { } }; -export const AppServicePlanEventTypeDetail: CompositeMapper = { +export const AppServicePlanEventTypeDetail: coreClient.CompositeMapper = { type: { name: "Composite", className: "AppServicePlanEventTypeDetail", @@ -5396,7 +5396,7 @@ export const AppServicePlanEventTypeDetail: CompositeMapper = { } }; -export const WebAppServicePlanUpdatedEventDataSku: CompositeMapper = { +export const WebAppServicePlanUpdatedEventDataSku: coreClient.CompositeMapper = { type: { name: "Composite", className: "WebAppServicePlanUpdatedEventDataSku", @@ -5435,7 +5435,7 @@ export const WebAppServicePlanUpdatedEventDataSku: CompositeMapper = { } }; -export const CommunicationIdentifierModel: CompositeMapper = { +export const CommunicationIdentifierModel: coreClient.CompositeMapper = { type: { name: "Composite", className: "CommunicationIdentifierModel", @@ -5472,7 +5472,7 @@ export const CommunicationIdentifierModel: CompositeMapper = { } }; -export const CommunicationUserIdentifierModel: CompositeMapper = { +export const CommunicationUserIdentifierModel: coreClient.CompositeMapper = { type: { name: "Composite", className: "CommunicationUserIdentifierModel", @@ -5488,7 +5488,7 @@ export const CommunicationUserIdentifierModel: CompositeMapper = { } }; -export const PhoneNumberIdentifierModel: CompositeMapper = { +export const PhoneNumberIdentifierModel: coreClient.CompositeMapper = { type: { name: "Composite", className: "PhoneNumberIdentifierModel", @@ -5504,7 +5504,7 @@ export const PhoneNumberIdentifierModel: CompositeMapper = { } }; -export const MicrosoftTeamsUserIdentifierModel: CompositeMapper = { +export const MicrosoftTeamsUserIdentifierModel: coreClient.CompositeMapper = { type: { name: "Composite", className: "MicrosoftTeamsUserIdentifierModel", @@ -5532,7 +5532,7 @@ export const MicrosoftTeamsUserIdentifierModel: CompositeMapper = { } }; -export const AcsChatEventBase: CompositeMapper = { +export const AcsChatEventBase: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsChatEventBase", @@ -5562,7 +5562,7 @@ export const AcsChatEventBase: CompositeMapper = { } }; -export const AcsChatEventInThreadBase: CompositeMapper = { +export const AcsChatEventInThreadBase: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsChatEventInThreadBase", @@ -5585,7 +5585,7 @@ export const AcsChatEventInThreadBase: CompositeMapper = { } }; -export const AcsChatThreadParticipant: CompositeMapper = { +export const AcsChatThreadParticipant: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsChatThreadParticipant", @@ -5608,7 +5608,7 @@ export const AcsChatThreadParticipant: CompositeMapper = { } }; -export const AcsSmsDeliveryAttempt: CompositeMapper = { +export const AcsSmsDeliveryAttempt: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsSmsDeliveryAttempt", @@ -5638,7 +5638,7 @@ export const AcsSmsDeliveryAttempt: CompositeMapper = { } }; -export const AcsSmsEventBase: CompositeMapper = { +export const AcsSmsEventBase: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsSmsEventBase", @@ -5668,7 +5668,7 @@ export const AcsSmsEventBase: CompositeMapper = { } }; -export const AcsRecordingFileStatusUpdatedEventData: CompositeMapper = { +export const AcsRecordingFileStatusUpdatedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsRecordingFileStatusUpdatedEventData", @@ -5705,7 +5705,7 @@ export const AcsRecordingFileStatusUpdatedEventData: CompositeMapper = { } }; -export const AcsRecordingStorageInfo: CompositeMapper = { +export const AcsRecordingStorageInfo: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsRecordingStorageInfo", @@ -5727,7 +5727,7 @@ export const AcsRecordingStorageInfo: CompositeMapper = { } }; -export const AcsRecordingChunkInfo: CompositeMapper = { +export const AcsRecordingChunkInfo: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsRecordingChunkInfo", @@ -5771,7 +5771,7 @@ export const AcsRecordingChunkInfo: CompositeMapper = { } }; -export const PolicyInsightsPolicyStateCreatedEventData: CompositeMapper = { +export const PolicyInsightsPolicyStateCreatedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "PolicyInsightsPolicyStateCreatedEventData", @@ -5829,7 +5829,7 @@ export const PolicyInsightsPolicyStateCreatedEventData: CompositeMapper = { } }; -export const PolicyInsightsPolicyStateChangedEventData: CompositeMapper = { +export const PolicyInsightsPolicyStateChangedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "PolicyInsightsPolicyStateChangedEventData", @@ -5887,7 +5887,7 @@ export const PolicyInsightsPolicyStateChangedEventData: CompositeMapper = { } }; -export const PolicyInsightsPolicyStateDeletedEventData: CompositeMapper = { +export const PolicyInsightsPolicyStateDeletedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "PolicyInsightsPolicyStateDeletedEventData", @@ -5945,7 +5945,7 @@ export const PolicyInsightsPolicyStateDeletedEventData: CompositeMapper = { } }; -export const IotHubDeviceCreatedEventData: CompositeMapper = { +export const IotHubDeviceCreatedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "IotHubDeviceCreatedEventData", @@ -5955,7 +5955,7 @@ export const IotHubDeviceCreatedEventData: CompositeMapper = { } }; -export const IotHubDeviceDeletedEventData: CompositeMapper = { +export const IotHubDeviceDeletedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "IotHubDeviceDeletedEventData", @@ -5965,7 +5965,7 @@ export const IotHubDeviceDeletedEventData: CompositeMapper = { } }; -export const IotHubDeviceConnectedEventData: CompositeMapper = { +export const IotHubDeviceConnectedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "IotHubDeviceConnectedEventData", @@ -5975,7 +5975,7 @@ export const IotHubDeviceConnectedEventData: CompositeMapper = { } }; -export const IotHubDeviceDisconnectedEventData: CompositeMapper = { +export const IotHubDeviceDisconnectedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "IotHubDeviceDisconnectedEventData", @@ -5985,7 +5985,7 @@ export const IotHubDeviceDisconnectedEventData: CompositeMapper = { } }; -export const IotHubDeviceTelemetryEventData: CompositeMapper = { +export const IotHubDeviceTelemetryEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "IotHubDeviceTelemetryEventData", @@ -5995,7 +5995,7 @@ export const IotHubDeviceTelemetryEventData: CompositeMapper = { } }; -export const ContainerRegistryImagePushedEventData: CompositeMapper = { +export const ContainerRegistryImagePushedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "ContainerRegistryImagePushedEventData", @@ -6005,7 +6005,7 @@ export const ContainerRegistryImagePushedEventData: CompositeMapper = { } }; -export const ContainerRegistryImageDeletedEventData: CompositeMapper = { +export const ContainerRegistryImageDeletedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "ContainerRegistryImageDeletedEventData", @@ -6015,7 +6015,7 @@ export const ContainerRegistryImageDeletedEventData: CompositeMapper = { } }; -export const ContainerRegistryChartPushedEventData: CompositeMapper = { +export const ContainerRegistryChartPushedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "ContainerRegistryChartPushedEventData", @@ -6025,7 +6025,7 @@ export const ContainerRegistryChartPushedEventData: CompositeMapper = { } }; -export const ContainerRegistryChartDeletedEventData: CompositeMapper = { +export const ContainerRegistryChartDeletedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "ContainerRegistryChartDeletedEventData", @@ -6035,7 +6035,7 @@ export const ContainerRegistryChartDeletedEventData: CompositeMapper = { } }; -export const MediaJobScheduledEventData: CompositeMapper = { +export const MediaJobScheduledEventData: coreClient.CompositeMapper = { serializedName: "#Microsoft.Media.JobScheduled", type: { name: "Composite", @@ -6046,7 +6046,7 @@ export const MediaJobScheduledEventData: CompositeMapper = { } }; -export const MediaJobProcessingEventData: CompositeMapper = { +export const MediaJobProcessingEventData: coreClient.CompositeMapper = { serializedName: "#Microsoft.Media.JobProcessing", type: { name: "Composite", @@ -6057,7 +6057,7 @@ export const MediaJobProcessingEventData: CompositeMapper = { } }; -export const MediaJobCancelingEventData: CompositeMapper = { +export const MediaJobCancelingEventData: coreClient.CompositeMapper = { serializedName: "#Microsoft.Media.JobCanceling", type: { name: "Composite", @@ -6068,7 +6068,7 @@ export const MediaJobCancelingEventData: CompositeMapper = { } }; -export const MediaJobFinishedEventData: CompositeMapper = { +export const MediaJobFinishedEventData: coreClient.CompositeMapper = { serializedName: "#Microsoft.Media.JobFinished", type: { name: "Composite", @@ -6092,7 +6092,7 @@ export const MediaJobFinishedEventData: CompositeMapper = { } }; -export const MediaJobCanceledEventData: CompositeMapper = { +export const MediaJobCanceledEventData: coreClient.CompositeMapper = { serializedName: "#Microsoft.Media.JobCanceled", type: { name: "Composite", @@ -6116,7 +6116,7 @@ export const MediaJobCanceledEventData: CompositeMapper = { } }; -export const MediaJobErroredEventData: CompositeMapper = { +export const MediaJobErroredEventData: coreClient.CompositeMapper = { serializedName: "#Microsoft.Media.JobErrored", type: { name: "Composite", @@ -6140,7 +6140,7 @@ export const MediaJobErroredEventData: CompositeMapper = { } }; -export const MediaJobOutputAsset: CompositeMapper = { +export const MediaJobOutputAsset: coreClient.CompositeMapper = { serializedName: "#Microsoft.Media.JobOutputAsset", type: { name: "Composite", @@ -6160,7 +6160,7 @@ export const MediaJobOutputAsset: CompositeMapper = { } }; -export const MediaJobOutputCanceledEventData: CompositeMapper = { +export const MediaJobOutputCanceledEventData: coreClient.CompositeMapper = { serializedName: "#Microsoft.Media.JobOutputCanceled", type: { name: "Composite", @@ -6171,7 +6171,7 @@ export const MediaJobOutputCanceledEventData: CompositeMapper = { } }; -export const MediaJobOutputCancelingEventData: CompositeMapper = { +export const MediaJobOutputCancelingEventData: coreClient.CompositeMapper = { serializedName: "#Microsoft.Media.JobOutputCanceling", type: { name: "Composite", @@ -6182,7 +6182,7 @@ export const MediaJobOutputCancelingEventData: CompositeMapper = { } }; -export const MediaJobOutputErroredEventData: CompositeMapper = { +export const MediaJobOutputErroredEventData: coreClient.CompositeMapper = { serializedName: "#Microsoft.Media.JobOutputErrored", type: { name: "Composite", @@ -6193,7 +6193,7 @@ export const MediaJobOutputErroredEventData: CompositeMapper = { } }; -export const MediaJobOutputFinishedEventData: CompositeMapper = { +export const MediaJobOutputFinishedEventData: coreClient.CompositeMapper = { serializedName: "#Microsoft.Media.JobOutputFinished", type: { name: "Composite", @@ -6204,7 +6204,7 @@ export const MediaJobOutputFinishedEventData: CompositeMapper = { } }; -export const MediaJobOutputProcessingEventData: CompositeMapper = { +export const MediaJobOutputProcessingEventData: coreClient.CompositeMapper = { serializedName: "#Microsoft.Media.JobOutputProcessing", type: { name: "Composite", @@ -6215,7 +6215,7 @@ export const MediaJobOutputProcessingEventData: CompositeMapper = { } }; -export const MediaJobOutputScheduledEventData: CompositeMapper = { +export const MediaJobOutputScheduledEventData: coreClient.CompositeMapper = { serializedName: "#Microsoft.Media.JobOutputScheduled", type: { name: "Composite", @@ -6226,7 +6226,7 @@ export const MediaJobOutputScheduledEventData: CompositeMapper = { } }; -export const MapsGeofenceEnteredEventData: CompositeMapper = { +export const MapsGeofenceEnteredEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "MapsGeofenceEnteredEventData", @@ -6236,7 +6236,7 @@ export const MapsGeofenceEnteredEventData: CompositeMapper = { } }; -export const MapsGeofenceExitedEventData: CompositeMapper = { +export const MapsGeofenceExitedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "MapsGeofenceExitedEventData", @@ -6246,7 +6246,7 @@ export const MapsGeofenceExitedEventData: CompositeMapper = { } }; -export const MapsGeofenceResultEventData: CompositeMapper = { +export const MapsGeofenceResultEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "MapsGeofenceResultEventData", @@ -6256,7 +6256,7 @@ export const MapsGeofenceResultEventData: CompositeMapper = { } }; -export const AcsChatMessageEventBase: CompositeMapper = { +export const AcsChatMessageEventBase: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsChatMessageEventBase", @@ -6308,7 +6308,7 @@ export const AcsChatMessageEventBase: CompositeMapper = { } }; -export const AcsChatThreadEventBase: CompositeMapper = { +export const AcsChatThreadEventBase: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsChatThreadEventBase", @@ -6332,7 +6332,7 @@ export const AcsChatThreadEventBase: CompositeMapper = { } }; -export const AcsChatMessageEventInThreadBase: CompositeMapper = { +export const AcsChatMessageEventInThreadBase: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsChatMessageEventInThreadBase", @@ -6384,7 +6384,7 @@ export const AcsChatMessageEventInThreadBase: CompositeMapper = { } }; -export const AcsChatThreadEventInThreadBase: CompositeMapper = { +export const AcsChatThreadEventInThreadBase: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsChatThreadEventInThreadBase", @@ -6408,7 +6408,7 @@ export const AcsChatThreadEventInThreadBase: CompositeMapper = { } }; -export const AcsChatParticipantAddedToThreadEventData: CompositeMapper = { +export const AcsChatParticipantAddedToThreadEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsChatParticipantAddedToThreadEventData", @@ -6446,7 +6446,7 @@ export const AcsChatParticipantAddedToThreadEventData: CompositeMapper = { } }; -export const AcsChatParticipantRemovedFromThreadEventData: CompositeMapper = { +export const AcsChatParticipantRemovedFromThreadEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsChatParticipantRemovedFromThreadEventData", @@ -6484,7 +6484,7 @@ export const AcsChatParticipantRemovedFromThreadEventData: CompositeMapper = { } }; -export const AcsSmsDeliveryReportReceivedEventData: CompositeMapper = { +export const AcsSmsDeliveryReportReceivedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsSmsDeliveryReportReceivedEventData", @@ -6535,7 +6535,7 @@ export const AcsSmsDeliveryReportReceivedEventData: CompositeMapper = { } }; -export const AcsSmsReceivedEventData: CompositeMapper = { +export const AcsSmsReceivedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsSmsReceivedEventData", @@ -6559,7 +6559,7 @@ export const AcsSmsReceivedEventData: CompositeMapper = { } }; -export const AcsChatMessageReceivedEventData: CompositeMapper = { +export const AcsChatMessageReceivedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsChatMessageReceivedEventData", @@ -6576,7 +6576,7 @@ export const AcsChatMessageReceivedEventData: CompositeMapper = { } }; -export const AcsChatMessageEditedEventData: CompositeMapper = { +export const AcsChatMessageEditedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsChatMessageEditedEventData", @@ -6600,7 +6600,7 @@ export const AcsChatMessageEditedEventData: CompositeMapper = { } }; -export const AcsChatMessageDeletedEventData: CompositeMapper = { +export const AcsChatMessageDeletedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsChatMessageDeletedEventData", @@ -6617,7 +6617,7 @@ export const AcsChatMessageDeletedEventData: CompositeMapper = { } }; -export const AcsChatThreadCreatedWithUserEventData: CompositeMapper = { +export const AcsChatThreadCreatedWithUserEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsChatThreadCreatedWithUserEventData", @@ -6655,7 +6655,7 @@ export const AcsChatThreadCreatedWithUserEventData: CompositeMapper = { } }; -export const AcsChatThreadWithUserDeletedEventData: CompositeMapper = { +export const AcsChatThreadWithUserDeletedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsChatThreadWithUserDeletedEventData", @@ -6679,7 +6679,7 @@ export const AcsChatThreadWithUserDeletedEventData: CompositeMapper = { } }; -export const AcsChatThreadPropertiesUpdatedPerUserEventData: CompositeMapper = { +export const AcsChatThreadPropertiesUpdatedPerUserEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsChatThreadPropertiesUpdatedPerUserEventData", @@ -6711,7 +6711,7 @@ export const AcsChatThreadPropertiesUpdatedPerUserEventData: CompositeMapper = { } }; -export const AcsChatParticipantAddedToThreadWithUserEventData: CompositeMapper = { +export const AcsChatParticipantAddedToThreadWithUserEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsChatParticipantAddedToThreadWithUserEventData", @@ -6742,7 +6742,7 @@ export const AcsChatParticipantAddedToThreadWithUserEventData: CompositeMapper = } }; -export const AcsChatParticipantRemovedFromThreadWithUserEventData: CompositeMapper = { +export const AcsChatParticipantRemovedFromThreadWithUserEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsChatParticipantRemovedFromThreadWithUserEventData", @@ -6773,7 +6773,7 @@ export const AcsChatParticipantRemovedFromThreadWithUserEventData: CompositeMapp } }; -export const AcsChatMessageReceivedInThreadEventData: CompositeMapper = { +export const AcsChatMessageReceivedInThreadEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsChatMessageReceivedInThreadEventData", @@ -6790,7 +6790,7 @@ export const AcsChatMessageReceivedInThreadEventData: CompositeMapper = { } }; -export const AcsChatMessageEditedInThreadEventData: CompositeMapper = { +export const AcsChatMessageEditedInThreadEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsChatMessageEditedInThreadEventData", @@ -6814,7 +6814,7 @@ export const AcsChatMessageEditedInThreadEventData: CompositeMapper = { } }; -export const AcsChatMessageDeletedInThreadEventData: CompositeMapper = { +export const AcsChatMessageDeletedInThreadEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsChatMessageDeletedInThreadEventData", @@ -6831,7 +6831,7 @@ export const AcsChatMessageDeletedInThreadEventData: CompositeMapper = { } }; -export const AcsChatThreadCreatedEventData: CompositeMapper = { +export const AcsChatThreadCreatedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsChatThreadCreatedEventData", @@ -6869,7 +6869,7 @@ export const AcsChatThreadCreatedEventData: CompositeMapper = { } }; -export const AcsChatThreadDeletedEventData: CompositeMapper = { +export const AcsChatThreadDeletedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsChatThreadDeletedEventData", @@ -6893,7 +6893,7 @@ export const AcsChatThreadDeletedEventData: CompositeMapper = { } }; -export const AcsChatThreadPropertiesUpdatedEventData: CompositeMapper = { +export const AcsChatThreadPropertiesUpdatedEventData: coreClient.CompositeMapper = { type: { name: "Composite", className: "AcsChatThreadPropertiesUpdatedEventData", diff --git a/sdk/eventgrid/eventgrid/swagger/README.md b/sdk/eventgrid/eventgrid/swagger/README.md index 2fb0bd6c5eff..6945165d38d8 100644 --- a/sdk/eventgrid/eventgrid/swagger/README.md +++ b/sdk/eventgrid/eventgrid/swagger/README.md @@ -16,16 +16,27 @@ license-header: MICROSOFT_MIT_NO_VERSION output-folder: ../ save-inputs: true source-code-folder-path: ./src/generated -use-extension: - "@autorest/typescript": "6.0.0-dev.20210121.2" +typescript: true hide-clients: true ``` ## Customizations -### Mark a descriminator property as "required" +### Don't force a scheme -Newer versions of AutoRest complain during validation about the descriminator property being required +The endpoint URL will already have a scheme, don't add yet another one. + +```yaml +directive: + - from: swagger-document + where: $["x-ms-parameterized-host"] + transform: > + $.useSchemePrefix = false; +``` + +### Mark a discriminator property as "required" + +Newer versions of AutoRest complain during validation about the discriminator property being required ```yaml directive: @@ -101,11 +112,14 @@ directive: if ($[definition].properties && $[definition].required === undefined) { const properties = Object.keys($[definition].properties); if (properties.length > 0) { - $[definition].required = properties; + switch (definition) { + case "CommunicationIdentifierModel": + $[definition].required = ["rawId"]; + break; + default: + $[definition].required = properties; + } } } } - - // Fix up CommunicationIdentifierModel where this huristic is wrong. - $["CommunicationIdentifierModel"].required = ["rawId"]; ``` From 018fd4605f3dbbef797f524c3784c499baac96ad Mon Sep 17 00:00:00 2001 From: KarishmaGhiya Date: Mon, 28 Jun 2021 13:37:53 -0700 Subject: [PATCH 21/49] update the redundant responses (#16051) --- .../review/ai-metrics-advisor.api.md | 52 ++++++------------- .../samples-dev/dataFeed.ts | 4 +- .../samples-dev/dataSourceCredential.ts | 4 +- .../samples-dev/quickstart.ts | 4 +- .../samples/v1/javascript/README.md | 2 +- .../samples/v1/typescript/README.md | 2 +- .../samples/v1/typescript/src/dataFeed.ts | 4 +- .../v1/typescript/src/dataSourceCredential.ts | 4 +- .../samples/v1/typescript/src/quickstart.ts | 4 +- .../src/metricsAdvisorAdministrationClient.ts | 37 ++++++------- .../src/metricsAdvisorClient.ts | 5 +- .../ai-metrics-advisor/src/models.ts | 30 ----------- 12 files changed, 49 insertions(+), 103 deletions(-) diff --git a/sdk/metricsadvisor/ai-metrics-advisor/review/ai-metrics-advisor.api.md b/sdk/metricsadvisor/ai-metrics-advisor/review/ai-metrics-advisor.api.md index 0e7c07d847a3..2cce8159fcb7 100644 --- a/sdk/metricsadvisor/ai-metrics-advisor/review/ai-metrics-advisor.api.md +++ b/sdk/metricsadvisor/ai-metrics-advisor/review/ai-metrics-advisor.api.md @@ -523,24 +523,6 @@ export type FeedbackQueryTimeMode = "MetricTimestamp" | "FeedbackCreatedTime"; // @public export type FeedbackType = "Anomaly" | "ChangePoint" | "Period" | "Comment"; -// @public -export type GetAlertConfigResponse = AnomalyAlertConfiguration; - -// @public -export type GetDataFeedResponse = MetricsAdvisorDataFeed; - -// @public -export type GetDataSourceCredentialEntityResponse = DataSourceCredentialEntityUnion; - -// @public -export type GetDetectionConfigResponse = AnomalyDetectionConfiguration; - -// @public -export type GetFeedbackResponse = MetricFeedbackUnion; - -// @public -export type GetHookResponse = NotificationHookUnion; - // @public export type GetIncidentRootCauseResponse = { rootCauses: IncidentRootCause[]; @@ -869,23 +851,23 @@ export type MetricPeriodFeedback = { // @public export class MetricsAdvisorAdministrationClient { constructor(endpointUrl: string, credential: TokenCredential | MetricsAdvisorKeyCredential, options?: MetricsAdvisorAdministrationClientOptions); - createAlertConfig(config: Omit, options?: OperationOptions): Promise; - createDataFeed(feed: DataFeedDescriptor, operationOptions?: CreateDataFeedOptions): Promise; - createDataSourceCredential(dataSourceCredential: DataSourceCredentialEntityUnion, options?: OperationOptions): Promise; - createDetectionConfig(config: Omit, options?: OperationOptions): Promise; - createHook(hookInfo: EmailNotificationHook | WebNotificationHook, options?: OperationOptions): Promise; + createAlertConfig(config: Omit, options?: OperationOptions): Promise; + createDataFeed(feed: DataFeedDescriptor, operationOptions?: CreateDataFeedOptions): Promise; + createDataSourceCredential(dataSourceCredential: DataSourceCredentialEntityUnion, options?: OperationOptions): Promise; + createDetectionConfig(config: Omit, options?: OperationOptions): Promise; + createHook(hookInfo: EmailNotificationHook | WebNotificationHook, options?: OperationOptions): Promise; deleteAlertConfig(id: string, options?: OperationOptions): Promise; deleteDataFeed(id: string, options?: OperationOptions): Promise; deleteDataSourceCredential(id: string, options?: OperationOptions): Promise; deleteDetectionConfig(id: string, options?: OperationOptions): Promise; deleteHook(id: string, options?: OperationOptions): Promise; readonly endpointUrl: string; - getAlertConfig(id: string, options?: OperationOptions): Promise; - getDataFeed(id: string, options?: OperationOptions): Promise; + getAlertConfig(id: string, options?: OperationOptions): Promise; + getDataFeed(id: string, options?: OperationOptions): Promise; getDataFeedIngestionProgress(dataFeedId: string, options?: {}): Promise; - getDataSourceCredential(id: string, options?: OperationOptions): Promise; - getDetectionConfig(id: string, options?: OperationOptions): Promise; - getHook(id: string, options?: OperationOptions): Promise; + getDataSourceCredential(id: string, options?: OperationOptions): Promise; + getDetectionConfig(id: string, options?: OperationOptions): Promise; + getHook(id: string, options?: OperationOptions): Promise; listAlertConfigs(detectionConfigId: string, options?: OperationOptions): PagedAsyncIterableIterator; listDataFeedIngestionStatus(dataFeedId: string, startTime: Date | string, endTime: Date | string, options?: ListDataFeedIngestionStatusOptions): PagedAsyncIterableIterator; listDataFeeds(options?: ListDataFeedsOptions): PagedAsyncIterableIterator; @@ -893,11 +875,11 @@ export class MetricsAdvisorAdministrationClient { listDetectionConfigs(metricId: string, options?: OperationOptions): PagedAsyncIterableIterator; listHooks(options?: ListHooksOptions): PagedAsyncIterableIterator; refreshDataFeedIngestion(dataFeedId: string, startTime: Date | string, endTime: Date | string, options?: OperationOptions): Promise; - updateAlertConfig(id: string, patch: Partial>, options?: OperationOptions): Promise; - updateDataFeed(dataFeedId: string, patch: DataFeedPatch, options?: OperationOptions): Promise; - updateDataSourceCredential(id: string, patch: DataSourceCredentialPatch, options?: OperationOptions): Promise; - updateDetectionConfig(id: string, patch: AnomalyDetectionConfigurationPatch, options?: OperationOptions): Promise; - updateHook(id: string, patch: EmailNotificationHookPatch | WebNotificationHookPatch, options?: OperationOptions): Promise; + updateAlertConfig(id: string, patch: Partial>, options?: OperationOptions): Promise; + updateDataFeed(dataFeedId: string, patch: DataFeedPatch, options?: OperationOptions): Promise; + updateDataSourceCredential(id: string, patch: DataSourceCredentialPatch, options?: OperationOptions): Promise; + updateDetectionConfig(id: string, patch: AnomalyDetectionConfigurationPatch, options?: OperationOptions): Promise; + updateHook(id: string, patch: EmailNotificationHookPatch | WebNotificationHookPatch, options?: OperationOptions): Promise; } // @public @@ -907,9 +889,9 @@ export interface MetricsAdvisorAdministrationClientOptions extends PipelineOptio // @public export class MetricsAdvisorClient { constructor(endpointUrl: string, credential: TokenCredential | MetricsAdvisorKeyCredential, options?: MetricsAdvisorClientOptions); - addFeedback(feedback: MetricFeedbackUnion, options?: OperationOptions): Promise; + addFeedback(feedback: MetricFeedbackUnion, options?: OperationOptions): Promise; readonly endpointUrl: string; - getFeedback(id: string, options?: OperationOptions): Promise; + getFeedback(id: string, options?: OperationOptions): Promise; getIncidentRootCauses(detectionConfigId: string, incidentId: string, options?: OperationOptions): Promise; getMetricEnrichedSeriesData(detectionConfigId: string, seriesKey: DimensionKey[], startTime: Date | string, endTime: Date | string, options?: GetMetricEnrichedSeriesDataOptions): Promise; getMetricSeriesData(metricId: string, seriesKey: DimensionKey[], startTime: Date | string, endTime: Date | string, options?: GetMetricSeriesDataOptions): Promise; diff --git a/sdk/metricsadvisor/ai-metrics-advisor/samples-dev/dataFeed.ts b/sdk/metricsadvisor/ai-metrics-advisor/samples-dev/dataFeed.ts index 5029a2a39f59..537c97de9dd4 100644 --- a/sdk/metricsadvisor/ai-metrics-advisor/samples-dev/dataFeed.ts +++ b/sdk/metricsadvisor/ai-metrics-advisor/samples-dev/dataFeed.ts @@ -13,7 +13,7 @@ dotenv.config(); import { MetricsAdvisorKeyCredential, MetricsAdvisorAdministrationClient, - GetDataFeedResponse, + MetricsAdvisorDataFeed, DataFeedPatch, DataFeedDescriptor } from "@azure/ai-metrics-advisor"; @@ -73,7 +73,7 @@ async function listDataFeeds(client: MetricsAdvisorAdministrationClient) { async function createDataFeed( client: MetricsAdvisorAdministrationClient -): Promise { +): Promise { console.log("Creating Datafeed..."); const feed: DataFeedDescriptor = { name: "test-datafeed-" + new Date().getTime().toString(), diff --git a/sdk/metricsadvisor/ai-metrics-advisor/samples-dev/dataSourceCredential.ts b/sdk/metricsadvisor/ai-metrics-advisor/samples-dev/dataSourceCredential.ts index 5aa35afb9046..965b44ef89d8 100644 --- a/sdk/metricsadvisor/ai-metrics-advisor/samples-dev/dataSourceCredential.ts +++ b/sdk/metricsadvisor/ai-metrics-advisor/samples-dev/dataSourceCredential.ts @@ -13,7 +13,7 @@ dotenv.config(); import { MetricsAdvisorKeyCredential, MetricsAdvisorAdministrationClient, - GetDataSourceCredentialEntityResponse, + DataSourceCredentialEntityUnion, DataSourceCredentialPatch, DataSourceSqlConnectionString } from "@azure/ai-metrics-advisor"; @@ -73,7 +73,7 @@ async function listDataSourceCredentials(client: MetricsAdvisorAdministrationCli async function createDataSourceCredential( client: MetricsAdvisorAdministrationClient -): Promise { +): Promise { console.log("Creating DataSource credential..."); const datasourceCredential: DataSourceSqlConnectionString = { name: "Sql-server-cred", diff --git a/sdk/metricsadvisor/ai-metrics-advisor/samples-dev/quickstart.ts b/sdk/metricsadvisor/ai-metrics-advisor/samples-dev/quickstart.ts index dfc923d27f41..618ee82f0519 100644 --- a/sdk/metricsadvisor/ai-metrics-advisor/samples-dev/quickstart.ts +++ b/sdk/metricsadvisor/ai-metrics-advisor/samples-dev/quickstart.ts @@ -15,7 +15,7 @@ import { MetricsAdvisorKeyCredential, MetricsAdvisorAdministrationClient, AnomalyAlert, - GetDataFeedResponse, + MetricsAdvisorDataFeed, MetricsAdvisorClient, WebNotificationHook, DataFeedDescriptor, @@ -91,7 +91,7 @@ async function createDataFeed( adminClient: MetricsAdvisorAdministrationClient, sqlServerConnectionString: string, sqlServerQuery: string -): Promise { +): Promise { console.log("Creating Datafeed..."); const dataFeed: DataFeedDescriptor = { name: "test_datafeed_" + new Date().getTime().toString(), diff --git a/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/javascript/README.md b/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/javascript/README.md index 560ead8c0bd8..df4fe27fbee9 100644 --- a/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/javascript/README.md +++ b/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/javascript/README.md @@ -29,7 +29,7 @@ These sample programs show how to use the JavaScript client libraries for Azure ## Prerequisites -The sample programs are compatible with Node.js >=12.0.0. +The sample programs are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/). You need [an Azure subscription][freesub] and the following Azure resources to run these sample programs: diff --git a/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/typescript/README.md b/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/typescript/README.md index 135c067d2ad5..3b3967022515 100644 --- a/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/typescript/README.md +++ b/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/typescript/README.md @@ -29,7 +29,7 @@ These sample programs show how to use the TypeScript client libraries for Azure ## Prerequisites -The sample programs are compatible with Node.js >=12.0.0. +The sample programs are compatible with [LTS versions of Node.js](https://nodejs.org/about/releases/). Before running the samples in Node, they must be compiled to JavaScript using the TypeScript compiler. For more information on TypeScript, see the [TypeScript documentation][typescript]. Install the TypeScript compiler using: diff --git a/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/typescript/src/dataFeed.ts b/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/typescript/src/dataFeed.ts index a059fb5781d7..9eaa609b59de 100644 --- a/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/typescript/src/dataFeed.ts +++ b/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/typescript/src/dataFeed.ts @@ -12,7 +12,7 @@ dotenv.config(); import { MetricsAdvisorKeyCredential, MetricsAdvisorAdministrationClient, - GetDataFeedResponse, + MetricsAdvisorDataFeed, DataFeedPatch, DataFeedDescriptor } from "@azure/ai-metrics-advisor"; @@ -72,7 +72,7 @@ async function listDataFeeds(client: MetricsAdvisorAdministrationClient) { async function createDataFeed( client: MetricsAdvisorAdministrationClient -): Promise { +): Promise { console.log("Creating Datafeed..."); const feed: DataFeedDescriptor = { name: "test-datafeed-" + new Date().getTime().toString(), diff --git a/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/typescript/src/dataSourceCredential.ts b/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/typescript/src/dataSourceCredential.ts index 3df297155ccd..ead9f9f44f95 100644 --- a/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/typescript/src/dataSourceCredential.ts +++ b/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/typescript/src/dataSourceCredential.ts @@ -12,7 +12,7 @@ dotenv.config(); import { MetricsAdvisorKeyCredential, MetricsAdvisorAdministrationClient, - GetDataSourceCredentialEntityResponse, + DataSourceCredentialEntityUnion, DataSourceCredentialPatch, DataSourceSqlConnectionString } from "@azure/ai-metrics-advisor"; @@ -72,7 +72,7 @@ async function listDataSourceCredentials(client: MetricsAdvisorAdministrationCli async function createDataSourceCredential( client: MetricsAdvisorAdministrationClient -): Promise { +): Promise { console.log("Creating DataSource credential..."); const datasourceCredential: DataSourceSqlConnectionString = { name: "Sql-server-cred", diff --git a/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/typescript/src/quickstart.ts b/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/typescript/src/quickstart.ts index dd79a66c9a16..81e4f09c5981 100644 --- a/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/typescript/src/quickstart.ts +++ b/sdk/metricsadvisor/ai-metrics-advisor/samples/v1/typescript/src/quickstart.ts @@ -14,7 +14,7 @@ import { MetricsAdvisorKeyCredential, MetricsAdvisorAdministrationClient, AnomalyAlert, - GetDataFeedResponse, + MetricsAdvisorDataFeed, MetricsAdvisorClient, WebNotificationHook, DataFeedDescriptor, @@ -90,7 +90,7 @@ async function createDataFeed( adminClient: MetricsAdvisorAdministrationClient, sqlServerConnectionString: string, sqlServerQuery: string -): Promise { +): Promise { console.log("Creating Datafeed..."); const dataFeed: DataFeedDescriptor = { name: "test_datafeed_" + new Date().getTime().toString(), diff --git a/sdk/metricsadvisor/ai-metrics-advisor/src/metricsAdvisorAdministrationClient.ts b/sdk/metricsadvisor/ai-metrics-advisor/src/metricsAdvisorAdministrationClient.ts index 9d8af0b2ce72..dc41a4cc4369 100644 --- a/sdk/metricsadvisor/ai-metrics-advisor/src/metricsAdvisorAdministrationClient.ts +++ b/sdk/metricsadvisor/ai-metrics-advisor/src/metricsAdvisorAdministrationClient.ts @@ -31,10 +31,6 @@ import { EmailNotificationHookPatch, AnomalyDetectionConfiguration, AnomalyDetectionConfigurationPatch, - GetDataFeedResponse, - GetDetectionConfigResponse, - GetAlertConfigResponse, - GetHookResponse, NotificationHookUnion, DataFeedAutoRollupMethod, DataFeedsPageResponse, @@ -47,8 +43,7 @@ import { AnomalyAlertConfiguration, DataSourceCredentialEntityUnion, DataSourceCredentialPatch, - CredentialsPageResponse, - GetDataSourceCredentialEntityResponse + CredentialsPageResponse } from "./models"; import { DataSourceType, HookInfoUnion, NeedRollupEnum } from "./generated/models"; import { @@ -200,7 +195,7 @@ export class MetricsAdvisorAdministrationClient { public async createDataFeed( feed: DataFeedDescriptor, operationOptions: CreateDataFeedOptions = {} - ): Promise { + ): Promise { const { span, updatedOptions: finalOptions } = createSpan( "MetricsAdvisorAdministrationClient-createDataFeed", operationOptions @@ -298,7 +293,7 @@ export class MetricsAdvisorAdministrationClient { public async getDataFeed( id: string, options: OperationOptions = {} - ): Promise { + ): Promise { const { span, updatedOptions: finalOptions } = createSpan( "MetricsAdvisorAdministrationClient-getDataFeed", options @@ -466,7 +461,7 @@ export class MetricsAdvisorAdministrationClient { dataFeedId: string, patch: DataFeedPatch, options: OperationOptions = {} - ): Promise { + ): Promise { const { span, updatedOptions: finalOptions } = createSpan( "MetricsAdvisorAdministrationClient-updateDataFeed", options @@ -554,7 +549,7 @@ export class MetricsAdvisorAdministrationClient { public async createDetectionConfig( config: Omit, options: OperationOptions = {} - ): Promise { + ): Promise { const { span, updatedOptions: finalOptions } = createSpan( "MetricsAdvisorAdministrationClient-createDetectionConfig", options @@ -592,7 +587,7 @@ export class MetricsAdvisorAdministrationClient { public async getDetectionConfig( id: string, options: OperationOptions = {} - ): Promise { + ): Promise { const { span, updatedOptions: finalOptions } = createSpan( "MetricsAdvisorAdministrationClient-getDetectionConfig", options @@ -624,7 +619,7 @@ export class MetricsAdvisorAdministrationClient { id: string, patch: AnomalyDetectionConfigurationPatch, options: OperationOptions = {} - ): Promise { + ): Promise { const { span, updatedOptions: finalOptions } = createSpan( "MetricsAdvisorAdministrationClient-updateDetectionConfig", options @@ -687,7 +682,7 @@ export class MetricsAdvisorAdministrationClient { public async createAlertConfig( config: Omit, options: OperationOptions = {} - ): Promise { + ): Promise { const { span, updatedOptions: finalOptions } = createSpan( "MetricsAdvisorAdministrationClient-createAlertConfig", options @@ -726,7 +721,7 @@ export class MetricsAdvisorAdministrationClient { id: string, patch: Partial>, options: OperationOptions = {} - ): Promise { + ): Promise { const { span, updatedOptions: finalOptions } = createSpan( "MetricsAdvisorAdministrationClient-updateAlertConfig", options @@ -761,7 +756,7 @@ export class MetricsAdvisorAdministrationClient { public async getAlertConfig( id: string, options: OperationOptions = {} - ): Promise { + ): Promise { const { span, updatedOptions: finalOptions } = createSpan( "MetricsAdvisorAdministrationClient-getAlertConfig", options @@ -933,7 +928,7 @@ export class MetricsAdvisorAdministrationClient { public async createHook( hookInfo: EmailNotificationHook | WebNotificationHook, options: OperationOptions = {} - ): Promise { + ): Promise { const { span, updatedOptions: finalOptions } = createSpan( "MetricsAdvisorAdministrationClient-createHook", options @@ -975,7 +970,7 @@ export class MetricsAdvisorAdministrationClient { * @param options - The options parameter. */ - public async getHook(id: string, options: OperationOptions = {}): Promise { + public async getHook(id: string, options: OperationOptions = {}): Promise { const { span, updatedOptions: finalOptions } = createSpan( "MetricsAdvisorAdministrationClient-getHook", options @@ -1126,7 +1121,7 @@ export class MetricsAdvisorAdministrationClient { id: string, patch: EmailNotificationHookPatch | WebNotificationHookPatch, options: OperationOptions = {} - ): Promise { + ): Promise { const { span, updatedOptions: finalOptions } = createSpan( "MetricsAdvisorAdministrationClient-updateHook", options @@ -1554,7 +1549,7 @@ export class MetricsAdvisorAdministrationClient { public async createDataSourceCredential( dataSourceCredential: DataSourceCredentialEntityUnion, options: OperationOptions = {} - ): Promise { + ): Promise { const { span, updatedOptions: finalOptions } = createSpan( "MetricsAdvisorAdministrationClient-createDataSourceCredential", options @@ -1590,7 +1585,7 @@ export class MetricsAdvisorAdministrationClient { public async getDataSourceCredential( id: string, options: OperationOptions = {} - ): Promise { + ): Promise { const { span, updatedOptions: finalOptions } = createSpan( "MetricsAdvisorAdministrationClient-getDataSourceCredential", options @@ -1748,7 +1743,7 @@ export class MetricsAdvisorAdministrationClient { id: string, patch: DataSourceCredentialPatch, options: OperationOptions = {} - ): Promise { + ): Promise { const { span, updatedOptions: finalOptions } = createSpan( "MetricsAdvisorAdministrationClient-updateDataSourceCredential", options diff --git a/sdk/metricsadvisor/ai-metrics-advisor/src/metricsAdvisorClient.ts b/sdk/metricsadvisor/ai-metrics-advisor/src/metricsAdvisorClient.ts index beecd45eb6fc..feb34a573e9e 100644 --- a/sdk/metricsadvisor/ai-metrics-advisor/src/metricsAdvisorClient.ts +++ b/sdk/metricsadvisor/ai-metrics-advisor/src/metricsAdvisorClient.ts @@ -23,7 +23,6 @@ import { AnomalyAlert, GetMetricEnrichedSeriesDataResponse, GetIncidentRootCauseResponse, - GetFeedbackResponse, AlertsPageResponse, IncidentsPageResponse, AnomaliesPageResponse, @@ -1445,7 +1444,7 @@ export class MetricsAdvisorClient { public async addFeedback( feedback: MetricFeedbackUnion, options: OperationOptions = {} - ): Promise { + ): Promise { const { span, updatedOptions: finalOptions } = createSpan( "MetricsAdvisorClient-addFeedback", options @@ -1480,7 +1479,7 @@ export class MetricsAdvisorClient { public async getFeedback( id: string, options: OperationOptions = {} - ): Promise { + ): Promise { const { span, updatedOptions: finalOptions } = createSpan( "MetricsAdvisorClient-getFeedback", options diff --git a/sdk/metricsadvisor/ai-metrics-advisor/src/models.ts b/sdk/metricsadvisor/ai-metrics-advisor/src/models.ts index 78fcda2c5ef8..72ffda066c82 100644 --- a/sdk/metricsadvisor/ai-metrics-advisor/src/models.ts +++ b/sdk/metricsadvisor/ai-metrics-advisor/src/models.ts @@ -1659,31 +1659,6 @@ export interface MetricEnrichedSeriesData { // Response types -/** - * Contains response data for the getDataFeed operation. - */ -export type GetDataFeedResponse = MetricsAdvisorDataFeed; - -/** - * Contains response data for the getAnomalyDetectionConfiguration operation. - */ -export type GetDetectionConfigResponse = AnomalyDetectionConfiguration; - -/** - * Contains response data for the getAnomalyAlertConfiguration operation. - */ -export type GetAlertConfigResponse = AnomalyAlertConfiguration; - -/** - * Contains response data for the getHook operation. - */ -export type GetHookResponse = NotificationHookUnion; - -/** - * Contains response data for the getCredentialEntity operation. - */ -export type GetDataSourceCredentialEntityResponse = DataSourceCredentialEntityUnion; - /** * Contains response data for the getMetricEnrichedSeriesData operation. */ @@ -1696,11 +1671,6 @@ export type GetIncidentRootCauseResponse = { rootCauses: IncidentRootCause[]; }; -/** - * Contains response data for the getFeedback operation. - */ -export type GetFeedbackResponse = MetricFeedbackUnion; - /** * Contains response data for the listAlertsForAlertConfiguration operation. */ From 8919e6a3c42b5cacdaed3aed82a2559cd7241741 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Rodr=C3=ADguez?= Date: Mon, 28 Jun 2021 17:19:10 -0400 Subject: [PATCH 22/49] [Identity] node-fetch takes above 2 seconds to send the request on some environments (#15937) --- .../src/credentials/managedIdentityCredential/imdsMsi.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sdk/identity/identity/src/credentials/managedIdentityCredential/imdsMsi.ts b/sdk/identity/identity/src/credentials/managedIdentityCredential/imdsMsi.ts index f27c43d12f73..a26566ed3ed0 100644 --- a/sdk/identity/identity/src/credentials/managedIdentityCredential/imdsMsi.ts +++ b/sdk/identity/identity/src/credentials/managedIdentityCredential/imdsMsi.ts @@ -90,7 +90,11 @@ export const imdsMsi: MSI = { // not having a "Metadata" header should cause an error to be // returned quickly from the endpoint, proving its availability. const webResource = identityClient.createWebResource(request); - webResource.timeout = updatedOptions?.requestOptions?.timeout || 500; + + // In Kubernetes pods, node-fetch (used by core-http) takes longer than 2 seconds to begin sending the network request, + // So smaller timeouts will cause this credential to be immediately aborted. + // This won't be a problem once we move Identity to core-rest-pipeline. + webResource.timeout = updatedOptions?.requestOptions?.timeout || 3000; try { logger.info(`Pinging IMDS endpoint`); From ec4abbac0983a2dbde8dea755a00248083ceb988 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Rodr=C3=ADguez?= Date: Mon, 28 Jun 2021 17:21:40 -0400 Subject: [PATCH 23/49] [Identity] Add support for Bridge to Kubernetes to ManagedIdentityCredential (#15856) * [Identity] Add support for Bridge to Kubernetes to ManagedIdentityCredential * one very simple test * forgot this line --- sdk/identity/identity/CHANGELOG.md | 1 + .../managedIdentityCredential/imdsMsi.ts | 7 ++++++- .../internal/node/managedIdentityCredential.spec.ts | 13 ++++++++++++- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/sdk/identity/identity/CHANGELOG.md b/sdk/identity/identity/CHANGELOG.md index 4b50feac4357..4ae76abb8356 100644 --- a/sdk/identity/identity/CHANGELOG.md +++ b/sdk/identity/identity/CHANGELOG.md @@ -37,6 +37,7 @@ - `AuthenticationRequiredError` (introduced in 2.0.0-beta.1) now has the same impact on `ChainedTokenCredential` as the `CredentialUnavailableError` which is to allow the next credential in the chain to be tried. - `ManagedIdentityCredential` now retries with exponential back-off when a request for a token fails with a 404 status code on environments with available IMDS endpoints. - Added an `AzurePowerShellCredential` which will use the authenticated user session from the `Az.Account` PowerShell module. This credential will attempt to use PowerShell Core by calling `pwsh`, and on Windows it will fall back to Windows PowerShell (`powershell`) if PowerShell Core is not available. +- Added support to `ManagedIdentityCredential` for Bridge to Kubernetes local development authentication. ### Breaking changes from 2.0.0-beta.1 diff --git a/sdk/identity/identity/src/credentials/managedIdentityCredential/imdsMsi.ts b/sdk/identity/identity/src/credentials/managedIdentityCredential/imdsMsi.ts index a26566ed3ed0..0445d15c764d 100644 --- a/sdk/identity/identity/src/credentials/managedIdentityCredential/imdsMsi.ts +++ b/sdk/identity/identity/src/credentials/managedIdentityCredential/imdsMsi.ts @@ -44,7 +44,7 @@ function prepareRequestOptions(resource?: string, clientId?: string): RequestPre } return { - url: imdsEndpoint, + url: process.env.AZURE_POD_IDENTITY_TOKEN_URL ?? imdsEndpoint, method: "GET", queryParameters, headers: { @@ -73,6 +73,11 @@ export const imdsMsi: MSI = { getTokenOptions ); + // if the PodIdenityEndpoint environment variable was set no need to probe the endpoint, it can be assumed to exist + if (process.env.AZURE_POD_IDENTITY_TOKEN_URL) { + return true; + } + const request = prepareRequestOptions(resource, clientId); // This will always be populated, but let's make TypeScript happy diff --git a/sdk/identity/identity/test/internal/node/managedIdentityCredential.spec.ts b/sdk/identity/identity/test/internal/node/managedIdentityCredential.spec.ts index aa6ac5f726bd..7eeae6dc72d8 100644 --- a/sdk/identity/identity/test/internal/node/managedIdentityCredential.spec.ts +++ b/sdk/identity/identity/test/internal/node/managedIdentityCredential.spec.ts @@ -15,7 +15,10 @@ import { import { MockAuthHttpClient, MockAuthHttpClientOptions, assertRejects } from "../../authTestUtils"; import { OAuthErrorResponse } from "../../../src/client/errors"; import Sinon from "sinon"; -import { imdsMsiRetryConfig } from "../../../src/credentials/managedIdentityCredential/imdsMsi"; +import { + imdsMsi, + imdsMsiRetryConfig +} from "../../../src/credentials/managedIdentityCredential/imdsMsi"; import { mkdtempSync, rmdirSync, unlinkSync, writeFileSync } from "fs"; import { join } from "path"; import { tmpdir } from "os"; @@ -37,6 +40,7 @@ describe("ManagedIdentityCredential", function() { delete process.env.MSI_SECRET; delete process.env.IDENTITY_SERVER_THUMBPRINT; delete process.env.IMDS_ENDPOINT; + delete process.env.AZURE_POD_IDENTITY_TOKEN_URL; sandbox = Sinon.createSandbox(); }); afterEach(() => { @@ -47,6 +51,7 @@ describe("ManagedIdentityCredential", function() { process.env.MSI_SECRET = env.MSI_SECRET; process.env.IDENTITY_SERVER_THUMBPRINT = env.IDENTITY_SERVER_THUMBPRINT; process.env.IMDS_ENDPOINT = env.IMDS_ENDPOINT; + process.env.AZURE_POD_IDENTITY_TOKEN_URL = env.AZURE_POD_IDENTITY_TOKEN_URL; sandbox.restore(); }); @@ -244,6 +249,12 @@ describe("ManagedIdentityCredential", function() { clock.restore(); }); + it("IMDS MSI skips verification if the AZURE_POD_IDENTITY_TOKEN_URL environment variable is available", async function() { + process.env.AZURE_POD_IDENTITY_TOKEN_URL = "token URL"; + + assert.ok(await imdsMsi.isAvailable()); + }); + // Unavailable exception throws while IMDS endpoint is unavailable. This test not valid. // it("can extend timeout for IMDS endpoint", async function() { // // Mock a timeout so that the endpoint ping fails From df68c3eb9bee74b5a3246ee31b0bafbd84f68772 Mon Sep 17 00:00:00 2001 From: Xiao Li Date: Mon, 28 Jun 2021 14:55:48 -0700 Subject: [PATCH 24/49] [Azure Monitor Exporter] Separate tests into internal and public folders (#15932) * [Monitor Exporter] Separate tests into internal and public folders * fix build * put tests in internal * prettier * console log for testing * testing * format * console * try flush processor * format * remove console logs --- .../package.json | 6 +-- .../connectionStringParser.test.ts | 4 +- .../{unit/utils => internal}/eventhub.test.ts | 11 ++--- .../fileSystemPersist.test.ts | 4 +- .../{ => internal}/functional/trace.test.ts | 10 ++-- .../nodejs => internal}/httpSender.test.ts | 10 ++-- .../utils => internal}/spanUtils.test.ts | 20 ++++---- .../trace.exporter.test.ts} | 10 ++-- .../test/{common => utils}/assert.ts | 16 ++++--- .../test/{common/scenario => utils}/basic.ts | 48 +++++++++++-------- .../test/{unit => utils}/breezeTestUtils.ts | 0 .../{common => utils}/flushSpanProcessor.ts | 0 .../test/{common/scenario => utils}/types.ts | 2 +- 13 files changed, 75 insertions(+), 66 deletions(-) rename sdk/monitor/monitor-opentelemetry-exporter/test/{unit/utils => internal}/connectionStringParser.test.ts (97%) rename sdk/monitor/monitor-opentelemetry-exporter/test/{unit/utils => internal}/eventhub.test.ts (93%) rename sdk/monitor/monitor-opentelemetry-exporter/test/{unit/platform/nodejs/persist => internal}/fileSystemPersist.test.ts (96%) rename sdk/monitor/monitor-opentelemetry-exporter/test/{ => internal}/functional/trace.test.ts (79%) rename sdk/monitor/monitor-opentelemetry-exporter/test/{unit/platform/nodejs => internal}/httpSender.test.ts (85%) rename sdk/monitor/monitor-opentelemetry-exporter/test/{unit/utils => internal}/spanUtils.test.ts (94%) rename sdk/monitor/monitor-opentelemetry-exporter/test/{unit/export/trace.test.ts => internal/trace.exporter.test.ts} (96%) rename sdk/monitor/monitor-opentelemetry-exporter/test/{common => utils}/assert.ts (95%) rename sdk/monitor/monitor-opentelemetry-exporter/test/{common/scenario => utils}/basic.ts (77%) rename sdk/monitor/monitor-opentelemetry-exporter/test/{unit => utils}/breezeTestUtils.ts (100%) rename sdk/monitor/monitor-opentelemetry-exporter/test/{common => utils}/flushSpanProcessor.ts (100%) rename sdk/monitor/monitor-opentelemetry-exporter/test/{common/scenario => utils}/types.ts (80%) diff --git a/sdk/monitor/monitor-opentelemetry-exporter/package.json b/sdk/monitor/monitor-opentelemetry-exporter/package.json index fa5218648d87..9e34d67532cb 100644 --- a/sdk/monitor/monitor-opentelemetry-exporter/package.json +++ b/sdk/monitor/monitor-opentelemetry-exporter/package.json @@ -23,11 +23,11 @@ "test:node": "npm run unit-test:node", "test:browser": "npm run unit-test:browser", "unit-test:browser": "echo skipped", - "unit-test:node": "nyc mocha -r esm --require ts-node/register --reporter ../../../common/tools/mocha-multi-reporter.js --timeout 1200000 --full-trace \"test/unit/**/*.test.ts\"", - "unit-test:node:debug": "nyc mocha --inspect-brk -r esm --require ts-node/register --reporter ../../../common/tools/mocha-multi-reporter.js --timeout 1200000 --full-trace \"test/unit/**/*.test.ts\"", + "unit-test:node": "nyc mocha -r esm --require ts-node/register --reporter ../../../common/tools/mocha-multi-reporter.js --timeout 1200000 --full-trace \"test/internal/**/*.test.ts\"", + "unit-test:node:debug": "nyc mocha --inspect-brk -r esm --require ts-node/register --reporter ../../../common/tools/mocha-multi-reporter.js --timeout 1200000 --full-trace \"test/internal/**/*.test.ts\"", "unit-test:node:no-timeout": "echo skipped", "unit-test": "npm run unit-test:node && npm run unit-test:browser", - "functional-test": "nyc mocha -r esm --require ts-node/register --reporter ../../../common/tools/mocha-multi-reporter.js --timeout 1200000 --full-trace \"test/functional/**/*.test.ts\"", + "functional-test": "nyc mocha -r esm --require ts-node/register --reporter ../../../common/tools/mocha-multi-reporter.js --timeout 1200000 --full-trace \"test/internal/functional/*.test.ts\"", "integration-test:browser": "echo skipped", "integration-test:node": "npm run functional-test", "integration-test": "npm run integration-test:node && npm run integration-test:browser", diff --git a/sdk/monitor/monitor-opentelemetry-exporter/test/unit/utils/connectionStringParser.test.ts b/sdk/monitor/monitor-opentelemetry-exporter/test/internal/connectionStringParser.test.ts similarity index 97% rename from sdk/monitor/monitor-opentelemetry-exporter/test/unit/utils/connectionStringParser.test.ts rename to sdk/monitor/monitor-opentelemetry-exporter/test/internal/connectionStringParser.test.ts index e00aab1bf7e6..54f8a6fb4ebe 100644 --- a/sdk/monitor/monitor-opentelemetry-exporter/test/unit/utils/connectionStringParser.test.ts +++ b/sdk/monitor/monitor-opentelemetry-exporter/test/internal/connectionStringParser.test.ts @@ -2,8 +2,8 @@ // Licensed under the MIT license. import * as assert from "assert"; -import * as Constants from "../../../src/Declarations/Constants"; -import { ConnectionStringParser } from "../../../src/utils/connectionStringParser"; +import * as Constants from "../../src/Declarations/Constants"; +import { ConnectionStringParser } from "../../src/utils/connectionStringParser"; describe("ConnectionStringParser", () => { describe("#parse()", () => { diff --git a/sdk/monitor/monitor-opentelemetry-exporter/test/unit/utils/eventhub.test.ts b/sdk/monitor/monitor-opentelemetry-exporter/test/internal/eventhub.test.ts similarity index 93% rename from sdk/monitor/monitor-opentelemetry-exporter/test/unit/utils/eventhub.test.ts rename to sdk/monitor/monitor-opentelemetry-exporter/test/internal/eventhub.test.ts index afc80c84f4d1..7303ed4a393a 100644 --- a/sdk/monitor/monitor-opentelemetry-exporter/test/unit/utils/eventhub.test.ts +++ b/sdk/monitor/monitor-opentelemetry-exporter/test/internal/eventhub.test.ts @@ -5,17 +5,14 @@ import { SpanAttributes, HrTime, SpanContext, SpanKind, ROOT_CONTEXT } from "@op import { timeInputToHrTime } from "@opentelemetry/core"; import { BasicTracerProvider, Span } from "@opentelemetry/tracing"; import * as assert from "assert"; -import { - ENQUEUED_TIME, - TIME_SINCE_ENQUEUED -} from "../../../src/utils/constants/applicationinsights"; +import { ENQUEUED_TIME, TIME_SINCE_ENQUEUED } from "../../src/utils/constants/applicationinsights"; import { AzNamespace, MessageBusDestination, MicrosoftEventHub -} from "../../../src/utils/constants/span/azAttributes"; -import { parseEventHubSpan } from "../../../src/utils/eventhub"; -import { RemoteDependencyData, TelemetryItem as Envelope } from "../../../src/generated"; +} from "../../src/utils/constants/span/azAttributes"; +import { parseEventHubSpan } from "../../src/utils/eventhub"; +import { RemoteDependencyData, TelemetryItem as Envelope } from "../../src/generated"; const tracer = new BasicTracerProvider().getTracer("default"); diff --git a/sdk/monitor/monitor-opentelemetry-exporter/test/unit/platform/nodejs/persist/fileSystemPersist.test.ts b/sdk/monitor/monitor-opentelemetry-exporter/test/internal/fileSystemPersist.test.ts similarity index 96% rename from sdk/monitor/monitor-opentelemetry-exporter/test/unit/platform/nodejs/persist/fileSystemPersist.test.ts rename to sdk/monitor/monitor-opentelemetry-exporter/test/internal/fileSystemPersist.test.ts index cf5309d182f0..ecd32f7bdff7 100644 --- a/sdk/monitor/monitor-opentelemetry-exporter/test/unit/platform/nodejs/persist/fileSystemPersist.test.ts +++ b/sdk/monitor/monitor-opentelemetry-exporter/test/internal/fileSystemPersist.test.ts @@ -5,8 +5,8 @@ import * as assert from "assert"; import * as fs from "fs"; import * as os from "os"; import * as path from "path"; -import { FileSystemPersist } from "../../../../../src/platform/nodejs/persist/fileSystemPersist"; -import { TelemetryItem as Envelope } from "../../../../../src/generated"; +import { FileSystemPersist } from "../../src/platform/nodejs/persist/fileSystemPersist"; +import { TelemetryItem as Envelope } from "../../src/generated"; import { promisify } from "util"; const statAsync = promisify(fs.stat); diff --git a/sdk/monitor/monitor-opentelemetry-exporter/test/functional/trace.test.ts b/sdk/monitor/monitor-opentelemetry-exporter/test/internal/functional/trace.test.ts similarity index 79% rename from sdk/monitor/monitor-opentelemetry-exporter/test/functional/trace.test.ts rename to sdk/monitor/monitor-opentelemetry-exporter/test/internal/functional/trace.test.ts index 990611c4a18f..f09a7f8f5bf1 100644 --- a/sdk/monitor/monitor-opentelemetry-exporter/test/functional/trace.test.ts +++ b/sdk/monitor/monitor-opentelemetry-exporter/test/internal/functional/trace.test.ts @@ -1,12 +1,12 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import { assertCount, assertExpectation } from "../common/assert"; -import { BasicScenario } from "../common/scenario/basic"; -import { DEFAULT_BREEZE_ENDPOINT } from "../../src/Declarations/Constants"; +import { assertCount, assertExpectation } from "../../utils/assert"; +import { BasicScenario } from "../../utils/basic"; +import { DEFAULT_BREEZE_ENDPOINT } from "../../../src/Declarations/Constants"; import nock from "nock"; -import { successfulBreezeResponse } from "../unit/breezeTestUtils"; -import { TelemetryItem as Envelope } from "../../src/generated"; +import { successfulBreezeResponse } from "../../utils/breezeTestUtils"; +import { TelemetryItem as Envelope } from "../../../src/generated"; describe("Trace Exporter Scenarios", () => { describe(BasicScenario.prototype.constructor.name, () => { diff --git a/sdk/monitor/monitor-opentelemetry-exporter/test/unit/platform/nodejs/httpSender.test.ts b/sdk/monitor/monitor-opentelemetry-exporter/test/internal/httpSender.test.ts similarity index 85% rename from sdk/monitor/monitor-opentelemetry-exporter/test/unit/platform/nodejs/httpSender.test.ts rename to sdk/monitor/monitor-opentelemetry-exporter/test/internal/httpSender.test.ts index 88aa2d746cfc..87e889cffa59 100644 --- a/sdk/monitor/monitor-opentelemetry-exporter/test/unit/platform/nodejs/httpSender.test.ts +++ b/sdk/monitor/monitor-opentelemetry-exporter/test/internal/httpSender.test.ts @@ -2,15 +2,15 @@ // Licensed under the MIT license. import * as assert from "assert"; -import { DEFAULT_EXPORTER_CONFIG } from "../../../../src/config"; -import { HttpSender } from "../../../../src/platform/nodejs/httpSender"; -import { DEFAULT_BREEZE_ENDPOINT } from "../../../../src/Declarations/Constants"; +import { DEFAULT_EXPORTER_CONFIG } from "../../src/config"; +import { HttpSender } from "../../src/platform/nodejs/httpSender"; +import { DEFAULT_BREEZE_ENDPOINT } from "../../src/Declarations/Constants"; import { successfulBreezeResponse, failedBreezeResponse, partialBreezeResponse -} from "../../breezeTestUtils"; -import { TelemetryItem as Envelope } from "../../../../src/generated"; +} from "../utils/breezeTestUtils"; +import { TelemetryItem as Envelope } from "../../src/generated"; import nock from "nock"; describe("HttpSender", () => { diff --git a/sdk/monitor/monitor-opentelemetry-exporter/test/unit/utils/spanUtils.test.ts b/sdk/monitor/monitor-opentelemetry-exporter/test/internal/spanUtils.test.ts similarity index 94% rename from sdk/monitor/monitor-opentelemetry-exporter/test/unit/utils/spanUtils.test.ts rename to sdk/monitor/monitor-opentelemetry-exporter/test/internal/spanUtils.test.ts index ad82fb80e4d5..f16fe42b9bdf 100644 --- a/sdk/monitor/monitor-opentelemetry-exporter/test/unit/utils/spanUtils.test.ts +++ b/sdk/monitor/monitor-opentelemetry-exporter/test/internal/spanUtils.test.ts @@ -8,19 +8,19 @@ import { hrTimeToMilliseconds } from "@opentelemetry/core"; import { Resource } from "@opentelemetry/resources"; import { ResourceAttributes } from "@opentelemetry/semantic-conventions"; -import { Tags, Properties, Measurements } from "../../../src/types"; +import { Tags, Properties, Measurements } from "../../src/types"; import { AI_CLOUD_ROLE, AI_CLOUD_ROLE_INSTACE -} from "../../../src/utils/constants/applicationinsights"; -import * as http from "../../../src/utils/constants/span/httpAttributes"; -import * as grpc from "../../../src/utils/constants/span/grpcAttributes"; -import * as ai from "../../../src/utils/constants/applicationinsights"; -import { Context, getInstance } from "../../../src/platform"; -import { msToTimeSpan } from "../../../src/utils/breezeUtils"; -import { readableSpanToEnvelope } from "../../../src/utils/spanUtils"; -import { RemoteDependencyData, RequestData } from "../../../src/generated"; -import { TelemetryItem as Envelope } from "../../../src/generated"; +} from "../../src/utils/constants/applicationinsights"; +import * as http from "../../src/utils/constants/span/httpAttributes"; +import * as grpc from "../../src/utils/constants/span/grpcAttributes"; +import * as ai from "../../src/utils/constants/applicationinsights"; +import { Context, getInstance } from "../../src/platform"; +import { msToTimeSpan } from "../../src/utils/breezeUtils"; +import { readableSpanToEnvelope } from "../../src/utils/spanUtils"; +import { RemoteDependencyData, RequestData } from "../../src/generated"; +import { TelemetryItem as Envelope } from "../../src/generated"; const context = getInstance(undefined, "./"); diff --git a/sdk/monitor/monitor-opentelemetry-exporter/test/unit/export/trace.test.ts b/sdk/monitor/monitor-opentelemetry-exporter/test/internal/trace.exporter.test.ts similarity index 96% rename from sdk/monitor/monitor-opentelemetry-exporter/test/unit/export/trace.test.ts rename to sdk/monitor/monitor-opentelemetry-exporter/test/internal/trace.exporter.test.ts index 88db775e3d62..3ff576079e19 100644 --- a/sdk/monitor/monitor-opentelemetry-exporter/test/unit/export/trace.test.ts +++ b/sdk/monitor/monitor-opentelemetry-exporter/test/internal/trace.exporter.test.ts @@ -3,15 +3,15 @@ import * as assert from "assert"; import { ExportResult, ExportResultCode } from "@opentelemetry/core"; -import { AzureMonitorTraceExporter } from "../../../src/export/trace"; -import { DEFAULT_BREEZE_ENDPOINT } from "../../../src/Declarations/Constants"; +import { AzureMonitorTraceExporter } from "../../src/export/trace"; +import { DEFAULT_BREEZE_ENDPOINT } from "../../src/Declarations/Constants"; import { failedBreezeResponse, partialBreezeResponse, successfulBreezeResponse -} from "../breezeTestUtils"; -import { FileSystemPersist, HttpSender } from "../../../src/platform"; -import { TelemetryItem as Envelope } from "../../../src/generated"; +} from "../utils/breezeTestUtils"; +import { FileSystemPersist, HttpSender } from "../../src/platform"; +import { TelemetryItem as Envelope } from "../../src/generated"; import nock from "nock"; function toObject(obj: T): T { diff --git a/sdk/monitor/monitor-opentelemetry-exporter/test/common/assert.ts b/sdk/monitor/monitor-opentelemetry-exporter/test/utils/assert.ts similarity index 95% rename from sdk/monitor/monitor-opentelemetry-exporter/test/common/assert.ts rename to sdk/monitor/monitor-opentelemetry-exporter/test/utils/assert.ts index 809fd79fecc1..03873ab3bb1e 100644 --- a/sdk/monitor/monitor-opentelemetry-exporter/test/common/assert.ts +++ b/sdk/monitor/monitor-opentelemetry-exporter/test/utils/assert.ts @@ -6,7 +6,7 @@ import { AI_OPERATION_ID, AI_OPERATION_PARENT_ID } from "../../src/utils/constants/applicationinsights"; -import { Expectation } from "./scenario/types"; +import { Expectation } from "./types"; import { MonitorBase, RequestData, TelemetryItem as Envelope } from "../../src/generated"; import { TelemetryItem as EnvelopeMapper } from "../../src/generated/models/mappers"; @@ -27,10 +27,11 @@ export const assertData = (actual: MonitorBase, expected: MonitorBase): void => }; export const assertTrace = (actual: Envelope[], expectation: Expectation): void => { - const envelope = actual.filter( - (e) => + const envelope = actual.filter((e) => { + return ( (e.data!.baseData as RequestData).name === (expectation.data!.baseData as RequestData).name - ); + ); + }); if (envelope.length !== 1) { assert.ok(false, `assertTrace: could not find exported envelope: ${expectation.name}`); } @@ -74,10 +75,11 @@ export const assertCount = (actual: Envelope[], expectations: Expectation[]): vo export const assertExpectation = (actual: Envelope[], expectations: Expectation[]): void => { for (const expectation of expectations) { - const envelope = actual.filter( - (e) => + const envelope = actual.filter((e) => { + return ( (e.data!.baseData as RequestData).name === (expectation.data!.baseData as RequestData).name - ); + ); + }); if (envelope.length !== 1) { assert.ok( false, diff --git a/sdk/monitor/monitor-opentelemetry-exporter/test/common/scenario/basic.ts b/sdk/monitor/monitor-opentelemetry-exporter/test/utils/basic.ts similarity index 77% rename from sdk/monitor/monitor-opentelemetry-exporter/test/common/scenario/basic.ts rename to sdk/monitor/monitor-opentelemetry-exporter/test/utils/basic.ts index c20e245d5aa1..e0f3fe5e730a 100644 --- a/sdk/monitor/monitor-opentelemetry-exporter/test/common/scenario/basic.ts +++ b/sdk/monitor/monitor-opentelemetry-exporter/test/utils/basic.ts @@ -3,13 +3,13 @@ import * as opentelemetry from "@opentelemetry/api"; import { BasicTracerProvider } from "@opentelemetry/tracing"; -import { AzureMonitorTraceExporter } from "../../../src"; +import { AzureMonitorTraceExporter } from "../../src"; import { Expectation, Scenario } from "./types"; -import { msToTimeSpan } from "../../../src/utils/breezeUtils"; +import { msToTimeSpan } from "../../src/utils/breezeUtils"; import { SpanStatusCode } from "@opentelemetry/api"; -import { FlushSpanProcessor } from "../flushSpanProcessor"; import { delay } from "@azure/core-http"; -import { TelemetryItem as Envelope } from "../../../src/generated"; +import { TelemetryItem as Envelope } from "../../src/generated"; +import { FlushSpanProcessor } from "./flushSpanProcessor"; const COMMON_ENVELOPE_PARAMS: Partial = { instrumentationKey: process.env.APPINSIGHTS_INSTRUMENTATIONKEY || "ikey", @@ -25,7 +25,7 @@ export class BasicScenario implements Scenario { prepare(): void { const provider = new BasicTracerProvider(); provider.addSpanProcessor(processor); - opentelemetry.trace.setGlobalTracerProvider(provider); + provider.register(); } async run(): Promise { @@ -37,20 +37,30 @@ export class BasicScenario implements Scenario { foo: "bar" } }); - const child1 = tracer.startSpan(`${this.constructor.name}.Child.1`, { - startTime: 0, - kind: opentelemetry.SpanKind.CLIENT, - attributes: { - numbers: "123" - } - }); - const child2 = tracer.startSpan(`${this.constructor.name}.Child.2`, { - startTime: 0, - kind: opentelemetry.SpanKind.CLIENT, - attributes: { - numbers: "1234" - } - }); + + const ctx = opentelemetry.trace.setSpan(opentelemetry.context.active(), root); + const child1 = tracer.startSpan( + `${this.constructor.name}.Child.1`, + { + startTime: 0, + kind: opentelemetry.SpanKind.CLIENT, + attributes: { + numbers: "123" + } + }, + ctx + ); + const child2 = tracer.startSpan( + `${this.constructor.name}.Child.2`, + { + startTime: 0, + kind: opentelemetry.SpanKind.CLIENT, + attributes: { + numbers: "1234" + } + }, + ctx + ); child1.setStatus({ code: SpanStatusCode.OK }); child1.end(100); await delay(0); diff --git a/sdk/monitor/monitor-opentelemetry-exporter/test/unit/breezeTestUtils.ts b/sdk/monitor/monitor-opentelemetry-exporter/test/utils/breezeTestUtils.ts similarity index 100% rename from sdk/monitor/monitor-opentelemetry-exporter/test/unit/breezeTestUtils.ts rename to sdk/monitor/monitor-opentelemetry-exporter/test/utils/breezeTestUtils.ts diff --git a/sdk/monitor/monitor-opentelemetry-exporter/test/common/flushSpanProcessor.ts b/sdk/monitor/monitor-opentelemetry-exporter/test/utils/flushSpanProcessor.ts similarity index 100% rename from sdk/monitor/monitor-opentelemetry-exporter/test/common/flushSpanProcessor.ts rename to sdk/monitor/monitor-opentelemetry-exporter/test/utils/flushSpanProcessor.ts diff --git a/sdk/monitor/monitor-opentelemetry-exporter/test/common/scenario/types.ts b/sdk/monitor/monitor-opentelemetry-exporter/test/utils/types.ts similarity index 80% rename from sdk/monitor/monitor-opentelemetry-exporter/test/common/scenario/types.ts rename to sdk/monitor/monitor-opentelemetry-exporter/test/utils/types.ts index 5b5eeb784978..0ec01b69706a 100644 --- a/sdk/monitor/monitor-opentelemetry-exporter/test/common/scenario/types.ts +++ b/sdk/monitor/monitor-opentelemetry-exporter/test/utils/types.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import { TelemetryItem as Envelope } from "../../../src/generated"; +import { TelemetryItem as Envelope } from "../../src/generated"; export interface Expectation extends Partial { children: Expectation[]; From 5b4eac348e4db7afed67ee203d74a1b2a048ea90 Mon Sep 17 00:00:00 2001 From: Maor Leger Date: Mon, 28 Jun 2021 15:14:01 -0700 Subject: [PATCH 25/49] [synapse] - Ignore known rollup warnings (#15948) ## What - Adds warning filter to ignore known rollup warnings that are safe to ignore - Ignore `this has been rewritten to undefined` in synapse - Ignore circular dependencies in synapse ## Why These are both known warnings, are safe to ignore, and add noise to the build output unnecessarily. The first is totally safe to ignore: ``` var __spreadArray = (this && this.__spreadArray) || function (to, from) { ``` Is emitted from TypeScript in the OTel ESM and is safe to use. The second is a known issue in OTel 1.0.0 that is not harmful at runtime. Finally, we have precedent for doing the exact same thing in other packages like service-bus. --- .../synapse-access-control/rollup.config.js | 18 ++++++++++++++++++ .../rollup.config.js | 17 +++++++++++++++++ .../synapse-monitoring/rollup.config.js | 18 ++++++++++++++++++ sdk/synapse/synapse-spark/rollup.config.js | 18 ++++++++++++++++++ 4 files changed, 71 insertions(+) diff --git a/sdk/synapse/synapse-access-control/rollup.config.js b/sdk/synapse/synapse-access-control/rollup.config.js index 1225dc56b8b3..afd0dd19a25c 100644 --- a/sdk/synapse/synapse-access-control/rollup.config.js +++ b/sdk/synapse/synapse-access-control/rollup.config.js @@ -4,12 +4,30 @@ import sourcemaps from "rollup-plugin-sourcemaps"; import cjs from "@rollup/plugin-commonjs"; import { openTelemetryCommonJs } from "@azure/dev-tool/shared-config/rollup"; + +const ignoreKnownWarnings = (warning) => { + if (warning.code === "THIS_IS_UNDEFINED") { + // This error happens frequently due to TypeScript emitting `this` at the + // top-level of a module. In this case its fine if it gets rewritten to + // undefined, so ignore this error. + return; + } + + if (warning.code === "CIRCULAR_DEPENDENCY" && warning.importer.indexOf("@opentelemetry/api") >= 0) { + // OpenTelemetry contains circular references as of 1.0.0, but they are not fatal and can be ignored. + return; + } + + console.error(`(!) ${warning.message}`); +} + /** * @type {rollup.RollupFileOptions} */ const config = { input: "./dist-esm/accessControlClient.js", external: ["@azure/core-http", "@azure/core-arm"], + onwarn: ignoreKnownWarnings, output: { file: "./dist/index.js", format: "cjs", diff --git a/sdk/synapse/synapse-managed-private-endpoints/rollup.config.js b/sdk/synapse/synapse-managed-private-endpoints/rollup.config.js index 71e18098501b..1bd733ecc291 100644 --- a/sdk/synapse/synapse-managed-private-endpoints/rollup.config.js +++ b/sdk/synapse/synapse-managed-private-endpoints/rollup.config.js @@ -4,12 +4,29 @@ import sourcemaps from "rollup-plugin-sourcemaps"; import cjs from "@rollup/plugin-commonjs"; import { openTelemetryCommonJs } from "@azure/dev-tool/shared-config/rollup"; +const ignoreKnownWarnings = (warning) => { + if (warning.code === "THIS_IS_UNDEFINED") { + // This error happens frequently due to TypeScript emitting `this` at the + // top-level of a module. In this case its fine if it gets rewritten to + // undefined, so ignore this error. + return; + } + + if (warning.code === "CIRCULAR_DEPENDENCY" && warning.importer.indexOf("@opentelemetry/api") >= 0) { + // OpenTelemetry contains circular references as of 1.0.0, but they are not fatal and can be ignored. + return; + } + + console.error(`(!) ${warning.message}`); +} + /** * @type {rollup.RollupFileOptions} */ const config = { input: "./dist-esm/managedPrivateEndpointsClient.js", external: ["@azure/core-http", "@azure/core-arm"], + onwarn: ignoreKnownWarnings, output: { file: "./dist/index.js", format: "cjs", diff --git a/sdk/synapse/synapse-monitoring/rollup.config.js b/sdk/synapse/synapse-monitoring/rollup.config.js index 1e1c8628373a..c1d24e737128 100644 --- a/sdk/synapse/synapse-monitoring/rollup.config.js +++ b/sdk/synapse/synapse-monitoring/rollup.config.js @@ -4,12 +4,30 @@ import sourcemaps from "rollup-plugin-sourcemaps"; import cjs from "@rollup/plugin-commonjs"; import { openTelemetryCommonJs } from "@azure/dev-tool/shared-config/rollup"; + +const ignoreKnownWarnings = (warning) => { + if (warning.code === "THIS_IS_UNDEFINED") { + // This error happens frequently due to TypeScript emitting `this` at the + // top-level of a module. In this case its fine if it gets rewritten to + // undefined, so ignore this error. + return; + } + + if (warning.code === "CIRCULAR_DEPENDENCY" && warning.importer.indexOf("@opentelemetry/api") >= 0) { + // OpenTelemetry contains circular references as of 1.0.0, but they are not fatal and can be ignored. + return; + } + + console.error(`(!) ${warning.message}`); +} + /** * @type {rollup.RollupFileOptions} */ const config = { input: "./dist-esm/monitoringClient.js", external: ["@azure/core-http", "@azure/core-arm"], + onwarn: ignoreKnownWarnings, output: { file: "./dist/index.js", format: "cjs", diff --git a/sdk/synapse/synapse-spark/rollup.config.js b/sdk/synapse/synapse-spark/rollup.config.js index fa85bbbc8812..8cdd0e5c0c18 100644 --- a/sdk/synapse/synapse-spark/rollup.config.js +++ b/sdk/synapse/synapse-spark/rollup.config.js @@ -4,12 +4,30 @@ import sourcemaps from "rollup-plugin-sourcemaps"; import cjs from "@rollup/plugin-commonjs"; import { openTelemetryCommonJs } from "@azure/dev-tool/shared-config/rollup"; + +const ignoreKnownWarnings = (warning) => { + if (warning.code === "THIS_IS_UNDEFINED") { + // This error happens frequently due to TypeScript emitting `this` at the + // top-level of a module. In this case its fine if it gets rewritten to + // undefined, so ignore this error. + return; + } + + if (warning.code === "CIRCULAR_DEPENDENCY" && warning.importer.indexOf("@opentelemetry/api") >= 0) { + // OpenTelemetry contains circular references as of 1.0.0, but they are not fatal and can be ignored. + return; + } + + console.error(`(!) ${warning.message}`); +} + /** * @type {rollup.RollupFileOptions} */ const config = { input: "./dist-esm/sparkClient.js", external: ["@azure/core-http", "@azure/core-arm"], + onwarn: ignoreKnownWarnings, output: { file: "./dist/index.js", format: "cjs", From 5a7c12997212feaf228509063cde054bf318ed4a Mon Sep 17 00:00:00 2001 From: Ramya Rao Date: Mon, 28 Jun 2021 15:54:47 -0700 Subject: [PATCH 26/49] Update engines, @types/node to Node.js v12 (#15996) --- common/config/rush/pnpm-lock.yaml | 340 +++++++++--------- common/tools/dev-tool/package.json | 2 +- .../eslint-plugin-azure-sdk/package.json | 2 +- .../ts-package-json-engine-is-present.ts | 2 +- .../ts-package-json-engine-is-present.ts | 2 +- package.json | 2 +- .../agrifood-farming-rest/package.json | 4 +- .../ai-anomaly-detector/package.json | 4 +- .../app-configuration/CHANGELOG.md | 1 + .../app-configuration/package.json | 4 +- .../perf-tests/app-configuration/package.json | 2 +- sdk/attestation/attestation/package.json | 4 +- .../communication-chat/CHANGELOG.md | 9 +- .../communication-chat/package.json | 4 +- .../communication-common/CHANGELOG.md | 10 +- .../communication-common/package.json | 6 +- .../communication-identity/CHANGELOG.md | 8 + .../communication-identity/package.json | 4 +- .../CHANGELOG.md | 8 + .../package.json | 4 +- .../communication-phone-numbers/CHANGELOG.md | 10 +- .../communication-phone-numbers/package.json | 6 +- .../communication-sms/CHANGELOG.md | 12 +- .../communication-sms/package.json | 6 +- .../communication-sms/src/constants.ts | 2 +- .../src/generated/src/smsApiClientContext.ts | 2 +- .../communication-sms/swagger/README.md | 2 +- .../confidential-ledger-rest/package.json | 2 +- .../container-registry/package.json | 4 +- sdk/core/abort-controller/package.json | 4 +- sdk/core/core-amqp/package.json | 4 +- .../core-asynciterator-polyfill/package.json | 4 +- sdk/core/core-auth/package.json | 4 +- sdk/core/core-client-paging-rest/package.json | 4 +- sdk/core/core-client-rest/package.json | 4 +- sdk/core/core-client/package.json | 4 +- sdk/core/core-crypto/package.json | 4 +- sdk/core/core-http/package.json | 4 +- sdk/core/core-lro/package.json | 4 +- sdk/core/core-paging/package.json | 4 +- sdk/core/core-rest-pipeline/package.json | 4 +- sdk/core/core-tracing/package.json | 4 +- sdk/core/core-util/package.json | 4 +- sdk/core/core-xml/package.json | 4 +- sdk/core/logger/package.json | 4 +- sdk/cosmosdb/cosmos/CHANGELOG.md | 3 +- sdk/cosmosdb/cosmos/package.json | 6 +- .../iot-device-update/package.json | 4 +- .../digital-twins-core/CHANGELOG.md | 9 +- .../digital-twins-core/package.json | 6 +- .../src/digitalTwinsClient.ts | 2 +- .../generated/azureDigitalTwinsAPIContext.ts | 2 +- .../digital-twins-core/swagger/README.md | 2 +- .../ai-document-translator-rest/package.json | 4 +- sdk/eventgrid/eventgrid/CHANGELOG.md | 8 +- sdk/eventgrid/eventgrid/package.json | 6 +- sdk/eventgrid/eventgrid/src/constants.ts | 2 +- sdk/eventgrid/eventgrid/swagger/README.md | 2 +- .../perf-tests/eventgrid/package.json | 2 +- sdk/eventhub/event-hubs/CHANGELOG.md | 5 +- sdk/eventhub/event-hubs/package.json | 6 +- .../event-hubs/samples-browser/package.json | 2 +- .../event-hubs/samples-express/package.json | 2 +- .../samples/v5/browser/package.json | 2 +- .../samples/v5/express/package.json | 2 +- sdk/eventhub/event-hubs/src/util/constants.ts | 2 +- .../event-processor-host/package.json | 4 +- .../samples/javascript/package.json | 2 +- .../samples/typescript/package.json | 2 +- .../CHANGELOG.md | 6 + .../package.json | 4 +- sdk/eventhub/mock-hub/package.json | 4 +- .../mock-hub/samples/javascript/package.json | 2 +- .../mock-hub/samples/typescript/package.json | 4 +- .../ai-form-recognizer/CHANGELOG.md | 8 +- .../ai-form-recognizer/package.json | 10 +- .../ai-form-recognizer/src/constants.ts | 2 +- .../src/generated/generatedClientContext.ts | 2 +- .../ai-form-recognizer/swagger/README.md | 2 +- .../ai-form-recognizer/package.json | 2 +- .../identity-cache-persistence/.eslintrc.json | 3 +- .../identity-cache-persistence/package.json | 2 +- sdk/identity/identity-vscode/.eslintrc.json | 3 +- sdk/identity/identity-vscode/package.json | 2 +- sdk/identity/identity/CHANGELOG.md | 27 +- sdk/identity/identity/package.json | 4 +- .../identity/samples/javascript/package.json | 2 +- .../identity/samples/typescript/package.json | 4 +- .../identity/test/manual/package.json | 2 +- sdk/iot/iot-modelsrepository/package.json | 4 +- sdk/keyvault/keyvault-admin/CHANGELOG.md | 1 + sdk/keyvault/keyvault-admin/package.json | 4 +- .../keyvault-certificates/CHANGELOG.md | 1 + .../keyvault-certificates/package.json | 4 +- sdk/keyvault/keyvault-common/package.json | 2 +- sdk/keyvault/keyvault-keys/CHANGELOG.md | 1 + sdk/keyvault/keyvault-keys/package.json | 4 +- sdk/keyvault/keyvault-secrets/CHANGELOG.md | 1 + sdk/keyvault/keyvault-secrets/package.json | 4 +- .../ai-metrics-advisor/package.json | 4 +- .../ai-metrics-advisor/package.json | 2 +- .../mixedreality-authentication/package.json | 4 +- .../.eslintrc.json | 16 +- .../package.json | 4 +- .../storage-blob/javascript/package.json | 2 +- .../storage-blob/typescript/package.json | 2 +- sdk/monitor/monitor-query/package.json | 4 +- sdk/purview/purview-catalog-rest/package.json | 4 +- .../purview-scanning-rest/package.json | 4 +- sdk/quantum/quantum-jobs/package.json | 4 +- .../schema-registry-avro/package.json | 4 +- .../schema-registry/package.json | 4 +- .../perf-tests/search-documents/package.json | 2 +- sdk/search/search-documents/CHANGELOG.md | 9 + sdk/search/search-documents/package.json | 4 +- .../samples/javascript/package.json | 2 +- .../samples/typescript/package.json | 4 +- sdk/servicebus/service-bus/CHANGELOG.md | 3 +- sdk/servicebus/service-bus/package.json | 6 +- .../service-bus/src/util/constants.ts | 2 +- .../storage-blob-track-1/package.json | 2 +- .../perf-tests/storage-blob/package.json | 2 +- .../storage-file-datalake/package.json | 2 +- .../storage-file-share-track-1/package.json | 2 +- .../storage-file-share/package.json | 2 +- .../storage-blob-changefeed/package.json | 4 +- .../samples/javascript/package.json | 2 +- .../samples/typescript/package.json | 4 +- sdk/storage/storage-blob/CHANGELOG.md | 1 + sdk/storage/storage-blob/package.json | 4 +- .../samples/javascript/package.json | 2 +- .../samples/typescript/package.json | 4 +- .../storage-file-datalake/CHANGELOG.md | 2 +- .../storage-file-datalake/package.json | 4 +- .../samples/javascript/package.json | 2 +- .../samples/typescript/package.json | 4 +- sdk/storage/storage-file-share/CHANGELOG.md | 2 +- sdk/storage/storage-file-share/package.json | 4 +- .../samples/javascript/package.json | 2 +- .../samples/typescript/package.json | 4 +- .../storage-internal-avro/package.json | 4 +- sdk/storage/storage-queue/CHANGELOG.md | 2 +- sdk/storage/storage-queue/package.json | 4 +- .../samples/javascript/package.json | 2 +- .../samples/typescript/package.json | 4 +- .../synapse-access-control/package.json | 2 +- sdk/synapse/synapse-artifacts/package.json | 4 +- .../package.json | 2 +- sdk/synapse/synapse-monitoring/package.json | 2 +- sdk/synapse/synapse-spark/package.json | 2 +- sdk/tables/data-tables/CHANGELOG.md | 2 +- sdk/tables/data-tables/package.json | 4 +- sdk/template/template/package.json | 4 +- sdk/test-utils/perfstress/package.json | 4 +- sdk/test-utils/recorder/package.json | 4 +- sdk/test-utils/test-utils/package.json | 4 +- .../ai-text-analytics/CHANGELOG.md | 2 +- .../ai-text-analytics/package.json | 4 +- .../perf-tests/text-analytics/package.json | 2 +- .../video-analyzer-edge/package.json | 4 +- .../samples/javascript/package.json | 2 +- .../samples/typescript/package.json | 4 +- .../web-pubsub-express/package.json | 4 +- sdk/web-pubsub/web-pubsub/package.json | 4 +- 164 files changed, 526 insertions(+), 435 deletions(-) diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index 91a96cc1dab9..dc754dd7d6bd 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -1513,10 +1513,10 @@ packages: dev: false resolution: integrity: sha512-pMCcqU2zT4TjqYFrWtYHKal7Sl30Ims6ulZ4UFXxI4xbtQqK/qqKwkDoBFCfooRqqmRu9vY3xaJRwxSh673aYg== - /@types/node/10.17.60: + /@types/node/12.20.15: dev: false resolution: - integrity: sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw== + integrity: sha512-F6S4Chv4JicJmyrwlDkxUdGNSplsQdGwp1A0AJloEVDirWdZOAiRHhovDlsFkKUrquUXhz1imJhXHsf59auyAg== /@types/node/15.12.4: dev: false resolution: @@ -8033,7 +8033,7 @@ packages: '@rollup/plugin-node-resolve': 8.4.0_rollup@1.32.1 '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 assert: 1.5.0 cross-env: 7.0.3 delay: 4.4.1 @@ -8065,7 +8065,7 @@ packages: dev: false name: '@rush-temp/abort-controller' resolution: - integrity: sha512-LaKKpImlDpFtOEfXl4EGfFfplcDxt+sSuNKg72ruFDqeqR5e7PHNBrKkQB8c/nUGCH4b9i8urEUhLfUnVP+02g== + integrity: sha512-ceXMUAJSCegBRmaD1P7SY5tWgUh7KDD+52gdtlTq9ofl0WSDQ1V15Bukc7gLeym3//aJFk5vXPCkVYR8aUbHnw== tarball: file:projects/abort-controller.tgz version: 0.0.0 file:projects/agrifood-farming.tgz: @@ -8075,7 +8075,7 @@ packages: '@microsoft/api-extractor': 7.13.2 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 chai: 4.3.4 cross-env: 7.0.3 dotenv: 8.6.0 @@ -8108,7 +8108,7 @@ packages: dev: false name: '@rush-temp/agrifood-farming' resolution: - integrity: sha512-zxH3z0da7M7HliJFRufLVPCbrJZvGYX+bkJITR0xUJf4mRfWvfkboNOxjbKwxGVawQ1quKiqTmyZsPpLw9HIEQ== + integrity: sha512-7EztNh1/5PCSRZo4LkuxwqhoYu2NJfgDydx7zdUsf3NsBIt+5elmLXKrXw8k+jqHJy0/3aNSwauvrJXX1YoXzA== tarball: file:projects/agrifood-farming.tgz version: 0.0.0 file:projects/ai-anomaly-detector.tgz: @@ -8122,7 +8122,7 @@ packages: '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 chai: 4.3.4 cross-env: 7.0.3 csv-parse: 4.16.0 @@ -8157,7 +8157,7 @@ packages: dev: false name: '@rush-temp/ai-anomaly-detector' resolution: - integrity: sha512-HOZBZxEhHXas5ja/2SIPBxPI0wj2T9wbE72i0ejPvI/A1qUJlirCnroCn0+OtyvYDPai5/CMhEHPPVf1CFg2vQ== + integrity: sha512-xor9UzgRJS2NW7pO+RvYWrtAIDLJ5HTLfPT0srRwO83Ofl851H6dTtrCvYd6L4KUvj1lZLnF60YS9cWFtapK+g== tarball: file:projects/ai-anomaly-detector.tgz version: 0.0.0 file:projects/ai-document-translator.tgz: @@ -8167,7 +8167,7 @@ packages: '@microsoft/api-extractor': 7.13.2 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 chai: 4.3.4 cross-env: 7.0.3 dotenv: 8.6.0 @@ -8199,7 +8199,7 @@ packages: dev: false name: '@rush-temp/ai-document-translator' resolution: - integrity: sha512-3YHPFrjR8WULy8t7MNaoiNCoYBNkDfM9aRwRE1xbf80I5qtPfA7BD4mbo7sxMYesQdGiLSl9V1UARbbN4fy2pA== + integrity: sha512-NPQLCjcRguBPB5rfq3vCZYMCWNW7xe8sp9To6V4wmznNTBKNcuMAB3HFyY2eUQckPfCX+SeJ1dZk0aQYgPYTEA== tarball: file:projects/ai-document-translator.tgz version: 0.0.0 file:projects/ai-form-recognizer.tgz: @@ -8207,7 +8207,7 @@ packages: '@microsoft/api-extractor': 7.7.11 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 chai: 4.3.4 chai-as-promised: 7.1.1_chai@4.3.4 @@ -8241,7 +8241,7 @@ packages: dev: false name: '@rush-temp/ai-form-recognizer' resolution: - integrity: sha512-PG6KP/nYmP5pFVwSv1MHC+bEPEIP02GHMIkhzn4UhD6ibW97V/QdZ2n4BQlGWmccMGA8axhbFsZRSLU/BBGPTw== + integrity: sha512-ZoJdYizuIklrV7rL0bmKeAGYOmdZr0cLNRxwR9PdN3KowY3Uo+/1RLdv6+e0G/cUC2Avqcgsk/p46glgLeZVZw== tarball: file:projects/ai-form-recognizer.tgz version: 0.0.0 file:projects/ai-metrics-advisor.tgz: @@ -8250,7 +8250,7 @@ packages: '@microsoft/api-extractor': 7.7.11 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 chai: 4.3.4 chai-as-promised: 7.1.1_chai@4.3.4 @@ -8285,7 +8285,7 @@ packages: dev: false name: '@rush-temp/ai-metrics-advisor' resolution: - integrity: sha512-jR1S5XpW18t2/lVo4/hkNpG9N0ztS1p1peq8u+XMcIGX7uoDQgFBMWkOra8tv6QGivsoMQ0xWwAOswG7A+oVqg== + integrity: sha512-JXGv6EY1CYEfStFqTBGSEQcBEy3/Xxm3zhXJOh0m40uLZq4cYi5dwQ5I6lyaYfasbktq34IGBV1+KL7Ujzd/MQ== tarball: file:projects/ai-metrics-advisor.tgz version: 0.0.0 file:projects/ai-text-analytics.tgz: @@ -8297,7 +8297,7 @@ packages: '@types/chai': 4.2.19 '@types/chai-as-promised': 7.1.4 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 chai: 4.3.4 chai-as-promised: 7.1.1_chai@4.3.4 @@ -8333,7 +8333,7 @@ packages: dev: false name: '@rush-temp/ai-text-analytics' resolution: - integrity: sha512-d2IVGQX1cy4qBc/4qANWXKVMLRbvYr8PF5qL/tj6aTomya5fHI+sbKXmvXMZG4lJV1dUG5OSrxq34QYaVbcBFQ== + integrity: sha512-Etd2xmQEO6pchKxIzpiZlFNg52Xu86XdKqlgU+DZ5jE4IX4RTDS83ugGEzVSS0bjME+P59YZ19ubhwanOb6WlQ== tarball: file:projects/ai-text-analytics.tgz version: 0.0.0 file:projects/app-configuration.tgz: @@ -8348,7 +8348,7 @@ packages: '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 assert: 1.5.0 chai: 4.3.4 @@ -8386,7 +8386,7 @@ packages: dev: false name: '@rush-temp/app-configuration' resolution: - integrity: sha512-hnxdxVITPVLYJIeSx6vf7SXvuzyKSo06rX/A37blEI12OFSYPmenR23ZTMvc7tuVrjS6VBAlNy710wd/DMx5vQ== + integrity: sha512-LNi199Cv3vpwwDyHMUnPNc/GJhkiBY4ntL0I6IUsO32nO1SKnEVoCnWnvpsbsUnRTrT/zR079mLOyPay0t+Qug== tarball: file:projects/app-configuration.tgz version: 0.0.0 file:projects/attestation.tgz: @@ -8398,7 +8398,7 @@ packages: '@types/chai': 4.2.19 '@types/chai-as-promised': 7.1.4 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 buffer: 5.7.1 chai: 4.3.4 chai-as-promised: 7.1.1_chai@4.3.4 @@ -8441,7 +8441,7 @@ packages: dev: false name: '@rush-temp/attestation' resolution: - integrity: sha512-BZ8CCLDiqLswQ8wK4lnFc4/ZMcn+a7VT+T83/aZtyiAw2XFgJ3BzIVU8Pq5Ol81OxELobA1M/L7Tw7vu6hHpwQ== + integrity: sha512-EwxFoG/HK6QssgD+v8J0kGJyDrfxOgdY7hegBWPUxkuC76S4dazK3bnx+SRMcM3s/9p/8OfWhIQLfLygeYFx3A== tarball: file:projects/attestation.tgz version: 0.0.0 file:projects/communication-chat.tgz: @@ -8457,7 +8457,7 @@ packages: '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 assert: 1.5.0 chai: 4.3.4 @@ -8497,7 +8497,7 @@ packages: dev: false name: '@rush-temp/communication-chat' resolution: - integrity: sha512-i/8xbWYc2eRn2OedKY0xUzr3RDK/XdRT22ea2GLoBv4ivEPWY4+ehtL3DOntR3DXOVwnzoy8NTk44NnCTiT+Vg== + integrity: sha512-JsmZwX9BwOo9JBuM15qjJP1u0hQHmdbFiT60wFGbchohHp8mok71/c+eeiH9P1vgAAfXIxXCCjSb1R77j3YqMQ== tarball: file:projects/communication-chat.tgz version: 0.0.0 file:projects/communication-common.tgz: @@ -8512,7 +8512,7 @@ packages: '@types/chai-as-promised': 7.1.4 '@types/jwt-decode': 2.2.1 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 assert: 1.5.0 chai: 4.3.4 @@ -8550,7 +8550,7 @@ packages: dev: false name: '@rush-temp/communication-common' resolution: - integrity: sha512-NsvGPAqTmqJyCBQ/EeksY2zWcD7tusREqXMAWsxmHzmO0zG4uUb8ordkkb09keCbRUFVCQBkN3sScKy4MZJjqw== + integrity: sha512-Pje4ZHzhRzuv+h+yP02AECjaenYXExPAjTLYcquj7cr4N8mpxhJ7uluTDI2maz5NEbbbzq/b3fULiiX4u9N2IQ== tarball: file:projects/communication-common.tgz version: 0.0.0 file:projects/communication-identity.tgz: @@ -8563,7 +8563,7 @@ packages: '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 assert: 1.5.0 chai: 4.3.4 @@ -8602,7 +8602,7 @@ packages: dev: false name: '@rush-temp/communication-identity' resolution: - integrity: sha512-OrBwofz9RC/Uof8DsCbPPKOf9qGLMqUsOeZe7Q/nIbfnbZYFV7jcf/FaRIlKm6ouIM/i5Juj2rEzKy7LWx5VsA== + integrity: sha512-LiLVBreww8n6sBGNoAFvFFagepcdCwL8aUQzGo+0ZW6Tm5DY4LptNs3JBP49VsBB+n1U+Y9f+xNwNlnPi0SXVA== tarball: file:projects/communication-identity.tgz version: 0.0.0 file:projects/communication-network-traversal.tgz: @@ -8616,7 +8616,7 @@ packages: '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 assert: 1.5.0 chai: 4.3.4 @@ -8655,7 +8655,7 @@ packages: dev: false name: '@rush-temp/communication-network-traversal' resolution: - integrity: sha512-4flsoWfGKC+zhYkduTncSI22tlrJ18C9lDtSscghuOZM/i2U8J04RVPUH2HJJYwh6vB4qJgpclic1AUpytOQ3w== + integrity: sha512-SLNItXwKzrnfDd/pZ60nUHc+PqEEpfQEe9GFNYTmAP53krfOb6/XHWjt6OZNVyXwjkDc1mG3o10KZntjPR6hqg== tarball: file:projects/communication-network-traversal.tgz version: 0.0.0 file:projects/communication-phone-numbers.tgz: @@ -8668,7 +8668,7 @@ packages: '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 assert: 1.5.0 chai: 4.3.4 @@ -8707,7 +8707,7 @@ packages: dev: false name: '@rush-temp/communication-phone-numbers' resolution: - integrity: sha512-ZMZNMp8xGJWX+SYkH9BN4HjdxXIlhCtnztjuUGS53VtbRT81S/fJ8YzjbtskJNCI07RyC0dlvIZccsKEUb/iXA== + integrity: sha512-izvzyc+IZYXQXM9q73ni8SPSXSYxdF7Hm5KPIxBdx++bY3T0L0RmqUVsxlfkGhL8Wh6cBouyYBmFZfGsVcC3Zw== tarball: file:projects/communication-phone-numbers.tgz version: 0.0.0 file:projects/communication-sms.tgz: @@ -8720,7 +8720,7 @@ packages: '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 assert: 1.5.0 chai: 4.3.4 @@ -8758,7 +8758,7 @@ packages: dev: false name: '@rush-temp/communication-sms' resolution: - integrity: sha512-sLFrpFT/bZo8ppBxJnw0KkGHXVFw39cOKN3yj+TLispv0m9w/RfEdqi68SgrRM4BBPwAEmjSF7r8k9GbZAolHA== + integrity: sha512-8+FLM3cvueo2gwgMknJ/n3OyBSKe1mHxDTjEJ/cUAXgKHuU80bvpBYZ0TRQNu5pNN3CFhyl3fNj4U6KAaN08ZA== tarball: file:projects/communication-sms.tgz version: 0.0.0 file:projects/confidential-ledger.tgz: @@ -8768,7 +8768,7 @@ packages: '@microsoft/api-extractor': 7.13.2 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 chai: 4.3.4 cross-env: 7.0.3 dotenv: 8.6.0 @@ -8800,7 +8800,7 @@ packages: dev: false name: '@rush-temp/confidential-ledger' resolution: - integrity: sha512-jPiYbuPxYfVKkWJVYow1irqzxO/9Pyx68cONy0qLfzwOi4OC8TkXQVI0p23E5Wm/kvd46aWD+aaRD7nCKlPvZw== + integrity: sha512-uCxaemZagUXJ9OaGmikK9YKlfGLU1PNiMAoY/BpyZNDrj3+2/+ZpmWhsB8lUiz4ZqLfDbVX+2mc9c1N9q7Tocw== tarball: file:projects/confidential-ledger.tgz version: 0.0.0 file:projects/container-registry.tgz: @@ -8811,7 +8811,7 @@ packages: '@types/chai': 4.2.19 '@types/chai-as-promised': 7.1.4 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 chai: 4.3.4 chai-as-promised: 7.1.1_chai@4.3.4 cross-env: 7.0.3 @@ -8844,7 +8844,7 @@ packages: dev: false name: '@rush-temp/container-registry' resolution: - integrity: sha512-rvApa+GUcNzh2bFcw3EljYQpQalgHz0S9tsfcCv8ZPyBU4kuN53KasLy1bBEJLwqyIOrRQRdzYvLmgoW5sO0qA== + integrity: sha512-sM+tVFsBl6vesjl4vSW1PeKmSeRtwY4eYDCinWGo8PJOxMUj0PpGeK2O7NiXUsF+eLyp30tafqY/xhjWt3foDQ== tarball: file:projects/container-registry.tgz version: 0.0.0 file:projects/core-amqp.tgz: @@ -8860,7 +8860,7 @@ packages: '@types/chai-as-promised': 7.1.4 '@types/debug': 4.1.5 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 '@types/ws': 7.4.5 assert: 1.5.0 @@ -8901,12 +8901,12 @@ packages: dev: false name: '@rush-temp/core-amqp' resolution: - integrity: sha512-S5svpkM4ZwPtbo8++psIvSBEddD/Oufsnxexz+ediW+UtvlpBAwPog/RE5MthnMOpNxhcDwHh7WijLNoJ8kwTg== + integrity: sha512-NsjbIvK0AepoWd0jHaFjQIsq2AIm10LaxkUXhc55cqQTJUCfPmPjw/OENA/4TcvI7c9lMe+5ZhGxyEbTiUI0Xw== tarball: file:projects/core-amqp.tgz version: 0.0.0 file:projects/core-asynciterator-polyfill.tgz: dependencies: - '@types/node': 8.10.66 + '@types/node': 12.20.15 eslint: 7.29.0 prettier: 1.19.1 typedoc: 0.15.2 @@ -8914,7 +8914,7 @@ packages: dev: false name: '@rush-temp/core-asynciterator-polyfill' resolution: - integrity: sha512-h5Lxt61X7fYi0y86q4KioMXa/CaIuIUcdXt9A0+fBuuBbvaZsIJWy8xBRRj8avO2l4dEqorlHeoTrp/tLCojfA== + integrity: sha512-NMQzIXmS6Aw+/UpoOPolEKGWu0ak5sbvZn3jGCttx2gFZqO832WYZuAeNlwxEYUepdypxNQRnAR8EAdx7b7iiw== tarball: file:projects/core-asynciterator-polyfill.tgz version: 0.0.0 file:projects/core-auth.tgz: @@ -8926,7 +8926,7 @@ packages: '@rollup/plugin-node-resolve': 8.4.0_rollup@1.32.1 '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 assert: 1.5.0 cross-env: 7.0.3 downlevel-dts: 0.4.0 @@ -8947,7 +8947,7 @@ packages: dev: false name: '@rush-temp/core-auth' resolution: - integrity: sha512-outNi2S2CrnciEagH8Brvw3cChSobRZIB24RxTYpi4076Mws+bZsd56gS3OXZMvwNRf9IQKfCrEH/TAZImeIQw== + integrity: sha512-RXJRUV7mArLtNQQWvQkXLxFmypQ8WZNLBtKMDsKniNu9fE37UkST/bcBNOkH9fOt04ldxlv6HbXW1Lo2QVc5cQ== tarball: file:projects/core-auth.tgz version: 0.0.0 file:projects/core-client-1.tgz: @@ -8963,7 +8963,7 @@ packages: '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 chai: 4.3.4 cross-env: 7.0.3 @@ -8997,7 +8997,7 @@ packages: dev: false name: '@rush-temp/core-client-1' resolution: - integrity: sha512-DrijA2NS4/XmZj1662Y6vb7WdQYW3/fyOjeAtDpkusGwA3qf0QRQoivCfvxTtRLTJH4XYH20Z5i375iAoOMYWQ== + integrity: sha512-pCbSqwXCtmQzCBh1nChKeyoeqaLJ8mq62pFQaFkxBWj7yPSQvqUWmvjb9BhsWxYTURcNmt5KD5UYK9FMeqlnsg== tarball: file:projects/core-client-1.tgz version: 0.0.0 file:projects/core-client-paging.tgz: @@ -9005,7 +9005,7 @@ packages: '@microsoft/api-extractor': 7.13.2 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 chai: 4.3.4 cross-env: 7.0.3 eslint: 7.29.0 @@ -9034,7 +9034,7 @@ packages: dev: false name: '@rush-temp/core-client-paging' resolution: - integrity: sha512-cILnMe2cNW8wClpKU+i6EyZHXtI9FyIkDCrLvd4I8utQ/Cw6x2l4T88rx/nbdN2qTm/QfY1Oi49xgNPEqoam4A== + integrity: sha512-56hlO8jgFdKMR/mgzW2WPHAqxx7n+ji+L9ZCeF+9yxkcmBBzsSKfYrQdTtsBN94/1/ZwtmWJluu7WDKieWYY0w== tarball: file:projects/core-client-paging.tgz version: 0.0.0 file:projects/core-client.tgz: @@ -9043,7 +9043,7 @@ packages: '@microsoft/api-extractor': 7.13.2 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 chai: 4.3.4 cross-env: 7.0.3 eslint: 7.29.0 @@ -9072,7 +9072,7 @@ packages: dev: false name: '@rush-temp/core-client' resolution: - integrity: sha512-il6SXKHslnN6KhbWk81o67b69k+uGgOd/UVEWmvp0OBuiF7+5YWUxbMGShuPaDCCODV5Eg1OX3bOVBU122ECyg== + integrity: sha512-A+GvNgdlwTt5h3ZbVfNlhfUSKtdo96ruE9aQ7Vvf83wsasti6gtLOQFPXPiLMvhvQoKg4eQ3iZU9TtNxW2RY+g== tarball: file:projects/core-client.tgz version: 0.0.0 file:projects/core-crypto.tgz: @@ -9085,7 +9085,7 @@ packages: '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 assert: 1.5.0 chai: 4.3.4 @@ -9117,7 +9117,7 @@ packages: dev: false name: '@rush-temp/core-crypto' resolution: - integrity: sha512-p/rHVWzH5nyPHXW4sxKE0vkUuAk1uJmsbQZGjgDJP2Bz+vlyM1PC/qHlERS51A9iPsx0Lb8lmty96JwHAIO9Pg== + integrity: sha512-ZxjNnA+5K9JvOJIhLaYC9VDNuS1o+YFNoOR/v2T3EuEf8dDw5+tTddPyy5QRH59EQAUjqc+b/5YwwWdPys08jg== tarball: file:projects/core-crypto.tgz version: 0.0.0 file:projects/core-http.tgz: @@ -9133,7 +9133,7 @@ packages: '@types/express': 4.17.12 '@types/glob': 7.1.3 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/node-fetch': 2.5.10 '@types/sinon': 9.0.11 '@types/tough-cookie': 4.0.0 @@ -9185,7 +9185,7 @@ packages: dev: false name: '@rush-temp/core-http' resolution: - integrity: sha512-6X7ZmkgSI5TtG0bUativYtE4MCsHUzXSM9ZuiOaJkGAgpRctDHeS+EMzA6BgL3ASSu+jIySqhI6Eo1k4K8t81Q== + integrity: sha512-yyCNXJSvJthpwBPRtGGImOFbdXtFQZP3zbGl7Ei7olsXAr0Y6BaCw31tZoJ9BIsDFN/Pjw+3rXCAGpXzE0QWcA== tarball: file:projects/core-http.tgz version: 0.0.0 file:projects/core-lro.tgz: @@ -9197,7 +9197,7 @@ packages: '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 assert: 1.5.0 chai: 4.3.4 cross-env: 7.0.3 @@ -9233,12 +9233,12 @@ packages: dev: false name: '@rush-temp/core-lro' resolution: - integrity: sha512-BBFyzmuJV6yP3Bd7Q1woBHOV5zTLGzpv3I89Ax8nkQWgkunvGYiWt27DFoVPaYN+58yyfSPCQ+NW9CHqIrGiNg== + integrity: sha512-TRj3hpxpoOvBXH3WJS79ecEycw1a7x1ljh5cK9us0AsFdG4cCqRPOYjyiqTdBbcVJq7/rF73k/O3ptrnLrnVFQ== tarball: file:projects/core-lro.tgz version: 0.0.0 file:projects/core-paging.tgz: dependencies: - '@types/node': 8.10.66 + '@types/node': 12.20.15 eslint: 7.29.0 prettier: 1.19.1 rimraf: 3.0.2 @@ -9247,7 +9247,7 @@ packages: dev: false name: '@rush-temp/core-paging' resolution: - integrity: sha512-MWcTO+6523oBrcVxrW0PZx7ZSvSg5BalwS+vpArIhQ2v8AEByYp9LJhTdmX5KNIs1wMSYzOSCYL0bWOMCf8smw== + integrity: sha512-vxnKN9KxGJu52+rmWCXYeX1rjg3z5GgUIr1cTNdQ+NpRe2SkWW8iPAb1Li6iKr5p6XVkgQ4Zhe22/yRT4mozUw== tarball: file:projects/core-paging.tgz version: 0.0.0 file:projects/core-rest-pipeline.tgz: @@ -9261,7 +9261,7 @@ packages: '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 '@types/uuid': 8.3.0 chai: 4.3.4 @@ -9301,7 +9301,7 @@ packages: dev: false name: '@rush-temp/core-rest-pipeline' resolution: - integrity: sha512-B30gNDjvYMKn9TTL3Li38tIe02Gn9y/2pz9MLrKoWFzITzyQwaht729dCk6oSYXfesN+LipPoM26kw5lkOQ0rg== + integrity: sha512-wY6C2ZRU1FBXyJK1z70NRL+JjQHgGDOqkm/fWvhiodYOgo0LL2ujMWHqxuh1+xTQX09Ljvp+DXreHxU8hSxzlw== tarball: file:projects/core-rest-pipeline.tgz version: 0.0.0 file:projects/core-tracing.tgz: @@ -9314,7 +9314,7 @@ packages: '@rollup/plugin-node-resolve': 8.4.0_rollup@1.32.1 '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 assert: 1.5.0 cross-env: 7.0.3 @@ -9347,7 +9347,7 @@ packages: dev: false name: '@rush-temp/core-tracing' resolution: - integrity: sha512-WY3dTdsoyz+AMJUBjPiPsbagWKKJhxDhk+tURH/HBp6zUzyu1AJ4/VjUVCkruYBEZfy/WBYCfcHkMjlcielb0Q== + integrity: sha512-YfDri4himzAKvCn5P6X4JAj63PPpx9H46wm12o+78JwjfuvFNaiDjq8zdyRAVWVdmTWG0ahwHPEn4hkNDL/DxA== tarball: file:projects/core-tracing.tgz version: 0.0.0 file:projects/core-util.tgz: @@ -9360,7 +9360,7 @@ packages: '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 chai: 4.3.4 cross-env: 7.0.3 @@ -9394,7 +9394,7 @@ packages: dev: false name: '@rush-temp/core-util' resolution: - integrity: sha512-glw4pOUFQydejUfqKP+imC8u9ARhD0nbgG44ZXc9Sr6tk3JZ6xrP3/Vv1Z83uPgSfQMF6svX0SCFC3eiusczfg== + integrity: sha512-Cu6fhLj1oqprc2s1XQyP+8SNEIGjYMjwGjgUFvqsFtcw3YmXWihkP5vxEf9H4atqCagI2zzeBI4CegMpJ9JcLQ== tarball: file:projects/core-util.tgz version: 0.0.0 file:projects/core-xml.tgz: @@ -9407,7 +9407,7 @@ packages: '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 '@types/xml2js': 0.4.8 chai: 4.3.4 @@ -9443,7 +9443,7 @@ packages: dev: false name: '@rush-temp/core-xml' resolution: - integrity: sha512-/LdrZ/JoBIlvgoBQl+v71LNCRP7AE43OCO9MdVUogwrG8QwZwaWw2wgro9Mz5xucvGg46Xy53bRldT1498xTHQ== + integrity: sha512-y/Xw+iAT2IkXPWtLgqAx323DSrnojgO71vHVwe/X9H2ILMgVxF79aau44Cc810y2ROL20biY0ozt1fW/G7zfNw== tarball: file:projects/core-xml.tgz version: 0.0.0 file:projects/cosmos.tgz: @@ -9456,7 +9456,7 @@ packages: '@types/debug': 4.1.5 '@types/fast-json-stable-stringify': 2.1.0 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/priorityqueuejs': 1.0.1 '@types/semaphore': 1.1.1 '@types/sinon': 9.0.11 @@ -9495,7 +9495,7 @@ packages: dev: false name: '@rush-temp/cosmos' resolution: - integrity: sha512-xeynzMPENTLSgyH0Fi0tNXaGW76n4EWdwWWPrjSje3pHCLEw7BVgaLSOSQDkhuQskBJ6wxoDvL3OPJiUnXZzBg== + integrity: sha512-y0tdWWp7/xU/geYx1aGHZkr9u36+cRJuWH1WJh7CvEXdX31tRx/svzBMVy6Vt4hKHzaQ/0x8/ICYoebGSdLmqw== tarball: file:projects/cosmos.tgz version: 0.0.0 file:projects/data-tables.tgz: @@ -9513,7 +9513,7 @@ packages: '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 '@types/uuid': 8.3.0 chai: 4.3.4 @@ -9553,7 +9553,7 @@ packages: dev: false name: '@rush-temp/data-tables' resolution: - integrity: sha512-JnJ5r5pu8XHpQxCvIJFi0KWwk3XECT5OCXekLOqH2kXVxFzrI0IEwX9ToJwfFvXkmIaZYmFKKRc4NAhQ14TsdA== + integrity: sha512-ujM2bV+u3bW/E26L/F6YOOx8xbrLpzNDaqfmN12TQB1CMeHzQf38U3zMb/Pthhk/Xb4sAfO4qvPyVD9vAKQmoA== tarball: file:projects/data-tables.tgz version: 0.0.0 file:projects/dev-tool.tgz: @@ -9567,7 +9567,7 @@ packages: '@types/fs-extra': 8.1.1 '@types/minimist': 1.2.1 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/prettier': 2.0.2 builtin-modules: 3.1.0 chai: 4.3.4 @@ -9591,7 +9591,7 @@ packages: dev: false name: '@rush-temp/dev-tool' resolution: - integrity: sha512-efUACytzsAI43tBlJ0Ofua3trkfEuXuJEHjjD9UXhDXRbXzgGQ6P4Tw8LNnEwzRjQrPvOoLseXORvabtDfYKAw== + integrity: sha512-+7q1hRI4jTQ2Y1LjHYGsePZlA5jxrNzojz67B2cweYHQRSQdEaN1qR8L/b1HZUDXVVOyBgx/SmfXsadhIaem9g== tarball: file:projects/dev-tool.tgz version: 0.0.0 file:projects/digital-twins-core.tgz: @@ -9605,7 +9605,7 @@ packages: '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 '@types/uuid': 8.3.0 chai: 4.3.4 @@ -9645,7 +9645,7 @@ packages: dev: false name: '@rush-temp/digital-twins-core' resolution: - integrity: sha512-/rP1evOkdU5PuvNi5ZPNSeZcrnMXoPVk4iKPM4xjLRnbv20NKsZAB6BfyNyOQaozDNFDtG/YfwYItrPz7m+C7g== + integrity: sha512-ALnbQXSGDPYyvgBpj9LgOFpTlseHfrKvLxuR5S7RRdEZRzOp+3QPTV8ZlCLCFLM8C+mQZkGU0Zs1tYYHWuHI6A== tarball: file:projects/digital-twins-core.tgz version: 0.0.0 file:projects/eslint-plugin-azure-sdk.tgz: @@ -9656,7 +9656,7 @@ packages: '@types/glob': 7.1.3 '@types/json-schema': 7.0.7 '@types/mocha': 7.0.2 - '@types/node': 10.17.60 + '@types/node': 12.20.15 '@typescript-eslint/eslint-plugin': 4.19.0_32b60b6a5d7033b9e5296983f03a72ce '@typescript-eslint/experimental-utils': 4.19.0_eslint@7.29.0+typescript@4.2.4 '@typescript-eslint/parser': 4.19.0_eslint@7.29.0+typescript@4.2.4 @@ -9681,7 +9681,7 @@ packages: dev: false name: '@rush-temp/eslint-plugin-azure-sdk' resolution: - integrity: sha512-OCokgwlKCwXD/vZy57+hf6XBebQUdrQGXmdwh5SrlOYtwbmjJzEQxLtp8oK7AcSTY9jpsB7+MsSVzS+jWHZy2Q== + integrity: sha512-J35xOLMjkbGTj6mKWiUneuknJsBuksy6zGWJGZk9Y4Osvu/qLeMKWELZ7UEr2WIpJBSeTqvJihgvgrIJ0VUkUQ== tarball: file:projects/eslint-plugin-azure-sdk.tgz version: 0.0.0 file:projects/event-hubs.tgz: @@ -9700,7 +9700,7 @@ packages: '@types/debug': 4.1.5 '@types/long': 4.0.1 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 '@types/uuid': 8.3.0 '@types/ws': 7.4.5 @@ -9752,7 +9752,7 @@ packages: dev: false name: '@rush-temp/event-hubs' resolution: - integrity: sha512-waVb3W/FR4mFFVJXs9lMDzAfshanVmja0vWAJggGYu+5fGnd3Cp61En1S10hP+VUHRSqFCvuSX0lJq/+BclbAw== + integrity: sha512-E6rqZwFWroU5Fh0CdkKDZeDNYpis0r6OfX+IrBpObaLFP9P36UKrjHuHtSyvBWt9j3tBY+BBGDSBOC7BxDSfKw== tarball: file:projects/event-hubs.tgz version: 0.0.0 file:projects/event-processor-host.tgz: @@ -9771,7 +9771,7 @@ packages: '@types/chai-string': 1.4.2 '@types/debug': 4.1.5 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/uuid': 8.3.0 '@types/ws': 7.4.5 async-lock: 1.3.0 @@ -9802,7 +9802,7 @@ packages: dev: false name: '@rush-temp/event-processor-host' resolution: - integrity: sha512-vKalhzzIfxOTVJ/XCZZynsq8ESRiVGZ5ARt2ZnMUSGi9uEr1aar+rs1MSz8nVBmjG07OGT7nEnHWJpJHU3ztTg== + integrity: sha512-syykBEfYcNEgeJPdJQjKC3+Nb7bGZQtl7VILYKDPkcDxCHCEqS2VarrIgIbylakamm+WF6oIXYqTVvTOLYRR8g== tarball: file:projects/event-processor-host.tgz version: 0.0.0 file:projects/eventgrid.tgz: @@ -9818,7 +9818,7 @@ packages: '@types/chai': 4.2.19 '@types/chai-as-promised': 7.1.4 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 '@types/uuid': 8.3.0 chai: 4.3.4 @@ -9859,7 +9859,7 @@ packages: dev: false name: '@rush-temp/eventgrid' resolution: - integrity: sha512-SBgApUEcGwhnF6aSeBKHFBxyPi7WfhLFrhH+VmYkQzWH6Y3I+6Q82Q6iegDWtMOQCYhgWhdEX4IMC37Z+6ytnA== + integrity: sha512-6HpywaUpJ1+RDd+oX9G5uqDq3Zxv2qbtTRPG2SA1teUGOf8dG8JsdfmE5Ew92KS+itf0/tYLSx0uG9aCEpuYng== tarball: file:projects/eventgrid.tgz version: 0.0.0 file:projects/eventhubs-checkpointstore-blob.tgz: @@ -9876,7 +9876,7 @@ packages: '@types/chai-string': 1.4.2 '@types/debug': 4.1.5 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 assert: 1.5.0 chai: 4.3.4 chai-as-promised: 7.1.1_chai@4.3.4 @@ -9918,7 +9918,7 @@ packages: dev: false name: '@rush-temp/eventhubs-checkpointstore-blob' resolution: - integrity: sha512-kPDNdx4ZkZ5doODbROhFMQDIxyBwbahRK/NtXhvFHdcVBe+LNdSX2XgXVdzY36Ouwwr9/uWbnvlzHhgsG3l9xQ== + integrity: sha512-H5ZQjjIZkd6UiDE1UL1WHFvbL9oPELOvb6pFbwghgnm34SM+AwwIAZH9D/oJWZwCQrKky68DTwqjL62/7fJlXg== tarball: file:projects/eventhubs-checkpointstore-blob.tgz version: 0.0.0 file:projects/identity-cache-persistence.tgz: @@ -9928,7 +9928,7 @@ packages: '@microsoft/api-extractor': 7.7.11 '@types/jws': 3.2.3 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/qs': 6.9.6 '@types/sinon': 9.0.11 assert: 1.5.0 @@ -9952,7 +9952,7 @@ packages: dev: false name: '@rush-temp/identity-cache-persistence' resolution: - integrity: sha512-ghvnAviHt/DkYNKLTDyXUyBHUwHzsJNUjxEfu0BDFigjI3GIhL4sj4b9tC1zM/BEz5WcX+iNwGyyxli9rpQ/qA== + integrity: sha512-xD/GBumQgrcIjBAZ8jfGAG9lIk4E15tBvjTDXplWHumDwTk7yhDG0VyGmmQHlmm8GqM0VlfA8LPOLXtHR21p4A== tarball: file:projects/identity-cache-persistence.tgz version: 0.0.0 file:projects/identity-vscode.tgz: @@ -9960,7 +9960,7 @@ packages: '@microsoft/api-extractor': 7.7.11 '@types/jws': 3.2.3 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/qs': 6.9.6 '@types/sinon': 9.0.11 '@types/uuid': 8.3.0 @@ -9985,7 +9985,7 @@ packages: dev: false name: '@rush-temp/identity-vscode' resolution: - integrity: sha512-Vz1rlmfRj9+CsPGCuj2RxyXlemnz6MrZnch7WSmsMUe/OYljjtVDCiYycAub9HwqqGSIT9xiNgXOBDt+KZIgCA== + integrity: sha512-hwqhAC4JntAjkm1t9Xh1jkQKJh/rw3R+e6Hr3u0mVlzm33hzqpRNEJQNb/FeJN7YK13GARuYP3eMxJXpwl0W9g== tarball: file:projects/identity-vscode.tgz version: 0.0.0 file:projects/identity.tgz: @@ -9996,7 +9996,7 @@ packages: '@microsoft/api-extractor': 7.7.11 '@types/jws': 3.2.3 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/qs': 6.9.6 '@types/sinon': 9.0.11 '@types/stoppable': 1.1.1 @@ -10034,13 +10034,13 @@ packages: dev: false name: '@rush-temp/identity' resolution: - integrity: sha512-hx8wOkNk9gdLdTKfNQ3H5vR+k1Bnis30iELhVW13dlQvS7Opo26T+vK5+P55hZqZSCAZX5WqU1IRPL/WH0nRKQ== + integrity: sha512-U8HltqYVr9W655SpiGaDVJ0IHe1+agW++vGNmih/QjJCjtagKAubvVKNGYu+OxVoEfpSfYc8pUhy0OEEgT3U0A== tarball: file:projects/identity.tgz version: 0.0.0 file:projects/iot-device-update.tgz: dependencies: '@microsoft/api-extractor': 7.7.11 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/uuid': 8.3.0 cross-env: 7.0.3 dotenv: 8.6.0 @@ -10060,7 +10060,7 @@ packages: dev: false name: '@rush-temp/iot-device-update' resolution: - integrity: sha512-BpN759UQhFDm8UYFjZC+9fwEp6fZVZpuc19yYGdugKdWF+D4i245U5la7afkTbYhS7gKLoH+ii+PhCm+3Kuv2A== + integrity: sha512-rBIXGpY0B5SbJOXAFsApfA19XGR0TNIwLJE6Lp7Gsisa5wgn6Ndvheid2i2i4Dnpz6edgKsuN4MYAYkZPRFkSg== tarball: file:projects/iot-device-update.tgz version: 0.0.0 file:projects/iot-modelsrepository.tgz: @@ -10075,7 +10075,7 @@ packages: '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 chai: 4.3.4 cross-env: 7.0.3 @@ -10112,7 +10112,7 @@ packages: dev: false name: '@rush-temp/iot-modelsrepository' resolution: - integrity: sha512-xxLD7Acc6ktPpKllJjKXO0WDBy97DSh1kfiF5cECusqDY3u7+BF8GBs/7E3x0do6/Eofn1goARxH9hC+mKM0fA== + integrity: sha512-WkrPUmgVb86oPEVUeGZr5vpgotLI/t/tSJFubhovVS0VdzwTO9ed+lxGqfc664mHHDG8R/6hmUWPmzt3BdOW6A== tarball: file:projects/iot-modelsrepository.tgz version: 0.0.0 file:projects/keyvault-admin.tgz: @@ -10128,7 +10128,7 @@ packages: '@types/chai': 4.2.19 '@types/chai-as-promised': 7.1.4 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 '@types/uuid': 8.3.0 assert: 1.5.0 @@ -10157,7 +10157,7 @@ packages: dev: false name: '@rush-temp/keyvault-admin' resolution: - integrity: sha512-N1mMTHFZ+L+1jJGw0FmU/nYy2Tx41AWtzxAT4eKotj+ix1PhQW7tu712sfGSK8rJciA9z2YaXnq2KlCalpJrHw== + integrity: sha512-K7fSHQu14LH52AEEczcp8Pw/YzBZOp2s8+jvxBVdAIt59upUJPy98OBGKyhoC/zEyunQjVVWGMc/oMCv8tEQ9A== tarball: file:projects/keyvault-admin.tgz version: 0.0.0 file:projects/keyvault-certificates.tgz: @@ -10171,7 +10171,7 @@ packages: '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/query-string': 6.2.0 '@types/sinon': 9.0.11 assert: 1.5.0 @@ -10214,7 +10214,7 @@ packages: dev: false name: '@rush-temp/keyvault-certificates' resolution: - integrity: sha512-SZIpvWi1Oh0fR52xInZ1rEJlPDGJGJIuPwdLaZED57YjEaO+s8x42Ud/n5xJ+gC+1sZP8aRdwDYzvKllCLggRg== + integrity: sha512-JTTY3YA7aFQZsarrqBAEk+XhdU+JWThhM6qRxPrKavy2poh2CMsXpO99qfEw12hQ5PWicCukbmZF+KMc3WpkQw== tarball: file:projects/keyvault-certificates.tgz version: 0.0.0 file:projects/keyvault-common.tgz: @@ -10241,7 +10241,7 @@ packages: '@types/chai': 4.2.19 '@types/chai-as-promised': 7.1.4 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/query-string': 6.2.0 '@types/sinon': 9.0.11 assert: 1.5.0 @@ -10285,7 +10285,7 @@ packages: dev: false name: '@rush-temp/keyvault-keys' resolution: - integrity: sha512-mZg+MNTvoPCKHfVVEBCZomsF8N4LpjbZoWexpAC1iTKaHvj8ILjxuGH6YP8WJssvDdQUH3xOhPAScIOMYdGTnA== + integrity: sha512-HyGmZuZ9jbZSuElkasp6ESZ4fJGR2fVnWHBTAo82WAS/Z+ahQ4i++yhxlImEETeHVas3xLyk0KtMxAq30OgOsg== tarball: file:projects/keyvault-keys.tgz version: 0.0.0 file:projects/keyvault-secrets.tgz: @@ -10298,7 +10298,7 @@ packages: '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/query-string': 6.2.0 '@types/sinon': 9.0.11 assert: 1.5.0 @@ -10341,7 +10341,7 @@ packages: dev: false name: '@rush-temp/keyvault-secrets' resolution: - integrity: sha512-W5dDV1QHJ+u9+NJWNi11koGkXachZAB66ASayigW7tdmGyyRzIKubOZvKaXKQCN1jlsABXK6Q7GQvVzM5/0M2Q== + integrity: sha512-PQOqnVqshtnKT5gHMPRmlAWXJ1zjgziGYkG26ReGBAItABfHK+HM5dhUJ9LzA5kF312jDQYNWMCQR+m21AXr6Q== tarball: file:projects/keyvault-secrets.tgz version: 0.0.0 file:projects/logger.tgz: @@ -10353,7 +10353,7 @@ packages: '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 assert: 1.5.0 chai: 4.3.4 @@ -10389,7 +10389,7 @@ packages: dev: false name: '@rush-temp/logger' resolution: - integrity: sha512-alWJFZu8cEP3uMZTDWsj+T8tXQqO2owEHH2DfbC3Lw8w12gRlz+pqrfxtFdGoPiteCdTbdrQc5E68nV4vVSh8A== + integrity: sha512-nYl70rSzi6HROwq6Tby45FL6Wfr0bIIL75bIBdgOoNqZ4Jbjrtghfx+iElia55MMylPZ5Zc+yYaBwOKf2wld4Q== tarball: file:projects/logger.tgz version: 0.0.0 file:projects/mixedreality-authentication.tgz: @@ -10398,7 +10398,7 @@ packages: '@types/chai': 4.2.19 '@types/chai-as-promised': 7.1.4 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 chai: 4.3.4 chai-as-promised: 7.1.1_chai@4.3.4 cross-env: 7.0.3 @@ -10431,12 +10431,12 @@ packages: dev: false name: '@rush-temp/mixedreality-authentication' resolution: - integrity: sha512-J3o/wRGxiLoaX9H26cUyJ24rF9cmZ3fmsKpQZWIX8fZdKOYd8/FYyY562CkjEmC0tdzQw65h/eWoorg8hFRb3w== + integrity: sha512-LMwKWWNn7RGRh7IZvaIkVxSkCeA0Av7O0UQDBoxPD5XvdZUY2eY/ofG3UmSpD5apQ5pzBRH0uvfgud2Ruk55kg== tarball: file:projects/mixedreality-authentication.tgz version: 0.0.0 file:projects/mock-hub.tgz: dependencies: - '@types/node': 8.10.66 + '@types/node': 12.20.15 dotenv: 8.6.0 eslint: 7.29.0 prettier: 1.19.1 @@ -10447,7 +10447,7 @@ packages: dev: false name: '@rush-temp/mock-hub' resolution: - integrity: sha512-pfskwSTo/C1JP4VOqr1GLJKMerWCLy9m5rkVZ4CaY0pyo55ZikQmGRQmmnP5OnvGSCCVaWLNZ2sxgSg4/LpgeA== + integrity: sha512-w4gQTrqQney0Jkj0NMc1D9KrgNJ1upzYkheaNFdeA84uApywwVloe7o8mOhGMVhzR1uQMsq2zFlNGdDgbByDog== tarball: file:projects/mock-hub.tgz version: 0.0.0 file:projects/monitor-opentelemetry-exporter.tgz: @@ -10459,7 +10459,7 @@ packages: '@opentelemetry/semantic-conventions': 0.22.0 '@opentelemetry/tracing': 0.22.0_@opentelemetry+api@1.0.0 '@types/mocha': 7.0.2 - '@types/node': 10.17.60 + '@types/node': 12.20.15 eslint: 7.29.0 eslint-plugin-node: 11.1.0_eslint@7.29.0 execa: 3.4.0 @@ -10477,7 +10477,7 @@ packages: dev: false name: '@rush-temp/monitor-opentelemetry-exporter' resolution: - integrity: sha512-Lq8fsz2BpYqrWz1cYDlNTjLaReTJFmj13Wqq5M59N+jw0QYt8G+hAlyu4vx6G/S8EFBBcA8CCLehrkVJVMnf5g== + integrity: sha512-kXcs9oniFsAttVLeJsePd+5IQsUFl1bKeeBRd9AVuNisAZ/ANMZaO/7QoZ1+NwqvOgcv5nTMyz6WKUAv5zrgQw== tarball: file:projects/monitor-opentelemetry-exporter.tgz version: 0.0.0 file:projects/monitor-query.tgz: @@ -10490,7 +10490,7 @@ packages: '@types/chai': 4.2.19 '@types/chai-as-promised': 7.1.4 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 chai: 4.3.4 chai-as-promised: 7.1.1_chai@4.3.4 cross-env: 7.0.3 @@ -10525,13 +10525,13 @@ packages: dev: false name: '@rush-temp/monitor-query' resolution: - integrity: sha512-ZqbLi+vZHrI+Vz3RzDS2+A/pyL3d+jhv/mtt3kIBz7MNhrR2U3LChG5y3je2HY06XRuyhg7O/gz0TBrSTQHt/Q== + integrity: sha512-ZL8duEIH2flsaY9Gtp1XCvf2kzrzk3xw1SQCkTtGVhRb4ZuKpz2JwsqpMg/sg3a/AloyWAt5albV93ofMlfPbQ== tarball: file:projects/monitor-query.tgz version: 0.0.0 file:projects/perf-ai-form-recognizer.tgz: dependencies: '@azure/ai-form-recognizer': 3.1.0-beta.3 - '@types/node': 8.10.66 + '@types/node': 12.20.15 dotenv: 8.6.0 eslint: 7.29.0 prettier: 1.19.1 @@ -10542,13 +10542,13 @@ packages: dev: false name: '@rush-temp/perf-ai-form-recognizer' resolution: - integrity: sha512-Cdcpa3QsglrMNYbuwiDH70V1n9ID+ur65l/cTKce0RjsvZVAfKfxD3spUHJkg4AOOUdr+j+srPISWvFGobhr7A== + integrity: sha512-Tf+pRx7aViobeOVot3iXdBoVU0X9FcptXmPklmAmOeXwqcoMjIGSNsqfda0dW9Kgbyptc1tevehT4qkOFY4hmg== tarball: file:projects/perf-ai-form-recognizer.tgz version: 0.0.0 file:projects/perf-ai-metrics-advisor.tgz: dependencies: '@azure/ai-metrics-advisor': 1.0.0-beta.3 - '@types/node': 8.10.66 + '@types/node': 12.20.15 dotenv: 8.6.0 eslint: 7.29.0 prettier: 1.19.1 @@ -10559,12 +10559,12 @@ packages: dev: false name: '@rush-temp/perf-ai-metrics-advisor' resolution: - integrity: sha512-ofMfDBkE5lsd0j1dPRuycZJbsASYeIYUXQqDEAJzz1pQD0XXUxGM7v04CuZJkLWYURMPwkAr8Iwv+FLk1nQkEg== + integrity: sha512-ZjOIz/qZblV8RptttXCimWsXhWNgln9uSy3bS+7UdCFB20ve8PbIMtKlm9peFpTxtGbkLbUJ05WdRAGSDRFt6w== tarball: file:projects/perf-ai-metrics-advisor.tgz version: 0.0.0 file:projects/perf-ai-text-analytics.tgz: dependencies: - '@types/node': 8.10.66 + '@types/node': 12.20.15 dotenv: 8.6.0 eslint: 7.29.0 prettier: 1.19.1 @@ -10575,12 +10575,12 @@ packages: dev: false name: '@rush-temp/perf-ai-text-analytics' resolution: - integrity: sha512-Kvl28eIyB/TUFjHazX20V+clKd8zLCBx+Tb7zTU3Yp1kei9JNZfqMaDmDlCyfw1bmRLDslq5/xfo/NEMWks0wQ== + integrity: sha512-juCD/69oz1g2KQaYInjl0BpEwD/oalNeJz4qU+RKO0yxN5khHD8A9chYn9KiZPvVqctnqb8NkpEVQ2oOlobo0w== tarball: file:projects/perf-ai-text-analytics.tgz version: 0.0.0 file:projects/perf-app-configuration.tgz: dependencies: - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/uuid': 8.3.0 dotenv: 8.6.0 eslint: 7.29.0 @@ -10593,7 +10593,7 @@ packages: dev: false name: '@rush-temp/perf-app-configuration' resolution: - integrity: sha512-O15mVhuC7Jxq1ChINDVhi4J0NaKC8SP9tYLCgh9vMraFdvP0S9r6KyxgEPsirXUwQ6HADWU2vZ7ue+DygnyINA== + integrity: sha512-vxd8UIAJWmXCeXs+np9dzDKpeHAYtCmh3CpE7I3E27oMx8dvT8Rx6UZ40VwOSlOzZDdK1/6B7bU/EnrhjEEhjA== tarball: file:projects/perf-app-configuration.tgz version: 0.0.0 file:projects/perf-core-rest-pipeline.tgz: @@ -10614,7 +10614,7 @@ packages: version: 0.0.0 file:projects/perf-eventgrid.tgz: dependencies: - '@types/node': 8.10.66 + '@types/node': 12.20.15 dotenv: 8.6.0 eslint: 7.29.0 prettier: 1.19.1 @@ -10625,7 +10625,7 @@ packages: dev: false name: '@rush-temp/perf-eventgrid' resolution: - integrity: sha512-iZ+jXLvvCwDoEDbeILa7jZCSs38fN8iCxFa1dXQSzsbf3CQ1wh8V3hEu0u3J2YZSAFUwTraVvSsq2ibFBGGRgg== + integrity: sha512-uTGNn9MwdSVeweKogNSB0lQlWHfuiqWJ+2fWaf/jOSmEe/0R1LFmrwIOErA8uBumCga1Mz1/NBMoaPA6KDlblg== tarball: file:projects/perf-eventgrid.tgz version: 0.0.0 file:projects/perf-identity.tgz: @@ -10700,7 +10700,7 @@ packages: version: 0.0.0 file:projects/perf-search-documents.tgz: dependencies: - '@types/node': 8.10.66 + '@types/node': 12.20.15 dotenv: 8.6.0 eslint: 7.29.0 prettier: 1.19.1 @@ -10711,13 +10711,13 @@ packages: dev: false name: '@rush-temp/perf-search-documents' resolution: - integrity: sha512-vTU34zY2iUB1V//n2VLEyqcrHX+FAUZG3qZp1zKn8Kxq4uDqS/j2Zgk+JE3KkhLvYSpfjZUIBYm5pAbBF5pwKA== + integrity: sha512-iibP34ojTvPCkl+YNT4hI2iorHZkUrrDcndmDX6vS2Eujikl92GzdTU8Pal46C7fxLH71ZhYgXuPaY7hNs7Fsg== tarball: file:projects/perf-search-documents.tgz version: 0.0.0 file:projects/perf-storage-blob.tgz: dependencies: '@azure/core-rest-pipeline': 1.0.4 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/node-fetch': 2.5.10 '@types/uuid': 8.3.0 dotenv: 8.6.0 @@ -10732,12 +10732,12 @@ packages: dev: false name: '@rush-temp/perf-storage-blob' resolution: - integrity: sha512-qgt/1g9b5WF7t/MgCo8AIzGZWtEUogkGYw1ynmOaJIyzJg7F9xT7LggSbz6djkydtTveJ6/qe1rg1/H1hEnGMQ== + integrity: sha512-jFkQJYkY7nHahmZol7Ty//mv8qI8HmFfJ52C6pbwfAJ6GA5hls8lagilOD62yUQn4Qw0mkTNXzi+muJtl7Z9hw== tarball: file:projects/perf-storage-blob.tgz version: 0.0.0 file:projects/perf-storage-file-datalake.tgz: dependencies: - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/uuid': 8.3.0 dotenv: 8.6.0 eslint: 7.29.0 @@ -10750,12 +10750,12 @@ packages: dev: false name: '@rush-temp/perf-storage-file-datalake' resolution: - integrity: sha512-9gBiIvNnIhNKLizRPbsFb4TFwBO/Yiz986W6DjwEvZ7czI7t4iuKPgE6sSny/7/GyBJ3fJIS2O+OPTNvYislpg== + integrity: sha512-v2JLPEaagwTOCrUOE680t3lgwOm8gB4f1kss/28vKx31SHR4naXzzeBGAWTHHAxZL7cs1WfTj0F6p730T8NxdA== tarball: file:projects/perf-storage-file-datalake.tgz version: 0.0.0 file:projects/perf-storage-file-share.tgz: dependencies: - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/uuid': 8.3.0 dotenv: 8.6.0 eslint: 7.29.0 @@ -10768,7 +10768,7 @@ packages: dev: false name: '@rush-temp/perf-storage-file-share' resolution: - integrity: sha512-LeUsfqr//on6XfPceC/4iJEgitJcD1O+1lAxopEDweXu/gunDkCZhquF1S4rYJlcQRDC9W68zxTI3KaqcjibPQ== + integrity: sha512-PD56Vv21uqok0ycwDqH0QrVx9IB/ukQEtKEIarbCYPB5d4yufKL3zb1LztaaVK38oUP/w2EKxgMMQEqyo4NdUQ== tarball: file:projects/perf-storage-file-share.tgz version: 0.0.0 file:projects/purview-catalog.tgz: @@ -10778,7 +10778,7 @@ packages: '@microsoft/api-extractor': 7.13.2 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 chai: 4.3.4 cross-env: 7.0.3 dotenv: 8.6.0 @@ -10811,7 +10811,7 @@ packages: dev: false name: '@rush-temp/purview-catalog' resolution: - integrity: sha512-WPSEZTapYdZwHdzDo8F+4Tzx6W49pvnyQQFcRraQOqgeUkrCF6wfDW0JtkR2xU2GWjnuif/ilg4NoanFQcidbQ== + integrity: sha512-I4MqeeoeLqpOyGXJCCwBpobyWsDr7W8DgRXZhNv8tUXmAN3ARJnziK71J1MvLMwqzajYBEcNA+RitkRnlT1tmA== tarball: file:projects/purview-catalog.tgz version: 0.0.0 file:projects/purview-scanning.tgz: @@ -10821,7 +10821,7 @@ packages: '@microsoft/api-extractor': 7.13.2 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 chai: 4.3.4 cross-env: 7.0.3 dotenv: 8.6.0 @@ -10854,7 +10854,7 @@ packages: dev: false name: '@rush-temp/purview-scanning' resolution: - integrity: sha512-xO9TV5e8I9WEWBc9dsOEzbx9j+l2NSgyz7s1vy4b3vsFGtOJMkeAIOKK6dXOcvf+QVOp8FOSk5XwSNAggDIyqA== + integrity: sha512-kiSY4IQlt5PjKG1+kvWdLu3F6CUgCjlbp0z/vKghllxOD9O2PPkjLYwtnq9Y+280gyXq3EzGtjRLOrvWFOSNSg== tarball: file:projects/purview-scanning.tgz version: 0.0.0 file:projects/quantum-jobs.tgz: @@ -10868,7 +10868,7 @@ packages: '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 chai: 4.3.4 cross-env: 7.0.3 @@ -10907,7 +10907,7 @@ packages: dev: false name: '@rush-temp/quantum-jobs' resolution: - integrity: sha512-EkskcLw/yARmVBVNoHwawqSzEyiiu1G6rbH+6SSQiTSJg2DF3AqdrwAibkaRjFeHRRGGApYvb+vADefmWXZaNg== + integrity: sha512-s8e8M//91ePGj1dO90jFRt/t9boXQAb412rQ/eV7Plvf4Z7juW8OQNFfgfDDgbu/+Yh4BmTEEt0Ge5fhQ3MNGQ== tarball: file:projects/quantum-jobs.tgz version: 0.0.0 file:projects/schema-registry-avro.tgz: @@ -10922,7 +10922,7 @@ packages: '@types/chai': 4.2.19 '@types/chai-as-promised': 7.1.4 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 avsc: 5.7.0 buffer: 5.7.1 chai: 4.3.4 @@ -10961,7 +10961,7 @@ packages: dev: false name: '@rush-temp/schema-registry-avro' resolution: - integrity: sha512-FFj5S9ii1kaeUrp/Rjax+J5jGBh7arsAlAJQxigXMOUm9KCAsSLNtMManqAbpvsML7TSL+6cBmqmjF0L+28Xfg== + integrity: sha512-OZb2LmW2W4ZKIxb0qgvDhGn0GWVQT5mrrSNMHIpTc7j3OxcfQoEimgrzkF4ae5t1l4qxRyPZV7QGErLPdI/lZg== tarball: file:projects/schema-registry-avro.tgz version: 0.0.0 file:projects/schema-registry.tgz: @@ -10975,7 +10975,7 @@ packages: '@types/chai': 4.2.19 '@types/chai-as-promised': 7.1.4 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 chai: 4.3.4 chai-as-promised: 7.1.1_chai@4.3.4 cross-env: 7.0.3 @@ -11011,7 +11011,7 @@ packages: dev: false name: '@rush-temp/schema-registry' resolution: - integrity: sha512-SJQMGaVqwgt7MBCEDaGza5srjmLnmbrakVpMEO+b9n7+PP1qc90d50PEQJolapHFM3RDNfSbon+kOK19q9FK9g== + integrity: sha512-dDGxgw7Oha0+j5wUJXgcFuGlAK6tn3HhnIF+qhu/uUT7bhMjXZCP5VBAtqkGE86TCRMFFNCXTIMHrqJ5ZAtW8A== tarball: file:projects/schema-registry.tgz version: 0.0.0 file:projects/search-documents.tgz: @@ -11024,7 +11024,7 @@ packages: '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 chai: 4.3.4 cross-env: 7.0.3 @@ -11064,7 +11064,7 @@ packages: dev: false name: '@rush-temp/search-documents' resolution: - integrity: sha512-gYgY1PygI2bfmIB4TDx/BzHCuoOXWZbZchbmuf4dMTHawr2jPuVZrTcGdods1jlBY7doAq4muoudrSWyyDlUGA== + integrity: sha512-uMx6yCLx/luocgYetGgDbAiiwr5mU2Zxj/fwYz6CaKn6bjIP+6oiOxjf4OyTVJxfPiH6W7aMjj2K//v1IeS5YA== tarball: file:projects/search-documents.tgz version: 0.0.0 file:projects/service-bus.tgz: @@ -11083,7 +11083,7 @@ packages: '@types/is-buffer': 2.0.0 '@types/long': 4.0.1 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 '@types/ws': 7.4.5 assert: 1.5.0 @@ -11138,7 +11138,7 @@ packages: dev: false name: '@rush-temp/service-bus' resolution: - integrity: sha512-WmD50C2zdjAvRU3aqyHKU8Mu6Yr76u9VczCNZVx9FeQPtDX6zIySgroMNlrjFX2EC/5HF2aUdOsTtpYFFSN83g== + integrity: sha512-teYp08lQ/CkmWhDaJMHvTWnOzeIiEbMgx3AAs4BjPFVPVK9/2RI2dT7kwyZbZwRyOmh9+ipjF1mfxpF4fiUXLQ== tarball: file:projects/service-bus.tgz version: 0.0.0 file:projects/storage-blob-changefeed.tgz: @@ -11149,7 +11149,7 @@ packages: '@rollup/plugin-node-resolve': 8.4.0_rollup@1.32.1 '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 assert: 1.5.0 cross-env: 7.0.3 @@ -11194,7 +11194,7 @@ packages: dev: false name: '@rush-temp/storage-blob-changefeed' resolution: - integrity: sha512-ksbw8dPxjkpa1QLxHQeDSg9+cQJ6xVwwNFD00yYN+ew7TKQF/lpB06PtVONdU1YzYZ/c3d7P9qSajZXDqbmoEQ== + integrity: sha512-k3cfRzuNXPjAHe0XSdc5CzAZpRR/J3dNtxYTIpSx2qQsyShPbdoV18K3QwC8lBgJ9rDuIwWtw6Chcwup4Kos4A== tarball: file:projects/storage-blob-changefeed.tgz version: 0.0.0 file:projects/storage-blob.tgz: @@ -11207,7 +11207,7 @@ packages: '@rollup/plugin-node-resolve': 8.4.0_rollup@1.32.1 '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/node-fetch': 2.5.10 assert: 1.5.0 cross-env: 7.0.3 @@ -11252,7 +11252,7 @@ packages: dev: false name: '@rush-temp/storage-blob' resolution: - integrity: sha512-Y2PYAaYTgmGrVfnf3V9wNGDMpbHvqGUbWVyOumm/ZcGyoYk5GJLEfzyfrcu/Km+q6vInYa6DJIvyhtGIMpRGpw== + integrity: sha512-SR7gi1XbF99h18cjafy3mOIYAuYO4pWc0/Li7nYa+F+wuR5p+EBXExbPgXocaunQEr56edWKvhVTAsXJf3fa0w== tarball: file:projects/storage-blob.tgz version: 0.0.0 file:projects/storage-file-datalake.tgz: @@ -11264,7 +11264,7 @@ packages: '@rollup/plugin-node-resolve': 8.4.0_rollup@1.32.1 '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/query-string': 6.2.0 assert: 1.5.0 cross-env: 7.0.3 @@ -11310,7 +11310,7 @@ packages: dev: false name: '@rush-temp/storage-file-datalake' resolution: - integrity: sha512-WadrudqhN+4o2y/lIxJfIOw2XhIbzM578cULuCnQUIjq/sxraUQ6VT4ruWRRqkpBJYXAkvKGFKU1nk9hZI21Pw== + integrity: sha512-WKNmOb2EDGEZqC1D1RkDFh1HJVn2cSNiNx4/g/I6jyb/JTykRW/sQj4eQMOFv2VzoglVCc5Y5rfV/krMxvTwBw== tarball: file:projects/storage-file-datalake.tgz version: 0.0.0 file:projects/storage-file-share.tgz: @@ -11321,7 +11321,7 @@ packages: '@rollup/plugin-node-resolve': 8.4.0_rollup@1.32.1 '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 assert: 1.5.0 cross-env: 7.0.3 dotenv: 8.6.0 @@ -11364,7 +11364,7 @@ packages: dev: false name: '@rush-temp/storage-file-share' resolution: - integrity: sha512-tm+npdfU7HW8bDAXmLHl7SkTVE0R0OkQkj6Ao1VtZxbaNsV2yHgino//7zrzTHm5NXYM1T9/UZd5lAxUkUg2YA== + integrity: sha512-eYcZuBTa4QZtWhOSG4rPF8DiZ8SVedKabioQO/xGeZMkYy4M/y5asia2D55EZ0pGqFBkwxztIMQR+t6GENY0LA== tarball: file:projects/storage-file-share.tgz version: 0.0.0 file:projects/storage-internal-avro.tgz: @@ -11375,7 +11375,7 @@ packages: '@rollup/plugin-node-resolve': 8.4.0_rollup@1.32.1 '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 assert: 1.5.0 dotenv: 8.6.0 downlevel-dts: 0.4.0 @@ -11415,7 +11415,7 @@ packages: dev: false name: '@rush-temp/storage-internal-avro' resolution: - integrity: sha512-CiJ3tMrQbD/kLrPz3+QVRuKZFE0q8z0DgkPTyBoBoRJkeSI6Rzcm17xKtMvaAJQn1pk+GMpEv+h1Zifrmbqi8Q== + integrity: sha512-aQ1xnh7693GdMq9DI/FkIsHd5BnHsemYRwhc3BqmcOzIXP+n3qE1f9sP9t+DPGnWbcZI5Ce29VE9t1r6q31iAQ== tarball: file:projects/storage-internal-avro.tgz version: 0.0.0 file:projects/storage-queue.tgz: @@ -11426,7 +11426,7 @@ packages: '@rollup/plugin-node-resolve': 8.4.0_rollup@1.32.1 '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 assert: 1.5.0 cross-env: 7.0.3 dotenv: 8.6.0 @@ -11468,7 +11468,7 @@ packages: dev: false name: '@rush-temp/storage-queue' resolution: - integrity: sha512-uTyj9p7/aIjlEkguZAVtnCxV8fU7iOxRZV0j/GwWWIpuFKaK92rtWJGRBrQ/IRVRehNuS81GgRBEVb5tIyLIvA== + integrity: sha512-mIDhXmilj9q6Of9XiCIOpTQr0BdI9TOI1R+EesU3ySwTRSwo9LRHSL9Q7BUCtX1vGDoBMTV9+RKhmyGf4SzS5Q== tarball: file:projects/storage-queue.tgz version: 0.0.0 file:projects/synapse-access-control.tgz: @@ -11497,7 +11497,7 @@ packages: '@types/chai': 4.2.19 '@types/chai-as-promised': 7.1.4 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 chai: 4.3.4 chai-as-promised: 7.1.1_chai@4.3.4 @@ -11536,7 +11536,7 @@ packages: dev: false name: '@rush-temp/synapse-artifacts' resolution: - integrity: sha512-FGswIITasIIQLmyG+RTFkrm6PPW6DZvclEJM8OZjR7a2Wo3X6F/dXVx04wOQXkyOpEGhS9Q4t1zeQGx1kqoibw== + integrity: sha512-/CbcDVgYUXiruEvBTaofRA/WI4mE17B/k82Ow4Z6Sit8SWWLr9HMt84l9CQmtO/EEy+XONa79gt5mlhNYdYoPA== tarball: file:projects/synapse-artifacts.tgz version: 0.0.0 file:projects/synapse-managed-private-endpoints.tgz: @@ -11602,7 +11602,7 @@ packages: '@types/chai': 4.2.19 '@types/chai-as-promised': 7.1.4 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 chai: 4.3.4 chai-as-promised: 7.1.1_chai@4.3.4 cross-env: 7.0.3 @@ -11637,14 +11637,14 @@ packages: dev: false name: '@rush-temp/template' resolution: - integrity: sha512-hQI0Ql4AZ4XWrILH/tsta0ICSinVvE+Bus/7L8tuBRza+LJUlaJVgEG16kY/mex7qaCRZkn8FiIJkD2mlywRLg== + integrity: sha512-tzPyJx5J7e3qU69hf7F2H1Id5Tbig+OLNexf43IUvtdtS5IOoi2VyjURMu7yD65PvYiZdiqnlFN7u7yVNgJIjA== tarball: file:projects/template.tgz version: 0.0.0 file:projects/test-utils-perfstress.tgz: dependencies: '@azure/core-http': 1.2.6 '@types/minimist': 1.2.1 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/node-fetch': 2.5.10 eslint: 7.29.0 karma: 6.3.4 @@ -11660,7 +11660,7 @@ packages: dev: false name: '@rush-temp/test-utils-perfstress' resolution: - integrity: sha512-G01AKC+QVmgEMfC2qhx04eGCjF263vxZi+gl5okAPVDSdU0VVksM/RTytC5FuJtedCuNnKIiCDsTRXY8jPGwlQ== + integrity: sha512-Dw1ymK8lJ4/YxOxYRvmYQqPBj0hrCmiQbCU8dwlW3gikFdUd2T16cIgHLuCHIEC1pkFT35+uhiOH2Hf6gbEypQ== tarball: file:projects/test-utils-perfstress.tgz version: 0.0.0 file:projects/test-utils-recorder.tgz: @@ -11676,7 +11676,7 @@ packages: '@types/mock-fs': 4.10.0 '@types/mock-require': 2.0.0 '@types/nise': 1.4.0 - '@types/node': 8.10.66 + '@types/node': 12.20.15 chai: 4.3.4 dotenv: 8.6.0 eslint: 7.29.0 @@ -11716,7 +11716,7 @@ packages: dev: false name: '@rush-temp/test-utils-recorder' resolution: - integrity: sha512-AmE/h0wK80qWpCOM+dLXlhMjLYIM7A3UFZIALzlOVy3BiGlN/3Sr3c6/7uNXTp2q6C0vqrl8wpnH3zP59oZkXQ== + integrity: sha512-W3PUv+wfjsFF0477l2FZQUCJaSZkrl694/B9fGGDd/cnLsO9GJCxVE1r31PLAHNlryEzDBdWJMkrEyAOIT7Xkg== tarball: file:projects/test-utils-recorder.tgz version: 0.0.0 file:projects/test-utils.tgz: @@ -11724,7 +11724,7 @@ packages: '@microsoft/api-extractor': 7.7.11 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/sinon': 9.0.11 chai: 4.3.4 chai-as-promised: 7.1.1_chai@4.3.4 @@ -11743,7 +11743,7 @@ packages: dev: false name: '@rush-temp/test-utils' resolution: - integrity: sha512-liKiIr7D3RaNwsNwpp8K5SOeOlz2O5vrDfnJFbdHgtkRNEKeP/k86zHSDWcV/OmP14mg+SjxwAMFZ9JQCXp5EA== + integrity: sha512-uvWHZfFGpWYh9rhtOdG0MJIIRxCek0wIVMiYvsg+qloQ4noLG0t8Zf0OSh02ymbpJ4x8Hais+5+KCvdZ6mFr5g== tarball: file:projects/test-utils.tgz version: 0.0.0 file:projects/video-analyzer-edge.tgz: @@ -11752,7 +11752,7 @@ packages: '@types/chai': 4.2.19 '@types/chai-as-promised': 7.1.4 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 azure-iothub: 1.14.2 chai: 4.3.4 chai-as-promised: 7.1.1_chai@4.3.4 @@ -11785,7 +11785,7 @@ packages: dev: false name: '@rush-temp/video-analyzer-edge' resolution: - integrity: sha512-EmFXjIs+Itmn0tO3VRG4C3jHBRvXmUCgXRotTtnHy3MjmfDPcW9Ad9/3ZAxs+yhAdVTfQ4eZAkcyCUAS99Weqg== + integrity: sha512-WCCV5micC74VY8Y2F/FhpUvin5NMIK375+VDrE5Viq6rsDqMUR2fiNEsSE2Au+f3/SQ8+gdmhz/j8CjxD/lpMw== tarball: file:projects/video-analyzer-edge.tgz version: 0.0.0 file:projects/web-pubsub-express.tgz: @@ -11802,7 +11802,7 @@ packages: '@types/express-serve-static-core': 4.17.21 '@types/jsonwebtoken': 8.5.2 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/query-string': 6.2.0 '@types/sinon': 9.0.11 assert: 1.5.0 @@ -11846,7 +11846,7 @@ packages: dev: false name: '@rush-temp/web-pubsub-express' resolution: - integrity: sha512-nQ+4E7biXcZfZGOfGQjqRGDnh53ktgWERarLRnUPJXlTNG0/ex0hAPL+BRXji6UIqlX1/NTcXPPc3KAu5gZbmQ== + integrity: sha512-7fhzzPMfrSmDZbdzhtoALZPAyEC+HYfKldEM0RaYayTsuyHOdVz5IwWyKBXMwwCVoiWbbQEtVYf1NbI4e5g3Kg== tarball: file:projects/web-pubsub-express.tgz version: 0.0.0 file:projects/web-pubsub.tgz: @@ -11860,7 +11860,7 @@ packages: '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 '@types/jsonwebtoken': 8.5.2 '@types/mocha': 7.0.2 - '@types/node': 8.10.66 + '@types/node': 12.20.15 '@types/query-string': 6.2.0 '@types/sinon': 9.0.11 assert: 1.5.0 @@ -11903,7 +11903,7 @@ packages: dev: false name: '@rush-temp/web-pubsub' resolution: - integrity: sha512-gWCUFpMhKrd5v3cvLLkcJIYn8C1lQgg487WLD4H040NGB6hY89G1JQyfrihPi4h059Oi9fHq4mCwbqvWVHHocg== + integrity: sha512-NEgAqwtqpS48OPZ9oNnVcyOUBN9+cdG8bmcyFPVcH69lHkGVUKUTWlYQKAer1xuBZbdvZrw7l8UjrFtpnVCqaw== tarball: file:projects/web-pubsub.tgz version: 0.0.0 registry: '' diff --git a/common/tools/dev-tool/package.json b/common/tools/dev-tool/package.json index 681bf0af06ae..85fc4d03075b 100644 --- a/common/tools/dev-tool/package.json +++ b/common/tools/dev-tool/package.json @@ -59,7 +59,7 @@ "@types/fs-extra": "^8.0.0", "@types/minimist": "~1.2.0", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/prettier": "~2.0.1", "builtin-modules": "~3.1.0", "chai": "^4.2.0", diff --git a/common/tools/eslint-plugin-azure-sdk/package.json b/common/tools/eslint-plugin-azure-sdk/package.json index 149644682892..134a7a6d74cf 100644 --- a/common/tools/eslint-plugin-azure-sdk/package.json +++ b/common/tools/eslint-plugin-azure-sdk/package.json @@ -82,7 +82,7 @@ "@types/glob": "^7.1.1", "@types/json-schema": "^7.0.6", "@types/mocha": "^7.0.2", - "@types/node": "^10.12.0", + "@types/node": "^12.0.0", "@typescript-eslint/eslint-plugin": "~4.19.0", "@typescript-eslint/experimental-utils": "~4.19.0", "@typescript-eslint/parser": "~4.19.0", diff --git a/common/tools/eslint-plugin-azure-sdk/src/rules/ts-package-json-engine-is-present.ts b/common/tools/eslint-plugin-azure-sdk/src/rules/ts-package-json-engine-is-present.ts index 50aabaa89d8c..c0cac04ac69f 100644 --- a/common/tools/eslint-plugin-azure-sdk/src/rules/ts-package-json-engine-is-present.ts +++ b/common/tools/eslint-plugin-azure-sdk/src/rules/ts-package-json-engine-is-present.ts @@ -13,7 +13,7 @@ import { getRuleMetaData, getVerifiers, stripPath } from "../utils"; * definition of LTS Node versions * * needs updating as definitions change */ -const LTS = ">=8.0.0"; +const LTS = ">=12.0.0"; //------------------------------------------------------------------------------ // Rule Definition diff --git a/common/tools/eslint-plugin-azure-sdk/tests/rules/ts-package-json-engine-is-present.ts b/common/tools/eslint-plugin-azure-sdk/tests/rules/ts-package-json-engine-is-present.ts index 460aac7924da..2848dadaddbe 100644 --- a/common/tools/eslint-plugin-azure-sdk/tests/rules/ts-package-json-engine-is-present.ts +++ b/common/tools/eslint-plugin-azure-sdk/tests/rules/ts-package-json-engine-is-present.ts @@ -257,7 +257,7 @@ ruleTester.run("ts-package-json-engine-is-present", rule, { valid: [ { // only the fields we care about - code: '{"engines": { "node": ">=8.0.0" }}', + code: '{"engines": { "node": ">=12.0.0" }}', filename: "package.json" }, { diff --git a/package.json b/package.json index 41679c8d57a7..04fa29f61789 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "@types/gulp": "^4.0.0", "@types/js-yaml": "^3.11.2", "@types/minimist": "^1.2.0", - "@types/node": "^10.10.0", + "@types/node": "^12.0.0", "@types/nodegit": "^0.22.5", "@types/yargs": "^11.0.0", "colors": "^1.3.2", diff --git a/sdk/agrifood/agrifood-farming-rest/package.json b/sdk/agrifood/agrifood-farming-rest/package.json index f431a0a52a71..44b799277485 100644 --- a/sdk/agrifood/agrifood-farming-rest/package.json +++ b/sdk/agrifood/agrifood-farming-rest/package.json @@ -29,7 +29,7 @@ "LICENSE" ], "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "//metadata": { "constantPaths": [ @@ -99,7 +99,7 @@ "@microsoft/api-extractor": "7.13.2", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "chai": "^4.2.0", "cross-env": "^7.0.2", "dotenv": "^8.2.0", diff --git a/sdk/anomalydetector/ai-anomaly-detector/package.json b/sdk/anomalydetector/ai-anomaly-detector/package.json index 01b424eaa639..4a811cc32c8e 100644 --- a/sdk/anomalydetector/ai-anomaly-detector/package.json +++ b/sdk/anomalydetector/ai-anomaly-detector/package.json @@ -45,7 +45,7 @@ "LICENSE" ], "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "repository": "github:Azure/azure-sdk-for-js", "keywords": [ @@ -81,7 +81,7 @@ "@rollup/plugin-replace": "^2.2.0", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "chai": "^4.2.0", "cross-env": "^7.0.2", "csv-parse": "^4.4.0", diff --git a/sdk/appconfiguration/app-configuration/CHANGELOG.md b/sdk/appconfiguration/app-configuration/CHANGELOG.md index b71383a58e81..9abaf67ac0d4 100644 --- a/sdk/appconfiguration/app-configuration/CHANGELOG.md +++ b/sdk/appconfiguration/app-configuration/CHANGELOG.md @@ -3,6 +3,7 @@ ## 1.2.0-beta.3 (Unreleased) ### Features Added +- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ### Breaking Changes diff --git a/sdk/appconfiguration/app-configuration/package.json b/sdk/appconfiguration/app-configuration/package.json index c3a82889b5c6..44e66e96b360 100644 --- a/sdk/appconfiguration/app-configuration/package.json +++ b/sdk/appconfiguration/app-configuration/package.json @@ -69,7 +69,7 @@ "docs": "typedoc --excludePrivate --excludeNotExported --excludeExternals --stripInternal --mode file --out ./dist/docs ./src" }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "sideEffects": false, "autoPublish": false, @@ -108,7 +108,7 @@ "@rollup/plugin-replace": "^2.2.0", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/sinon": "^9.0.4", "assert": "^1.4.1", "chai": "^4.2.0", diff --git a/sdk/appconfiguration/perf-tests/app-configuration/package.json b/sdk/appconfiguration/perf-tests/app-configuration/package.json index 82d4ed432be0..39599a2ec2c2 100644 --- a/sdk/appconfiguration/perf-tests/app-configuration/package.json +++ b/sdk/appconfiguration/perf-tests/app-configuration/package.json @@ -14,7 +14,7 @@ }, "devDependencies": { "@types/uuid": "^8.0.0", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "eslint": "^7.15.0", "prettier": "^1.16.4", "rimraf": "^3.0.0", diff --git a/sdk/attestation/attestation/package.json b/sdk/attestation/attestation/package.json index ddd9204de7a5..b491186d4377 100644 --- a/sdk/attestation/attestation/package.json +++ b/sdk/attestation/attestation/package.json @@ -68,7 +68,7 @@ ], "repository": "github:Azure/azure-sdk-for-js", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "keywords": [ "node", @@ -104,7 +104,7 @@ "@types/chai": "^4.1.6", "@types/chai-as-promised": "^7.1.0", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "buffer": "^5.2.1", "chai": "^4.2.0", "chai-as-promised": "^7.1.1", diff --git a/sdk/communication/communication-chat/CHANGELOG.md b/sdk/communication/communication-chat/CHANGELOG.md index 93b12372d659..33c1d8ebd77d 100644 --- a/sdk/communication/communication-chat/CHANGELOG.md +++ b/sdk/communication/communication-chat/CHANGELOG.md @@ -2,10 +2,17 @@ ## 1.1.0-beta.1 (Unreleased) -### Added +### Features Added +- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. - Added support to add `metadata` for `message` - Added `senderDisplayName` in `sendTypingNotification` operation. +### Breaking Changes + +### Key Bugs Fixed + +### Fixed + ## 1.0.1 (Unreleased) - Updated to @azure/communication-signaling@1.0.0-beta.5. diff --git a/sdk/communication/communication-chat/package.json b/sdk/communication/communication-chat/package.json index 20c72b42a06d..7abcb0b24153 100644 --- a/sdk/communication/communication-chat/package.json +++ b/sdk/communication/communication-chat/package.json @@ -58,7 +58,7 @@ "url": "https://github.com/Azure/azure-sdk-for-js/issues" }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/communication/communication-chat/", "sideEffects": false, @@ -88,7 +88,7 @@ "@rollup/plugin-replace": "^2.2.0", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/sinon": "^9.0.4", "assert": "^1.4.1", "chai": "^4.2.0", diff --git a/sdk/communication/communication-common/CHANGELOG.md b/sdk/communication/communication-common/CHANGELOG.md index 21690a6670db..843c54679508 100644 --- a/sdk/communication/communication-common/CHANGELOG.md +++ b/sdk/communication/communication-common/CHANGELOG.md @@ -1,7 +1,15 @@ # Release History -## 1.0.1 (Unreleased) +## 1.1.0 (Unreleased) +### Features Added +- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. + +### Breaking Changes + +### Key Bugs Fixed + +### Fixed ## 1.0.0 (2021-03-22) diff --git a/sdk/communication/communication-common/package.json b/sdk/communication/communication-common/package.json index 10240341dcb1..7ebbb9f65039 100644 --- a/sdk/communication/communication-common/package.json +++ b/sdk/communication/communication-common/package.json @@ -1,6 +1,6 @@ { "name": "@azure/communication-common", - "version": "1.0.1", + "version": "1.1.0", "description": "Common package for Azure Communication services.", "sdk-type": "client", "main": "dist/index.js", @@ -57,7 +57,7 @@ "url": "https://github.com/Azure/azure-sdk-for-js/issues" }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/communication/communication-common/", "sideEffects": false, @@ -84,7 +84,7 @@ "@types/chai": "^4.1.6", "@types/jwt-decode": "~2.2.1", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/sinon": "^9.0.4", "assert": "^1.4.1", "chai-as-promised": "^7.1.1", diff --git a/sdk/communication/communication-identity/CHANGELOG.md b/sdk/communication/communication-identity/CHANGELOG.md index 75d0d63ce86e..5cd153d1da2b 100644 --- a/sdk/communication/communication-identity/CHANGELOG.md +++ b/sdk/communication/communication-identity/CHANGELOG.md @@ -2,8 +2,16 @@ ## 1.1.0-beta.1 (Unreleased) +### Features Added +- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. - `CommunicationIdentityClient` added a new method `exchangeTeamsToken` that provides the ability to exchange a Teams token for an ACS access token. +### Breaking Changes + +### Key Bugs Fixed + +### Fixed + ## 1.0.0 (2021-03-29) - Stable release of `@azure/communication-identity`. diff --git a/sdk/communication/communication-identity/package.json b/sdk/communication/communication-identity/package.json index 6fef9d2c424f..7fc0a50fc1a8 100644 --- a/sdk/communication/communication-identity/package.json +++ b/sdk/communication/communication-identity/package.json @@ -63,7 +63,7 @@ "author": "Microsoft Corporation", "license": "MIT", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/communication/communication-identity/", "repository": "github:Azure/azure-sdk-for-js", @@ -99,7 +99,7 @@ "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", "@types/sinon": "^9.0.4", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "assert": "^1.4.1", "chai": "^4.2.0", "cross-env": "^7.0.2", diff --git a/sdk/communication/communication-network-traversal/CHANGELOG.md b/sdk/communication/communication-network-traversal/CHANGELOG.md index 0535ca9541d5..e1380c228f27 100644 --- a/sdk/communication/communication-network-traversal/CHANGELOG.md +++ b/sdk/communication/communication-network-traversal/CHANGELOG.md @@ -2,6 +2,14 @@ ## 1.0.0-beta.2 (Unreleased) +### Features Added +- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. + +### Breaking Changes + +### Key Bugs Fixed + +### Fixed ## 1.0.0-beta.1 (2021-05-24) diff --git a/sdk/communication/communication-network-traversal/package.json b/sdk/communication/communication-network-traversal/package.json index 65b3f969c4ec..fa190d4910c4 100644 --- a/sdk/communication/communication-network-traversal/package.json +++ b/sdk/communication/communication-network-traversal/package.json @@ -63,7 +63,7 @@ "author": "Microsoft Corporation", "license": "MIT", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/communication/", "repository": "github:Azure/azure-sdk-for-js", @@ -97,7 +97,7 @@ "@rollup/plugin-replace": "^2.2.0", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/sinon": "^9.0.4", "assert": "^1.4.1", "chai": "^4.2.0", diff --git a/sdk/communication/communication-phone-numbers/CHANGELOG.md b/sdk/communication/communication-phone-numbers/CHANGELOG.md index 5eeb301330ed..087d3b4349bc 100644 --- a/sdk/communication/communication-phone-numbers/CHANGELOG.md +++ b/sdk/communication/communication-phone-numbers/CHANGELOG.md @@ -1,7 +1,15 @@ # Release History -## 1.0.1 (Unreleased) +## 1.1.0 (Unreleased) +### Features Added +- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. + +### Breaking Changes + +### Key Bugs Fixed + +### Fixed ## 1.0.0 (2021-04-26) - Update version to 1.0.0 diff --git a/sdk/communication/communication-phone-numbers/package.json b/sdk/communication/communication-phone-numbers/package.json index 63bf9bede986..c16f5a182c6a 100644 --- a/sdk/communication/communication-phone-numbers/package.json +++ b/sdk/communication/communication-phone-numbers/package.json @@ -1,6 +1,6 @@ { "name": "@azure/communication-phone-numbers", - "version": "1.0.1", + "version": "1.1.0", "description": "SDK for Azure Communication service which facilitates phone number management.", "sdk-type": "client", "main": "dist/index.js", @@ -51,7 +51,7 @@ "author": "Microsoft Corporation", "license": "MIT", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/communication/communication-phone-numbers/", "repository": "github:Azure/azure-sdk-for-js", @@ -87,7 +87,7 @@ "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", "@types/sinon": "^9.0.4", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "assert": "^1.4.1", "chai": "^4.2.0", "cross-env": "^7.0.2", diff --git a/sdk/communication/communication-sms/CHANGELOG.md b/sdk/communication/communication-sms/CHANGELOG.md index 270d6a1a8446..a2faba419536 100644 --- a/sdk/communication/communication-sms/CHANGELOG.md +++ b/sdk/communication/communication-sms/CHANGELOG.md @@ -1,7 +1,15 @@ # Release History -## 1.0.1 (Unreleased) +## 1.1.0 (Unreleased) +### Features Added +- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. + +### Breaking Changes + +### Key Bugs Fixed + +### Fixed ## 1.0.0 (2021-03-29) @@ -35,4 +43,4 @@ Updated `@azure/communication-sms` version. The first preview of the Azure Communication Sms Client has the following features: - send an SMS message from an acquired phone number. -- optionally enable delivery reports. \ No newline at end of file +- optionally enable delivery reports. diff --git a/sdk/communication/communication-sms/package.json b/sdk/communication/communication-sms/package.json index 6336a1129744..ffcdf88a9f4f 100644 --- a/sdk/communication/communication-sms/package.json +++ b/sdk/communication/communication-sms/package.json @@ -1,6 +1,6 @@ { "name": "@azure/communication-sms", - "version": "1.0.1", + "version": "1.1.0", "description": "SDK for Azure Communication SMS service which facilitates the sending of SMS messages.", "sdk-type": "client", "main": "dist/index.js", @@ -59,7 +59,7 @@ "url": "https://github.com/Azure/azure-sdk-for-js/issues" }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/communication/communication-sms/", "sideEffects": false, @@ -88,7 +88,7 @@ "@rollup/plugin-replace": "^2.2.0", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/sinon": "^9.0.4", "assert": "^1.4.1", "chai": "^4.2.0", diff --git a/sdk/communication/communication-sms/src/constants.ts b/sdk/communication/communication-sms/src/constants.ts index 8b7a003d6406..9ffa1892ce39 100644 --- a/sdk/communication/communication-sms/src/constants.ts +++ b/sdk/communication/communication-sms/src/constants.ts @@ -1,4 +1,4 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -export const SDK_VERSION: string = "1.0.1"; +export const SDK_VERSION: string = "1.1.0"; diff --git a/sdk/communication/communication-sms/src/generated/src/smsApiClientContext.ts b/sdk/communication/communication-sms/src/generated/src/smsApiClientContext.ts index 59cf9f33352c..71c252332588 100644 --- a/sdk/communication/communication-sms/src/generated/src/smsApiClientContext.ts +++ b/sdk/communication/communication-sms/src/generated/src/smsApiClientContext.ts @@ -10,7 +10,7 @@ import * as coreHttp from "@azure/core-http"; import { SmsApiClientOptionalParams } from "./models"; const packageName = "azure-communication-sms"; -const packageVersion = "1.0.0"; +const packageVersion = "1.1.0"; export class SmsApiClientContext extends coreHttp.ServiceClient { endpoint: string; diff --git a/sdk/communication/communication-sms/swagger/README.md b/sdk/communication/communication-sms/swagger/README.md index 4129b96aa907..f2af3dbcc7cd 100644 --- a/sdk/communication/communication-sms/swagger/README.md +++ b/sdk/communication/communication-sms/swagger/README.md @@ -19,5 +19,5 @@ use-extension: "@autorest/typescript": "6.0.0-dev.20200623.2" azure-arm: false add-credentials: false -package-version: 1.0.1 +package-version: 1.1.0 ``` diff --git a/sdk/confidentialledger/confidential-ledger-rest/package.json b/sdk/confidentialledger/confidential-ledger-rest/package.json index 9c1f361f9106..aa01acfe0827 100644 --- a/sdk/confidentialledger/confidential-ledger-rest/package.json +++ b/sdk/confidentialledger/confidential-ledger-rest/package.json @@ -98,7 +98,7 @@ "@microsoft/api-extractor": "7.13.2", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "chai": "^4.2.0", "cross-env": "^7.0.2", "dotenv": "^8.2.0", diff --git a/sdk/containerregistry/container-registry/package.json b/sdk/containerregistry/container-registry/package.json index 446720df2e09..e8f2a8f0b39e 100644 --- a/sdk/containerregistry/container-registry/package.json +++ b/sdk/containerregistry/container-registry/package.json @@ -60,7 +60,7 @@ ], "repository": "github:Azure/azure-sdk-for-js", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "keywords": [ "azure", @@ -94,7 +94,7 @@ "@types/chai": "^4.1.6", "@types/chai-as-promised": "^7.1.0", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "chai": "^4.2.0", "chai-as-promised": "^7.1.1", "cross-env": "^7.0.2", diff --git a/sdk/core/abort-controller/package.json b/sdk/core/abort-controller/package.json index ce0d23916447..e33f4997031a 100644 --- a/sdk/core/abort-controller/package.json +++ b/sdk/core/abort-controller/package.json @@ -55,7 +55,7 @@ "LICENSE" ], "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "repository": "github:Azure/azure-sdk-for-js", "keywords": [ @@ -87,7 +87,7 @@ "@rollup/plugin-node-resolve": "^8.0.0", "@rollup/plugin-replace": "^2.2.0", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "assert": "^1.4.1", "cross-env": "^7.0.2", "delay": "^4.2.0", diff --git a/sdk/core/core-amqp/package.json b/sdk/core/core-amqp/package.json index 8cb51a8531f8..02aa3ab9fba8 100644 --- a/sdk/core/core-amqp/package.json +++ b/sdk/core/core-amqp/package.json @@ -60,7 +60,7 @@ "docs": "typedoc --excludePrivate --excludeNotExported --excludeExternals --stripInternal --mode file --out ./dist/docs ./src" }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "homepage": "https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-amqp/README.md", "sideEffects": false, @@ -95,7 +95,7 @@ "@types/chai-as-promised": "^7.1.0", "@types/debug": "^4.1.4", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/sinon": "^9.0.4", "@types/ws": "^7.2.4", "assert": "^1.4.1", diff --git a/sdk/core/core-asynciterator-polyfill/package.json b/sdk/core/core-asynciterator-polyfill/package.json index 3d6168f18ac4..4846f579fdb1 100644 --- a/sdk/core/core-asynciterator-polyfill/package.json +++ b/sdk/core/core-asynciterator-polyfill/package.json @@ -22,7 +22,7 @@ "LICENSE" ], "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "license": "MIT", "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/core/core-asynciterator-polyfill/README.md", @@ -58,7 +58,7 @@ "private": false, "devDependencies": { "@azure/eslint-plugin-azure-sdk": "^3.0.0", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "eslint": "^7.15.0", "prettier": "^1.16.4", "typescript": "~4.2.0", diff --git a/sdk/core/core-auth/package.json b/sdk/core/core-auth/package.json index 9b804989c99c..b3e8dd2fdbe6 100644 --- a/sdk/core/core-auth/package.json +++ b/sdk/core/core-auth/package.json @@ -61,7 +61,7 @@ "url": "https://github.com/Azure/azure-sdk-for-js/issues" }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "homepage": "https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-auth/README.md", "sideEffects": false, @@ -78,7 +78,7 @@ "@rollup/plugin-node-resolve": "^8.0.0", "@rollup/plugin-replace": "^2.2.0", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "assert": "^1.4.1", "cross-env": "^7.0.2", "downlevel-dts": "~0.4.0", diff --git a/sdk/core/core-client-paging-rest/package.json b/sdk/core/core-client-paging-rest/package.json index fcbfdf4bad2e..aa6de3eef774 100644 --- a/sdk/core/core-client-paging-rest/package.json +++ b/sdk/core/core-client-paging-rest/package.json @@ -55,7 +55,7 @@ "url": "https://github.com/Azure/azure-sdk-for-js/issues" }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "homepage": "https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-client-paging-rest/", "sideEffects": false, @@ -70,7 +70,7 @@ "@microsoft/api-extractor": "7.13.2", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@azure/eslint-plugin-azure-sdk": "^3.0.0", "@azure/dev-tool": "^1.0.0", "chai": "^4.2.0", diff --git a/sdk/core/core-client-rest/package.json b/sdk/core/core-client-rest/package.json index c7e5cfc07697..b75c356e3335 100644 --- a/sdk/core/core-client-rest/package.json +++ b/sdk/core/core-client-rest/package.json @@ -55,7 +55,7 @@ "url": "https://github.com/Azure/azure-sdk-for-js/issues" }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "homepage": "https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-client-rest/", "sideEffects": false, @@ -69,7 +69,7 @@ "@microsoft/api-extractor": "7.13.2", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@azure/eslint-plugin-azure-sdk": "^3.0.0", "@azure/dev-tool": "^1.0.0", "chai": "^4.2.0", diff --git a/sdk/core/core-client/package.json b/sdk/core/core-client/package.json index 7dca87f5fa1e..83451f88acbb 100644 --- a/sdk/core/core-client/package.json +++ b/sdk/core/core-client/package.json @@ -70,7 +70,7 @@ "url": "https://github.com/Azure/azure-sdk-for-js/issues" }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "homepage": "https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-client/", "sideEffects": false, @@ -93,7 +93,7 @@ "@rollup/plugin-replace": "^2.2.0", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/sinon": "^9.0.4", "@azure/eslint-plugin-azure-sdk": "^3.0.0", "@azure/dev-tool": "^1.0.0", diff --git a/sdk/core/core-crypto/package.json b/sdk/core/core-crypto/package.json index 00afa9885f07..231b41e1e5b7 100644 --- a/sdk/core/core-crypto/package.json +++ b/sdk/core/core-crypto/package.json @@ -69,7 +69,7 @@ "url": "https://github.com/Azure/azure-sdk-for-js/issues" }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "homepage": "https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-crypto/", "sideEffects": false, @@ -88,7 +88,7 @@ "@rollup/plugin-replace": "^2.2.0", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/sinon": "^9.0.4", "@azure/eslint-plugin-azure-sdk": "^3.0.0", "assert": "^1.4.1", diff --git a/sdk/core/core-http/package.json b/sdk/core/core-http/package.json index 9e738688c4c4..08e6375a9157 100644 --- a/sdk/core/core-http/package.json +++ b/sdk/core/core-http/package.json @@ -14,7 +14,7 @@ "clientruntime" ], "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "keywords": [ "isomorphic", @@ -156,7 +156,7 @@ "@types/express": "^4.16.0", "@types/glob": "^7.1.1", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/sinon": "^9.0.4", "@types/tough-cookie": "^4.0.0", "@types/uuid": "^8.0.0", diff --git a/sdk/core/core-lro/package.json b/sdk/core/core-lro/package.json index f5e545433726..09e707e2024e 100644 --- a/sdk/core/core-lro/package.json +++ b/sdk/core/core-lro/package.json @@ -35,7 +35,7 @@ "LICENSE" ], "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "browser": { "os": false, @@ -111,7 +111,7 @@ "@rollup/plugin-replace": "^2.2.0", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "assert": "^1.4.1", "chai": "^4.2.0", "cross-env": "^7.0.2", diff --git a/sdk/core/core-paging/package.json b/sdk/core/core-paging/package.json index 50f6031858b4..1a29cc410e8b 100644 --- a/sdk/core/core-paging/package.json +++ b/sdk/core/core-paging/package.json @@ -33,7 +33,7 @@ "README.md" ], "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "license": "MIT", "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/core/core-paging/README.md", @@ -72,7 +72,7 @@ }, "devDependencies": { "@azure/eslint-plugin-azure-sdk": "^3.0.0", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "eslint": "^7.15.0", "prettier": "^1.16.4", "rimraf": "^3.0.0", diff --git a/sdk/core/core-rest-pipeline/package.json b/sdk/core/core-rest-pipeline/package.json index 5848c1a2bc5a..965dbc8372ea 100644 --- a/sdk/core/core-rest-pipeline/package.json +++ b/sdk/core/core-rest-pipeline/package.json @@ -77,7 +77,7 @@ "url": "https://github.com/Azure/azure-sdk-for-js/issues" }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "homepage": "https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-rest-pipeline/", "sideEffects": false, @@ -110,7 +110,7 @@ "@rollup/plugin-replace": "^2.2.0", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/sinon": "^9.0.4", "@types/uuid": "^8.0.0", "@azure/eslint-plugin-azure-sdk": "^3.0.0", diff --git a/sdk/core/core-tracing/package.json b/sdk/core/core-tracing/package.json index e18afe6c98a7..dd09c41e9697 100644 --- a/sdk/core/core-tracing/package.json +++ b/sdk/core/core-tracing/package.json @@ -55,7 +55,7 @@ "url": "https://github.com/Azure/azure-sdk-for-js/issues" }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "homepage": "https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-tracing/README.md", "sideEffects": false, @@ -74,7 +74,7 @@ "@rollup/plugin-node-resolve": "^8.0.0", "@rollup/plugin-replace": "^2.2.0", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "assert": "^1.4.1", "cross-env": "^7.0.2", "eslint": "^7.15.0", diff --git a/sdk/core/core-util/package.json b/sdk/core/core-util/package.json index 183336377de0..6bc737c40044 100644 --- a/sdk/core/core-util/package.json +++ b/sdk/core/core-util/package.json @@ -62,7 +62,7 @@ "url": "https://github.com/Azure/azure-sdk-for-js/issues" }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "homepage": "https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-util/", "sideEffects": false, @@ -80,7 +80,7 @@ "@rollup/plugin-replace": "^2.2.0", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/sinon": "^9.0.4", "@azure/eslint-plugin-azure-sdk": "^3.0.0", "chai": "^4.2.0", diff --git a/sdk/core/core-xml/package.json b/sdk/core/core-xml/package.json index db57ef7ae1e5..94274c63e30a 100644 --- a/sdk/core/core-xml/package.json +++ b/sdk/core/core-xml/package.json @@ -69,7 +69,7 @@ "url": "https://github.com/Azure/azure-sdk-for-js/issues" }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "homepage": "https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-xml/", "sideEffects": false, @@ -87,7 +87,7 @@ "@rollup/plugin-replace": "^2.2.0", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/sinon": "^9.0.4", "@types/xml2js": "^0.4.3", "@azure/eslint-plugin-azure-sdk": "^3.0.0", diff --git a/sdk/core/logger/package.json b/sdk/core/logger/package.json index 28a453becd0e..ebdd6711aa7f 100644 --- a/sdk/core/logger/package.json +++ b/sdk/core/logger/package.json @@ -10,7 +10,7 @@ "process": false }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "scripts": { "audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit", @@ -79,7 +79,7 @@ "@rollup/plugin-replace": "^2.2.0", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/sinon": "^9.0.4", "assert": "^1.4.1", "chai": "^4.2.0", diff --git a/sdk/cosmosdb/cosmos/CHANGELOG.md b/sdk/cosmosdb/cosmos/CHANGELOG.md index 3be8a0ae8819..a3980522967f 100644 --- a/sdk/cosmosdb/cosmos/CHANGELOG.md +++ b/sdk/cosmosdb/cosmos/CHANGELOG.md @@ -1,8 +1,9 @@ # Release History -## 3.11.6 (Unreleased) +## 3.12.0 (Unreleased) ### Features Added +- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ### Breaking Changes diff --git a/sdk/cosmosdb/cosmos/package.json b/sdk/cosmosdb/cosmos/package.json index b7fe171f8e98..ee81bdc4efb2 100644 --- a/sdk/cosmosdb/cosmos/package.json +++ b/sdk/cosmosdb/cosmos/package.json @@ -1,6 +1,6 @@ { "name": "@azure/cosmos", - "version": "3.11.6", + "version": "3.12.0", "description": "Microsoft Azure Cosmos DB Service Node.js SDK for SQL API", "sdk-type": "client", "keywords": [ @@ -43,7 +43,7 @@ } }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "scripts": { "audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit", @@ -108,7 +108,7 @@ "@types/debug": "^4.1.4", "@types/fast-json-stable-stringify": "^2.0.0", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/priorityqueuejs": "^1.0.1", "@types/semaphore": "^1.1.0", "@types/sinon": "^9.0.4", diff --git a/sdk/deviceupdate/iot-device-update/package.json b/sdk/deviceupdate/iot-device-update/package.json index d4d4656f8049..723db97117c7 100644 --- a/sdk/deviceupdate/iot-device-update/package.json +++ b/sdk/deviceupdate/iot-device-update/package.json @@ -27,7 +27,7 @@ "@azure/eslint-plugin-azure-sdk": "^3.0.0", "@azure/identity": "2.0.0-beta.4", "@microsoft/api-extractor": "7.7.11", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/uuid": "^8.0.0", "cross-env": "^7.0.2", "dotenv": "^8.2.0", @@ -65,7 +65,7 @@ ] }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "//sampleConfiguration": { "productName": "Azure IoT Hub Device Update", diff --git a/sdk/digitaltwins/digital-twins-core/CHANGELOG.md b/sdk/digitaltwins/digital-twins-core/CHANGELOG.md index 8d3f7ed7697d..73ecc2d904c9 100644 --- a/sdk/digitaltwins/digital-twins-core/CHANGELOG.md +++ b/sdk/digitaltwins/digital-twins-core/CHANGELOG.md @@ -1,6 +1,13 @@ # Release History -## 1.0.4 (unreleased) +## 1.1.0 (unreleased) + +### Features Added +- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. + +### Breaking Changes + +### Key Bugs Fixed ## 1.0.3 (2021-01-15) diff --git a/sdk/digitaltwins/digital-twins-core/package.json b/sdk/digitaltwins/digital-twins-core/package.json index fa48e3439cc5..a6f0dcaf34bc 100644 --- a/sdk/digitaltwins/digital-twins-core/package.json +++ b/sdk/digitaltwins/digital-twins-core/package.json @@ -1,6 +1,6 @@ { "name": "@azure/digital-twins-core", - "version": "1.0.4", + "version": "1.1.0", "description": "An isomorphic client library for Azure Digital Twins", "sdk-type": "client", "author": "Microsoft Corporation", @@ -9,7 +9,7 @@ "module": "dist-esm/src/index.js", "types": "types/digital-twins-core.d.ts", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "scripts": { "audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit", @@ -85,7 +85,7 @@ "@rollup/plugin-replace": "^2.2.0", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/sinon": "^9.0.4", "chai": "^4.2.0", "cross-env": "^7.0.2", diff --git a/sdk/digitaltwins/digital-twins-core/src/digitalTwinsClient.ts b/sdk/digitaltwins/digital-twins-core/src/digitalTwinsClient.ts index eae770820d05..9de13b71c44c 100644 --- a/sdk/digitaltwins/digital-twins-core/src/digitalTwinsClient.ts +++ b/sdk/digitaltwins/digital-twins-core/src/digitalTwinsClient.ts @@ -56,7 +56,7 @@ import { createSpan } from "./tracing"; import { SpanStatusCode } from "@azure/core-tracing"; import { logger } from "./logger"; -export const SDK_VERSION: string = "1.0.3"; +export const SDK_VERSION: string = "1.1.0"; export interface DigitalTwinsClientOptions extends PipelineOptions { /** diff --git a/sdk/digitaltwins/digital-twins-core/src/generated/azureDigitalTwinsAPIContext.ts b/sdk/digitaltwins/digital-twins-core/src/generated/azureDigitalTwinsAPIContext.ts index a6835b1bd37a..68b68fd52a29 100644 --- a/sdk/digitaltwins/digital-twins-core/src/generated/azureDigitalTwinsAPIContext.ts +++ b/sdk/digitaltwins/digital-twins-core/src/generated/azureDigitalTwinsAPIContext.ts @@ -10,7 +10,7 @@ import * as coreHttp from "@azure/core-http"; import { AzureDigitalTwinsAPIOptionalParams } from "./models"; const packageName = "@azure/digital-twins-core"; -const packageVersion = "1.0.3"; +const packageVersion = "1.1.0"; export class AzureDigitalTwinsAPIContext extends coreHttp.ServiceClient { $host: string; diff --git a/sdk/digitaltwins/digital-twins-core/swagger/README.md b/sdk/digitaltwins/digital-twins-core/swagger/README.md index 547ecfe53b36..5c155513d694 100644 --- a/sdk/digitaltwins/digital-twins-core/swagger/README.md +++ b/sdk/digitaltwins/digital-twins-core/swagger/README.md @@ -15,7 +15,7 @@ license-header: MICROSOFT_MIT_NO_VERSION input-file: https://github.com/Azure/azure-rest-api-specs/blob/master/specification/digitaltwins/data-plane/Microsoft.DigitalTwins/stable/2020-10-31/digitaltwins.json output-folder: ../ source-code-folder-path: ./src/generated -package-version: 1.0.4 +package-version: 1.1.0 ``` ## Customizations for Track 2 Generator diff --git a/sdk/documenttranslator/ai-document-translator-rest/package.json b/sdk/documenttranslator/ai-document-translator-rest/package.json index ae9275a2b86d..6bcb887f3d0c 100644 --- a/sdk/documenttranslator/ai-document-translator-rest/package.json +++ b/sdk/documenttranslator/ai-document-translator-rest/package.json @@ -41,7 +41,7 @@ ] }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "//sampleConfiguration": { "productName": "Azure Document Translator rest", @@ -103,7 +103,7 @@ "@microsoft/api-extractor": "7.13.2", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "chai": "^4.2.0", "cross-env": "^7.0.2", "dotenv": "^8.2.0", diff --git a/sdk/eventgrid/eventgrid/CHANGELOG.md b/sdk/eventgrid/eventgrid/CHANGELOG.md index 1f5a1a45f723..42cc86543530 100644 --- a/sdk/eventgrid/eventgrid/CHANGELOG.md +++ b/sdk/eventgrid/eventgrid/CHANGELOG.md @@ -1,7 +1,13 @@ # Release History -## 4.3.1 (Unreleased) +## 4.4.0 (Unreleased) +### Features Added +- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. + +### Breaking Changes + +### Key Bugs Fixed ## 4.3.0 (2021-06-08) diff --git a/sdk/eventgrid/eventgrid/package.json b/sdk/eventgrid/eventgrid/package.json index 0a2b75a92b8a..ae6378409ff7 100644 --- a/sdk/eventgrid/eventgrid/package.json +++ b/sdk/eventgrid/eventgrid/package.json @@ -3,7 +3,7 @@ "sdk-type": "client", "author": "Microsoft Corporation", "description": "An isomorphic client library for the Azure Event Grid service.", - "version": "4.3.1", + "version": "4.4.0", "keywords": [ "node", "azure", @@ -22,7 +22,7 @@ "url": "https://github.com/Azure/azure-sdk-for-js/issues" }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "files": [ "dist/", @@ -111,7 +111,7 @@ "@types/chai": "^4.1.6", "@types/chai-as-promised": "^7.1.0", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/sinon": "^9.0.4", "@types/uuid": "^8.0.0", "chai": "^4.2.0", diff --git a/sdk/eventgrid/eventgrid/src/constants.ts b/sdk/eventgrid/eventgrid/src/constants.ts index 26b9f7eb6452..86ca700d691f 100644 --- a/sdk/eventgrid/eventgrid/src/constants.ts +++ b/sdk/eventgrid/eventgrid/src/constants.ts @@ -1,5 +1,5 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -export const SDK_VERSION: string = "4.3.1"; +export const SDK_VERSION: string = "4.4.0"; export const DEFAULT_API_VERSION = "2018-01-01"; diff --git a/sdk/eventgrid/eventgrid/swagger/README.md b/sdk/eventgrid/eventgrid/swagger/README.md index 6945165d38d8..ddccc7002ff5 100644 --- a/sdk/eventgrid/eventgrid/swagger/README.md +++ b/sdk/eventgrid/eventgrid/swagger/README.md @@ -7,7 +7,7 @@ ```yaml require: "https://github.com/Azure/azure-rest-api-specs/blob/d78816faeca788910b48ce0cfad89f85396260d6/specification/eventgrid/data-plane/readme.md" package-name: "@azure/eventgrid" -package-version: "4.3.1" +package-version: "4.4.0" title: GeneratedClient description: EventGrid Client generate-metadata: false diff --git a/sdk/eventgrid/perf-tests/eventgrid/package.json b/sdk/eventgrid/perf-tests/eventgrid/package.json index 0a72e12fc58e..92ddc55c0088 100644 --- a/sdk/eventgrid/perf-tests/eventgrid/package.json +++ b/sdk/eventgrid/perf-tests/eventgrid/package.json @@ -12,7 +12,7 @@ "dotenv": "^8.2.0" }, "devDependencies": { - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "eslint": "^7.15.0", "prettier": "^1.16.4", "rimraf": "^3.0.0", diff --git a/sdk/eventhub/event-hubs/CHANGELOG.md b/sdk/eventhub/event-hubs/CHANGELOG.md index 64ac238c7f17..9b800f2596c0 100644 --- a/sdk/eventhub/event-hubs/CHANGELOG.md +++ b/sdk/eventhub/event-hubs/CHANGELOG.md @@ -1,15 +1,14 @@ # Release History -## 5.5.3 (Unreleased) +## 5.6.0 (Unreleased) ### Features Added +- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ### Breaking Changes ### Key Bugs Fixed -### Fixed - ## 5.5.2 (2021-06-10) diff --git a/sdk/eventhub/event-hubs/package.json b/sdk/eventhub/event-hubs/package.json index 3b030aa4ad98..f32080899c6f 100644 --- a/sdk/eventhub/event-hubs/package.json +++ b/sdk/eventhub/event-hubs/package.json @@ -1,7 +1,7 @@ { "name": "@azure/event-hubs", "sdk-type": "client", - "version": "5.5.3", + "version": "5.6.0", "description": "Azure Event Hubs SDK for JS.", "author": "Microsoft Corporation", "license": "MIT", @@ -19,7 +19,7 @@ "url": "https://github.com/Azure/azure-sdk-for-js/issues" }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "main": "./dist/index.js", "module": "dist-esm/src/index.js", @@ -138,7 +138,7 @@ "@types/debug": "^4.1.4", "@types/long": "^4.0.0", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/sinon": "^9.0.4", "@types/uuid": "^8.0.0", "@types/ws": "^7.2.4", diff --git a/sdk/eventhub/event-hubs/samples-browser/package.json b/sdk/eventhub/event-hubs/samples-browser/package.json index 25a1940699d8..92d06544a381 100644 --- a/sdk/eventhub/event-hubs/samples-browser/package.json +++ b/sdk/eventhub/event-hubs/samples-browser/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "description": "Azure Event Hubs client library samples for JavaScript", "engine": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "scripts": { "build": "webpack-cli ./src/index.js -o ./dist/app.js", diff --git a/sdk/eventhub/event-hubs/samples-express/package.json b/sdk/eventhub/event-hubs/samples-express/package.json index 97b788346f5c..bc87bb571ab6 100644 --- a/sdk/eventhub/event-hubs/samples-express/package.json +++ b/sdk/eventhub/event-hubs/samples-express/package.json @@ -4,7 +4,7 @@ "version": "1.0.0", "description": "Azure Event Hubs client library samples with Express", "engine": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "scripts": { "build": "tsc", diff --git a/sdk/eventhub/event-hubs/samples/v5/browser/package.json b/sdk/eventhub/event-hubs/samples/v5/browser/package.json index 25a1940699d8..92d06544a381 100644 --- a/sdk/eventhub/event-hubs/samples/v5/browser/package.json +++ b/sdk/eventhub/event-hubs/samples/v5/browser/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "description": "Azure Event Hubs client library samples for JavaScript", "engine": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "scripts": { "build": "webpack-cli ./src/index.js -o ./dist/app.js", diff --git a/sdk/eventhub/event-hubs/samples/v5/express/package.json b/sdk/eventhub/event-hubs/samples/v5/express/package.json index 97b788346f5c..bc87bb571ab6 100644 --- a/sdk/eventhub/event-hubs/samples/v5/express/package.json +++ b/sdk/eventhub/event-hubs/samples/v5/express/package.json @@ -4,7 +4,7 @@ "version": "1.0.0", "description": "Azure Event Hubs client library samples with Express", "engine": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "scripts": { "build": "tsc", diff --git a/sdk/eventhub/event-hubs/src/util/constants.ts b/sdk/eventhub/event-hubs/src/util/constants.ts index d2693257ebb8..ee6308899b70 100644 --- a/sdk/eventhub/event-hubs/src/util/constants.ts +++ b/sdk/eventhub/event-hubs/src/util/constants.ts @@ -6,5 +6,5 @@ */ export const packageJsonInfo = { name: "@azure/event-hubs", - version: "5.5.3" + version: "5.6.0" }; diff --git a/sdk/eventhub/event-processor-host/package.json b/sdk/eventhub/event-processor-host/package.json index 8915e8479998..462dc6dc1ef5 100644 --- a/sdk/eventhub/event-processor-host/package.json +++ b/sdk/eventhub/event-processor-host/package.json @@ -22,7 +22,7 @@ "module": "dist-esm/src/index.js", "types": "./typings/event-processor-host.d.ts", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "files": [ "dist/", @@ -100,7 +100,7 @@ "@types/chai-string": "^1.4.1", "@types/debug": "^4.1.4", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/uuid": "^8.0.0", "@types/ws": "^7.2.4", "chai": "^4.2.0", diff --git a/sdk/eventhub/event-processor-host/samples/javascript/package.json b/sdk/eventhub/event-processor-host/samples/javascript/package.json index f072c416c216..a4b7ea0e40a9 100644 --- a/sdk/eventhub/event-processor-host/samples/javascript/package.json +++ b/sdk/eventhub/event-processor-host/samples/javascript/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "description": "Azure Event Process Host (Event Hubs) library samples for JavaScript", "engine": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "repository": { "type": "git", diff --git a/sdk/eventhub/event-processor-host/samples/typescript/package.json b/sdk/eventhub/event-processor-host/samples/typescript/package.json index 2ac9c3e13372..20e06a4b50f5 100644 --- a/sdk/eventhub/event-processor-host/samples/typescript/package.json +++ b/sdk/eventhub/event-processor-host/samples/typescript/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "description": "Azure Event Process Host (Event Hubs) library samples for TypeScript", "engine": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "repository": { "type": "git", diff --git a/sdk/eventhub/eventhubs-checkpointstore-blob/CHANGELOG.md b/sdk/eventhub/eventhubs-checkpointstore-blob/CHANGELOG.md index 9fdec3d6f3e5..b236a1984e7e 100644 --- a/sdk/eventhub/eventhubs-checkpointstore-blob/CHANGELOG.md +++ b/sdk/eventhub/eventhubs-checkpointstore-blob/CHANGELOG.md @@ -2,11 +2,17 @@ ## 1.1.0 (Unreleased) +### Features Added +- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. - Updates all async methods on `BlobCheckpointStore` to accept an optional `options` parameter that can be used to pass in an `abortSignal` and `tracingOptions`. Resolves issue [#9492](https://github.com/Azure/azure-sdk-for-js/issues/9492). +### Breaking Changes + +### Key Bugs Fixed + ## 1.0.1 (2020-08-03) - Fixes issue [#10132](https://github.com/Azure/azure-sdk-for-js/issues/10132) diff --git a/sdk/eventhub/eventhubs-checkpointstore-blob/package.json b/sdk/eventhub/eventhubs-checkpointstore-blob/package.json index ff8c02ad877d..34bf09a582a5 100644 --- a/sdk/eventhub/eventhubs-checkpointstore-blob/package.json +++ b/sdk/eventhub/eventhubs-checkpointstore-blob/package.json @@ -21,7 +21,7 @@ "module": "dist-esm/src/index.js", "types": "./typings/eventhubs-checkpointstore-blob.d.ts", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "files": [ "dist/", @@ -82,7 +82,7 @@ "@types/chai-string": "^1.4.1", "@types/debug": "^4.1.4", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "assert": "^1.4.1", "chai": "^4.2.0", "chai-as-promised": "^7.1.1", diff --git a/sdk/eventhub/mock-hub/package.json b/sdk/eventhub/mock-hub/package.json index 437b14586606..8fa980a59215 100644 --- a/sdk/eventhub/mock-hub/package.json +++ b/sdk/eventhub/mock-hub/package.json @@ -37,7 +37,7 @@ "repository": "github:Azure/azure-sdk-for-js", "license": "MIT", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "bugs": { "url": "https://github.com/Azure/azure-sdk-for-js/issues" @@ -52,7 +52,7 @@ "devDependencies": { "@azure/dev-tool": "^1.0.0", "@azure/eslint-plugin-azure-sdk": "^3.0.0", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "dotenv": "^8.2.0", "eslint": "^7.15.0", "prettier": "^1.16.4", diff --git a/sdk/eventhub/mock-hub/samples/javascript/package.json b/sdk/eventhub/mock-hub/samples/javascript/package.json index 047bc9ea1fdb..54f8ada31044 100644 --- a/sdk/eventhub/mock-hub/samples/javascript/package.json +++ b/sdk/eventhub/mock-hub/samples/javascript/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "description": "Azure Mock Hub client library samples for JavaScript", "engine": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "scripts": { "build": "tsc", diff --git a/sdk/eventhub/mock-hub/samples/typescript/package.json b/sdk/eventhub/mock-hub/samples/typescript/package.json index c123c7024a75..aa123de77356 100644 --- a/sdk/eventhub/mock-hub/samples/typescript/package.json +++ b/sdk/eventhub/mock-hub/samples/typescript/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "description": "Azure Mock Hub client library samples for TypeScript", "engine": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "scripts": { "build": "tsc", @@ -32,7 +32,7 @@ "tslib": "^2.0.0" }, "devDependencies": { - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "rimraf": "^3.0.0", "typescript": "4.1.2" } diff --git a/sdk/formrecognizer/ai-form-recognizer/CHANGELOG.md b/sdk/formrecognizer/ai-form-recognizer/CHANGELOG.md index f8d549889300..2afb6c770229 100644 --- a/sdk/formrecognizer/ai-form-recognizer/CHANGELOG.md +++ b/sdk/formrecognizer/ai-form-recognizer/CHANGELOG.md @@ -1,7 +1,13 @@ # Release History -## 3.1.1 (Unreleased) +## 3.2.0 (Unreleased) +### Features Added +- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. + +### Breaking Changes + +### Key Bugs Fixed ## 3.1.0 (2021-05-26) diff --git a/sdk/formrecognizer/ai-form-recognizer/package.json b/sdk/formrecognizer/ai-form-recognizer/package.json index f59a177c0339..1c00db258673 100644 --- a/sdk/formrecognizer/ai-form-recognizer/package.json +++ b/sdk/formrecognizer/ai-form-recognizer/package.json @@ -3,7 +3,7 @@ "sdk-type": "client", "author": "Microsoft Corporation", "description": "An isomorphic client library for the Azure Form Recognizer service.", - "version": "3.1.1", + "version": "3.2.0", "keywords": [ "node", "azure", @@ -34,6 +34,10 @@ ], "//metadata": { "constantPaths": [ + { + "path": "swagger/README.md", + "prefix": "package-version" + }, { "path": "src/generated/generatedClientContext.ts", "prefix": "packageVersion" @@ -45,7 +49,7 @@ ] }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "scripts": { "audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit", @@ -95,7 +99,7 @@ "@microsoft/api-extractor": "7.7.11", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/sinon": "^9.0.4", "chai": "^4.2.0", "chai-as-promised": "^7.1.1", diff --git a/sdk/formrecognizer/ai-form-recognizer/src/constants.ts b/sdk/formrecognizer/ai-form-recognizer/src/constants.ts index 5becf8deb2fc..3d6067e4ef0a 100644 --- a/sdk/formrecognizer/ai-form-recognizer/src/constants.ts +++ b/sdk/formrecognizer/ai-form-recognizer/src/constants.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -export const SDK_VERSION: string = "3.1.1"; +export const SDK_VERSION: string = "3.2.0"; export const DEFAULT_COGNITIVE_SCOPE = "https://cognitiveservices.azure.com/.default"; diff --git a/sdk/formrecognizer/ai-form-recognizer/src/generated/generatedClientContext.ts b/sdk/formrecognizer/ai-form-recognizer/src/generated/generatedClientContext.ts index f320967147dd..5077b13a4553 100644 --- a/sdk/formrecognizer/ai-form-recognizer/src/generated/generatedClientContext.ts +++ b/sdk/formrecognizer/ai-form-recognizer/src/generated/generatedClientContext.ts @@ -10,7 +10,7 @@ import * as coreHttp from "@azure/core-http"; import { GeneratedClientOptionalParams } from "./models"; const packageName = "@azure/ai-form-recognizer"; -const packageVersion = "3.1.1"; +const packageVersion = "3.2.0"; /** @hidden */ export class GeneratedClientContext extends coreHttp.ServiceClient { diff --git a/sdk/formrecognizer/ai-form-recognizer/swagger/README.md b/sdk/formrecognizer/ai-form-recognizer/swagger/README.md index bdb0c219c82c..106e60e0ee61 100644 --- a/sdk/formrecognizer/ai-form-recognizer/swagger/README.md +++ b/sdk/formrecognizer/ai-form-recognizer/swagger/README.md @@ -18,7 +18,7 @@ add-credentials: false override-client-name: GeneratedClient use-extension: "@autorest/typescript": "6.0.0-dev.20210121.2" -package-version: "3.1.0" +package-version: "3.2.0" disable-async-iterators: true hide-clients: true ``` diff --git a/sdk/formrecognizer/perf-tests/ai-form-recognizer/package.json b/sdk/formrecognizer/perf-tests/ai-form-recognizer/package.json index a67cbaf8f5ea..722ffbccbc1f 100644 --- a/sdk/formrecognizer/perf-tests/ai-form-recognizer/package.json +++ b/sdk/formrecognizer/perf-tests/ai-form-recognizer/package.json @@ -15,7 +15,7 @@ "tslib": "^2.2.0" }, "devDependencies": { - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "eslint": "^7.15.0", "prettier": "^1.16.4", "rimraf": "^3.0.0", diff --git a/sdk/identity/identity-cache-persistence/.eslintrc.json b/sdk/identity/identity-cache-persistence/.eslintrc.json index 1c1503b9333a..cc81de60752d 100644 --- a/sdk/identity/identity-cache-persistence/.eslintrc.json +++ b/sdk/identity/identity-cache-persistence/.eslintrc.json @@ -2,7 +2,6 @@ "plugins": ["@azure/azure-sdk"], "extends": ["plugin:@azure/azure-sdk/azure-sdk-base"], "rules": { - "@azure/azure-sdk/ts-package-json-module": "off", - "@azure/azure-sdk/ts-package-json-engine-is-present": "off" + "@azure/azure-sdk/ts-package-json-module": "off" } } diff --git a/sdk/identity/identity-cache-persistence/package.json b/sdk/identity/identity-cache-persistence/package.json index fb5ec5b295e2..388ffbb83141 100644 --- a/sdk/identity/identity-cache-persistence/package.json +++ b/sdk/identity/identity-cache-persistence/package.json @@ -78,7 +78,7 @@ "@microsoft/api-extractor": "7.7.11", "@types/jws": "^3.2.2", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/qs": "^6.5.3", "assert": "^1.4.1", "cross-env": "^7.0.2", diff --git a/sdk/identity/identity-vscode/.eslintrc.json b/sdk/identity/identity-vscode/.eslintrc.json index 1c1503b9333a..cc81de60752d 100644 --- a/sdk/identity/identity-vscode/.eslintrc.json +++ b/sdk/identity/identity-vscode/.eslintrc.json @@ -2,7 +2,6 @@ "plugins": ["@azure/azure-sdk"], "extends": ["plugin:@azure/azure-sdk/azure-sdk-base"], "rules": { - "@azure/azure-sdk/ts-package-json-module": "off", - "@azure/azure-sdk/ts-package-json-engine-is-present": "off" + "@azure/azure-sdk/ts-package-json-module": "off" } } diff --git a/sdk/identity/identity-vscode/package.json b/sdk/identity/identity-vscode/package.json index 05f3dd3efd27..188a6775806c 100644 --- a/sdk/identity/identity-vscode/package.json +++ b/sdk/identity/identity-vscode/package.json @@ -75,7 +75,7 @@ "@microsoft/api-extractor": "7.7.11", "@types/jws": "^3.2.2", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/qs": "^6.5.3", "@types/sinon": "^9.0.4", "@types/uuid": "^8.0.0", diff --git a/sdk/identity/identity/CHANGELOG.md b/sdk/identity/identity/CHANGELOG.md index 4ae76abb8356..ae4daa2d73ee 100644 --- a/sdk/identity/identity/CHANGELOG.md +++ b/sdk/identity/identity/CHANGELOG.md @@ -2,31 +2,28 @@ ## 2.0.0-beta.4 (Unreleased) -### New features - +### Features Added +- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. - Introduced an extension API through a top-level method `useIdentityExtension`. The function accepts an "extension" as an argument, which is a function accepting a `context`. The extension context is an internal part of the Azure Identity API, so it has an `unknown` type. Two new packages are designed to be used with this API: - `@azure/identity-vscode`, which provides the dependencies of `VisualStudioCodeCredential` and enables it (see more below). - `@azure/identity-cache-persistence`, which provides persistent token caching (same as was available in version 2.0.0-beta.2, but now provided through a secondary extension package). - Reintroduced a stub implementation of `VisualStudioCodeCredential`. If the `@azure/identity-vscode` extension is not used, then it will throw a `CredentialUnavailableError` (similar to how it previously behaved if the `keytar` package was not installed). The extension now provides the underlying implementation of `VisualStudioCodeCredential` through dependency injection. - Reintroduced the `TokenCachePersistenceOptions` property on most credential constructor options. This property must be present with an `enabled` property set to true to enable persistent token caching for a credential instance. Credentials that do not support persistent token caching do not have this property. - -## Bug fixes - -- Fixed an issue in which `InteractiveBrowserCredential` on Node would sometimes cause the process to hang if there was no browser available. -- Fixed an issue in which the `AZURE_AUTHORITY_HOST` environment variable was not properly picked up in NodeJS. - -### Breaking changes - -- Removed the protected method `getAzureCliAccessToken` from the public API of the `AzureCliCredential`. While it will continue to be available as part of v1, we won't be supporting this method as part of v2's public API. - -### New Features - - Added regional STS support to client credential types. - Added the `RegionalAuthority` type, that allows specifying Azure regions. - Added `regionalAuthority` property to `ClientSecretCredentialOptions` and `ClientCertificateCredentialOptions`. - If instead of a region, `AutoDiscoverRegion` is specified as the value for `regionalAuthority`, MSAL will be used to attempt to discover the region. - A region can also be specified through the `AZURE_REGIONAL_AUTHORITY_NAME` environment variable. - + +### Breaking Changes + +- Removed the protected method `getAzureCliAccessToken` from the public API of the `AzureCliCredential`. While it will continue to be available as part of v1, we won't be supporting this method as part of v2's public API. + +### Key Bugs Fixed + +- Fixed an issue in which `InteractiveBrowserCredential` on Node would sometimes cause the process to hang if there was no browser available. +- Fixed an issue in which the `AZURE_AUTHORITY_HOST` environment variable was not properly picked up in NodeJS. + ## 2.0.0-beta.3 (2021-05-12) ### New features diff --git a/sdk/identity/identity/package.json b/sdk/identity/identity/package.json index 9e7ca636a081..472bf5f031a8 100644 --- a/sdk/identity/identity/package.json +++ b/sdk/identity/identity/package.json @@ -57,7 +57,7 @@ "LICENSE" ], "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "repository": "github:Azure/azure-sdk-for-js", "keywords": [ @@ -103,7 +103,7 @@ "@microsoft/api-extractor": "7.7.11", "@types/jws": "^3.2.2", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/qs": "^6.5.3", "@types/uuid": "^8.0.0", "assert": "^1.4.1", diff --git a/sdk/identity/identity/samples/javascript/package.json b/sdk/identity/identity/samples/javascript/package.json index 196cf17cca3e..599eb9d86d0e 100644 --- a/sdk/identity/identity/samples/javascript/package.json +++ b/sdk/identity/identity/samples/javascript/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "description": "Azure Identity client library samples for JavaScript", "engine": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "repository": { "type": "git", diff --git a/sdk/identity/identity/samples/typescript/package.json b/sdk/identity/identity/samples/typescript/package.json index 6aa0b39746fe..7aa8a39863d5 100644 --- a/sdk/identity/identity/samples/typescript/package.json +++ b/sdk/identity/identity/samples/typescript/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "description": "Azure Identity Keys client library samples for TypeScript", "engine": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "scripts": { "build": "tsc", @@ -34,7 +34,7 @@ "dotenv": "^8.2.0" }, "devDependencies": { - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "rimraf": "^3.0.0", "typescript": "~3.6.4" } diff --git a/sdk/identity/identity/test/manual/package.json b/sdk/identity/identity/test/manual/package.json index 291f69dfb3ae..d19e5f79a478 100644 --- a/sdk/identity/identity/test/manual/package.json +++ b/sdk/identity/identity/test/manual/package.json @@ -19,7 +19,7 @@ }, "devDependencies": { "@types/express": "^4.16.0", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/react": "^16.8.24", "@types/react-dom": "^16.8.5", "@types/webpack": "^4.4.13", diff --git a/sdk/iot/iot-modelsrepository/package.json b/sdk/iot/iot-modelsrepository/package.json index 92d32575096c..14c062ff34fe 100644 --- a/sdk/iot/iot-modelsrepository/package.json +++ b/sdk/iot/iot-modelsrepository/package.json @@ -48,7 +48,7 @@ ], "repository": "github:Azure/azure-sdk-for-js", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "keywords": [ "azure", @@ -84,7 +84,7 @@ "@rollup/plugin-replace": "^2.2.0", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/sinon": "^9.0.4", "chai": "^4.2.0", "cross-env": "^7.0.2", diff --git a/sdk/keyvault/keyvault-admin/CHANGELOG.md b/sdk/keyvault/keyvault-admin/CHANGELOG.md index f8152d5d14fd..975f8c8d6afa 100644 --- a/sdk/keyvault/keyvault-admin/CHANGELOG.md +++ b/sdk/keyvault/keyvault-admin/CHANGELOG.md @@ -3,6 +3,7 @@ ## 4.1.0-beta.1 (Unreleased) ### Features Added +- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ### Breaking Changes diff --git a/sdk/keyvault/keyvault-admin/package.json b/sdk/keyvault/keyvault-admin/package.json index 21f52957fb86..8fbb129a772b 100644 --- a/sdk/keyvault/keyvault-admin/package.json +++ b/sdk/keyvault/keyvault-admin/package.json @@ -27,7 +27,7 @@ "module": "dist-esm/keyvault-admin/src/index.js", "types": "./types/keyvault-admin.d.ts", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "files": [ "types/keyvault-admin.d.ts", @@ -133,7 +133,7 @@ "@types/chai": "^4.1.6", "@types/chai-as-promised": "^7.1.0", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/sinon": "^9.0.4", "assert": "^1.4.1", "chai": "^4.2.0", diff --git a/sdk/keyvault/keyvault-certificates/CHANGELOG.md b/sdk/keyvault/keyvault-certificates/CHANGELOG.md index a8d2a9c879b0..1be1f8c699b7 100644 --- a/sdk/keyvault/keyvault-certificates/CHANGELOG.md +++ b/sdk/keyvault/keyvault-certificates/CHANGELOG.md @@ -3,6 +3,7 @@ ## 4.3.0-beta.1 (Unreleased) ### Features Added +- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ### Breaking Changes diff --git a/sdk/keyvault/keyvault-certificates/package.json b/sdk/keyvault/keyvault-certificates/package.json index 1ede6aa87f7b..8aa10f61ccc7 100644 --- a/sdk/keyvault/keyvault-certificates/package.json +++ b/sdk/keyvault/keyvault-certificates/package.json @@ -23,7 +23,7 @@ "module": "dist-esm/keyvault-certificates/src/index.js", "types": "./types/keyvault-certificates.d.ts", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "files": [ "types/keyvault-certificates.d.ts", @@ -129,7 +129,7 @@ "@rollup/plugin-replace": "^2.2.0", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/query-string": "6.2.0", "@types/sinon": "^9.0.4", "assert": "^1.4.1", diff --git a/sdk/keyvault/keyvault-common/package.json b/sdk/keyvault/keyvault-common/package.json index c69c1f6235d8..c28ba7ff8c99 100644 --- a/sdk/keyvault/keyvault-common/package.json +++ b/sdk/keyvault/keyvault-common/package.json @@ -23,7 +23,7 @@ "module": "dist-esm/index.js", "types": "./types/index.d.ts", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "scripts": { "audit": "echo skipped", diff --git a/sdk/keyvault/keyvault-keys/CHANGELOG.md b/sdk/keyvault/keyvault-keys/CHANGELOG.md index a69838d159b0..1dea91a4609f 100644 --- a/sdk/keyvault/keyvault-keys/CHANGELOG.md +++ b/sdk/keyvault/keyvault-keys/CHANGELOG.md @@ -4,6 +4,7 @@ ### Features Added +- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. - Added support for `KeyClient.getRandomBytes` which, when connected to a managed HSM, can be used to generate a byte array of a given length with random values. - Updated the service version to 7.3-preview. diff --git a/sdk/keyvault/keyvault-keys/package.json b/sdk/keyvault/keyvault-keys/package.json index dbee46ace3b4..0b0745e90c18 100644 --- a/sdk/keyvault/keyvault-keys/package.json +++ b/sdk/keyvault/keyvault-keys/package.json @@ -23,7 +23,7 @@ "module": "dist-esm/keyvault-keys/src/index.js", "types": "./types/keyvault-keys.d.ts", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "files": [ "types/keyvault-keys.d.ts", @@ -126,7 +126,7 @@ "@types/chai": "^4.1.6", "@types/chai-as-promised": "^7.1.0", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/query-string": "6.2.0", "@types/sinon": "^9.0.4", "assert": "^1.4.1", diff --git a/sdk/keyvault/keyvault-secrets/CHANGELOG.md b/sdk/keyvault/keyvault-secrets/CHANGELOG.md index 7a9d7523978c..ed24c018622c 100644 --- a/sdk/keyvault/keyvault-secrets/CHANGELOG.md +++ b/sdk/keyvault/keyvault-secrets/CHANGELOG.md @@ -3,6 +3,7 @@ ## 4.3.0-beta.1 (Unreleased) ### Features Added +- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ### Breaking Changes diff --git a/sdk/keyvault/keyvault-secrets/package.json b/sdk/keyvault/keyvault-secrets/package.json index 827e82c783cb..df55bb8673fa 100644 --- a/sdk/keyvault/keyvault-secrets/package.json +++ b/sdk/keyvault/keyvault-secrets/package.json @@ -23,7 +23,7 @@ "module": "dist-esm/keyvault-secrets/src/index.js", "types": "./types/keyvault-secrets.d.ts", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "files": [ "types/keyvault-secrets.d.ts", @@ -124,7 +124,7 @@ "@rollup/plugin-replace": "^2.2.0", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/query-string": "6.2.0", "@types/sinon": "^9.0.4", "assert": "^1.4.1", diff --git a/sdk/metricsadvisor/ai-metrics-advisor/package.json b/sdk/metricsadvisor/ai-metrics-advisor/package.json index ad3d8fd11c56..b2a4679fc19a 100644 --- a/sdk/metricsadvisor/ai-metrics-advisor/package.json +++ b/sdk/metricsadvisor/ai-metrics-advisor/package.json @@ -18,7 +18,7 @@ "browser": {}, "types": "./types/ai-metrics-advisor.d.ts", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/metricsadvisor/ai-metrics-advisor/README.md", "repository": "github:Azure/azure-sdk-for-js", @@ -97,7 +97,7 @@ "@microsoft/api-extractor": "7.7.11", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/sinon": "^9.0.4", "chai": "^4.2.0", "chai-as-promised": "^7.1.1", diff --git a/sdk/metricsadvisor/perf-tests/ai-metrics-advisor/package.json b/sdk/metricsadvisor/perf-tests/ai-metrics-advisor/package.json index 72174e8cfbec..8e4c1c5142d3 100644 --- a/sdk/metricsadvisor/perf-tests/ai-metrics-advisor/package.json +++ b/sdk/metricsadvisor/perf-tests/ai-metrics-advisor/package.json @@ -12,7 +12,7 @@ "dotenv": "^8.2.0" }, "devDependencies": { - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "eslint": "^7.15.0", "prettier": "^1.16.4", "rimraf": "^3.0.0", diff --git a/sdk/mixedreality/mixedreality-authentication/package.json b/sdk/mixedreality/mixedreality-authentication/package.json index 347b88a97b62..0686b4a5be8a 100644 --- a/sdk/mixedreality/mixedreality-authentication/package.json +++ b/sdk/mixedreality/mixedreality-authentication/package.json @@ -50,7 +50,7 @@ "directory": "sdk/mixedreality/mixedreality-authentication" }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "keywords": [ "azure", @@ -81,7 +81,7 @@ "@types/chai": "^4.1.6", "@types/chai-as-promised": "^7.1.0", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "chai": "^4.2.0", "chai-as-promised": "^7.1.1", "cross-env": "^7.0.2", diff --git a/sdk/monitor/monitor-opentelemetry-exporter/.eslintrc.json b/sdk/monitor/monitor-opentelemetry-exporter/.eslintrc.json index 49ba262b614f..c0a591d8199c 100644 --- a/sdk/monitor/monitor-opentelemetry-exporter/.eslintrc.json +++ b/sdk/monitor/monitor-opentelemetry-exporter/.eslintrc.json @@ -11,13 +11,17 @@ "plugin:@typescript-eslint/recommended-requiring-type-checking" ], "rules": { - "no-underscore-dangle": ["error", { "allowAfterThis": true }], - "node/no-unsupported-features/es-syntax": ["error", { "ignores": ["modules"] }], - // OpenTelemetry requires a minimum node version of 8.5.0 - // https://github.com/open-telemetry/opentelemetry-js#node-support - "@azure/azure-sdk/ts-package-json-engine-is-present": [ + "no-underscore-dangle": [ "error", - { "nodeVersionOverride": ">=8.5.0" } + { + "allowAfterThis": true + } + ], + "node/no-unsupported-features/es-syntax": [ + "error", + { + "ignores": ["modules"] + } ] } } diff --git a/sdk/monitor/monitor-opentelemetry-exporter/package.json b/sdk/monitor/monitor-opentelemetry-exporter/package.json index 9e34d67532cb..19acb23ae49d 100644 --- a/sdk/monitor/monitor-opentelemetry-exporter/package.json +++ b/sdk/monitor/monitor-opentelemetry-exporter/package.json @@ -39,7 +39,7 @@ "docs": "typedoc --excludePrivate --excludeNotExported --excludeExternals --stripInternal --mode file --out ./dist/docs ./src" }, "engines": { - "node": ">=8.5.0" + "node": ">=12.0.0" }, "files": [ "dist-esm/src/", @@ -78,7 +78,7 @@ "@azure/eslint-plugin-azure-sdk": "^3.0.0", "@microsoft/api-extractor": "7.7.11", "@types/mocha": "^7.0.2", - "@types/node": "^10.0.0", + "@types/node": "^12.0.0", "eslint": "^7.15.0", "eslint-plugin-node": "^11.1.0", "execa": "^3.3.0", diff --git a/sdk/monitor/monitor-opentelemetry-exporter/samples/@azure/storage-blob/javascript/package.json b/sdk/monitor/monitor-opentelemetry-exporter/samples/@azure/storage-blob/javascript/package.json index 92f4d1017a94..0bcea3eeb7f2 100644 --- a/sdk/monitor/monitor-opentelemetry-exporter/samples/@azure/storage-blob/javascript/package.json +++ b/sdk/monitor/monitor-opentelemetry-exporter/samples/@azure/storage-blob/javascript/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "description": "Azure Storage Blob client library samples for TypeScript", "engine": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "repository": { "type": "git", diff --git a/sdk/monitor/monitor-opentelemetry-exporter/samples/@azure/storage-blob/typescript/package.json b/sdk/monitor/monitor-opentelemetry-exporter/samples/@azure/storage-blob/typescript/package.json index 0c162135647a..401b3354f4c8 100644 --- a/sdk/monitor/monitor-opentelemetry-exporter/samples/@azure/storage-blob/typescript/package.json +++ b/sdk/monitor/monitor-opentelemetry-exporter/samples/@azure/storage-blob/typescript/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "description": "Azure Storage Blob client library samples for TypeScript", "engine": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "scripts": { "build": "tsc -p ./tsconfig.json", diff --git a/sdk/monitor/monitor-query/package.json b/sdk/monitor/monitor-query/package.json index fdb263e316b2..2821f9bc2c51 100644 --- a/sdk/monitor/monitor-query/package.json +++ b/sdk/monitor/monitor-query/package.json @@ -82,7 +82,7 @@ ], "repository": "github:Azure/azure-sdk-for-js", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "keywords": [ "azure", @@ -117,7 +117,7 @@ "@types/chai-as-promised": "^7.1.0", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "chai-as-promised": "^7.1.1", "chai": "^4.2.0", "cross-env": "^7.0.2", diff --git a/sdk/purview/purview-catalog-rest/package.json b/sdk/purview/purview-catalog-rest/package.json index 4ceda593c3db..577c3c94d225 100644 --- a/sdk/purview/purview-catalog-rest/package.json +++ b/sdk/purview/purview-catalog-rest/package.json @@ -29,7 +29,7 @@ "LICENSE" ], "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "//metadata": { "constantPaths": [ @@ -97,7 +97,7 @@ "@microsoft/api-extractor": "7.13.2", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "chai": "^4.2.0", "cross-env": "^7.0.2", "dotenv": "^8.2.0", diff --git a/sdk/purview/purview-scanning-rest/package.json b/sdk/purview/purview-scanning-rest/package.json index dd3258b10eaa..95300dbba8e7 100644 --- a/sdk/purview/purview-scanning-rest/package.json +++ b/sdk/purview/purview-scanning-rest/package.json @@ -37,7 +37,7 @@ ] }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "//sampleConfiguration": { "productName": "Azure Purview Scanning rest", @@ -97,7 +97,7 @@ "@microsoft/api-extractor": "7.13.2", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "chai": "^4.2.0", "cross-env": "^7.0.2", "dotenv": "^8.2.0", diff --git a/sdk/quantum/quantum-jobs/package.json b/sdk/quantum/quantum-jobs/package.json index fbc21fdba9d5..ce7d0c461291 100644 --- a/sdk/quantum/quantum-jobs/package.json +++ b/sdk/quantum/quantum-jobs/package.json @@ -9,7 +9,7 @@ "module": "dist-esm/src/index.js", "types": "./types/latest/quantum-jobs.d.ts", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "scripts": { "audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit", @@ -83,7 +83,7 @@ "@rollup/plugin-replace": "^2.2.0", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/sinon": "^9.0.4", "chai": "^4.2.0", "cross-env": "^7.0.2", diff --git a/sdk/schemaregistry/schema-registry-avro/package.json b/sdk/schemaregistry/schema-registry-avro/package.json index e43e23235cbb..803a745ad124 100644 --- a/sdk/schemaregistry/schema-registry-avro/package.json +++ b/sdk/schemaregistry/schema-registry-avro/package.json @@ -43,7 +43,7 @@ ], "repository": "github:Azure/azure-sdk-for-js", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "keywords": [ "azure", @@ -94,7 +94,7 @@ "@types/chai": "^4.1.6", "@types/chai-as-promised": "^7.1.0", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "chai": "^4.2.0", "chai-as-promised": "^7.1.1", "cross-env": "^7.0.2", diff --git a/sdk/schemaregistry/schema-registry/package.json b/sdk/schemaregistry/schema-registry/package.json index fc2c686a855c..1b6f9697b5b3 100644 --- a/sdk/schemaregistry/schema-registry/package.json +++ b/sdk/schemaregistry/schema-registry/package.json @@ -70,7 +70,7 @@ }, "repository": "github:Azure/azure-sdk-for-js", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "keywords": [ "azure", @@ -105,7 +105,7 @@ "@types/chai": "^4.1.6", "@types/chai-as-promised": "^7.1.0", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "chai": "^4.2.0", "chai-as-promised": "^7.1.1", "cross-env": "^7.0.2", diff --git a/sdk/search/perf-tests/search-documents/package.json b/sdk/search/perf-tests/search-documents/package.json index ecb8b07a7f43..a19b35f4f27b 100644 --- a/sdk/search/perf-tests/search-documents/package.json +++ b/sdk/search/perf-tests/search-documents/package.json @@ -13,7 +13,7 @@ "dotenv": "^8.2.0" }, "devDependencies": { - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "eslint": "^7.15.0", "prettier": "^1.16.4", "rimraf": "^3.0.0", diff --git a/sdk/search/search-documents/CHANGELOG.md b/sdk/search/search-documents/CHANGELOG.md index b3d858a06470..8ba5c4e9994a 100644 --- a/sdk/search/search-documents/CHANGELOG.md +++ b/sdk/search/search-documents/CHANGELOG.md @@ -2,6 +2,15 @@ ## 11.3.0-beta.1 (Unreleased) +### Features Added +- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. + +### Breaking Changes + +### Key Bugs Fixed + +### Fixed + ## 11.2.0 (2021-06-08) The list of changes in 11.2.0 since 11.1.0 & 11.2.0-beta.2 are provided below: diff --git a/sdk/search/search-documents/package.json b/sdk/search/search-documents/package.json index cd3e9b5cb0b1..a660f14cd479 100644 --- a/sdk/search/search-documents/package.json +++ b/sdk/search/search-documents/package.json @@ -70,7 +70,7 @@ "url": "https://github.com/Azure/azure-sdk-for-js/issues" }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/search/search-documents/", "sideEffects": false, @@ -93,7 +93,7 @@ "@rollup/plugin-replace": "^2.2.0", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/sinon": "^9.0.4", "chai": "^4.2.0", "cross-env": "^7.0.2", diff --git a/sdk/search/search-documents/samples/javascript/package.json b/sdk/search/search-documents/samples/javascript/package.json index df8201557344..b44338ba5a52 100644 --- a/sdk/search/search-documents/samples/javascript/package.json +++ b/sdk/search/search-documents/samples/javascript/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "description": "Azure Cognitive Search client library samples for JavaScript", "engine": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "repository": { "type": "git", diff --git a/sdk/search/search-documents/samples/typescript/package.json b/sdk/search/search-documents/samples/typescript/package.json index 8f1d5358a31d..114748f2dbe1 100644 --- a/sdk/search/search-documents/samples/typescript/package.json +++ b/sdk/search/search-documents/samples/typescript/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "description": "Azure Cognitive Search client library samples for TypeScript", "engine": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "scripts": { "build": "tsc", @@ -33,7 +33,7 @@ "dotenv": "^8.2.0" }, "devDependencies": { - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "rimraf": "^3.0.0", "typescript": "~3.7.5" } diff --git a/sdk/servicebus/service-bus/CHANGELOG.md b/sdk/servicebus/service-bus/CHANGELOG.md index 5271d0eeec11..1d22f6cf2102 100644 --- a/sdk/servicebus/service-bus/CHANGELOG.md +++ b/sdk/servicebus/service-bus/CHANGELOG.md @@ -1,8 +1,9 @@ # Release History -## 7.2.1 (Unreleased) +## 7.3.0 (Unreleased) ### Features Added +- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ### Breaking Changes diff --git a/sdk/servicebus/service-bus/package.json b/sdk/servicebus/service-bus/package.json index 7f2e173f621a..bd84a044cbef 100644 --- a/sdk/servicebus/service-bus/package.json +++ b/sdk/servicebus/service-bus/package.json @@ -2,7 +2,7 @@ "name": "@azure/service-bus", "sdk-type": "client", "author": "Microsoft Corporation", - "version": "7.2.1", + "version": "7.3.0", "license": "MIT", "description": "Azure Service Bus SDK for JavaScript", "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/servicebus/service-bus/", @@ -34,7 +34,7 @@ } }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "files": [ "dist/", @@ -145,7 +145,7 @@ "@types/debug": "^4.1.4", "@types/glob": "^7.1.1", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/ws": "^7.2.4", "assert": "^1.4.1", "chai": "^4.2.0", diff --git a/sdk/servicebus/service-bus/src/util/constants.ts b/sdk/servicebus/service-bus/src/util/constants.ts index 8f843ccba7ff..1ba6f3c83e0f 100644 --- a/sdk/servicebus/service-bus/src/util/constants.ts +++ b/sdk/servicebus/service-bus/src/util/constants.ts @@ -6,7 +6,7 @@ */ export const packageJsonInfo = { name: "@azure/service-bus", - version: "7.2.1" + version: "7.3.0" }; /** diff --git a/sdk/storage/perf-tests/storage-blob-track-1/package.json b/sdk/storage/perf-tests/storage-blob-track-1/package.json index 32b433a153cc..9e167b72441f 100644 --- a/sdk/storage/perf-tests/storage-blob-track-1/package.json +++ b/sdk/storage/perf-tests/storage-blob-track-1/package.json @@ -9,7 +9,7 @@ "devDependencies": { "@azure/storage-blob": "^10.5.0", "@azure/test-utils-perfstress": "file:../../../test-utils/perfstress/azure-test-utils-perfstress-1.0.0.tgz", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/uuid": "^8.0.0", "dotenv": "^8.2.0", "uuid": "^8.3.0", diff --git a/sdk/storage/perf-tests/storage-blob/package.json b/sdk/storage/perf-tests/storage-blob/package.json index 76c3927c502e..ece1e2a6a8c2 100644 --- a/sdk/storage/perf-tests/storage-blob/package.json +++ b/sdk/storage/perf-tests/storage-blob/package.json @@ -16,7 +16,7 @@ }, "devDependencies": { "@types/uuid": "^8.0.0", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/node-fetch": "^2.5.0", "eslint": "^7.15.0", "node-fetch": "^2.6.0", diff --git a/sdk/storage/perf-tests/storage-file-datalake/package.json b/sdk/storage/perf-tests/storage-file-datalake/package.json index 55c95356d3a2..b907717fd10b 100644 --- a/sdk/storage/perf-tests/storage-file-datalake/package.json +++ b/sdk/storage/perf-tests/storage-file-datalake/package.json @@ -14,7 +14,7 @@ }, "devDependencies": { "@types/uuid": "^8.0.0", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "eslint": "^7.15.0", "prettier": "^1.16.4", "rimraf": "^3.0.0", diff --git a/sdk/storage/perf-tests/storage-file-share-track-1/package.json b/sdk/storage/perf-tests/storage-file-share-track-1/package.json index 403f71a34de0..096fa9a26b15 100644 --- a/sdk/storage/perf-tests/storage-file-share-track-1/package.json +++ b/sdk/storage/perf-tests/storage-file-share-track-1/package.json @@ -10,7 +10,7 @@ "@azure/storage-file": "^10.3.0", "@azure/test-utils-perfstress": "file:../../../test-utils/perfstress/azure-test-utils-perfstress-1.0.0.tgz", "@types/uuid": "^8.0.0", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "dotenv": "^8.2.0", "uuid": "^8.3.0", "rimraf": "3.0.2", diff --git a/sdk/storage/perf-tests/storage-file-share/package.json b/sdk/storage/perf-tests/storage-file-share/package.json index bc5d67585d08..0582231fbe53 100644 --- a/sdk/storage/perf-tests/storage-file-share/package.json +++ b/sdk/storage/perf-tests/storage-file-share/package.json @@ -14,7 +14,7 @@ }, "devDependencies": { "@types/uuid": "^8.0.0", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "eslint": "^7.15.0", "prettier": "^1.16.4", "rimraf": "^3.0.0", diff --git a/sdk/storage/storage-blob-changefeed/package.json b/sdk/storage/storage-blob-changefeed/package.json index 071b2beb6df0..ea1fbb8e1dcd 100644 --- a/sdk/storage/storage-blob-changefeed/package.json +++ b/sdk/storage/storage-blob-changefeed/package.json @@ -21,7 +21,7 @@ } }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "scripts": { "audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit", @@ -112,7 +112,7 @@ "@rollup/plugin-multi-entry": "^3.0.0", "@rollup/plugin-replace": "^2.2.0", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/sinon": "^9.0.4", "assert": "^1.4.1", "cross-env": "^7.0.2", diff --git a/sdk/storage/storage-blob-changefeed/samples/javascript/package.json b/sdk/storage/storage-blob-changefeed/samples/javascript/package.json index a49640416fbb..c68b512037c5 100644 --- a/sdk/storage/storage-blob-changefeed/samples/javascript/package.json +++ b/sdk/storage/storage-blob-changefeed/samples/javascript/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "description": "Azure Storage Blob Change Feed client library samples for JavaScript", "engine": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "repository": { "type": "git", diff --git a/sdk/storage/storage-blob-changefeed/samples/typescript/package.json b/sdk/storage/storage-blob-changefeed/samples/typescript/package.json index 9cb434835a36..63907ee0387d 100644 --- a/sdk/storage/storage-blob-changefeed/samples/typescript/package.json +++ b/sdk/storage/storage-blob-changefeed/samples/typescript/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "description": "Azure Storage Blob Change Feed client library samples for TypeScript", "engine": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "scripts": { "build": "tsc", @@ -35,7 +35,7 @@ "dotenv": "^8.2.0" }, "devDependencies": { - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "rimraf": "^3.0.0", "typescript": "~3.6.4" } diff --git a/sdk/storage/storage-blob/CHANGELOG.md b/sdk/storage/storage-blob/CHANGELOG.md index 7e2526d0c030..21c10dbdf189 100644 --- a/sdk/storage/storage-blob/CHANGELOG.md +++ b/sdk/storage/storage-blob/CHANGELOG.md @@ -4,6 +4,7 @@ ### Features Added +- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. - Changed TS compilation target to ES2017 in order to produce smaller bundles and use more native platform features ### Breaking Changes diff --git a/sdk/storage/storage-blob/package.json b/sdk/storage/storage-blob/package.json index afa6b0cd040f..d2ea835c2bb8 100644 --- a/sdk/storage/storage-blob/package.json +++ b/sdk/storage/storage-blob/package.json @@ -29,7 +29,7 @@ } }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "scripts": { "audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit", @@ -147,7 +147,7 @@ "@rollup/plugin-replace": "^2.2.0", "@rollup/plugin-json": "^4.0.0", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/node-fetch": "^2.5.0", "assert": "^1.4.1", "cross-env": "^7.0.2", diff --git a/sdk/storage/storage-blob/samples/javascript/package.json b/sdk/storage/storage-blob/samples/javascript/package.json index 97a8034d51ae..8d8c31430730 100644 --- a/sdk/storage/storage-blob/samples/javascript/package.json +++ b/sdk/storage/storage-blob/samples/javascript/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "description": "Azure Storage Blob client library samples for JavaScript", "engine": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "repository": { "type": "git", diff --git a/sdk/storage/storage-blob/samples/typescript/package.json b/sdk/storage/storage-blob/samples/typescript/package.json index 19cfb1d77186..0944e9d62cad 100644 --- a/sdk/storage/storage-blob/samples/typescript/package.json +++ b/sdk/storage/storage-blob/samples/typescript/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "description": "Azure Storage Blob client library samples for TypeScript", "engine": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "scripts": { "build": "tsc", @@ -35,7 +35,7 @@ "dotenv": "^8.2.0" }, "devDependencies": { - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "rimraf": "^3.0.0", "typescript": "~3.6.4" } diff --git a/sdk/storage/storage-file-datalake/CHANGELOG.md b/sdk/storage/storage-file-datalake/CHANGELOG.md index eb934587f838..ce3b31de1401 100644 --- a/sdk/storage/storage-file-datalake/CHANGELOG.md +++ b/sdk/storage/storage-file-datalake/CHANGELOG.md @@ -3,7 +3,7 @@ ## 12.6.0 (Unreleased) ### Features Added - +- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. - Changed TS compilation target to ES2017 in order to produce smaller bundles and use more native platform features ### Breaking Changes diff --git a/sdk/storage/storage-file-datalake/package.json b/sdk/storage/storage-file-datalake/package.json index 150f37c0a70b..bc44ea94dd05 100644 --- a/sdk/storage/storage-file-datalake/package.json +++ b/sdk/storage/storage-file-datalake/package.json @@ -25,7 +25,7 @@ "process": false }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "scripts": { "audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit", @@ -128,7 +128,7 @@ "@rollup/plugin-node-resolve": "^8.0.0", "@rollup/plugin-replace": "^2.2.0", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/query-string": "6.2.0", "assert": "^1.4.1", "cross-env": "^7.0.2", diff --git a/sdk/storage/storage-file-datalake/samples/javascript/package.json b/sdk/storage/storage-file-datalake/samples/javascript/package.json index 618bca80ff87..d1250eee8c38 100644 --- a/sdk/storage/storage-file-datalake/samples/javascript/package.json +++ b/sdk/storage/storage-file-datalake/samples/javascript/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "description": "Azure Data Lake Storage client library samples for JavaScript", "engine": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "repository": { "type": "git", diff --git a/sdk/storage/storage-file-datalake/samples/typescript/package.json b/sdk/storage/storage-file-datalake/samples/typescript/package.json index 0d12c993ddcb..98ee09a1370d 100644 --- a/sdk/storage/storage-file-datalake/samples/typescript/package.json +++ b/sdk/storage/storage-file-datalake/samples/typescript/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "description": "Azure Data Lake Storage client library samples for TypeScript", "engine": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "scripts": { "build": "tsc", @@ -35,7 +35,7 @@ "dotenv": "^8.2.0" }, "devDependencies": { - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "rimraf": "^3.0.0", "typescript": "~3.6.4" } diff --git a/sdk/storage/storage-file-share/CHANGELOG.md b/sdk/storage/storage-file-share/CHANGELOG.md index ab65003604cf..f388e2c465d7 100644 --- a/sdk/storage/storage-file-share/CHANGELOG.md +++ b/sdk/storage/storage-file-share/CHANGELOG.md @@ -3,7 +3,7 @@ ## 12.7.0 (Unreleased) ### Features Added - +- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. - Changed TS compilation target to ES2017 in order to produce smaller bundles and use more native platform features ### Breaking Changes diff --git a/sdk/storage/storage-file-share/package.json b/sdk/storage/storage-file-share/package.json index 81e665939c7f..9845c869b0a4 100644 --- a/sdk/storage/storage-file-share/package.json +++ b/sdk/storage/storage-file-share/package.json @@ -24,7 +24,7 @@ } }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "scripts": { "audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit", @@ -133,7 +133,7 @@ "@rollup/plugin-node-resolve": "^8.0.0", "@rollup/plugin-replace": "^2.2.0", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "assert": "^1.4.1", "cross-env": "^7.0.2", "dotenv": "^8.2.0", diff --git a/sdk/storage/storage-file-share/samples/javascript/package.json b/sdk/storage/storage-file-share/samples/javascript/package.json index 08f0c6015338..4efd096c977e 100644 --- a/sdk/storage/storage-file-share/samples/javascript/package.json +++ b/sdk/storage/storage-file-share/samples/javascript/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "description": "Azure Storage File Share client library samples for TypeScript", "engine": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "repository": { "type": "git", diff --git a/sdk/storage/storage-file-share/samples/typescript/package.json b/sdk/storage/storage-file-share/samples/typescript/package.json index eb66b8eecf1a..15cf25ed57fc 100644 --- a/sdk/storage/storage-file-share/samples/typescript/package.json +++ b/sdk/storage/storage-file-share/samples/typescript/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "description": "Azure Storage File Share client library samples for TypeScript", "engine": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "scripts": { "build": "tsc", @@ -34,7 +34,7 @@ "dotenv": "^8.2.0" }, "devDependencies": { - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "rimraf": "^3.0.0", "typescript": "~3.6.4" } diff --git a/sdk/storage/storage-internal-avro/package.json b/sdk/storage/storage-internal-avro/package.json index 41b1c9c53615..64af5919e0ba 100644 --- a/sdk/storage/storage-internal-avro/package.json +++ b/sdk/storage/storage-internal-avro/package.json @@ -27,7 +27,7 @@ }, "types": "./types/latest/storage-internal-avro.d.ts", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "files": [ "dist/", @@ -76,7 +76,7 @@ "@rollup/plugin-multi-entry": "^3.0.0", "@rollup/plugin-replace": "^2.2.0", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "assert": "^1.4.1", "dotenv": "^8.2.0", "downlevel-dts": "~0.4.0", diff --git a/sdk/storage/storage-queue/CHANGELOG.md b/sdk/storage/storage-queue/CHANGELOG.md index d043c6fd2ef9..6a44592cc8db 100644 --- a/sdk/storage/storage-queue/CHANGELOG.md +++ b/sdk/storage/storage-queue/CHANGELOG.md @@ -3,7 +3,7 @@ ## 12.6.0 (Unreleased) ### Features Added - +- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. - Changed TS compilation target to ES2017 in order to produce smaller bundles and use more native platform features ### Breaking Changes diff --git a/sdk/storage/storage-queue/package.json b/sdk/storage/storage-queue/package.json index adf059ae409a..c55d4f5c124b 100644 --- a/sdk/storage/storage-queue/package.json +++ b/sdk/storage/storage-queue/package.json @@ -21,7 +21,7 @@ } }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "scripts": { "audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit", @@ -127,7 +127,7 @@ "@rollup/plugin-node-resolve": "^8.0.0", "@rollup/plugin-replace": "^2.2.0", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "assert": "^1.4.1", "cross-env": "^7.0.2", "dotenv": "^8.2.0", diff --git a/sdk/storage/storage-queue/samples/javascript/package.json b/sdk/storage/storage-queue/samples/javascript/package.json index 871cc5b1421d..93d11d47edb3 100644 --- a/sdk/storage/storage-queue/samples/javascript/package.json +++ b/sdk/storage/storage-queue/samples/javascript/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "description": "Azure Storage Queue client library samples for TypeScript", "engine": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "repository": { "type": "git", diff --git a/sdk/storage/storage-queue/samples/typescript/package.json b/sdk/storage/storage-queue/samples/typescript/package.json index 7e312f3e38bf..85be9a9b6315 100644 --- a/sdk/storage/storage-queue/samples/typescript/package.json +++ b/sdk/storage/storage-queue/samples/typescript/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "description": "Azure Storage Queue client library samples for TypeScript", "engine": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "scripts": { "build": "tsc", @@ -34,7 +34,7 @@ "dotenv": "^8.2.0" }, "devDependencies": { - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "rimraf": "^3.0.0", "typescript": "~3.6.4" } diff --git a/sdk/synapse/synapse-access-control/package.json b/sdk/synapse/synapse-access-control/package.json index b1cc04915140..85a32c7ddcda 100644 --- a/sdk/synapse/synapse-access-control/package.json +++ b/sdk/synapse/synapse-access-control/package.json @@ -22,7 +22,7 @@ ], "license": "MIT", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "main": "./dist/index.js", "module": "./dist-esm/src/index.js", diff --git a/sdk/synapse/synapse-artifacts/package.json b/sdk/synapse/synapse-artifacts/package.json index dc008cc3db2a..fdcf31556ff0 100644 --- a/sdk/synapse/synapse-artifacts/package.json +++ b/sdk/synapse/synapse-artifacts/package.json @@ -26,7 +26,7 @@ ], "license": "MIT", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "main": "./dist/index.js", "module": "./dist-esm/src/index.js", @@ -63,7 +63,7 @@ "rollup": "^1.16.3", "uglify-js": "^3.4.9", "@types/chai-as-promised": "^7.1.0", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/sinon": "^9.0.4", "chai-as-promised": "^7.1.1", "cross-env": "^7.0.2", diff --git a/sdk/synapse/synapse-managed-private-endpoints/package.json b/sdk/synapse/synapse-managed-private-endpoints/package.json index bc21f6916746..0930b69802a7 100644 --- a/sdk/synapse/synapse-managed-private-endpoints/package.json +++ b/sdk/synapse/synapse-managed-private-endpoints/package.json @@ -22,7 +22,7 @@ ], "license": "MIT", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "main": "./dist/index.js", "module": "./dist-esm/src/index.js", diff --git a/sdk/synapse/synapse-monitoring/package.json b/sdk/synapse/synapse-monitoring/package.json index 86354b19127f..d849be8589b5 100644 --- a/sdk/synapse/synapse-monitoring/package.json +++ b/sdk/synapse/synapse-monitoring/package.json @@ -21,7 +21,7 @@ ], "license": "MIT", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "main": "./dist/index.js", "module": "./dist-esm/src/index.js", diff --git a/sdk/synapse/synapse-spark/package.json b/sdk/synapse/synapse-spark/package.json index 780b9d46ff1f..a64b229090ed 100644 --- a/sdk/synapse/synapse-spark/package.json +++ b/sdk/synapse/synapse-spark/package.json @@ -21,7 +21,7 @@ ], "license": "MIT", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "main": "./dist/index.js", "module": "./dist-esm/src/index.js", diff --git a/sdk/tables/data-tables/CHANGELOG.md b/sdk/tables/data-tables/CHANGELOG.md index bd383a3c5f7e..c3455fef5fc2 100644 --- a/sdk/tables/data-tables/CHANGELOG.md +++ b/sdk/tables/data-tables/CHANGELOG.md @@ -9,7 +9,7 @@ Thank you to our developer community members who helped to make the Azure Tables - Eros Stein _([GitHub](https://github.com/eestein))_ ### Features Added - +- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. - Support for Azure Active Directory (AAD) authorization has been added to `TableServiceClient` and `TableClient`. This enables use of `TokenCredential` credentials. Note: Only Azure Storage API endpoints currently support AAD authorization. [#15852](https://github.com/Azure/azure-sdk-for-js/pull/15852) ### Fixed diff --git a/sdk/tables/data-tables/package.json b/sdk/tables/data-tables/package.json index cc8659d93f78..f42799e8062e 100644 --- a/sdk/tables/data-tables/package.json +++ b/sdk/tables/data-tables/package.json @@ -71,7 +71,7 @@ "url": "https://github.com/Azure/azure-sdk-for-js/issues" }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "homepage": "https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/tables/data-tables/", "sideEffects": false, @@ -98,7 +98,7 @@ "@rollup/plugin-replace": "^2.2.0", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/sinon": "^9.0.4", "@types/uuid": "^8.0.0", "@azure/eslint-plugin-azure-sdk": "^3.0.0", diff --git a/sdk/template/template/package.json b/sdk/template/template/package.json index 63636ac9ec77..05ca7a1f71cc 100644 --- a/sdk/template/template/package.json +++ b/sdk/template/template/package.json @@ -65,7 +65,7 @@ ], "repository": "github:Azure/azure-sdk-for-js", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "keywords": [ "azure", @@ -96,7 +96,7 @@ "@types/chai": "^4.1.6", "@types/chai-as-promised": "^7.1.0", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "chai": "^4.2.0", "chai-as-promised": "^7.1.1", "cross-env": "^7.0.2", diff --git a/sdk/test-utils/perfstress/package.json b/sdk/test-utils/perfstress/package.json index df285d1bf629..ce4ce55994d9 100644 --- a/sdk/test-utils/perfstress/package.json +++ b/sdk/test-utils/perfstress/package.json @@ -8,7 +8,7 @@ "browser": {}, "types": "./typings/src/index.d.ts", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "scripts": { "audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit", @@ -69,7 +69,7 @@ }, "devDependencies": { "@azure/eslint-plugin-azure-sdk": "^3.0.0", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/node-fetch": "^2.5.0", "eslint": "^7.15.0", "karma": "^6.2.0", diff --git a/sdk/test-utils/recorder/package.json b/sdk/test-utils/recorder/package.json index d40d116beff2..cc97d9bc2473 100644 --- a/sdk/test-utils/recorder/package.json +++ b/sdk/test-utils/recorder/package.json @@ -57,7 +57,7 @@ "url": "https://github.com/Azure/azure-sdk-for-js/issues" }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/test-utils/recorder/", "sideEffects": false, @@ -83,7 +83,7 @@ "@types/md5": "^2.2.0", "@types/mocha": "^7.0.2", "@types/nise": "^1.4.0", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/mock-require": "~2.0.0", "@types/mock-fs": "~4.10.0", "chai": "^4.2.0", diff --git a/sdk/test-utils/test-utils/package.json b/sdk/test-utils/test-utils/package.json index 56b3aa749cf7..190b72870096 100644 --- a/sdk/test-utils/test-utils/package.json +++ b/sdk/test-utils/test-utils/package.json @@ -9,7 +9,7 @@ }, "types": "./types/src/index.d.ts", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "scripts": { "audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit", @@ -66,7 +66,7 @@ "@microsoft/api-extractor": "7.7.11", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/sinon": "^9.0.4", "chai": "^4.2.0", "chai-as-promised": "^7.1.1", diff --git a/sdk/textanalytics/ai-text-analytics/CHANGELOG.md b/sdk/textanalytics/ai-text-analytics/CHANGELOG.md index 17c64ca23997..d1cf02fb45fa 100644 --- a/sdk/textanalytics/ai-text-analytics/CHANGELOG.md +++ b/sdk/textanalytics/ai-text-analytics/CHANGELOG.md @@ -9,7 +9,7 @@ ## 5.1.0-beta.6 (2021-05-18) ### New Features - +- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. - We are now targeting the service's v3.1-preview.5 API as the default instead of v3.1-preview.4. - `beginAnalyzeActions` adds support for analyze sentiment actions. - `disableServiceLogs` parameter is added to most actions in `beginAnalyzeActions` that controls service-side logging. diff --git a/sdk/textanalytics/ai-text-analytics/package.json b/sdk/textanalytics/ai-text-analytics/package.json index 57cd73f5f4ca..fdde9c063cb0 100644 --- a/sdk/textanalytics/ai-text-analytics/package.json +++ b/sdk/textanalytics/ai-text-analytics/package.json @@ -41,7 +41,7 @@ ] }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "//sampleConfiguration": { "productName": "Azure Text Analytics", @@ -109,7 +109,7 @@ "@types/chai": "^4.1.6", "@types/chai-as-promised": "^7.1.0", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/sinon": "^9.0.4", "chai": "^4.2.0", "chai-as-promised": "^7.1.1", diff --git a/sdk/textanalytics/perf-tests/text-analytics/package.json b/sdk/textanalytics/perf-tests/text-analytics/package.json index 8b60250ae8ab..b340f9b976aa 100644 --- a/sdk/textanalytics/perf-tests/text-analytics/package.json +++ b/sdk/textanalytics/perf-tests/text-analytics/package.json @@ -13,7 +13,7 @@ "dotenv": "^8.2.0" }, "devDependencies": { - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "eslint": "^7.15.0", "prettier": "^1.16.4", "rimraf": "^3.0.0", diff --git a/sdk/videoanalyzer/video-analyzer-edge/package.json b/sdk/videoanalyzer/video-analyzer-edge/package.json index 8d596099da21..c30c2bc99421 100644 --- a/sdk/videoanalyzer/video-analyzer-edge/package.json +++ b/sdk/videoanalyzer/video-analyzer-edge/package.json @@ -43,7 +43,7 @@ ], "repository": "github:Azure/azure-sdk-for-js", "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "keywords": [ "azure", @@ -73,7 +73,7 @@ "@types/chai": "^4.1.6", "@types/chai-as-promised": "^7.1.0", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "chai": "^4.2.0", "chai-as-promised": "^7.1.1", "cross-env": "^7.0.2", diff --git a/sdk/videoanalyzer/video-analyzer-edge/samples/javascript/package.json b/sdk/videoanalyzer/video-analyzer-edge/samples/javascript/package.json index 18c90b304316..682d05a795d1 100644 --- a/sdk/videoanalyzer/video-analyzer-edge/samples/javascript/package.json +++ b/sdk/videoanalyzer/video-analyzer-edge/samples/javascript/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "description": "Sample code demonstrating how to invoke modules on lva pipelines in Azure IoT hub", "engine": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "repository": { "type": "git", diff --git a/sdk/videoanalyzer/video-analyzer-edge/samples/typescript/package.json b/sdk/videoanalyzer/video-analyzer-edge/samples/typescript/package.json index cdd247528dae..1d2bcbdb8046 100644 --- a/sdk/videoanalyzer/video-analyzer-edge/samples/typescript/package.json +++ b/sdk/videoanalyzer/video-analyzer-edge/samples/typescript/package.json @@ -4,7 +4,7 @@ "version": "0.1.0", "description": "Azure Video Analyzer library for JavaScript", "engine": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "scripts": { "build": "tsc", @@ -30,7 +30,7 @@ "dotenv": "^8.2.0" }, "devDependencies": { - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "rimraf": "^3.0.0", "typescript": "~3.6.4" } diff --git a/sdk/web-pubsub/web-pubsub-express/package.json b/sdk/web-pubsub/web-pubsub-express/package.json index 99360680a689..5f5a0643648c 100644 --- a/sdk/web-pubsub/web-pubsub-express/package.json +++ b/sdk/web-pubsub/web-pubsub-express/package.json @@ -52,7 +52,7 @@ "url": "https://github.com/Azure/azure-sdk-for-js/issues" }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/search/search/", "sideEffects": false, @@ -75,7 +75,7 @@ "@types/express-serve-static-core": "^4.17.19", "@types/jsonwebtoken": "~8.5.0", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/query-string": "6.2.0", "@types/sinon": "^9.0.4", "assert": "^1.4.1", diff --git a/sdk/web-pubsub/web-pubsub/package.json b/sdk/web-pubsub/web-pubsub/package.json index cd574cd137b2..2ad58d7fe40d 100644 --- a/sdk/web-pubsub/web-pubsub/package.json +++ b/sdk/web-pubsub/web-pubsub/package.json @@ -55,7 +55,7 @@ "url": "https://github.com/Azure/azure-sdk-for-js/issues" }, "engines": { - "node": ">=8.0.0" + "node": ">=12.0.0" }, "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/search/search/", "sideEffects": false, @@ -82,7 +82,7 @@ "@types/chai": "^4.1.6", "@types/jsonwebtoken": "~8.5.0", "@types/mocha": "^7.0.2", - "@types/node": "^8.0.0", + "@types/node": "^12.0.0", "@types/query-string": "6.2.0", "@types/sinon": "^9.0.4", "chai": "^4.2.0", From f854a850e08eca14391a5156ed58710b8151878f Mon Sep 17 00:00:00 2001 From: Ramya Rao Date: Mon, 28 Jun 2021 17:02:10 -0700 Subject: [PATCH 27/49] Update contributing guide to reflect Node.js support (#16057) The watchful eyes of @vishnureddy17 found that we still have reference to Node.js 8 in our Contributing Guide!! This PR fixes that. Related to #7022 --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 29b58094dffe..a1fc0c5e55cb 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -72,7 +72,7 @@ With GitHub's Codespaces, the container already has all prerequisites installed. If you prefer to setup your own environment instead, make sure you have these prerequisites installed and available on your `$PATH`: - Git -- Node 8.x or higher +- Any of the [LTS versions of Node.js](https://nodejs.org/about/releases/) - Rush 5.x - Install / update Rush globally via `npm install -g @microsoft/rush`. - Rush will automatically manage the specific version needed by this repo as long as you have any v5 version installed. From 96998302c3ca2b860552a5cacb660c50c81a21d9 Mon Sep 17 00:00:00 2001 From: Sarangan Rajamanickam Date: Mon, 28 Jun 2021 17:19:34 -0700 Subject: [PATCH 28/49] Update identity to 2.0.0-beta.4 for quantum jobs (#15801) * Update identity to 2.0.0-beta.4 for quantum jobs * Fix CI Errors * Fix CI Errors --- sdk/quantum/quantum-jobs/package.json | 2 +- .../recording_test_get_providers_status.js | 93 +++++++++-- .../recording_test_get_quotas.js | 95 +++++++++-- .../recording_test_quantum_job_lifecycle.js | 151 ++++++++++++++---- 4 files changed, 287 insertions(+), 54 deletions(-) diff --git a/sdk/quantum/quantum-jobs/package.json b/sdk/quantum/quantum-jobs/package.json index ce7d0c461291..683c977b2085 100644 --- a/sdk/quantum/quantum-jobs/package.json +++ b/sdk/quantum/quantum-jobs/package.json @@ -73,7 +73,7 @@ "@azure/storage-blob": "^12.6.0-beta.1", "@azure/dev-tool": "^1.0.0", "@azure/eslint-plugin-azure-sdk": "^3.0.0", - "@azure/identity": "^1.1.0", + "@azure/identity": "2.0.0-beta.4", "@azure/test-utils-recorder": "^1.0.0", "@microsoft/api-extractor": "7.7.11", "@rollup/plugin-commonjs": "11.0.2", diff --git a/sdk/quantum/quantum-jobs/recordings/node/quantum_job_lifecycle/recording_test_get_providers_status.js b/sdk/quantum/quantum-jobs/recordings/node/quantum_job_lifecycle/recording_test_get_providers_status.js index 35c825eb84bf..2b39fb1eaad6 100644 --- a/sdk/quantum/quantum-jobs/recordings/node/quantum_job_lifecycle/recording_test_get_providers_status.js +++ b/sdk/quantum/quantum-jobs/recordings/node/quantum_job_lifecycle/recording_test_get_providers_status.js @@ -1,11 +1,82 @@ let nock = require('nock'); -module.exports.hash = "52b5aa847a5b1c0fe03c25dba6d1c1f5"; +module.exports.hash = "57249747666738457e74defda292e96a"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "response_type=token&grant_type=client_credentials&client_id=ce7bd34e-0000-0000-0000-000000000000&client_secret=clientsecret&scope=https%3A%2F%2Fquantum.microsoft.com%2F.default") + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'ef95b87f-35f3-4a2a-9314-677dab0d8c00', + 'x-ms-ests-server', + '2.1.11829.9 - SCUS ProdSlices', + 'Set-Cookie', + 'fpc=AssPApz8FJdPuwTnV8PLyxA; expires=Thu, 29-Jul-2021 00:02:15 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrdgg_r5erxQ-cPfYk0nRpWcwycq2oStyBdcYbBk7p6rpiinABvOnZaMNUfZMeEMuZWdaTxS5SqUvRiIs5U4WyEmbRVzUQV3dKlbR-46GnPxsZVWWyX2v4lKA-5WMxOvMgDQyGcy0grrE6Y2Pt0QpNSVrOeests1mYIcsfiD3Xi2sgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Tue, 29 Jun 2021 00:02:14 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '5bf7ee08-4237-472f-b5d3-80f2c2390901', + 'x-ms-ests-server', + '2.1.11829.9 - EUS ProdSlices', + 'Set-Cookie', + 'fpc=AssPApz8FJdPuwTnV8PLyxA; expires=Thu, 29-Jul-2021 00:02:15 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrDWrMAXt1VSG1GB4CNd5JchS-b3eIyKevSupCa8OWvulxMC1qg5QaE9MeUFxiyjBWMTGQNVwGilFJJ1L354vajzjSV75oUanex9nEE5gJ1rmpqKLjpBcRl0Oq-jF-AWOIAUBLJNIPmuRmQ_Inh1uEjSYxy8cXKQexnpb63FmPnaUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Tue, 29 Jun 2021 00:02:14 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=ce7bd34e-0000-0000-0000-000000000000&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=2eaa6f26-01fd-452a-8de4-d65b0794f302&client_secret=clientsecret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -22,24 +93,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '38220cee-6aec-4d0f-8d93-508e1c4a2e01', + 'c694b77a-b61d-4bb5-bf7e-846945191501', 'x-ms-ests-server', - '2.1.11444.12 - EUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', 'Set-Cookie', - 'fpc=Au-JfYCfeJ1Os2_0kwujtZ7POrquAQAAANw-rdcOAAAA; expires=Sat, 06-Mar-2021 01:03:25 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AssPApz8FJdPuwTnV8PLyxAH9ySAAQAAAAdabNgOAAAA; expires=Thu, 29-Jul-2021 00:02:15 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Thu, 04 Feb 2021 01:03:25 GMT', + 'Tue, 29 Jun 2021 00:02:14 GMT', 'Content-Length', - '1323' + '1722' ]); nock('https://westus.quantum.azure.com:443', {"encodedQueryParams":true}) .get('/v1.0/subscriptions/677fc922-91d0-4bf6-0000-4274d319a0fa/resourceGroups/resourcegroup/providers/Microsoft.Quantum/workspaces/workspace/providerStatus') - .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef1479759b9ce3f7af4bd5ffc5131fbe8d1475f14d3ba6aaaf3f6a3d147d3755de7cbf6f8322bca6c5294457b4d2df4cf32a7166d565fe46de35e5f98d7c74db15897599bcfb2e532cfca6279313e5f5d64f4d2cd60b3cbbcce2ef29f58e7ebfc4db120f476461f356dd6ae9b97f4f9478f96ebb2fc25a35bf4b9bdcaea6c91b7797d5ee7f9cf3e06e8ae2cf3b2cd17abbcee23305dad09fa0fb1ff9ff51e6fa4f90f1f819ff52edb6cb2fe218f125dfeac77f28b16d36fb88fefff92ef8f3e5ae6efdae7c5f2ad7e","f6ff008e3aacf974040000"], [ + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef1479759b9ce3f7af4bd5ffc5131fbe8d1475f14d3ba6aaaf3f6a3d147d3755de7cbf6f8322bca6c5294457b4d2df4cf32a7166d565fe46de35e5f98d7c74db15897599bcfb2e532cfca6279313e5f5d64f4d2cd60b3cbbcce2ef29f58e7ebfc4db120f476461f356dd6ae9b97f4f9478f96ebb2fc25a35bf4b9bdcaea6c91b7797d5ee7f9cf3e06e8ae2cf3b2cd17abbcee23305dad09fa0fb1ff9ff51e6fa4f90f1f819ff52edb6cb2fe218f125dfeac77f28b16d39ff53e56d50ad35554cb1fde7c35eb49d356d379d6b4c574512ddb7c9ad565f50df7fbfd5ff2fdd147cbfc5dfbbc58bed5cf","fe1ff040bc0d60050000"], [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -54,6 +127,8 @@ nock('https://westus.quantum.azure.com:443', {"encodedQueryParams":true}) 'appId=cid-v1:4d6ac272-7369-45c6-9036-63d733c8519f', 'Strict-Transport-Security', 'max-age=2592000', + 'x-ms-request-id', + '4db9cfa7cf37c742', 'X-Powered-By', 'ASP.NET', 'Set-Cookie', @@ -61,7 +136,7 @@ nock('https://westus.quantum.azure.com:443', {"encodedQueryParams":true}) 'Set-Cookie', 'ARRAffinitySameSite=a80c7c3a42bc29f88c9055a7e2789984b224746994993027ab866c65455cca24;Path=/;HttpOnly;SameSite=None;Secure;Domain=westus.quantum.azure.com', 'Date', - 'Thu, 04 Feb 2021 01:03:24 GMT', + 'Tue, 29 Jun 2021 00:02:16 GMT', 'Connection', 'close' ]); diff --git a/sdk/quantum/quantum-jobs/recordings/node/quantum_job_lifecycle/recording_test_get_quotas.js b/sdk/quantum/quantum-jobs/recordings/node/quantum_job_lifecycle/recording_test_get_quotas.js index fa7a97d3fb48..f3d269b8a307 100644 --- a/sdk/quantum/quantum-jobs/recordings/node/quantum_job_lifecycle/recording_test_get_quotas.js +++ b/sdk/quantum/quantum-jobs/recordings/node/quantum_job_lifecycle/recording_test_get_quotas.js @@ -1,18 +1,87 @@ let nock = require('nock'); -module.exports.hash = "f909c630ef6bc7852e8aad46732be7e7"; +module.exports.hash = "36bc82d6615a57a31c5dbf38d77c93b0"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "response_type=token&grant_type=client_credentials&client_id=ce7bd34e-0000-0000-0000-000000000000&client_secret=clientsecret&scope=https%3A%2F%2Fquantum.microsoft.com%2F.default") + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '20c099ee-f5c8-4fd6-9417-3d91805cbe01', + 'x-ms-ests-server', + '2.1.11829.8 - NCUS ProdSlices', + 'Set-Cookie', + 'fpc=AssPApz8FJdPuwTnV8PLyxAH9ySAAQAAAAdabNgOAAAA; expires=Thu, 29-Jul-2021 00:02:16 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrk2C2eZBX3qOODeElJB6z72gCjFVAGjTnndKFTSyYugSEBWMSrbYj3D1z6wPm_y1QULhLCH0WOQf0XbGJ3pnEKekqLkf1MLJQ4dS4m7eZtbnLHPhmD4kVnhi_HM_IYAJdDEMJGTzntSkdR5NFuUyzdv6uqN5lX8IjNPGOXWY8EBsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Tue, 29 Jun 2021 00:02:15 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'f1b6af43-cb77-4fff-b1f8-db06f685de00', + 'x-ms-ests-server', + '2.1.11829.9 - NCUS ProdSlices', + 'Set-Cookie', + 'fpc=AssPApz8FJdPuwTnV8PLyxAH9ySAAQAAAAdabNgOAAAA; expires=Thu, 29-Jul-2021 00:02:16 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrU2yfHJMoGmkjkWgAKTaufx4shHm9Eq_Qrdagg5BqX9u2ewXUZDcdOvIijREplDSnd1nxUUn9dYfJgQbst0y1Z9Au7ynlJ_cNl0kaldKPyk2un-CKkqO92ituWmun04sLEvTEAhqzx3svvXf-5DHkuK7tGHoJFnkTwkqU7_PqV6MgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Tue, 29 Jun 2021 00:02:15 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=ce7bd34e-0000-0000-0000-000000000000&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=45d7cb90-7758-44eb-aaf0-417a8c60a155&client_secret=clientsecret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1323', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -24,22 +93,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '9734eb80-243f-4ebe-ad29-b6c942614201', + '145ede9c-71e0-49e8-aa1e-40e891df0601', 'x-ms-ests-server', - '2.1.11444.12 - EUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', 'Set-Cookie', - 'fpc=Au-JfYCfeJ1Os2_0kwujtZ7POrquAQAAANw-rdcOAAAA; expires=Sat, 06-Mar-2021 01:03:25 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AssPApz8FJdPuwTnV8PLyxAH9ySAAgAAAAdabNgOAAAA; expires=Thu, 29-Jul-2021 00:02:16 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Thu, 04 Feb 2021 01:03:25 GMT' + 'Tue, 29 Jun 2021 00:02:15 GMT', + 'Content-Length', + '1722' ]); nock('https://westus.quantum.azure.com:443', {"encodedQueryParams":true}) .get('/v1.0/subscriptions/677fc922-91d0-4bf6-0000-4274d319a0fa/resourceGroups/resourcegroup/providers/Microsoft.Quantum/workspaces/workspace/quotas') - .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef1479759b9ce3f7af4bd5ffcd1ac58e4cba6a8961f3dfa685a2d26c5329ffdfe3f5d4d7eff79b5ae9b8f461f35d36a454d3ffa6e55bf6d56d934a7cf56757559ccf2fa6c465f7c514cebaaa9ce5bfa62dd1665f183ac6578db3be39dbddd870f760e76ef1fc8f3707ff4d1bc2a67cd478fe8cbd14765b128da8f1eedf11fabbc2e2a86582ddb7979fdd12f19bd077eafd793665a172bee9b807dc328eeeeecf09fb74072395dd775be6c7fffe96a0d547d2cdf9f8adc6b04a1fbf8dd62f3a25ae69b50395f5d643f7bb8ece1f7cdb818047af3f6cd61b18bdf2d1643f33388c8d76220ee3f86cb20bb7c7ff4d1327fd73e2f966f3f7ab45c97e5","2ff97f0023254de58f030000"], [ + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef1479759b9ce3f7af4bd5ffcd1ac58e4cba6a8961f3dfa685a2d26c5329ffdfe3f5d4d7eff79b5ae9b8f461f35d36a454d3ffa6e55bf6d56d934a7cf56757559ccf2fa6c465f7c514cebaaa9ce5bfa62dd1665f183ac6578db3be39d9dbd079f3e78b8ffe09e79461fcdab72d67cf488be1c7d54168ba2fde8d11effb1caeba26288d5b29d97d71ffd92d17be0f77a3d69a675b1e2be09d8378ce2eece0eff790b2497d3755de7cbf6f79faed640d5c7f2fda9c8bd4610ba8fdf2d362faa65be0995f3d545f6b387cb1e7edf8c8b41a0376fdf1c16bbf8dd6231343f83887c2d06e2fe63b80cb2cbf7471f2df377edf362f9f6a347cb7559","fe92ff07533309148f030000"], [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -54,10 +127,12 @@ nock('https://westus.quantum.azure.com:443', {"encodedQueryParams":true}) 'appId=cid-v1:4d6ac272-7369-45c6-9036-63d733c8519f', 'Strict-Transport-Security', 'max-age=2592000', + 'x-ms-request-id', + '1212e3be16971b42', 'X-Powered-By', 'ASP.NET', 'Date', - 'Thu, 04 Feb 2021 01:03:25 GMT', + 'Tue, 29 Jun 2021 00:02:16 GMT', 'Connection', 'close' ]); diff --git a/sdk/quantum/quantum-jobs/recordings/node/quantum_job_lifecycle/recording_test_quantum_job_lifecycle.js b/sdk/quantum/quantum-jobs/recordings/node/quantum_job_lifecycle/recording_test_quantum_job_lifecycle.js index bb5bb7698d21..be9b7f0f81e9 100644 --- a/sdk/quantum/quantum-jobs/recordings/node/quantum_job_lifecycle/recording_test_quantum_job_lifecycle.js +++ b/sdk/quantum/quantum-jobs/recordings/node/quantum_job_lifecycle/recording_test_quantum_job_lifecycle.js @@ -1,18 +1,87 @@ let nock = require('nock'); -module.exports.hash = "d72be875b213407d3bd89ae5a3328135"; +module.exports.hash = "ab4dd1c6afdb4de9db1250bebba8700d"; -module.exports.testInfo = {"uniqueName":{"input-":"input-161240060833601459","job-":"job-161240060889002218","jobname-":"jobname-161240060889009123"},"newDate":{}} +module.exports.testInfo = {"uniqueName":{"input-":"input-162492493836609793","job-":"job-162492493861700425","jobname-":"jobname-162492493861705769"},"newDate":{}} nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "response_type=token&grant_type=client_credentials&client_id=ce7bd34e-0000-0000-0000-000000000000&client_secret=clientsecret&scope=https%3A%2F%2Fquantum.microsoft.com%2F.default") + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '51ab2e1b-b53e-475d-85f4-a536b5b6b300', + 'x-ms-ests-server', + '2.1.11829.8 - EUS ProdSlices', + 'Set-Cookie', + 'fpc=AssPApz8FJdPuwTnV8PLyxAH9ySAAgAAAAdabNgOAAAA; expires=Thu, 29-Jul-2021 00:02:16 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr90r2aQvSrFXXBIh12x3mLHd61pJ25YFatPoVXQTGl1-LjCDqchJJm-Og9kGBk8wGZoJljXFgsDqIlMvqs04Nc_xcD0NPkngAwFEkJP7OHbH8TQLSjIG-qS6Mp509yGtew2a3i8C6cOn16Y9govhNrCERBTXR9TkPuVj8TJIGg1QgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Tue, 29 Jun 2021 00:02:16 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'b0096cab-6e8f-4888-9dbd-f2f9992b1f01', + 'x-ms-ests-server', + '2.1.11829.9 - EUS ProdSlices', + 'Set-Cookie', + 'fpc=AssPApz8FJdPuwTnV8PLyxAH9ySAAgAAAAdabNgOAAAA; expires=Thu, 29-Jul-2021 00:02:16 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrIcOljn7f8LdW4Ij3gQMCgpUXJ0Hy-CyEeOhQfTQLebmw1nWu1tbidOKCSl8IXJBDfGEwHy_PjoLdm7Wh7hoDtyz5w0Oo9nQ7q4PqY-a89SLDQJBG5o2Ek0ms3u_kXFU4ih1vakTgtlO_uuzwQbplJhpiwH7S-A6fi5i0GV22WV4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Tue, 29 Jun 2021 00:02:16 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=ce7bd34e-0000-0000-0000-000000000000&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=3e90d698-1dfe-467b-8aec-57dca00a9be3&client_secret=clientsecret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1323', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -24,22 +93,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '4d71d28a-bc87-4012-8486-fec249262c01', + '8d657b4a-64b2-44dd-ad5c-32a96e99ca00', 'x-ms-ests-server', - '2.1.11444.12 - SCUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', 'Set-Cookie', - 'fpc=Au-JfYCfeJ1Os2_0kwujtZ7POrquAgAAANw-rdcOAAAA; expires=Sat, 06-Mar-2021 01:03:26 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AssPApz8FJdPuwTnV8PLyxAH9ySAAwAAAAdabNgOAAAA; expires=Thu, 29-Jul-2021 00:02:16 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Thu, 04 Feb 2021 01:03:25 GMT' + 'Tue, 29 Jun 2021 00:02:16 GMT', + 'Content-Length', + '1722' ]); nock('https://westus.quantum.azure.com:443', {"encodedQueryParams":true}) .post('/v1.0/subscriptions/677fc922-91d0-4bf6-0000-4274d319a0fa/resourceGroups/resourcegroup/providers/Microsoft.Quantum/workspaces/workspace/storage/sasUri', {"containerName":"testcontainer"}) - .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef1474dd67c55171f3dfa68deb6abe6d1ddbbf3ac6ee6d9b269ab3abbc8dbbc69c793b29a8ca7559d8faf8ae5acba6ac6cbbcbd8bafa6d5b2cd8a655eff1ecde5677b3bbb0fb777f6e87fbfb0292e3e9b3ffbf4d3176fef7f67f6bbef3dd9f97d9e675fbdbcde9f5ceffcdedfbe38ffc9ef7ebefee9af5e5dbeb9fc8967d72f5f9ceeeffceef79efec22627107bbbf4fef6cefd37bbf77ef77bc73bf867efc14ffdc2a66e3f9b56bfb0693e9bfcc266f5599d4daf3efa","25ff0f84dd30debe000000"], [ + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef1474dd67c55171f3dfa68deb6abe6d1ddbb6ddeb44d5bd5d945de6475f6d3d9221b4fca6a329e56753ebe2a96b3eaaa192ff3965b4eab659b15cbbcfe3d9acbcff676761f6eefecd1ff7e61535c7cf6f2c9ecbbcf7ff7bd2727a7bfe8ec277ef2fed9ef7dd1d4f776eadd76fff593bdf5d3fd676fbef3fcc1ab6f3ffca2bdffe9f1ef7eefe92f6c7202b1b7bbbdf3607be7de9b9d9ddffddef1ce1efdb3fbe0a77e6153b79f4dab5fd8349f4d7e61b3faaccea6571f","fd92ff07682302e7bf000000"], [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -54,10 +127,12 @@ nock('https://westus.quantum.azure.com:443', {"encodedQueryParams":true}) 'appId=cid-v1:4d6ac272-7369-45c6-9036-63d733c8519f', 'Strict-Transport-Security', 'max-age=2592000', + 'x-ms-request-id', + 'f6edc8462b21094a', 'X-Powered-By', 'ASP.NET', 'Date', - 'Thu, 04 Feb 2021 01:03:27 GMT', + 'Tue, 29 Jun 2021 00:02:16 GMT', 'Connection', 'close' ]); @@ -65,7 +140,7 @@ nock('https://westus.quantum.azure.com:443', {"encodedQueryParams":true}) nock('https://dummystorageaccount.blob.core.windows.net:443', {"encodedQueryParams":true}) .put('/testcontainer') .query(true) - .reply(409, "ContainerAlreadyExistsThe specified container already exists.\nRequestId:c4b2992c-c01e-006b-0691-fa3baa000000\nTime:2021-02-04T01:03:27.5565544Z", [ + .reply(409, "ContainerAlreadyExistsThe specified container already exists.\nRequestId:230e8c24-a01e-0029-467a-6c2e40000000\nTime:2021-06-29T00:02:17.5829872Z", [ 'Content-Length', '230', 'Content-Type', @@ -73,20 +148,20 @@ nock('https://dummystorageaccount.blob.core.windows.net:443', {"encodedQueryPara 'Server', 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', 'x-ms-request-id', - 'c4b2992c-c01e-006b-0691-fa3baa000000', + '230e8c24-a01e-0029-467a-6c2e40000000', 'x-ms-client-request-id', - '5f40b6cf-a1a6-42b4-b47d-1d6f4346ff0f', + '26605f98-4266-4ad7-8085-b53d4618f418', 'x-ms-version', - '2020-04-08', + '2020-08-04', 'x-ms-error-code', 'ContainerAlreadyExists', 'Date', - 'Thu, 04 Feb 2021 01:03:27 GMT' + 'Tue, 29 Jun 2021 00:02:17 GMT' ]); nock('https://westus.quantum.azure.com:443', {"encodedQueryParams":true}) - .post('/v1.0/subscriptions/677fc922-91d0-4bf6-0000-4274d319a0fa/resourceGroups/resourcegroup/providers/Microsoft.Quantum/workspaces/workspace/storage/sasUri', {"containerName":"testcontainer","blobName":"input-161240060833601459.json"}) - .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef1474dd67c55171f3dfa68deb6abe6d1ddbbf3ac6ee6d9b269ab3abbc8dbbc69c793b29a8ca7559d8faf8ae5acba6ac6cbbcbd8bafa6d5b2cd8a655edf2d96ab75bbbdfbe9eedefececea73b07f7ee7dbab3bb7fffe1f8a79b6af97b34979fededec3edcded9a3fffdc2a6fe6cf20b9be2e2b3c5abfdc9b767fbe7bffbdeb327d9eff583177b17efda6af6e08b8b9d7be7ebf9fdd3df7bd6bc5cb75f7e677272fdb6f9ddef3dfd854d4e70f67609c8f6cefd37bbf77ef77bc73bf867efe0a77e61b3faac9e5e7df4","4bfe1f41fff503d4000000"], [ + .post('/v1.0/subscriptions/677fc922-91d0-4bf6-0000-4274d319a0fa/resourceGroups/resourcegroup/providers/Microsoft.Quantum/workspaces/workspace/storage/sasUri', {"containerName":"testcontainer","blobName":"input-162492493836609793.json"}) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef1474dd67c55171f3dfa68deb6abe6d1ddbb6ddeb44d5bd5d945de6475f6d3d9221b4fca6a329e56753ebe2a96b3eaaa192ff3965b4eab659b15cbbcbe5b2c57eb767bf7d3bdfd87f4bf7b07f73efd74e7e18387f7c63fdd54cbdfa3b9fc6c6f67f7e1f6ce1efdef1736f567935fd814179fbd7cd65c1e9fcf76a7f3dfe7f7feee4fdcfbceeb5ff4fc8bd9f4f77ef6f6fefef4f5d3fbef7ee2febdd393abefbc9b9d9cfdeef79efec22627287bbbdb3b0fb677eebdd9d9f9ddef1defecd13fbb0f7eea1736abcfeae9d547bf","e4ff0170c70989d3000000"], [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -101,16 +176,18 @@ nock('https://westus.quantum.azure.com:443', {"encodedQueryParams":true}) 'appId=cid-v1:4d6ac272-7369-45c6-9036-63d733c8519f', 'Strict-Transport-Security', 'max-age=2592000', + 'x-ms-request-id', + 'f0b5e8128fb73547', 'X-Powered-By', 'ASP.NET', 'Date', - 'Thu, 04 Feb 2021 01:03:27 GMT', + 'Tue, 29 Jun 2021 00:02:17 GMT', 'Connection', 'close' ]); nock('https://dummystorageaccount.blob.core.windows.net:443', {"encodedQueryParams":true}) - .put('/testcontainer/input-161240060833601459.json', {"cost_function":{"version":"1.0","type":"ising","terms":[{"c":-3,"ids":[1,0]},{"c":5,"ids":[2,0]},{"c":9,"ids":[2,1]},{"c":2,"ids":[3,0]},{"c":-4,"ids":[3,1]},{"c":4,"ids":[3,2]}]}}) + .put('/testcontainer/input-162492493836609793.json', {"cost_function":{"version":"1.0","type":"ising","terms":[{"c":-3,"ids":[1,0]},{"c":5,"ids":[2,0]},{"c":9,"ids":[2,1]},{"c":2,"ids":[3,0]},{"c":-4,"ids":[3,1]},{"c":4,"ids":[3,2]}]}}) .query(true) .reply(201, "", [ 'Content-Length', @@ -118,28 +195,28 @@ nock('https://dummystorageaccount.blob.core.windows.net:443', {"encodedQueryPara 'Content-MD5', 'X8K62ldLT+xYkvrjps/bQQ==', 'Last-Modified', - 'Thu, 04 Feb 2021 01:03:28 GMT', + 'Tue, 29 Jun 2021 00:02:17 GMT', 'ETag', - '"0x8D8C8A8AE88E1CA"', + '"0x8D93A9128C6B54B"', 'Server', 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0', 'x-ms-request-id', - 'c4b299c1-c01e-006b-0291-fa3baa000000', + '230e8cc3-a01e-0029-577a-6c2e40000000', 'x-ms-client-request-id', - '13da6bf1-62f7-425b-bdd8-04340c34fd5f', + '36d4ff19-ed7d-440f-8bac-09ec66e8648a', 'x-ms-version', - '2020-04-08', + '2020-08-04', 'x-ms-content-crc64', 'BXcAuCMpTtQ=', 'x-ms-request-server-encrypted', 'true', 'Date', - 'Thu, 04 Feb 2021 01:03:27 GMT' + 'Tue, 29 Jun 2021 00:02:17 GMT' ]); nock('https://westus.quantum.azure.com:443', {"encodedQueryParams":true}) - .put('/v1.0/subscriptions/677fc922-91d0-4bf6-0000-4274d319a0fa/resourceGroups/resourcegroup/providers/Microsoft.Quantum/workspaces/workspace/jobs/job-161240060889002218', {"id":"job-161240060889002218","name":"jobname-161240060889009123","containerUri":"https://dummystorageaccount.blob.core.windows.net/testcontainer?sv=2019-02-02&sig=0000000000000000000000000000000000000000000000&se=2021-02-05T13%3A03%3A27Z&srt=co&ss=b&sp=racw","inputDataUri":"https://dummystorageaccount.blob.core.windows.net/testcontainer/input-161240060833601459.json?sv=2019-02-02&sr=b&sig=0000000000000000000000000000000000000000000000&se=2021-02-05T13%3A03%3A28Z&sp=rcw","inputDataFormat":"microsoft.qio.v2","providerId":"microsoft","target":"microsoft.paralleltempering-parameterfree.cpu","outputDataFormat":"microsoft.qio-results.v2"}) - .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147d36ad966c532afbfaa8b8f1e7d346fdb55f3e8eedd795637f36cd9b4559d5de46ddeb4e349594dc6d3aacec757c572565d35e365dedec55716c6efd15c7eb6b7b3fb707b678ffef70b9be2e2b3f9b34f3f7df1f6fe7766bffbde939ddfe779f6d5cbebfdc9f5ceeffded8bf39ffceee7eb9ffeead5e59bcb9f7876fdf2c5e9feceef7eefe92f6c7202b1b74bef6fefdc7fb37bef77bf77bc837ff61efcd42f6ceaf6b369f50b9be6b3c92f6c569fd5d9f4eaa3d147c572b56e9f666df64d0ce12e43dbdefd74776f7f67e7d39d837bf73eddd9ddbfff70fcd34db5ec0eb0062234cac5abfdc9b767fbe7bffbdeb327d9eff583177b17efda6af6e08b8b9d7be7ebf9fdd3df7bd6bc5cb75f7e677272fdb6d938ca031a258d2c1cd8b3aa5e642d8d6d514cebaaa9cedbf12f2aaaf1e59e69f432abb345f3d1a35ffc4b461fadeaeab298e5f5d9cc7f815ab6594d74f03f1cafe8bdb2cccb365facf2ba585e6ce3930551ab3eaff37c3c5dade945fa3b9b111a1f3d5aaecb72f4d1925a10989fae26f8cda3d5c1c39d9d87bb7bf7e89d02bd538bceb77b7bbb07f46dd366ed9af0fde8bb59d152b7f451b56e6920c3a3ddaef3665db68d8cdab5fe7a93fe687fff5e67e21dc8ee2cd304ff10d8785ae7595b54cb370553d7bebdff6667f7d1cebd477b07e383fd877bbb3b0f3ed9d979b4b343af4cf28b6279fa2e9faedd8b3245f97216fd7c9a2da779597a1dc9e7795d5735c62e1ffc","92ff07d0dcc9fa19040000"], [ + .put('/v1.0/subscriptions/677fc922-91d0-4bf6-0000-4274d319a0fa/resourceGroups/resourcegroup/providers/Microsoft.Quantum/workspaces/workspace/jobs/job-162492493861700425', {"id":"job-162492493861700425","name":"jobname-162492493861705769","containerUri":"https://dummystorageaccount.blob.core.windows.net/testcontainer?sv=2019-02-02&sig=0000000000000000000000000000000000000000000000&se=2021-07-03T00%3A02%3A17Z&srt=co&ss=b&sp=racw","inputDataUri":"https://dummystorageaccount.blob.core.windows.net/testcontainer/input-162492493836609793.json?sv=2019-02-02&sr=b&sig=0000000000000000000000000000000000000000000000&se=2021-07-03T00%3A02%3A17Z&sp=rcw","inputDataFormat":"microsoft.qio.v2","providerId":"microsoft","target":"microsoft.paralleltempering-parameterfree.cpu","outputDataFormat":"microsoft.qio-results.v2"}) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147d36ad966c532afbfaa8b8f1e7d346fdb55f3e8eedd366fdaa6adeaec226fb23afbe96c918d276535194fab3a1f5f15cb5975d58c9779cb2d2d90dfa3b9fc6c6f67f7e1f6ce1efdef1736c5c5672f9fccbefbfc77df7b7272fa8bce7ee227ef9ffdde174d7d6fa7de6df75f3fd95b3fdd7ff6e63bcf1fbcfaf6c32fdafb9f1effeef79efec22627107bbbdb3b0fb677eebdd9d9f9ddef1defecd13fbb0f7eea173675fbd9b4fa854df3d9e41736abcfea6c7af5d1e8a362b95ab74fb336fb46c67097c16def7ebab7ff90fe77efe0dea79fee3c7cf0f0def8a79b6ad91d610d4c30cc67cde5f1f96c773aff7d7eefeffec4bdefbcfe45cfbf984d7fef676fefef4f5f3fbdffee27eedf3b3db9facebbd9c9d98d83a48185e37a56d58baca5a12d8a695d35d5793bfe454535bedc338d5ed2f816cd478f7ef12f197db4aaabcb6296d76733ff056ad966f5451e4259d17b6599976dbe58e575b1bcd8c6278bbccdebf33acfc7d3d59a5ea4bfb319a1f1d1a3e5ba2c471f2da90581f9e96a82df3c4a7dbafb60e7fe834f1fd23b057aa7169d6f77f6f7eed3b74d9bb56bc2f7a3ef66454bddd247d5baa5810c8f76bbce9b75d936326ad7fa6bcef9a3fdfd7bdcdacdbb83d99d64ccefcf3e1b4feb3c6b8b6af9a660f2cadb9f6eef3da4b71fedec3dda3d18ef1cdcbbbff3e0d34ff0c10ebd32c92f8ae5e9bb7cba762fca1ce5cb59f4f369b69ce665e975249fe7755dd518bbf9a0684ea429a6e7d17956363958e88266ed7bdfff25","ff0f8eb63be939040000"], [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -154,17 +231,19 @@ nock('https://westus.quantum.azure.com:443', {"encodedQueryParams":true}) 'appId=cid-v1:4d6ac272-7369-45c6-9036-63d733c8519f', 'Strict-Transport-Security', 'max-age=2592000', + 'x-ms-request-id', + '5612722dbe38904b', 'X-Powered-By', 'ASP.NET', 'Date', - 'Thu, 04 Feb 2021 01:03:28 GMT', + 'Tue, 29 Jun 2021 00:02:17 GMT', 'Connection', 'close' ]); nock('https://westus.quantum.azure.com:443', {"encodedQueryParams":true}) - .get('/v1.0/subscriptions/677fc922-91d0-4bf6-0000-4274d319a0fa/resourceGroups/resourcegroup/providers/Microsoft.Quantum/workspaces/workspace/jobs/job-161240060889002218') - .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147d36ad966c532afbfaa8b8f1e7d346fdb55f3e8eedd795637f36cd9b4559d5de46ddeb4e349594dc6d3aacec757c572565d35e365dedec55716c6efd15c7eb6b7b3fb707b678ffef70b9be2e2b3f9b34f3f7df1f6fe7766bffbde939ddfe779f6d5cbebfdc9f5ceeffded8bf39ffceee7eb9ffeead5e59bcb9f7876fdf2c5e9feceef7eefe92f6c7202b1b74bef6fefdc7fb37bef77bf77bc837ff61efcd42f6ceaf6b369f50b9be6b3c92f6c569fd5d9f4eaa3d147c572b56e9f666df64d0ce12e43dbdefd74776f7f67e7d39d837bf73eddd9ddbfff70fcd34db5ec0eb0062234cadf7defd9c1ea8b1fbcdbbb9e35afbeacce5efde0a7df3e9dbf78d6ac2f66d5eadde77bbbaf1f3c7dfda2babf3eae4e378ef2218d9246e60feb59552fb29646b628a675d554e7edf81715d5f872cf347a99d5d9a2f9e8d12ffe25a38f56757559ccf2fa6ce6bf402ddbac262af81f8e57f45e59e6659b2f56795d2c2fb6f1c98268559fd7793e9eaed6f422fd9dcd088d8f1e2dd76539fa68492d08cc4f5713fce651eae0e1cecec3ddbd7bf44e81dea945e7dbbdbddd03fab669b3764df87ef4ddac68a95bfaa85ab73490e1d16ed779b32edb4646ed5a7f2353eec00dcdefc5ab33e2df9f2aef9d9d4fbfdaffb47df813cdfcc1fee47c363b9f7cfe9d57eb9ff8ea174d5e7ce7e2075fac4f5e4f6f39bfd33acfdaa25abe29989eb6f9fe9b9ddd473bf71eed1d8c0ff61feeedee3cf86467e7d1ce0ebd32c92f8ae5e9bb7cba762fcaa4e4cb59f4f369b69ce665e975249fe7755dd518b17cf0","4bfe1fd3efd0dd09040000"], [ + .get('/v1.0/subscriptions/677fc922-91d0-4bf6-0000-4274d319a0fa/resourceGroups/resourcegroup/providers/Microsoft.Quantum/workspaces/workspace/jobs/job-162492493861700425') + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147d36ad966c532afbfaa8b8f1e7d346fdb55f3e8eedd366fdaa6adeaec226fb23afbe96c918d276535194fab3a1f5f15cb5975d58c9779cb2d2d90dfa3b9fc6c6f67f7e1f6ce1efdef1736c5c5672f9fccbefbfc77df7b7272fa8bce7ee227ef9ffdde174d7d6fa7de6df75f3fd95b3fdd7ff6e63bcf1fbcfaf6c32fdafb9f1effeef79efec22627107bbbdb3b0fb677eebdd9d9f9ddef1defecd13fbb0f7eea173675fbd9b4fa854df3d9e41736abcfea6c7af5d1e8a362b95ab74fb336fb46c67097c16def7ebab7ff90fe77efe0dea79fee3c7cf0f0def8a79b6ad91d610d4c30cc7bc73f31ff291ae7c5ef7daf59befcbdf7ebfac5eff37b2dbfa877cf16c562f574f7f77976efd90ff29ffca9173f7879ba719807344c1ada2fac9be9ecb3ac6db3e97c912fdbdffdde93df7d6fe7bc28f365b6c809c24f5713fce621fae9ee839dfb0f3e7db84d5f753eded9dfbb3fe681f1287ca23dabea45d612dd16c5b4ae9aeabc1dffa2a21a5fee99462f89788be6a347bff8978c3e5ad5d56531cbebb399ff02b56cb3fa220fa1ace8bdb2cccb365facf2ba585e6ce39345dee6f5799de7e3e96a4d2fd2dfd98cd0f8e8d1725d96a38f3026024343c06f9d616074f44e81dea945e75b0c92be6ddaac5d13be1f7d372b5aea963eaad62d0d6478b4db75deaccbb69151bbd6df0c43397843dc437cf37aff279f9cfde0d5c5f4cdb77f62fafce2f759ee552f7eef379fe73f755aefbf7b38cbbe78ba5bbedb7d97cff669ee7f2eb8474661d8675ae7595b54cb37054f9720f3e9f6de4342e6d1cedea3dd83f1cec1bdfb3b0f3efd041fecd02b93fca2589ebecba76bf7a2cc79be9c453f9f66cb695e965e47f2795ed7550d7a9a0f8ae6449a62ba1f9d67659383252f880bbef7fd","5ff2ff0039053890e6040000"], [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -179,17 +258,19 @@ nock('https://westus.quantum.azure.com:443', {"encodedQueryParams":true}) 'appId=cid-v1:4d6ac272-7369-45c6-9036-63d733c8519f', 'Strict-Transport-Security', 'max-age=2592000', + 'x-ms-request-id', + '55a0f02a83d8a146', 'X-Powered-By', 'ASP.NET', 'Date', - 'Thu, 04 Feb 2021 01:03:29 GMT', + 'Tue, 29 Jun 2021 00:02:17 GMT', 'Connection', 'close' ]); nock('https://westus.quantum.azure.com:443', {"encodedQueryParams":true}) .get('/v1.0/subscriptions/677fc922-91d0-4bf6-0000-4274d319a0fa/resourceGroups/resourcegroup/providers/Microsoft.Quantum/workspaces/workspace/jobs') - .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef1479759b9ce3f7af4bd5ffcd1b45ab659b1ccebafeae2a3471fcddb76d53cba7b779ed5cd3c5b366d556717799b37ed78525693f1b4aaf3f155b19c5557cd7899b777f19585f17b34979fededec3edcded9a3fffdc2a6b8f8ec603f6bcf7757d3eb873f79f09ddf7def59f1ed07cfa62f5e7f77affe7dee5f5e95cfeb97d5fca7ef3593f3bcfebd7fe277bff7f417363981d8dba5f7b777eebfd9ddfbddef1defedd03f3bf77fea173675fbd9b4fa854df3d9e41736abcfea6c7af5d1e8a362b95ab74fb336fb26867097a16def7ebabb77efe1c1cecea70f761ed03f0ff6c73fdd54cbee006b2042a37cf06e41637b367f797a96ffe0e5abd50fbe3a3f7bd5fef4c322dffde23bb3b7d517d5eae43bc5572fbefb839f9cbcdd38ca4f699434b27060cfaa7a91b534b64531adaba63a6fc7bfa8a8c6977ba6d1cbacce16cd478f7ef12f197db4aaabcb6296d76733ff056ad96635d1c1ff70bca2f7ca322fdb7cb1caeb6279b18d4f1644adfabccef3f174b5a617e9ef6c46687cf468b92ecbd1474b6a41607eba9ae03747ab077b07bb3b0ff7f7f6e99d02bd538bceb77b0fef3da46f9b366bd784ef47cfb2a2cc67f449b56e691cc383ddaef3665db68d0cdab5fe7a73fe687fff5e67de1dc8ee24d3fcfe10b8785ae7595b54cb370513d7bebdff6667e7d1decea39d07e39d07bb0744ca9fa2d693fca2589ebecba7eb1bde3978b0bbf7f0537e275fce6e7ee3d3f1fdbdbd7b0feeddc71bd36c39cdcbd2c34b1820afebaa06a988e34883cce88b8fce96a4548ad919d891bf02df340d4d037df9669ea7593d9d1797799a2fdbfa3abdca9a745a2d5634ad4d3e4bd70d315f9a2dd3f5b259af5655ddd287e67bea3d251e9c57b3f147bfe4978cd0a5cedad79bfd70e623d34d337c7cfa13bffbde939f5a1d3c78f9fcab9ffeeaf7690fb287cfce2fdffed4f1eb17d3e9de4fedac4e1a6af6ec070f8f5f7ffed5a629df7b3034e52cbaa0d537318c8ee2da3b2016dfb9ff70676fa3e2caeb9fac5f7ee7fae9e7abf6f75e3f5dfef4f397cfdfbe7a785d5e7d77b7f8bdbf7b725dfc3ed9bd9f784803fd899ffe8a06b3619407344a1a5938b0b82c8b0c73a3ff5728aebd83870f7776eedddf67b4d03bb5e87cbbbbb7f780befdff9ae2a299fb6170f24dca6bef607c7fffd37bf71f7e0ab5723be545ef3c7c78ffd37bf2ce6d94d7eea7e34ff7efd354e1859fafbaebf7bef7d5f54fcf2ebf783d2f69da3f3f5e7ff9530fdb2f8ed7c5bbaa389e9f3c5d5d3fffaa9e4cebf2a7bff3ea7468b677e99ffd7b43b3cd920b3a7d134308f5d6eecefe831d722276ee6fd65bf5ef432cfbe5ef933f5c9d15af3f6daf8f976fdebefae92fd73ff5133ffde9eb2fbf7df58393efacee5fae9a66da1c6c1ee53e8d9246160e2c2eca22c2dce8ff0d7a6b97880476dfd98566eaea2dfd76efe10ebefdff9adefa2170f1669db5fb68fffe78e7dec1ce837bfb5027b7d159fccefefea707077bbb78e7669db5fbe8dedef8c1fdfbf7ee7fca5aeee7abd2fa0149f393f2c9d39f7876f5ddeacd4fbffd7d265f7e7b2fdf3bcf17bfe86dfe7bddbfff93cf8e5fbdfbeacdc31fbc5efc802c517cbaf1cf2ec4393add2cb6a0d33731848ed2ba77ffc1eec39dfdfbf777362aadd3975f7eb1f3ddd3ab273ff16c76fdf43b4fbffce9e207abe977db625d10932fee3fb93e39be2cbf7c71feaadaf97d368e1251048d2c1c585c8e457eb991515a3fa74aebdea77bf77777ee3d78f829bdd3535af87667e7e0fede7dfaf6ff6b4aeb87c0c59b95d6dea3ddfbe30707bbf71f1e3c803ab98dd2a2773e1defed1f3cfc74e721deb995d2da1fef3cbc7ff0a9b8663f5f95d6faf9f43be7bfd7f94f7ffefce5eccb59fee94fee4c8b97dffdbdd693a7ed779fbd9b7f67726f76d5bcdbfdbd7f6270b2efdda37feeef0d4d360b2da8f44d0c20545907f7ee7d7af070077f6c5459df3ddd3bfbf6fe9be3fae125a9a8fbeff6dbf3fae994f8fccdfefda79f9f3dac4e0f7eeaa78fbffc920cf5c193dda1d4968c139698c6160e2d2ec722bfdce8ff0d4aebe0defede830714211edca377ba4a4bbf7db8f729125fff5f535a3feb5cbc5165ddbbf7e8fefe7897e9075d720b8d25af10d5efeded71a477a3c6c21ba417ef7f4af9909fd779ad7ba73ffd2a5f1e974f5efe3ef3c5e7f3a73f7df993d9415d7ef5f9ef352191febd5eee2f3292f2b7d7f5972f2e5e5e0df9d5f71ed23ff70773012cb5a0d4373188406b3ddca5ffdd7bb0737ff7e1ee46ad35fd6e79f1e0ed657ebf7c70f2e0ddbb372f7fd1e2e0e0bbabb3bdebd5e4f7face570f3fcdc8cdfa4534e4fce59bcda3fcff6c560bb4faf42111e7c1fe2ebdd3d159e6dbfd5dfef6ff6b3aeb87c2c79bf5d6c347f71f52aa7c77f7e1035642b7505cfb945edf19ef3dd8a794e2ede243790311e5fe2ebff1f35571fdf4eb17edeffdf0e46067fa533fbd5e34f73fbfa8af7eafabc94f4d8b1fdcff455fbdb9fa4e3db977efdefd8bd31f5c0d4cf6fe7dfae71ec4393ad92cb6a0d23731805069dddfa7dc3227903fdda8b45e9fff20bbbf3b6f9efea2ebbdb7c4c63ff8c9e7f46ff5a66a76bffcbd5f5ddf5bfee4ee7ef513dff989dfabbdbf78fed343c658c6f990c649630b8716976491606ef4ff06b545d4fa74f71e45170fa098ba6a4bbffdf46017dffe7f4d6dfdac73f14695b57f9ff4c9787fe7fecefd9ddb4687786777bcbb4f6be0fbec39ddacb2ee2371ffe0d3ddfd4ff7b9979faf2aeb2959a09f7cf17b7ffed5a7cb93e7fbebfd9d7b4fa6e5f26cfdeae1d39ffa8966f9ea7afae4e1d5ee4fbc7bda7ea71e8a9bee1fd03f947f1c986e165ad0e99b1882a7b4a0b076ef1f3cd8dbf9f4fec1fd8d4aeb273e2fdf7c67a77cf2f9abd3f28b972f68ccdf7ed7bef941f553a70f56c5b7afbe4b1f7c7731fda9eb83b7974f772fce368ef3ffa3492da6d6a7fbf7f62802ec2b2df7ed03d25ef4edffd794d60f818f37aaadfb078fee51826ae7c11e65c5a8f12db496bcf2f0e1bd9d838303bc73a3d6c21b0fc60f1e7c4ab9477ee3e7abd69a3ffbf4d3176fef7f6746b3bef3fb3ccfbe7a79bd3fb9def9bdbf7d71fe93dffd7cfdd35fbdba7c73f913cfae5fbe38dd8fb9204805ece09fbd41bf9aa51674fa2686106aad4f77282bf0e9ceee3ef9e69bb4d6e2d5fee4dbb3fd73f2af9e64bfd70f5eec5dbc6babd9832f2e76ee9dafe7f74f7fef59f372dd7ef99dc9c9f5db66e328618a6964e1c0e2622ce2cb8dfedfa0b388569400dc79487e15bdd3d559faeddedeee017d6b75d677b3a2a56ee923a733e2a3fdb9555a3f0436dea0b4761feddc831774b0ff706f7787bda098d692d9e9eb26f9fc","161a081ffc92efd304e7efdae7c5f2ad7e","f2ff00880ee059df290000"], [ + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef1479759b9ce3f7af4bd5ffcd1b45ab659b1ccebafeae2a3471fcddb76d53cba7bb7cd9bb669ab3abbc89bacce7e3a5b64e349594dc6d3aacec757c572565d35e365de724b0be4f7682e3fdbdbd97db8bdb347fffb854d71f1d9ebfdb3b3f5f3e5eff5d557f5deecf73ef8ddf79efc5e1717bffbdeb3873baf4f7feffd2fbef86ebbbcfc6e7b527cf727673f78b97ff6bbdf7bfa0b9b9c80eced6eef7cbabdb7fb66f7e077bf777cef21fdb37fffa77e6153b79f4dab5fd8349f4d7e61b3faaccea6571f8d3e2a96ab75fb346bb36f64147719dcf6eea77bf71edebfbf7bf0e9cec3073b079f7eba3bfee9a65a76c75803131ae8c387cdfd93f57afed5e7bbbb4fe6bbedeb2f9f3efdeeb77ffac1d5098df6dee7f3dd5ff4eafadddefd17bbb39f7a4843da30cc4f699834b47064cfaa7a91b534b84531adaba63a6fc7bfa8a8c6977ba6d14b1ae1a2f9e8d12ffe25a38f56757559ccf2fa6ce6bf402ddbacbec843282b7aaf2cf3b2cd17abbc2e9617dbf86491b7797d5ee7f978ba5ad38bf4773623343e7ab45c97e5e8a325b520303f5d4df09b47ab7b0f0e7676f6771ed03b057aa7169d6f77f777f6e9dba6cdda35e1fbd1b3ac28f3197d52ad5b1ac7f060b7ebbc59976d238376adbfe6a43fdadfbfc7adddc43b98dd59a609fea170f2b4ceb3b6a8966f0aa6af797bf701bdfde8dec347fb9f8e0f76efeddedf3ff8296a3dc92f8ae5e9bb7cbadef8ce83f1fedea7f70e88b1e89d7c39bbf98d83f1a7f73f3dd8bbcfbd4cb3e5342f4b0f2fe181bcaeab1ac422a6234532a32f3e7a5367cba6c8972d66755de7f4fa226f1a9a0c7c39cfd3ac9ece8bcb3ca526f5757a9535e9b45aac68669b7c96ae1be2bf345ba6eb65b35eadaabaa50fcdf7d47b4a6c38af66e38f88c78be644f0a2573e7a749e954d0efebe2096fadef77fc90818e9b47e4dfee096164884219e7d5196cfbed334f7b39fdedbf97d9eafdadffb415b5e365f7cb99aff5ef7f7f3abbd6cf719f1c7d9eff37befb73b013b3cd8deb9f766873e3be67f88cc03ecc0920d127f2363708a6dffe1defec1fd87f777f7761e1e107f6c526c4fcbdf677df9e2c5ee4f7dfbd9b32f7fefbd9dd7673f753a7bdebe5e3f2011585e969f7ef974f7fe69fb7b9d665718ed8d03a5c185638b4bbb483937fab9566d4aad07fb073bf7773e3da0777cd566bf7db0b3f7e9c12e7dfbff39d5f643e0e401c5b6f790de7e44ffbbff70bcb7fbe9c3fbf758496d546cfe3b07fb0f1feceedcc33b1b149b7b637fbcffe0d3ddbd4fefe38d1f2936021261876fbf5a9c4db39f9e9dfef4ab9ffae9fbf9ef7596af2fbf73dd1e67a73f4922fff6f8ece14f7c777afaecf73eb9bffacee9103becd23ffbfb43ecc0720d127f23630815dbc39dfb07f7c809d97fb8bf51b1fdd493d7a7d75f3cbb7cf0e25362eea67a9d9f9d153ffd53bfd7d5c1c3257d303dfbea277ff227cf778bdf7b3929cf9fec6f1c280c3a0d2e1c5b5cd645c6b9d1ff1b14dbc39d4f77efeded1c1c3cb84fef74159b7e4bcfa7f4edffe714db0f8193372bb6dd47fbf7c79fee127177f7a1726ea3d8e89d4fc73b3bbb644ff6f0cecd8a8dded819ef1eececdd233ce98d1f293602126187974f66df7d4e137f72fa8bce7ee227ef9ffdde174d7d6fa7de6df75f3fd95b3fdd7ff6e63bcf1fbcfaf6c32fdafb9f1e0fb1c31efdb3fb60881d58ae41e26f640c1dc576efe0dea788461fdedba8d85e3e6b2e8fcf67bbd3f9eff37b7ff727ee7de7f52f7afec56cfa7b3f7b7b7f7ffafae9fd773f71ffdee9c9d577decd4e06bd353b481a5838aeb89c8b7c73a3ff5728b57b079f92fcdc7ff0e9437aa7a7d4e4db9dfd3da8bcc628b5ef66454bddd2474ea7c447fb73acd57e086cbc59abed3dda3d18ef1cdcbbbff360d05d93e9e9eb2ef9fc161a4a3ed8ac34be4f0c90bf6b9f17cbb7f2c22f","f97f00c417f310dd120000"], [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -204,10 +285,12 @@ nock('https://westus.quantum.azure.com:443', {"encodedQueryParams":true}) 'appId=cid-v1:4d6ac272-7369-45c6-9036-63d733c8519f', 'Strict-Transport-Security', 'max-age=2592000', + 'x-ms-request-id', + 'baeaf1adeea5d04c', 'X-Powered-By', 'ASP.NET', 'Date', - 'Thu, 04 Feb 2021 01:03:29 GMT', + 'Tue, 29 Jun 2021 00:02:17 GMT', 'Connection', 'close' ]); From c8126befe3aa90b7f6239ca0d7d7b0137ec6d61f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Rodr=C3=ADguez?= Date: Tue, 29 Jun 2021 00:00:58 -0400 Subject: [PATCH 29/49] [core] Retry on 503 using the Retry-After header (#15906) Based on the Retry-After specification, 503 should also be supported when considering the Retry-After header. This also aligns with upcoming Identity plans. --- sdk/core/core-http/CHANGELOG.md | 4 +- sdk/core/core-http/review/core-http.api.md | 1 + .../src/policies/exponentialRetryPolicy.ts | 5 + .../src/policies/throttlingRetryPolicy.ts | 30 +++-- sdk/core/core-http/src/util/constants.ts | 3 +- .../src/util/throttlingRetryStrategy.ts | 7 + .../policies/throttlingRetryPolicyTests.ts | 116 ++++++++++++++++- sdk/core/core-rest-pipeline/CHANGELOG.md | 6 + .../src/policies/exponentialRetryPolicy.ts | 9 +- .../src/policies/throttlingRetryPolicy.ts | 29 +++-- .../test/throttlingRetryPolicy.spec.ts | 123 +++++++++++++++++- .../managedIdentityCredential/imdsMsi.ts | 1 - .../node/managedIdentityCredential.spec.ts | 45 ++++++- 13 files changed, 350 insertions(+), 29 deletions(-) create mode 100644 sdk/core/core-http/src/util/throttlingRetryStrategy.ts diff --git a/sdk/core/core-http/CHANGELOG.md b/sdk/core/core-http/CHANGELOG.md index 75dee5caa518..7163b4275fc6 100644 --- a/sdk/core/core-http/CHANGELOG.md +++ b/sdk/core/core-http/CHANGELOG.md @@ -4,7 +4,9 @@ ### Features Added -- Changed TS compilation target to ES2017 in order to produce smaller bundles and use more native platform features +- Changed TS compilation target to ES2017 in order to produce smaller bundles and use more native platform features. +- Added support for the `Retry-After` header on responses with status code 503, Service Unavailable. +- Added support for multiple retries on the `ThrottlingRetryPolicy` (up to 3 by default). ### Breaking Changes diff --git a/sdk/core/core-http/review/core-http.api.md b/sdk/core/core-http/review/core-http.api.md index 37110cddac5c..0d938fb86051 100644 --- a/sdk/core/core-http/review/core-http.api.md +++ b/sdk/core/core-http/review/core-http.api.md @@ -145,6 +145,7 @@ export const Constants: { }; StatusCodes: { TooManyRequests: number; + ServiceUnavailable: number; }; }; HeaderConstants: { diff --git a/sdk/core/core-http/src/policies/exponentialRetryPolicy.ts b/sdk/core/core-http/src/policies/exponentialRetryPolicy.ts index 0623e5a00586..046f419bad05 100644 --- a/sdk/core/core-http/src/policies/exponentialRetryPolicy.ts +++ b/sdk/core/core-http/src/policies/exponentialRetryPolicy.ts @@ -21,6 +21,7 @@ import { } from "../util/exponentialBackoffStrategy"; import { RestError } from "../restError"; import { logger } from "../log"; +import { Constants } from "../util/constants"; import { delay } from "../util/delay"; export function exponentialRetryPolicy( @@ -139,6 +140,10 @@ async function retry( ): Promise { function shouldPolicyRetry(responseParam?: HttpOperationResponse): boolean { const statusCode = responseParam?.status; + if (statusCode === 503 && response?.headers.get(Constants.HeaderConstants.RETRY_AFTER)) { + return false; + } + if ( statusCode === undefined || (statusCode < 500 && statusCode !== 408) || diff --git a/sdk/core/core-http/src/policies/throttlingRetryPolicy.ts b/sdk/core/core-http/src/policies/throttlingRetryPolicy.ts index 5d928a49a9b7..00f86ebceb59 100644 --- a/sdk/core/core-http/src/policies/throttlingRetryPolicy.ts +++ b/sdk/core/core-http/src/policies/throttlingRetryPolicy.ts @@ -1,6 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. +import { AbortError } from "@azure/abort-controller"; import { BaseRequestPolicy, RequestPolicy, @@ -10,8 +11,8 @@ import { import { WebResourceLike } from "../webResource"; import { HttpOperationResponse } from "../httpOperationResponse"; import { Constants } from "../util/constants"; +import { DEFAULT_CLIENT_MAX_RETRY_COUNT } from "../util/throttlingRetryStrategy"; import { delay } from "../util/delay"; -import { AbortError } from "@azure/abort-controller"; type ResponseHandler = ( httpRequest: WebResourceLike, @@ -37,6 +38,7 @@ const StandardAbortMessage = "The operation was aborted."; */ export class ThrottlingRetryPolicy extends BaseRequestPolicy { private _handleResponse: ResponseHandler; + private numberOfRetries = 0; constructor( nextPolicy: RequestPolicy, @@ -48,13 +50,15 @@ export class ThrottlingRetryPolicy extends BaseRequestPolicy { } public async sendRequest(httpRequest: WebResourceLike): Promise { - return this._nextPolicy.sendRequest(httpRequest.clone()).then((response) => { - if (response.status !== StatusCodes.TooManyRequests) { - return response; - } else { - return this._handleResponse(httpRequest, response); - } - }); + const response = await this._nextPolicy.sendRequest(httpRequest.clone()); + if ( + response.status !== StatusCodes.TooManyRequests && + response.status !== StatusCodes.ServiceUnavailable + ) { + return response; + } else { + return this._handleResponse(httpRequest, response); + } } private async _defaultResponseHandler( @@ -70,14 +74,22 @@ export class ThrottlingRetryPolicy extends BaseRequestPolicy { retryAfterHeader ); if (delayInMs) { + this.numberOfRetries += 1; + await delay(delayInMs, undefined, { abortSignal: httpRequest.abortSignal, abortErrorMsg: StandardAbortMessage }); + if (httpRequest.abortSignal?.aborted) { throw new AbortError(StandardAbortMessage); } - return this._nextPolicy.sendRequest(httpRequest); + + if (this.numberOfRetries < DEFAULT_CLIENT_MAX_RETRY_COUNT) { + return this.sendRequest(httpRequest); + } else { + return this._nextPolicy.sendRequest(httpRequest); + } } } diff --git a/sdk/core/core-http/src/util/constants.ts b/sdk/core/core-http/src/util/constants.ts index 9e51d987813f..54d629cd1412 100644 --- a/sdk/core/core-http/src/util/constants.ts +++ b/sdk/core/core-http/src/util/constants.ts @@ -52,7 +52,8 @@ export const Constants = { }, StatusCodes: { - TooManyRequests: 429 + TooManyRequests: 429, + ServiceUnavailable: 503 } }, diff --git a/sdk/core/core-http/src/util/throttlingRetryStrategy.ts b/sdk/core/core-http/src/util/throttlingRetryStrategy.ts new file mode 100644 index 000000000000..88b6208d889e --- /dev/null +++ b/sdk/core/core-http/src/util/throttlingRetryStrategy.ts @@ -0,0 +1,7 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. + +/** + * Maximum number of retries for the throttling retry policy + */ +export const DEFAULT_CLIENT_MAX_RETRY_COUNT = 3; diff --git a/sdk/core/core-http/test/policies/throttlingRetryPolicyTests.ts b/sdk/core/core-http/test/policies/throttlingRetryPolicyTests.ts index c14a873c6196..ff60b9980ab5 100644 --- a/sdk/core/core-http/test/policies/throttlingRetryPolicyTests.ts +++ b/sdk/core/core-http/test/policies/throttlingRetryPolicyTests.ts @@ -72,7 +72,7 @@ describe("ThrottlingRetryPolicy", () => { assert.deepEqual(response.request, request); }); - it("should do nothing when status code is not 429", async () => { + it("should do nothing when status code is not 429 nor 503", async () => { const request = new WebResource(); const mockResponse = { status: 400, @@ -114,6 +114,120 @@ describe("ThrottlingRetryPolicy", () => { assert.deepEqual(response, mockResponse); }); + it("should pass the response to the handler if the status code equals 503", async () => { + const request = new WebResource(); + const mockResponse = { + status: 503, + headers: new HttpHeaders({ + "Retry-After": "100" + }), + request: request + }; + const policy = createDefaultThrottlingRetryPolicy(mockResponse, (_, response) => { + delete (response.request as any).requestId; + delete (mockResponse.request as any).requestId; + assert.deepEqual(response, mockResponse); + return Promise.resolve(response); + }); + + const response = await policy.sendRequest(request); + delete (request as any).requestId; + delete (response.request as any).requestId; + assert.deepEqual(response, mockResponse); + }); + + it("if the status code equals 429, it should retry up to 3 times", async () => { + const request = new WebResource(); + const status = 429; + const retryResponse = { + status, + headers: new HttpHeaders({ + "Retry-After": "1" + }), + request + }; + const responses: HttpOperationResponse[] = [ + retryResponse, + retryResponse, + retryResponse, + // This one should be returned + { + status, + headers: new HttpHeaders({ + "Retry-After": "1", + "final-response": "final-response" + }), + request + } + ]; + + const clock = sinon.useFakeTimers(); + + const policy = new ThrottlingRetryPolicy( + { + async sendRequest(): Promise { + return responses.shift()!; + } + }, + new RequestPolicyOptions() + ); + + const promise = policy.sendRequest(request); + clock.tickAsync(3000); + + const response = await promise; + assert.deepEqual(response.status, status); + assert.equal(response.headers.get("final-response"), "final-response"); + + clock.restore(); + }); + + it("if the status code equals 503, it should retry up to 3 times", async () => { + const request = new WebResource(); + const status = 503; + const retryResponse = { + status, + headers: new HttpHeaders({ + "Retry-After": "1" + }), + request + }; + const responses: HttpOperationResponse[] = [ + retryResponse, + retryResponse, + retryResponse, + // This one should be returned + { + status, + headers: new HttpHeaders({ + "Retry-After": "1", + "final-response": "final-response" + }), + request + } + ]; + + const clock = sinon.useFakeTimers(); + + const policy = new ThrottlingRetryPolicy( + { + async sendRequest(): Promise { + return responses.shift()!; + } + }, + new RequestPolicyOptions() + ); + + const promise = policy.sendRequest(request); + clock.tickAsync(3000); + + const response = await promise; + assert.deepEqual(response.status, status); + assert.equal(response.headers.get("final-response"), "final-response"); + + clock.restore(); + }); + it("should honor the abort signal passed", async () => { const request = new WebResource( "https://fakeservice.io", diff --git a/sdk/core/core-rest-pipeline/CHANGELOG.md b/sdk/core/core-rest-pipeline/CHANGELOG.md index 204c6f00e236..2fc48a81256d 100644 --- a/sdk/core/core-rest-pipeline/CHANGELOG.md +++ b/sdk/core/core-rest-pipeline/CHANGELOG.md @@ -6,6 +6,12 @@ - Fixed an issue where `proxySettings` does not work when there is username but no password [Issue 15720](https://github.com/Azure/azure-sdk-for-js/issues/15720) +### Features Added + +- Added support for the `Retry-After` header on responses with status code 503, Service Unavailable. +- The `ExponentialRetryPolicy` will now ignore `503` responses if they have the `Retry-After` header. +- Added support for multiple retries on the `ThrottlingRetryPolicy` (up to 3 by default). + ### Breaking Changes - Updated @azure/core-tracing to version `1.0.0-preview.12`. See [@azure/core-tracing CHANGELOG](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-tracing/CHANGELOG.md) for details about breaking changes with tracing. diff --git a/sdk/core/core-rest-pipeline/src/policies/exponentialRetryPolicy.ts b/sdk/core/core-rest-pipeline/src/policies/exponentialRetryPolicy.ts index 23784c619fd8..e55af5aa694e 100644 --- a/sdk/core/core-rest-pipeline/src/policies/exponentialRetryPolicy.ts +++ b/sdk/core/core-rest-pipeline/src/policies/exponentialRetryPolicy.ts @@ -70,7 +70,12 @@ export function exponentialRetryPolicy( * @param retryData - The retry data. * @returns True if the operation qualifies for a retry; false otherwise. */ - function shouldRetry(statusCode: number | undefined, retryData: RetryData): boolean { + function shouldRetry(response: PipelineResponse | undefined, retryData: RetryData): boolean { + const statusCode = response?.status; + if (statusCode === 503 && response?.headers.get("Retry-After")) { + return false; + } + if ( statusCode === undefined || (statusCode < 500 && statusCode !== 408) || @@ -126,7 +131,7 @@ export function exponentialRetryPolicy( ): Promise { retryData = updateRetryData(retryData, requestError); const isAborted = request.abortSignal?.aborted; - if (!isAborted && shouldRetry(response?.status, retryData)) { + if (!isAborted && shouldRetry(response, retryData)) { logger.info(`Retrying request in ${retryData.retryInterval}`); try { await delay(retryData.retryInterval); diff --git a/sdk/core/core-rest-pipeline/src/policies/throttlingRetryPolicy.ts b/sdk/core/core-rest-pipeline/src/policies/throttlingRetryPolicy.ts index 71e06e48978c..54bf26c92126 100644 --- a/sdk/core/core-rest-pipeline/src/policies/throttlingRetryPolicy.ts +++ b/sdk/core/core-rest-pipeline/src/policies/throttlingRetryPolicy.ts @@ -10,6 +10,11 @@ import { delay } from "../util/helpers"; */ export const throttlingRetryPolicyName = "throttlingRetryPolicy"; +/** + * Maximum number of retries for the throttling retry policy + */ +export const DEFAULT_CLIENT_MAX_RETRY_COUNT = 3; + /** * A policy that retries when the server sends a 429 response with a Retry-After header. * @@ -22,21 +27,23 @@ export function throttlingRetryPolicy(): PipelinePolicy { return { name: throttlingRetryPolicyName, async sendRequest(request: PipelineRequest, next: SendRequest): Promise { - const response = await next(request); - if (response.status !== 429) { - return response; - } + let response = await next(request); - const retryAfterHeader = response.headers.get("Retry-After"); - - if (retryAfterHeader) { + for (let count = 0; count < DEFAULT_CLIENT_MAX_RETRY_COUNT; count++) { + if (response.status !== 429 && response.status !== 503) { + return response; + } + const retryAfterHeader = response.headers.get("Retry-After"); + if (!retryAfterHeader) { + break; + } const delayInMs = parseRetryAfterHeader(retryAfterHeader); - if (delayInMs) { - await delay(delayInMs); - return next(request); + if (!delayInMs) { + break; } + await delay(delayInMs); + response = await next(request); } - return response; } }; diff --git a/sdk/core/core-rest-pipeline/test/throttlingRetryPolicy.spec.ts b/sdk/core/core-rest-pipeline/test/throttlingRetryPolicy.spec.ts index d0586a3cfcf5..c176d6fb6d7b 100644 --- a/sdk/core/core-rest-pipeline/test/throttlingRetryPolicy.spec.ts +++ b/sdk/core/core-rest-pipeline/test/throttlingRetryPolicy.spec.ts @@ -2,6 +2,7 @@ // Licensed under the MIT license. import { assert } from "chai"; +import { Context } from "mocha"; import * as sinon from "sinon"; import { createPipelineRequest, @@ -16,7 +17,7 @@ describe("throttlingRetryPolicy", function() { sinon.restore(); }); - it("It should retry after a given number of seconds", async () => { + it("It should retry after a given number of seconds on a response with status code 429", async () => { const request = createPipelineRequest({ url: "https://bing.com" }); @@ -54,7 +55,7 @@ describe("throttlingRetryPolicy", function() { clock.restore(); }); - it("It should retry after a given date occurs", async () => { + it("It should retry after a given date occurs on a response with status code 429", async () => { const request = createPipelineRequest({ url: "https://bing.com" }); @@ -95,4 +96,122 @@ describe("throttlingRetryPolicy", function() { assert.strictEqual(result, successResponse); clock.restore(); }); + + it("It should retry after a given number of seconds on a response with status code 503", async () => { + const request = createPipelineRequest({ + url: "https://bing.com" + }); + const retryResponse: PipelineResponse = { + headers: createHttpHeaders({ + "Retry-After": "10" + }), + request, + status: 503 + }; + const successResponse: PipelineResponse = { + headers: createHttpHeaders(), + request, + status: 200 + }; + + const policy = throttlingRetryPolicy(); + const next = sinon.stub, ReturnType>(); + next.onFirstCall().resolves(retryResponse); + next.onSecondCall().resolves(successResponse); + + const clock = sinon.useFakeTimers(); + + const promise = policy.sendRequest(request, next); + assert.isTrue(next.calledOnce); + + // allow the delay to occur + const time = await clock.nextAsync(); + assert.strictEqual(time, 10 * 1000); + assert.isTrue(next.calledTwice); + + const result = await promise; + + assert.strictEqual(result, successResponse); + clock.restore(); + }); + + it("It should retry after a given date occurs on a response with status code 503", async () => { + const request = createPipelineRequest({ + url: "https://bing.com" + }); + const retryResponse: PipelineResponse = { + headers: createHttpHeaders({ + "Retry-After": "Wed, 21 Oct 2015 07:28:00 GMT" + }), + request, + status: 503 + }; + const successResponse: PipelineResponse = { + headers: createHttpHeaders(), + request, + status: 200 + }; + + const policy = throttlingRetryPolicy(); + const next = sinon.stub, ReturnType>(); + next.onFirstCall().resolves(retryResponse); + next.onSecondCall().resolves(successResponse); + + const clock = sinon.useFakeTimers(new Date("Wed, 21 Oct 2015 07:20:00 GMT")); + + const promise = policy.sendRequest(request, next); + assert.isTrue(next.calledOnce); + + // allow the delay to occur + const time = await clock.nextAsync(); + assert.strictEqual( + time, + new Date("Wed, 21 Oct 2015 07:28:00 GMT").getTime(), + "It should now be the time from the header." + ); + assert.isTrue(next.calledTwice); + + const result = await promise; + + assert.strictEqual(result, successResponse); + clock.restore(); + }); + + it("It should retry up to three times", async function(this: Context) { + const clock = sinon.useFakeTimers(); + + const request = createPipelineRequest({ + url: "https://bing.com" + }); + const retryResponse: PipelineResponse = { + headers: createHttpHeaders({ + "Retry-After": "1" + }), + request, + status: 503 + }; + + const policy = throttlingRetryPolicy(); + const next = sinon.stub, ReturnType>(); + next.onCall(0).resolves(retryResponse); + next.onCall(1).resolves(retryResponse); + next.onCall(2).resolves(retryResponse); + // This one should be returned + next.onCall(3).resolves({ + headers: createHttpHeaders({ + "Retry-After": "1", + "final-response": "final-response" + }), + request, + status: 503 + }); + + const promise = policy.sendRequest(request, next); + await clock.tickAsync(3000); + const response = await promise; + assert.equal(response.status, 503); + assert.equal(response.headers.get("final-response"), "final-response"); + + clock.restore(); + }); }); diff --git a/sdk/identity/identity/src/credentials/managedIdentityCredential/imdsMsi.ts b/sdk/identity/identity/src/credentials/managedIdentityCredential/imdsMsi.ts index 0445d15c764d..26b5e07bcd3a 100644 --- a/sdk/identity/identity/src/credentials/managedIdentityCredential/imdsMsi.ts +++ b/sdk/identity/identity/src/credentials/managedIdentityCredential/imdsMsi.ts @@ -102,7 +102,6 @@ export const imdsMsi: MSI = { webResource.timeout = updatedOptions?.requestOptions?.timeout || 3000; try { - logger.info(`Pinging IMDS endpoint`); await identityClient.sendRequest(webResource); } catch (err) { if ( diff --git a/sdk/identity/identity/test/internal/node/managedIdentityCredential.spec.ts b/sdk/identity/identity/test/internal/node/managedIdentityCredential.spec.ts index 7eeae6dc72d8..8718d273e412 100644 --- a/sdk/identity/identity/test/internal/node/managedIdentityCredential.spec.ts +++ b/sdk/identity/identity/test/internal/node/managedIdentityCredential.spec.ts @@ -237,15 +237,58 @@ describe("ManagedIdentityCredential", function() { credential.getToken("scopes").catch((error) => { errorMessage = error.message; }); - // 800ms -> 1600ms -> 3200ms, results in 6400ms + // From the retry code of the IMDS MSI, + // the timeouts increase exponentially until we reach the limit: + // 800ms -> 1600ms -> 3200ms, results in 6400ms await clock.tickAsync(6400); + assert.ok( errorMessage.indexOf( `Failed to retrieve IMDS token after ${imdsMsiRetryConfig.maxRetries} retries.` ) > -1 ); + clock?.restore(); + }); + + it("IMDS MSI retries also retries on 503s", async function() { + const mockHttpClient = new MockAuthHttpClient({ + // First response says the IMDS endpoint is available. + authResponse: [ + { status: 503, headers: new HttpHeaders({ "Retry-After": "2" }) }, + { status: 503, headers: new HttpHeaders({ "Retry-After": "2" }) }, + { status: 503, headers: new HttpHeaders({ "Retry-After": "2" }) }, + // The ThrottlingRetryPolicy of core-http will retry up to 3 times, an extra retry would make this fail (meaning a 503 response would be considered the result) + // { status: 503, headers: new HttpHeaders({ "Retry-After": "2" }) }, + { status: 200 }, + { status: 503, headers: new HttpHeaders({ "Retry-After": "2" }) }, + { status: 503, headers: new HttpHeaders({ "Retry-After": "2" }) }, + { status: 503, headers: new HttpHeaders({ "Retry-After": "2" }) }, + { + status: 200, + parsedBody: { + access_token: "token" + } + } + ] + }); + + const credential = new ManagedIdentityCredential( + "errclient", + mockHttpClient.tokenCredentialOptions + ); + + const clock = sandbox.useFakeTimers(); + const promise = credential.getToken("scopes"); + + // From the retry code of the IMDS MSI, + // the timeouts increase exponentially until we reach the limit: + // 800ms -> 1600ms -> 3200ms, results in 6400ms + // Plus four 503s: 20s * 6 from the 503 responses. + clock.tickAsync(6400 + 2000 * 6); + + assert.equal((await promise).token, "token"); clock.restore(); }); From b17fb63a27369d83a00ef88fd951cab340d4d693 Mon Sep 17 00:00:00 2001 From: Vishnu Reddy Date: Tue, 29 Jun 2021 08:14:41 -0700 Subject: [PATCH 30/49] [digital-twins-core] rename test folder and enable minmax testing (#16049) close #13814 --- .../test/{unit => internal}/digitalTwinsClient.spec.ts | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename sdk/digitaltwins/digital-twins-core/test/{unit => internal}/digitalTwinsClient.spec.ts (100%) diff --git a/sdk/digitaltwins/digital-twins-core/test/unit/digitalTwinsClient.spec.ts b/sdk/digitaltwins/digital-twins-core/test/internal/digitalTwinsClient.spec.ts similarity index 100% rename from sdk/digitaltwins/digital-twins-core/test/unit/digitalTwinsClient.spec.ts rename to sdk/digitaltwins/digital-twins-core/test/internal/digitalTwinsClient.spec.ts From 36b468cb97a05863508ea6527d07c602de0b8596 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Rodr=C3=ADguez?= Date: Tue, 29 Jun 2021 13:23:41 -0400 Subject: [PATCH 31/49] [Identity] [InteractiveBrowserCredential] [Node] Enable PKCE (#15853) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR enables PKCE on the InteractiveBrowserCredential. We don’t have tests for this yet. I’ll make sure to test it manually, at least. Fixes #15168 --- sdk/identity/identity/CHANGELOG.md | 3 ++- .../credentials/interactiveBrowserCredential.ts | 3 +++ .../src/msal/nodeFlows/msalOpenBrowser.ts | 17 +++++++++++++++-- 3 files changed, 20 insertions(+), 3 deletions(-) diff --git a/sdk/identity/identity/CHANGELOG.md b/sdk/identity/identity/CHANGELOG.md index ae4daa2d73ee..816d44824eb1 100644 --- a/sdk/identity/identity/CHANGELOG.md +++ b/sdk/identity/identity/CHANGELOG.md @@ -9,6 +9,8 @@ - `@azure/identity-cache-persistence`, which provides persistent token caching (same as was available in version 2.0.0-beta.2, but now provided through a secondary extension package). - Reintroduced a stub implementation of `VisualStudioCodeCredential`. If the `@azure/identity-vscode` extension is not used, then it will throw a `CredentialUnavailableError` (similar to how it previously behaved if the `keytar` package was not installed). The extension now provides the underlying implementation of `VisualStudioCodeCredential` through dependency injection. - Reintroduced the `TokenCachePersistenceOptions` property on most credential constructor options. This property must be present with an `enabled` property set to true to enable persistent token caching for a credential instance. Credentials that do not support persistent token caching do not have this property. +- Added support to `ManagedIdentityCredential` for Bridge to Kubernetes local development authentication. +- Enabled PKCE on `InteractiveBrowserCredential` for Node.js. [Proof Key for Code Exchange (PKCE)](https://datatracker.ietf.org/doc/html/rfc7636) is a security feature that mitigates authentication code interception attacks. - Added regional STS support to client credential types. - Added the `RegionalAuthority` type, that allows specifying Azure regions. - Added `regionalAuthority` property to `ClientSecretCredentialOptions` and `ClientCertificateCredentialOptions`. @@ -34,7 +36,6 @@ - `AuthenticationRequiredError` (introduced in 2.0.0-beta.1) now has the same impact on `ChainedTokenCredential` as the `CredentialUnavailableError` which is to allow the next credential in the chain to be tried. - `ManagedIdentityCredential` now retries with exponential back-off when a request for a token fails with a 404 status code on environments with available IMDS endpoints. - Added an `AzurePowerShellCredential` which will use the authenticated user session from the `Az.Account` PowerShell module. This credential will attempt to use PowerShell Core by calling `pwsh`, and on Windows it will fall back to Windows PowerShell (`powershell`) if PowerShell Core is not available. -- Added support to `ManagedIdentityCredential` for Bridge to Kubernetes local development authentication. ### Breaking changes from 2.0.0-beta.1 diff --git a/sdk/identity/identity/src/credentials/interactiveBrowserCredential.ts b/sdk/identity/identity/src/credentials/interactiveBrowserCredential.ts index 35238d2579f0..9176effa2e5a 100644 --- a/sdk/identity/identity/src/credentials/interactiveBrowserCredential.ts +++ b/sdk/identity/identity/src/credentials/interactiveBrowserCredential.ts @@ -82,6 +82,9 @@ export class InteractiveBrowserCredential implements TokenCredential { * * If the token can't be retrieved silently, this method will require user interaction to retrieve the token. * + * On Node.js, this credential has [Proof Key for Code Exchange (PKCE)](https://datatracker.ietf.org/doc/html/rfc7636) enabled by default. + * PKCE is a security feature that mitigates authentication code interception attacks. + * * @param scopes - The list of scopes for which the token will have access. * @param options - The options used to configure any requests this * TokenCredential implementation might make. diff --git a/sdk/identity/identity/src/msal/nodeFlows/msalOpenBrowser.ts b/sdk/identity/identity/src/msal/nodeFlows/msalOpenBrowser.ts index 8b584bbc99a4..fb8d1a52500b 100644 --- a/sdk/identity/identity/src/msal/nodeFlows/msalOpenBrowser.ts +++ b/sdk/identity/identity/src/msal/nodeFlows/msalOpenBrowser.ts @@ -87,7 +87,8 @@ export class MsalOpenBrowser extends MsalNode { const tokenRequest: msalNode.AuthorizationCodeRequest = { code: url.searchParams.get("code")!, redirectUri: this.redirectUri, - scopes: scopes + scopes: scopes, + codeVerifier: this.pkceCodes?.verifier }; this.acquireTokenByCode(tokenRequest) @@ -185,10 +186,22 @@ export class MsalOpenBrowser extends MsalNode { }); } + private pkceCodes?: { + verifier: string; + challenge: string; + }; + private async openAuthCodeUrl(scopeArray: string[]): Promise { + // Initialize CryptoProvider instance + const cryptoProvider = new msalNode.CryptoProvider(); + // Generate PKCE Codes before starting the authorization flow + this.pkceCodes = await cryptoProvider.generatePkceCodes(); + const authCodeUrlParameters: msalNode.AuthorizationUrlRequest = { scopes: scopeArray, - redirectUri: this.redirectUri + redirectUri: this.redirectUri, + codeChallenge: this.pkceCodes.challenge, + codeChallengeMethod: "S256" // Use SHA256 Algorithm }; const response = await this.publicApp!.getAuthCodeUrl(authCodeUrlParameters); From d4d50026afbc5f0b55167ed4f0d861a431e160b0 Mon Sep 17 00:00:00 2001 From: Richard Park <51494936+richardpark-msft@users.noreply.github.com> Date: Tue, 29 Jun 2021 10:47:27 -0700 Subject: [PATCH 32/49] [monitor-query] Regenerate client with stable swaggers and add in includeVisualization option. (#16058) * Big update to use the latest stable swagger files for all of the Log Analytics services. Each reference is by git commit ID this time to prevent any accidental drift. Also, added in the includeRender header (via the `includeVisualization` option). Fixes #15771 * Fixing codeowners to reflect the proper owners for the package: @KarishmaGhiya - main owner @maorleger - backup owner * Formatting! --- .github/CODEOWNERS | 2 +- .../monitor-query/review/monitor-query.api.md | 38 ++++-- .../logquery/src/azureLogAnalyticsContext.ts | 2 +- .../generated/logquery/src/models/index.ts | 86 +++++++------ .../generated/logquery/src/models/mappers.ts | 113 +++++++++--------- .../src/generated/metrics/src/models/index.ts | 32 ++--- .../generated/metrics/src/models/mappers.ts | 7 +- .../metrics/src/models/parameters.ts | 6 +- .../metrics/src/monitorManagementClient.ts | 4 +- .../src/monitorManagementClientContext.ts | 14 +-- .../metrics/src/operations/metrics.ts | 4 +- .../generated/metricsdefinitions/src/index.ts | 4 +- .../metricsdefinitions/src/models/index.ts | 48 ++++++-- .../metricsdefinitions/src/models/mappers.ts | 31 +++++ ...nsClient.ts => monitorManagementClient.ts} | 14 +-- ...t.ts => monitorManagementClientContext.ts} | 18 +-- .../src/operations/metricDefinitions.ts | 8 +- .../generated/metricsnamespaces/src/index.ts | 4 +- .../metricsnamespaces/src/models/index.ts | 2 +- ...esClient.ts => monitorManagementClient.ts} | 10 +- ...t.ts => monitorManagementClientContext.ts} | 13 +- .../src/operations/metricNamespaces.ts | 6 +- sdk/monitor/monitor-query/src/index.ts | 11 +- .../src/internal/modelConverters.ts | 38 +++--- .../monitor-query/src/internal/util.ts | 11 +- .../monitor-query/src/logsQueryClient.ts | 3 +- .../monitor-query/src/metricsQueryClient.ts | 12 +- .../src/models/publicLogsModels.ts | 7 ++ .../src/models/publicMetricsModels.ts | 35 +++++- sdk/monitor/monitor-query/swagger/README.md | 13 +- .../unit/modelConverters.unittest.spec.ts | 12 +- .../test/public/logsQueryClient.spec.ts | 26 +++- .../test/public/metricsQueryClient.spec.ts | 26 ++-- .../test/public/shared/testShared.ts | 8 +- 34 files changed, 424 insertions(+), 244 deletions(-) rename sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/{metricsDefinitionsClient.ts => monitorManagementClient.ts} (58%) rename sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/{metricsDefinitionsClientContext.ts => monitorManagementClientContext.ts} (72%) rename sdk/monitor/monitor-query/src/generated/metricsnamespaces/src/{metricsNamespacesClient.ts => monitorManagementClient.ts} (68%) rename sdk/monitor/monitor-query/src/generated/metricsnamespaces/src/{metricsNamespacesClientContext.ts => monitorManagementClientContext.ts} (80%) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 3f75f4c2450b..48e125a50fc9 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -107,7 +107,7 @@ # PRLabel: %Monitor /sdk/monitor/ @hectorhdzg @applicationinsights-js-owners @richardpark-msft -/sdk/monitor/monitor-query @richardpark-msft @maorleger +/sdk/monitor/monitor-query @KarishmaGhiya @maorleger @richardpark-msft ########### # Tools diff --git a/sdk/monitor/monitor-query/review/monitor-query.api.md b/sdk/monitor/monitor-query/review/monitor-query.api.md index 190a54fdc4db..e192adbed7bc 100644 --- a/sdk/monitor/monitor-query/review/monitor-query.api.md +++ b/sdk/monitor/monitor-query/review/monitor-query.api.md @@ -80,12 +80,6 @@ export interface GetMetricNamespacesResult { namespaces: MetricNamespace[]; } -// @public -export interface LogsColumn { - name?: string; - type?: ColumnDataType; -} - // @public export class LogsQueryClient { constructor(tokenCredential: TokenCredential, options?: LogsQueryClientOptions); @@ -101,7 +95,7 @@ export interface LogsQueryClientOptions extends PipelineOptions { // @public export interface LogsTable { - columns: LogsColumn[]; + columns: MetricColumn[]; name: string; rows: (Date | string | number | Record | boolean)[][]; } @@ -114,7 +108,7 @@ export interface MetadataValue { // @public export interface Metric { - displayDescription: string; + displayDescription?: string; errorCode?: string; id: string; name: string; @@ -129,6 +123,29 @@ export interface MetricAvailability { timeGrain?: string; } +// @public +export type MetricClass = string; + +// @public +export interface MetricColumn { + name?: string; + type?: ColumnDataType; +} + +// @public +export interface MetricDefinition { + category?: string; + dimensions?: string[]; + displayDescription?: string; + id?: string; + isDimensionRequired?: boolean; + metricAvailabilities?: MetricAvailability[]; + name?: string; + primaryAggregationType?: AggregationType; + resourceId?: string; + unit?: MetricUnit; +} + // @public export interface MetricDefinition { category?: string; @@ -137,9 +154,12 @@ export interface MetricDefinition { id?: string; isDimensionRequired?: boolean; metricAvailabilities?: MetricAvailability[]; + metricClass?: MetricClass; name?: string; + namespace?: string; primaryAggregationType?: AggregationType; resourceId?: string; + supportedAggregationTypes?: AggregationType[]; unit?: MetricUnit; } @@ -207,6 +227,7 @@ export interface QueryLogsBatchResult { // @public export interface QueryLogsOptions extends OperationOptions { includeQueryStatistics?: boolean; + includeVisualization?: boolean; serverTimeoutInSeconds?: number; } @@ -214,6 +235,7 @@ export interface QueryLogsOptions extends OperationOptions { export interface QueryLogsResult { statistics?: any; tables: LogsTable[]; + visualization?: any; } // @public diff --git a/sdk/monitor/monitor-query/src/generated/logquery/src/azureLogAnalyticsContext.ts b/sdk/monitor/monitor-query/src/generated/logquery/src/azureLogAnalyticsContext.ts index e4b7684a8467..4ef4d15d1a2b 100644 --- a/sdk/monitor/monitor-query/src/generated/logquery/src/azureLogAnalyticsContext.ts +++ b/sdk/monitor/monitor-query/src/generated/logquery/src/azureLogAnalyticsContext.ts @@ -10,7 +10,7 @@ import * as coreHttp from "@azure/core-http"; import { AzureLogAnalyticsOptionalParams } from "./models"; const packageName = "monitor-log-query"; -const packageVersion = "1.0.0-beta.3"; +const packageVersion = "1.0.0"; /** @hidden */ export class AzureLogAnalyticsContext extends coreHttp.ServiceClient { diff --git a/sdk/monitor/monitor-query/src/generated/logquery/src/models/index.ts b/sdk/monitor/monitor-query/src/generated/logquery/src/models/index.ts index d04a131a4f5a..afa97198cd03 100644 --- a/sdk/monitor/monitor-query/src/generated/logquery/src/models/index.ts +++ b/sdk/monitor/monitor-query/src/generated/logquery/src/models/index.ts @@ -14,6 +14,10 @@ export interface QueryResults { tables: Table[]; /** Statistics represented in JSON format. */ statistics?: any; + /** Visualization data in JSON format. */ + render?: any; + /** The code and message for an error. */ + error?: ErrorInfo; } /** Contains the columns and rows for one table in a query response. */ @@ -23,7 +27,7 @@ export interface Table { /** The list of columns in this table. */ columns: Column[]; /** The resulting rows from this query. */ - rows: string[][]; + rows: any[][]; } /** A column in a table. */ @@ -31,13 +35,7 @@ export interface Column { /** The name of this column. */ name?: string; /** The data type of this column. */ - type?: ColumnDataType; -} - -/** Contains details when the response code indicates an error. */ -export interface ErrorResponse { - /** The error details. */ - error: ErrorInfo; + type?: LogsColumnType; } /** The code and message for an error. */ @@ -70,6 +68,12 @@ export interface ErrorDetail { additionalProperties?: any; } +/** Contains details when the response code indicates an error. */ +export interface ErrorResponse { + /** The error details. */ + error: ErrorInfo; +} + /** The Analytics query. Learn more about the [Analytics query syntax](https://azure.microsoft.com/documentation/articles/app-insights-analytics-reference/) */ export interface QueryBody { /** The query to execute. */ @@ -78,12 +82,6 @@ export interface QueryBody { timespan?: string; /** A list of workspaces that are included in the query. */ workspaces?: string[]; - /** A list of qualified workspace names that are included in the query. */ - qualifiedNames?: string[]; - /** A list of workspace IDs that are included in the query. */ - workspaceIds?: string[]; - /** A list of Azure resource IDs that are included in the query. */ - azureResourceIds?: string[]; } /** The metadata response for the app, including available tables, etc. */ @@ -405,60 +403,67 @@ export interface MetadataPermissionsApplicationsItem { /** An array of requests. */ export interface BatchRequest { /** An single request in a batch. */ - requests?: LogQueryRequest[]; + requests: BatchQueryRequest[]; } /** An single request in a batch. */ -export interface LogQueryRequest { +export interface BatchQueryRequest { /** The error details. */ - id?: string; + id: string; /** Dictionary of */ headers?: { [propertyName: string]: string }; /** The Analytics query. Learn more about the [Analytics query syntax](https://azure.microsoft.com/documentation/articles/app-insights-analytics-reference/) */ - body?: QueryBody; + body: QueryBody; path?: "/query"; method?: "POST"; /** Workspace Id to be included in the query */ - workspace?: string; + workspace: string; } -/** Response to a batch. */ +/** Response to a batch query. */ export interface BatchResponse { /** An array of responses corresponding to each individual request in a batch. */ - responses?: LogQueryResponse[]; + responses?: BatchQueryResponse[]; } -export interface LogQueryResponse { +export interface BatchQueryResponse { id?: string; status?: number; - /** Contains the tables, columns & rows resulting from the query or the error details if the query failed. */ - body?: LogQueryResult; + /** Contains the tables, columns & rows resulting from a query. */ + body?: BatchQueryResults; /** Dictionary of */ headers?: { [propertyName: string]: string }; } -/** Contains the tables, columns & rows resulting from the query or the error details if the query failed. */ -export interface LogQueryResult { +/** Contains the tables, columns & rows resulting from a query. */ +export interface BatchQueryResults { /** The list of tables, columns and rows. */ tables?: Table[]; + /** Statistics represented in JSON format. */ + statistics?: any; + /** Visualization data in JSON format. */ + render?: any; /** The code and message for an error. */ error?: ErrorInfo; } -/** Known values of {@link ColumnDataType} that the service accepts. */ -export const enum KnownColumnDataType { +/** Known values of {@link LogsColumnType} that the service accepts. */ +export const enum KnownLogsColumnType { Bool = "bool", Datetime = "datetime", Dynamic = "dynamic", Int = "int", Long = "long", Real = "real", - String = "string" + String = "string", + Guid = "guid", + Decimal = "decimal", + Timespan = "timespan" } /** - * Defines values for ColumnDataType. \ - * {@link KnownColumnDataType} can be used interchangeably with ColumnDataType, + * Defines values for LogsColumnType. \ + * {@link KnownLogsColumnType} can be used interchangeably with LogsColumnType, * this enum contains the known values that the service supports. * ### Know values supported by the service * **bool** \ @@ -467,9 +472,12 @@ export const enum KnownColumnDataType { * **int** \ * **long** \ * **real** \ - * **string** + * **string** \ + * **guid** \ + * **decimal** \ + * **timespan** */ -export type ColumnDataType = string; +export type LogsColumnType = string; /** Known values of {@link MetadataColumnDataType} that the service accepts. */ export const enum KnownMetadataColumnDataType { @@ -479,7 +487,10 @@ export const enum KnownMetadataColumnDataType { Int = "int", Long = "long", Real = "real", - String = "string" + String = "string", + Guid = "guid", + Decimal = "decimal", + Timespan = "timespan" } /** @@ -493,7 +504,10 @@ export const enum KnownMetadataColumnDataType { * **int** \ * **long** \ * **real** \ - * **string** + * **string** \ + * **guid** \ + * **decimal** \ + * **timespan** */ export type MetadataColumnDataType = string; @@ -517,7 +531,7 @@ export type QueryGetResponse = QueryResults & { /** Optional parameters. */ export interface QueryExecuteOptionalParams extends coreHttp.OperationOptions { - /** Optional. The prefer header to set server timeout, */ + /** Optional. The prefer header to set server timeout, query statistics and visualization information. */ prefer?: string; } diff --git a/sdk/monitor/monitor-query/src/generated/logquery/src/models/mappers.ts b/sdk/monitor/monitor-query/src/generated/logquery/src/models/mappers.ts index b568806ee328..fb55eb12dc38 100644 --- a/sdk/monitor/monitor-query/src/generated/logquery/src/models/mappers.ts +++ b/sdk/monitor/monitor-query/src/generated/logquery/src/models/mappers.ts @@ -31,6 +31,19 @@ export const QueryResults: coreHttp.CompositeMapper = { type: { name: "any" } + }, + render: { + serializedName: "render", + type: { + name: "any" + } + }, + error: { + serializedName: "error", + type: { + name: "Composite", + className: "ErrorInfo" + } } } } @@ -71,7 +84,7 @@ export const Table: coreHttp.CompositeMapper = { name: "Sequence", element: { type: { - name: "String" + name: "any" } } } @@ -103,22 +116,6 @@ export const Column: coreHttp.CompositeMapper = { } }; -export const ErrorResponse: coreHttp.CompositeMapper = { - type: { - name: "Composite", - className: "ErrorResponse", - modelProperties: { - error: { - serializedName: "error", - type: { - name: "Composite", - className: "ErrorInfo" - } - } - } - } -}; - export const ErrorInfo: coreHttp.CompositeMapper = { type: { name: "Composite", @@ -219,6 +216,22 @@ export const ErrorDetail: coreHttp.CompositeMapper = { } }; +export const ErrorResponse: coreHttp.CompositeMapper = { + type: { + name: "Composite", + className: "ErrorResponse", + modelProperties: { + error: { + serializedName: "error", + type: { + name: "Composite", + className: "ErrorInfo" + } + } + } + } +}; + export const QueryBody: coreHttp.CompositeMapper = { type: { name: "Composite", @@ -247,39 +260,6 @@ export const QueryBody: coreHttp.CompositeMapper = { } } } - }, - qualifiedNames: { - serializedName: "qualifiedNames", - type: { - name: "Sequence", - element: { - type: { - name: "String" - } - } - } - }, - workspaceIds: { - serializedName: "workspaceIds", - type: { - name: "Sequence", - element: { - type: { - name: "String" - } - } - } - }, - azureResourceIds: { - serializedName: "azureResourceIds", - type: { - name: "Sequence", - element: { - type: { - name: "String" - } - } - } } } } @@ -1550,12 +1530,13 @@ export const BatchRequest: coreHttp.CompositeMapper = { modelProperties: { requests: { serializedName: "requests", + required: true, type: { name: "Sequence", element: { type: { name: "Composite", - className: "LogQueryRequest" + className: "BatchQueryRequest" } } } @@ -1564,13 +1545,14 @@ export const BatchRequest: coreHttp.CompositeMapper = { } }; -export const LogQueryRequest: coreHttp.CompositeMapper = { +export const BatchQueryRequest: coreHttp.CompositeMapper = { type: { name: "Composite", - className: "LogQueryRequest", + className: "BatchQueryRequest", modelProperties: { id: { serializedName: "id", + required: true, type: { name: "String" } @@ -1607,6 +1589,7 @@ export const LogQueryRequest: coreHttp.CompositeMapper = { }, workspace: { serializedName: "workspace", + required: true, type: { name: "String" } @@ -1627,7 +1610,7 @@ export const BatchResponse: coreHttp.CompositeMapper = { element: { type: { name: "Composite", - className: "LogQueryResponse" + className: "BatchQueryResponse" } } } @@ -1636,10 +1619,10 @@ export const BatchResponse: coreHttp.CompositeMapper = { } }; -export const LogQueryResponse: coreHttp.CompositeMapper = { +export const BatchQueryResponse: coreHttp.CompositeMapper = { type: { name: "Composite", - className: "LogQueryResponse", + className: "BatchQueryResponse", modelProperties: { id: { serializedName: "id", @@ -1657,7 +1640,7 @@ export const LogQueryResponse: coreHttp.CompositeMapper = { serializedName: "body", type: { name: "Composite", - className: "LogQueryResult" + className: "BatchQueryResults" } }, headers: { @@ -1671,10 +1654,10 @@ export const LogQueryResponse: coreHttp.CompositeMapper = { } }; -export const LogQueryResult: coreHttp.CompositeMapper = { +export const BatchQueryResults: coreHttp.CompositeMapper = { type: { name: "Composite", - className: "LogQueryResult", + className: "BatchQueryResults", modelProperties: { tables: { serializedName: "tables", @@ -1688,6 +1671,18 @@ export const LogQueryResult: coreHttp.CompositeMapper = { } } }, + statistics: { + serializedName: "statistics", + type: { + name: "any" + } + }, + render: { + serializedName: "render", + type: { + name: "any" + } + }, error: { serializedName: "error", type: { diff --git a/sdk/monitor/monitor-query/src/generated/metrics/src/models/index.ts b/sdk/monitor/monitor-query/src/generated/metrics/src/models/index.ts index 25c60a079781..4c302b841189 100644 --- a/sdk/monitor/monitor-query/src/generated/metrics/src/models/index.ts +++ b/sdk/monitor/monitor-query/src/generated/metrics/src/models/index.ts @@ -16,9 +16,9 @@ export interface Response { timespan: string; /** The interval (window size) for which the metric data was returned in. This may be adjusted in the future and returned back from what was originally requested. This is not present if a metadata request was made. */ interval?: string; - /** The namespace of the metrics been queried */ + /** The namespace of the metrics being queried */ namespace?: string; - /** The region of the resource been queried for metrics. */ + /** The region of the resource being queried for metrics. */ resourceregion?: string; /** the value of the collection. */ value: Metric[]; @@ -33,10 +33,12 @@ export interface Metric { /** the name and the display name of the metric, i.e. it is localizable string. */ name: LocalizableString; /** Detailed description of this metric. */ - displayDescription: string; + displayDescription?: string; /** 'Success' or the error details on query failures for this metric. */ errorCode?: string; - /** the unit of the metric. */ + /** Error message encountered querying this specific metric. */ + errorMessage?: string; + /** The unit of the metric. */ unit: MetricUnit; /** the time series returned when a data query is performed. */ timeseries: TimeSeriesElement[]; @@ -90,20 +92,20 @@ export interface ErrorResponse { message?: string; } -/** Known values of {@link ApiVersion20170501Preview} that the service accepts. */ -export const enum KnownApiVersion20170501Preview { - /** Api Version '2017-05-01-preview' */ - TwoThousandSeventeen0501Preview = "2017-05-01-preview" +/** Known values of {@link ApiVersion201801} that the service accepts. */ +export const enum KnownApiVersion201801 { + /** Api Version '2018-01-01' */ + TwoThousandEighteen0101 = "2018-01-01" } /** - * Defines values for ApiVersion20170501Preview. \ - * {@link KnownApiVersion20170501Preview} can be used interchangeably with ApiVersion20170501Preview, + * Defines values for ApiVersion201801. \ + * {@link KnownApiVersion201801} can be used interchangeably with ApiVersion201801, * this enum contains the known values that the service supports. * ### Know values supported by the service - * **2017-05-01-preview**: Api Version '2017-05-01-preview' + * **2018-01-01**: Api Version '2018-01-01' */ -export type ApiVersion20170501Preview = string; +export type ApiVersion201801 = string; /** Known values of {@link MetricUnit} that the service accepts. */ export const enum KnownMetricUnit { @@ -151,8 +153,8 @@ export interface MetricsListOptionalParams extends coreHttp.OperationOptions { timespan?: string; /** The interval (i.e. timegrain) of the query. */ interval?: string; - /** The name of the metric to retrieve. */ - metric?: string; + /** The names of the metrics (comma separated) to retrieve. Special case: If a metricname itself has a comma in it then use %2 to indicate it. Eg: 'Metric,Name1' should be **'Metric%2Name1'** */ + metricnames?: string; /** The list of aggregation types (comma separated) to retrieve. */ aggregation?: string; /** @@ -167,7 +169,7 @@ export interface MetricsListOptionalParams extends coreHttp.OperationOptions { * Examples: sum asc. */ orderby?: string; - /** The **$filter** is used to reduce the set of metric data returned.
Example:
Metric contains metadata A, B and C.
- Return all time series of C where A = a1 and B = b1 or b2
**$filter=A eq ‘a1’ and B eq ‘b1’ or B eq ‘b2’ and C eq ‘*’**
- Invalid variant:
**$filter=A eq ‘a1’ and B eq ‘b1’ and C eq ‘*’ or B = ‘b2’**
This is invalid because the logical or operator cannot separate two different metadata names.
- Return all time series where A = a1, B = b1 and C = c1:
**$filter=A eq ‘a1’ and B eq ‘b1’ and C eq ‘c1’**
- Return all time series where A = a1
**$filter=A eq ‘a1’ and B eq ‘*’ and C eq ‘*’**. */ + /** The **$filter** is used to reduce the set of metric data returned. Example: Metric contains metadata A, B and C. - Return all time series of C where A = a1 and B = b1 or b2 **$filter=A eq 'a1' and B eq 'b1' or B eq 'b2' and C eq '*'** - Invalid variant: **$filter=A eq 'a1' and B eq 'b1' and C eq '*' or B = 'b2'** This is invalid because the logical or operator cannot separate two different metadata names. - Return all time series where A = a1, B = b1 and C = c1: **$filter=A eq 'a1' and B eq 'b1' and C eq 'c1'** - Return all time series where A = a1 **$filter=A eq 'a1' and B eq '*' and C eq '*'**. Special case: When dimension name or dimension value uses round brackets. Eg: When dimension name is **dim (test) 1** Instead of using $filter= "dim (test) 1 eq '*' " use **$filter= "dim %2528test%2529 1 eq '*' "** When dimension name is **dim (test) 3** and dimension value is **dim3 (test) val** Instead of using $filter= "dim (test) 3 eq 'dim3 (test) val' " use **$filter= "dim %2528test%2529 3 eq 'dim3 %2528test%2529 val' "** */ filter?: string; /** Reduces the set of data collected. The syntax allowed depends on the operation. See the operation's description for details. */ resultType?: ResultType; diff --git a/sdk/monitor/monitor-query/src/generated/metrics/src/models/mappers.ts b/sdk/monitor/monitor-query/src/generated/metrics/src/models/mappers.ts index 4c8fbaec84ae..5783fb86cdaf 100644 --- a/sdk/monitor/monitor-query/src/generated/metrics/src/models/mappers.ts +++ b/sdk/monitor/monitor-query/src/generated/metrics/src/models/mappers.ts @@ -92,7 +92,6 @@ export const Metric: coreHttp.CompositeMapper = { }, displayDescription: { serializedName: "displayDescription", - required: true, type: { name: "String" } @@ -103,6 +102,12 @@ export const Metric: coreHttp.CompositeMapper = { name: "String" } }, + errorMessage: { + serializedName: "errorMessage", + type: { + name: "String" + } + }, unit: { serializedName: "unit", required: true, diff --git a/sdk/monitor/monitor-query/src/generated/metrics/src/models/parameters.ts b/sdk/monitor/monitor-query/src/generated/metrics/src/models/parameters.ts index c6a8c1ecfea0..067f56f2c2e6 100644 --- a/sdk/monitor/monitor-query/src/generated/metrics/src/models/parameters.ts +++ b/sdk/monitor/monitor-query/src/generated/metrics/src/models/parameters.ts @@ -68,10 +68,10 @@ export const interval: OperationQueryParameter = { } }; -export const metric: OperationQueryParameter = { - parameterPath: ["options", "metric"], +export const metricnames: OperationQueryParameter = { + parameterPath: ["options", "metricnames"], mapper: { - serializedName: "metric", + serializedName: "metricnames", type: { name: "String" } diff --git a/sdk/monitor/monitor-query/src/generated/metrics/src/monitorManagementClient.ts b/sdk/monitor/monitor-query/src/generated/metrics/src/monitorManagementClient.ts index 42d243783c32..98052825fbed 100644 --- a/sdk/monitor/monitor-query/src/generated/metrics/src/monitorManagementClient.ts +++ b/sdk/monitor/monitor-query/src/generated/metrics/src/monitorManagementClient.ts @@ -10,7 +10,7 @@ import { Metrics } from "./operations"; import { MonitorManagementClientContext } from "./monitorManagementClientContext"; import { MonitorManagementClientOptionalParams, - ApiVersion20170501Preview + ApiVersion201801 } from "./models"; /** @hidden */ @@ -21,7 +21,7 @@ export class MonitorManagementClient extends MonitorManagementClientContext { * @param options The parameter options */ constructor( - apiVersion: ApiVersion20170501Preview, + apiVersion: ApiVersion201801, options?: MonitorManagementClientOptionalParams ) { super(apiVersion, options); diff --git a/sdk/monitor/monitor-query/src/generated/metrics/src/monitorManagementClientContext.ts b/sdk/monitor/monitor-query/src/generated/metrics/src/monitorManagementClientContext.ts index 63118ec29a72..2bab9cc7718f 100644 --- a/sdk/monitor/monitor-query/src/generated/metrics/src/monitorManagementClientContext.ts +++ b/sdk/monitor/monitor-query/src/generated/metrics/src/monitorManagementClientContext.ts @@ -7,28 +7,22 @@ */ import * as coreHttp from "@azure/core-http"; -import { - ApiVersion20170501Preview, - MonitorManagementClientOptionalParams -} from "./models"; +import { ApiVersion201801, MonitorManagementClientOptionalParams } from "./models"; const packageName = "monitor-metrics"; -const packageVersion = "1.0.0-beta.3"; +const packageVersion = "1.0.0"; /** @hidden */ export class MonitorManagementClientContext extends coreHttp.ServiceClient { $host: string; - apiVersion: ApiVersion20170501Preview; + apiVersion: ApiVersion201801; /** * Initializes a new instance of the MonitorManagementClientContext class. * @param apiVersion Api Version * @param options The parameter options */ - constructor( - apiVersion: ApiVersion20170501Preview, - options?: MonitorManagementClientOptionalParams - ) { + constructor(apiVersion: ApiVersion201801, options?: MonitorManagementClientOptionalParams) { if (apiVersion === undefined) { throw new Error("'apiVersion' cannot be null"); } diff --git a/sdk/monitor/monitor-query/src/generated/metrics/src/operations/metrics.ts b/sdk/monitor/monitor-query/src/generated/metrics/src/operations/metrics.ts index 6ff568924265..8d6a7465ef37 100644 --- a/sdk/monitor/monitor-query/src/generated/metrics/src/operations/metrics.ts +++ b/sdk/monitor/monitor-query/src/generated/metrics/src/operations/metrics.ts @@ -47,7 +47,7 @@ export class Metrics { const serializer = new coreHttp.Serializer(Mappers, /* isXml */ false); const listOperationSpec: coreHttp.OperationSpec = { - path: "/{resourceUri}/providers/microsoft.insights/metrics", + path: "/{resourceUri}/providers/Microsoft.Insights/metrics", httpMethod: "GET", responses: { 200: { @@ -60,7 +60,7 @@ const listOperationSpec: coreHttp.OperationSpec = { queryParameters: [ Parameters.timespan, Parameters.interval, - Parameters.metric, + Parameters.metricnames, Parameters.aggregation, Parameters.top, Parameters.orderby, diff --git a/sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/index.ts b/sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/index.ts index efc21fd7f59b..77073c736858 100644 --- a/sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/index.ts +++ b/sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/index.ts @@ -7,5 +7,5 @@ */ export * from "./models"; -export { MetricsDefinitionsClient } from "./metricsDefinitionsClient"; -export { MetricsDefinitionsClientContext } from "./metricsDefinitionsClientContext"; +export { MonitorManagementClient } from "./monitorManagementClient"; +export { MonitorManagementClientContext } from "./monitorManagementClientContext"; diff --git a/sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/models/index.ts b/sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/models/index.ts index 8ca6e200ec0e..d1d87bfc328d 100644 --- a/sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/models/index.ts +++ b/sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/models/index.ts @@ -20,16 +20,22 @@ export interface MetricDefinition { isDimensionRequired?: boolean; /** the resource identifier of the resource that emitted the metric. */ resourceId?: string; + /** the namespace the metric belongs to. */ + namespace?: string; /** the name and the display name of the metric, i.e. it is a localizable string. */ name?: LocalizableString; /** Detailed description of this metric. */ displayDescription?: string; /** Custom category name for this metric. */ category?: string; - /** the unit of the metric. */ + /** The class of the metric. */ + metricClass?: MetricClass; + /** The unit of the metric. */ unit?: MetricUnit; /** the primary aggregation type value defining how to use the values for display. */ primaryAggregationType?: AggregationType; + /** the collection of what aggregation types are supported. */ + supportedAggregationTypes?: AggregationType[]; /** the collection of what aggregation intervals are available to be queried. */ metricAvailabilities?: MetricAvailability[]; /** the resource identifier of the metric definition. */ @@ -62,20 +68,42 @@ export interface ErrorResponse { message?: string; } -/** Known values of {@link ApiVersion20170501Preview} that the service accepts. */ -export const enum KnownApiVersion20170501Preview { - /** Api Version '2017-05-01-preview' */ - TwoThousandSeventeen0501Preview = "2017-05-01-preview" +/** Known values of {@link ApiVersion201801} that the service accepts. */ +export const enum KnownApiVersion201801 { + /** Api Version '2018-01-01' */ + TwoThousandEighteen0101 = "2018-01-01" } /** - * Defines values for ApiVersion20170501Preview. \ - * {@link KnownApiVersion20170501Preview} can be used interchangeably with ApiVersion20170501Preview, + * Defines values for ApiVersion201801. \ + * {@link KnownApiVersion201801} can be used interchangeably with ApiVersion201801, * this enum contains the known values that the service supports. * ### Know values supported by the service - * **2017-05-01-preview**: Api Version '2017-05-01-preview' + * **2018-01-01**: Api Version '2018-01-01' */ -export type ApiVersion20170501Preview = string; +export type ApiVersion201801 = string; + +/** Known values of {@link MetricClass} that the service accepts. */ +export const enum KnownMetricClass { + Availability = "Availability", + Transactions = "Transactions", + Errors = "Errors", + Latency = "Latency", + Saturation = "Saturation" +} + +/** + * Defines values for MetricClass. \ + * {@link KnownMetricClass} can be used interchangeably with MetricClass, + * this enum contains the known values that the service supports. + * ### Know values supported by the service + * **Availability** \ + * **Transactions** \ + * **Errors** \ + * **Latency** \ + * **Saturation** + */ +export type MetricClass = string; /** Known values of {@link MetricUnit} that the service accepts. */ export const enum KnownMetricUnit { @@ -143,7 +171,7 @@ export type MetricDefinitionsListResponse = MetricDefinitionCollection & { }; /** Optional parameters. */ -export interface MetricsDefinitionsClientOptionalParams +export interface MonitorManagementClientOptionalParams extends coreHttp.ServiceClientOptions { /** server parameter */ $host?: string; diff --git a/sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/models/mappers.ts b/sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/models/mappers.ts index a6876be60dc0..737551745ecd 100644 --- a/sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/models/mappers.ts +++ b/sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/models/mappers.ts @@ -47,6 +47,12 @@ export const MetricDefinition: coreHttp.CompositeMapper = { name: "String" } }, + namespace: { + serializedName: "namespace", + type: { + name: "String" + } + }, name: { serializedName: "name", type: { @@ -66,6 +72,12 @@ export const MetricDefinition: coreHttp.CompositeMapper = { name: "String" } }, + metricClass: { + serializedName: "metricClass", + type: { + name: "String" + } + }, unit: { serializedName: "unit", type: { @@ -86,6 +98,25 @@ export const MetricDefinition: coreHttp.CompositeMapper = { ] } }, + supportedAggregationTypes: { + serializedName: "supportedAggregationTypes", + type: { + name: "Sequence", + element: { + type: { + name: "Enum", + allowedValues: [ + "None", + "Average", + "Count", + "Minimum", + "Maximum", + "Total" + ] + } + } + } + }, metricAvailabilities: { serializedName: "metricAvailabilities", type: { diff --git a/sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/metricsDefinitionsClient.ts b/sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/monitorManagementClient.ts similarity index 58% rename from sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/metricsDefinitionsClient.ts rename to sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/monitorManagementClient.ts index 1e8db37070e3..570bdf23a145 100644 --- a/sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/metricsDefinitionsClient.ts +++ b/sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/monitorManagementClient.ts @@ -7,22 +7,22 @@ */ import { MetricDefinitions } from "./operations"; -import { MetricsDefinitionsClientContext } from "./metricsDefinitionsClientContext"; +import { MonitorManagementClientContext } from "./monitorManagementClientContext"; import { - MetricsDefinitionsClientOptionalParams, - ApiVersion20170501Preview + MonitorManagementClientOptionalParams, + ApiVersion201801 } from "./models"; /** @hidden */ -export class MetricsDefinitionsClient extends MetricsDefinitionsClientContext { +export class MonitorManagementClient extends MonitorManagementClientContext { /** - * Initializes a new instance of the MetricsDefinitionsClient class. + * Initializes a new instance of the MonitorManagementClient class. * @param apiVersion Api Version * @param options The parameter options */ constructor( - apiVersion: ApiVersion20170501Preview, - options?: MetricsDefinitionsClientOptionalParams + apiVersion: ApiVersion201801, + options?: MonitorManagementClientOptionalParams ) { super(apiVersion, options); this.metricDefinitions = new MetricDefinitions(this); diff --git a/sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/metricsDefinitionsClientContext.ts b/sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/monitorManagementClientContext.ts similarity index 72% rename from sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/metricsDefinitionsClientContext.ts rename to sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/monitorManagementClientContext.ts index 2f24ebfcfcde..fbc4961b2b47 100644 --- a/sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/metricsDefinitionsClientContext.ts +++ b/sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/monitorManagementClientContext.ts @@ -7,28 +7,22 @@ */ import * as coreHttp from "@azure/core-http"; -import { - ApiVersion20170501Preview, - MetricsDefinitionsClientOptionalParams -} from "./models"; +import { ApiVersion201801, MonitorManagementClientOptionalParams } from "./models"; const packageName = "monitor-metrics-definitions"; -const packageVersion = "1.0.0-beta.3"; +const packageVersion = "1.0.0"; /** @hidden */ -export class MetricsDefinitionsClientContext extends coreHttp.ServiceClient { +export class MonitorManagementClientContext extends coreHttp.ServiceClient { $host: string; - apiVersion: ApiVersion20170501Preview; + apiVersion: ApiVersion201801; /** - * Initializes a new instance of the MetricsDefinitionsClientContext class. + * Initializes a new instance of the MonitorManagementClientContext class. * @param apiVersion Api Version * @param options The parameter options */ - constructor( - apiVersion: ApiVersion20170501Preview, - options?: MetricsDefinitionsClientOptionalParams - ) { + constructor(apiVersion: ApiVersion201801, options?: MonitorManagementClientOptionalParams) { if (apiVersion === undefined) { throw new Error("'apiVersion' cannot be null"); } diff --git a/sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/operations/metricDefinitions.ts b/sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/operations/metricDefinitions.ts index c9448ccd2cb4..d00a5ad7ac6c 100644 --- a/sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/operations/metricDefinitions.ts +++ b/sdk/monitor/monitor-query/src/generated/metricsdefinitions/src/operations/metricDefinitions.ts @@ -9,7 +9,7 @@ import * as coreHttp from "@azure/core-http"; import * as Mappers from "../models/mappers"; import * as Parameters from "../models/parameters"; -import { MetricsDefinitionsClient } from "../metricsDefinitionsClient"; +import { MonitorManagementClient } from "../monitorManagementClient"; import { MetricDefinitionsListOptionalParams, MetricDefinitionsListResponse @@ -17,13 +17,13 @@ import { /** Class representing a MetricDefinitions. */ export class MetricDefinitions { - private readonly client: MetricsDefinitionsClient; + private readonly client: MonitorManagementClient; /** * Initialize a new instance of the class MetricDefinitions class. * @param client Reference to the service client */ - constructor(client: MetricsDefinitionsClient) { + constructor(client: MonitorManagementClient) { this.client = client; } @@ -50,7 +50,7 @@ export class MetricDefinitions { const serializer = new coreHttp.Serializer(Mappers, /* isXml */ false); const listOperationSpec: coreHttp.OperationSpec = { - path: "/{resourceUri}/providers/microsoft.insights/metricDefinitions", + path: "/{resourceUri}/providers/Microsoft.Insights/metricDefinitions", httpMethod: "GET", responses: { 200: { diff --git a/sdk/monitor/monitor-query/src/generated/metricsnamespaces/src/index.ts b/sdk/monitor/monitor-query/src/generated/metricsnamespaces/src/index.ts index 00ccc582c1d4..77073c736858 100644 --- a/sdk/monitor/monitor-query/src/generated/metricsnamespaces/src/index.ts +++ b/sdk/monitor/monitor-query/src/generated/metricsnamespaces/src/index.ts @@ -7,5 +7,5 @@ */ export * from "./models"; -export { MetricsNamespacesClient } from "./metricsNamespacesClient"; -export { MetricsNamespacesClientContext } from "./metricsNamespacesClientContext"; +export { MonitorManagementClient } from "./monitorManagementClient"; +export { MonitorManagementClientContext } from "./monitorManagementClientContext"; diff --git a/sdk/monitor/monitor-query/src/generated/metricsnamespaces/src/models/index.ts b/sdk/monitor/monitor-query/src/generated/metricsnamespaces/src/models/index.ts index db2e1975fbb2..eb87e7df105e 100644 --- a/sdk/monitor/monitor-query/src/generated/metricsnamespaces/src/models/index.ts +++ b/sdk/monitor/monitor-query/src/generated/metricsnamespaces/src/models/index.ts @@ -95,7 +95,7 @@ export type MetricNamespacesListResponse = MetricNamespaceCollection & { }; /** Optional parameters. */ -export interface MetricsNamespacesClientOptionalParams +export interface MonitorManagementClientOptionalParams extends coreHttp.ServiceClientOptions { /** server parameter */ $host?: string; diff --git a/sdk/monitor/monitor-query/src/generated/metricsnamespaces/src/metricsNamespacesClient.ts b/sdk/monitor/monitor-query/src/generated/metricsnamespaces/src/monitorManagementClient.ts similarity index 68% rename from sdk/monitor/monitor-query/src/generated/metricsnamespaces/src/metricsNamespacesClient.ts rename to sdk/monitor/monitor-query/src/generated/metricsnamespaces/src/monitorManagementClient.ts index 6fb5745ddd55..e4f2407c2820 100644 --- a/sdk/monitor/monitor-query/src/generated/metricsnamespaces/src/metricsNamespacesClient.ts +++ b/sdk/monitor/monitor-query/src/generated/metricsnamespaces/src/monitorManagementClient.ts @@ -7,22 +7,22 @@ */ import { MetricNamespaces } from "./operations"; -import { MetricsNamespacesClientContext } from "./metricsNamespacesClientContext"; +import { MonitorManagementClientContext } from "./monitorManagementClientContext"; import { - MetricsNamespacesClientOptionalParams, + MonitorManagementClientOptionalParams, ApiVersion20171201Preview } from "./models"; /** @hidden */ -export class MetricsNamespacesClient extends MetricsNamespacesClientContext { +export class MonitorManagementClient extends MonitorManagementClientContext { /** - * Initializes a new instance of the MetricsNamespacesClient class. + * Initializes a new instance of the MonitorManagementClient class. * @param apiVersion Api Version * @param options The parameter options */ constructor( apiVersion: ApiVersion20171201Preview, - options?: MetricsNamespacesClientOptionalParams + options?: MonitorManagementClientOptionalParams ) { super(apiVersion, options); this.metricNamespaces = new MetricNamespaces(this); diff --git a/sdk/monitor/monitor-query/src/generated/metricsnamespaces/src/metricsNamespacesClientContext.ts b/sdk/monitor/monitor-query/src/generated/metricsnamespaces/src/monitorManagementClientContext.ts similarity index 80% rename from sdk/monitor/monitor-query/src/generated/metricsnamespaces/src/metricsNamespacesClientContext.ts rename to sdk/monitor/monitor-query/src/generated/metricsnamespaces/src/monitorManagementClientContext.ts index 7ed3b8654cd6..08becfaf9a39 100644 --- a/sdk/monitor/monitor-query/src/generated/metricsnamespaces/src/metricsNamespacesClientContext.ts +++ b/sdk/monitor/monitor-query/src/generated/metricsnamespaces/src/monitorManagementClientContext.ts @@ -7,27 +7,24 @@ */ import * as coreHttp from "@azure/core-http"; -import { - ApiVersion20171201Preview, - MetricsNamespacesClientOptionalParams -} from "./models"; +import { ApiVersion20171201Preview, MonitorManagementClientOptionalParams } from "./models"; const packageName = "monitor-metrics-namespaces"; -const packageVersion = "1.0.0-beta.3"; +const packageVersion = "1.0.0"; /** @hidden */ -export class MetricsNamespacesClientContext extends coreHttp.ServiceClient { +export class MonitorManagementClientContext extends coreHttp.ServiceClient { $host: string; apiVersion: ApiVersion20171201Preview; /** - * Initializes a new instance of the MetricsNamespacesClientContext class. + * Initializes a new instance of the MonitorManagementClientContext class. * @param apiVersion Api Version * @param options The parameter options */ constructor( apiVersion: ApiVersion20171201Preview, - options?: MetricsNamespacesClientOptionalParams + options?: MonitorManagementClientOptionalParams ) { if (apiVersion === undefined) { throw new Error("'apiVersion' cannot be null"); diff --git a/sdk/monitor/monitor-query/src/generated/metricsnamespaces/src/operations/metricNamespaces.ts b/sdk/monitor/monitor-query/src/generated/metricsnamespaces/src/operations/metricNamespaces.ts index 6b5ccca170ef..3db2488b505e 100644 --- a/sdk/monitor/monitor-query/src/generated/metricsnamespaces/src/operations/metricNamespaces.ts +++ b/sdk/monitor/monitor-query/src/generated/metricsnamespaces/src/operations/metricNamespaces.ts @@ -9,7 +9,7 @@ import * as coreHttp from "@azure/core-http"; import * as Mappers from "../models/mappers"; import * as Parameters from "../models/parameters"; -import { MetricsNamespacesClient } from "../metricsNamespacesClient"; +import { MonitorManagementClient } from "../monitorManagementClient"; import { MetricNamespacesListOptionalParams, MetricNamespacesListResponse @@ -17,13 +17,13 @@ import { /** Class representing a MetricNamespaces. */ export class MetricNamespaces { - private readonly client: MetricsNamespacesClient; + private readonly client: MonitorManagementClient; /** * Initialize a new instance of the class MetricNamespaces class. * @param client Reference to the service client */ - constructor(client: MetricsNamespacesClient) { + constructor(client: MonitorManagementClient) { this.client = client; } diff --git a/sdk/monitor/monitor-query/src/index.ts b/sdk/monitor/monitor-query/src/index.ts index 9d5886bf1189..baddc8821af6 100644 --- a/sdk/monitor/monitor-query/src/index.ts +++ b/sdk/monitor/monitor-query/src/index.ts @@ -42,8 +42,9 @@ export { Durations } from "./models/constants"; export { // TODO: these are the generated model names. We probably want to run them // through a manual review to make them consistent with style. - Column as LogsColumn, - ColumnDataType, + Column as MetricColumn, + // TODO: LogsColumnType might actually be a better name! + LogsColumnType as ColumnDataType, ErrorDetail, ErrorInfo } from "./generated/logquery/src"; @@ -59,7 +60,11 @@ export { MetricUnit } from "./generated/metrics/src"; -export { AggregationType, MetricAvailability } from "./generated/metricsdefinitions/src"; +export { + AggregationType, + MetricAvailability, + MetricClass +} from "./generated/metricsdefinitions/src"; export { MetricNamespace, MetricNamespaceName, diff --git a/sdk/monitor/monitor-query/src/internal/modelConverters.ts b/sdk/monitor/monitor-query/src/internal/modelConverters.ts index 77d19fa1a0db..fc2a35d5068c 100644 --- a/sdk/monitor/monitor-query/src/internal/modelConverters.ts +++ b/sdk/monitor/monitor-query/src/internal/modelConverters.ts @@ -3,8 +3,8 @@ import { BatchRequest as GeneratedBatchRequest, - LogQueryRequest, - LogQueryResponse, + BatchQueryRequest as GeneratedBatchQueryRequest, + BatchQueryResponse as GeneratedBatchQueryResponse, QueryBatchResponse as GeneratedQueryBatchResponse, QueryBody, Table as GeneratedTable @@ -32,13 +32,12 @@ import { GetMetricDefinitionsResult, GetMetricNamespacesResult, LogsTable, - MetricDefinition, QueryLogsBatch, QueryLogsBatchResult, QueryMetricsOptions, QueryMetricsResult } from "../../src"; -import { Metric, TimeSeriesElement } from "../models/publicMetricsModels"; +import { Metric, MetricDefinition, TimeSeriesElement } from "../models/publicMetricsModels"; /** * @internal @@ -46,7 +45,7 @@ import { Metric, TimeSeriesElement } from "../models/publicMetricsModels"; export function convertRequestForQueryBatch(batch: QueryLogsBatch): GeneratedBatchRequest { let id = 0; - const requests: LogQueryRequest[] = batch.queries.map((query: BatchQuery) => { + const requests: GeneratedBatchQueryRequest[] = batch.queries.map((query: BatchQuery) => { const body: QueryBody & Partial< Pick @@ -55,7 +54,7 @@ export function convertRequestForQueryBatch(batch: QueryLogsBatch): GeneratedBat delete body["serverTimeoutInSeconds"]; delete body["includeQueryStatistics"]; - const logQueryRequest: LogQueryRequest = { + const generatedRequest: GeneratedBatchQueryRequest = { id: id.toString(), workspace: query.workspace, headers: formatPreferHeader(query), @@ -64,7 +63,7 @@ export function convertRequestForQueryBatch(batch: QueryLogsBatch): GeneratedBat ++id; - return logQueryRequest; + return generatedRequest; }); return { @@ -95,7 +94,7 @@ export function convertResponseForQueryBatch( return left - right; }) - ?.map((response: LogQueryResponse) => ({ + ?.map((response: GeneratedBatchQueryResponse) => ({ id: response.id, status: response.status, // hoist fields from the sub-object 'body' to this level @@ -185,7 +184,7 @@ export function convertRequestForMetrics( obj.orderby = orderBy; } if (metricNames) { - obj.metric = metricNames.join(","); + obj.metricnames = metricNames.join(","); } if (aggregations) { obj.aggregation = aggregations.join(","); @@ -264,19 +263,24 @@ export function convertResponseForMetricsDefinitions( generatedResponse: GeneratedMetricDefinitionsListResponse ): GetMetricDefinitionsResult { return { - definitions: generatedResponse.value.map((defn) => { - const { name, dimensions, ...rest } = defn; - const newDefn: MetricDefinition = rest; + definitions: generatedResponse.value?.map((genDef) => { + const { name, dimensions, ...rest } = genDef; - if (name) { - newDefn.name = name.value; + const response: MetricDefinition = { + ...rest + }; + + if (name?.value) { + response.name = name.value; } - if (dimensions) { - newDefn.dimensions = dimensions.map((dimension) => dimension.value); + const mappedDimensions = dimensions?.map((dim) => dim.value); + + if (mappedDimensions) { + response.dimensions = mappedDimensions; } - return newDefn; + return response; }) }; } diff --git a/sdk/monitor/monitor-query/src/internal/util.ts b/sdk/monitor/monitor-query/src/internal/util.ts index ead07bbc9ec7..929363fea652 100644 --- a/sdk/monitor/monitor-query/src/internal/util.ts +++ b/sdk/monitor/monitor-query/src/internal/util.ts @@ -7,7 +7,12 @@ import { QueryLogsOptions } from "../models/publicLogsModels"; * @internal */ export function formatPreferHeader( - args: Pick | undefined + args: + | Pick< + QueryLogsOptions, + "serverTimeoutInSeconds" | "includeQueryStatistics" | "includeVisualization" + > + | undefined ): { Prefer: string } | undefined { if (!args) { return undefined; @@ -25,6 +30,10 @@ export function formatPreferHeader( pairs.push("include-statistics=true"); } + if (args.includeVisualization) { + pairs.push("include-render=true"); + } + if (pairs.length > 0) { return { Prefer: pairs.join(",") diff --git a/sdk/monitor/monitor-query/src/logsQueryClient.ts b/sdk/monitor/monitor-query/src/logsQueryClient.ts index a49600709940..a79f5fec716f 100644 --- a/sdk/monitor/monitor-query/src/logsQueryClient.ts +++ b/sdk/monitor/monitor-query/src/logsQueryClient.ts @@ -105,7 +105,8 @@ export class LogsQueryClient { return { tables: result.tables.map(convertGeneratedTable), - statistics: result.statistics + statistics: result.statistics, + visualization: result.render }; } diff --git a/sdk/monitor/monitor-query/src/metricsQueryClient.ts b/sdk/monitor/monitor-query/src/metricsQueryClient.ts index 93e66afe7b8d..da10cc8da3cc 100644 --- a/sdk/monitor/monitor-query/src/metricsQueryClient.ts +++ b/sdk/monitor/monitor-query/src/metricsQueryClient.ts @@ -17,16 +17,16 @@ import { } from "./models/publicMetricsModels"; import { - KnownApiVersion20170501Preview as MetricsApiVersion, + KnownApiVersion201801 as MetricsApiVersion, MonitorManagementClient as GeneratedMetricsClient } from "./generated/metrics/src"; import { - KnownApiVersion20170501Preview as MetricDefinitionsApiVersion, - MetricsDefinitionsClient as GeneratedMetricsDefinitionsClient + KnownApiVersion201801 as MetricDefinitionsApiVersion, + MonitorManagementClient as GeneratedMetricsDefinitionsClient } from "./generated/metricsdefinitions/src"; import { KnownApiVersion20171201Preview as MetricNamespacesApiVersion, - MetricsNamespacesClient as GeneratedMetricsNamespacesClient + MonitorManagementClient as GeneratedMetricsNamespacesClient } from "./generated/metricsnamespaces/src"; import { convertRequestForMetrics, @@ -70,12 +70,12 @@ export class MetricsQueryClient { }; this._metricsClient = new GeneratedMetricsClient( - MetricsApiVersion.TwoThousandSeventeen0501Preview, + MetricsApiVersion.TwoThousandEighteen0101, serviceClientOptions ); this._definitionsClient = new GeneratedMetricsDefinitionsClient( - MetricDefinitionsApiVersion.TwoThousandSeventeen0501Preview, + MetricDefinitionsApiVersion.TwoThousandEighteen0101, serviceClientOptions ); diff --git a/sdk/monitor/monitor-query/src/models/publicLogsModels.ts b/sdk/monitor/monitor-query/src/models/publicLogsModels.ts index 8a6e5782ea74..a1362bdc4237 100644 --- a/sdk/monitor/monitor-query/src/models/publicLogsModels.ts +++ b/sdk/monitor/monitor-query/src/models/publicLogsModels.ts @@ -21,6 +21,11 @@ export interface QueryLogsOptions extends OperationOptions { * Results will also include statistics about the query. */ includeQueryStatistics?: boolean; // TODO: this data is not modeled in the current response object. + + /** + * Results will also include visualization information, in JSON format. + */ + includeVisualization?: boolean; } /** @@ -42,6 +47,8 @@ export interface QueryLogsResult { tables: LogsTable[]; /** Statistics represented in JSON format. */ statistics?: any; + /** Visualization data in JSON format. */ + visualization?: any; } /** Options when query logs with a batch. */ diff --git a/sdk/monitor/monitor-query/src/models/publicMetricsModels.ts b/sdk/monitor/monitor-query/src/models/publicMetricsModels.ts index 472196bd5c92..40198e87bba1 100644 --- a/sdk/monitor/monitor-query/src/models/publicMetricsModels.ts +++ b/sdk/monitor/monitor-query/src/models/publicMetricsModels.ts @@ -7,6 +7,7 @@ import { MetricValue, ResultType, MetricUnit, + MetricClass, AggregationType, MetricAvailability } from ".."; @@ -50,7 +51,7 @@ export interface Metric { /** the name of the metric */ name: string; /** Detailed description of this metric. */ - displayDescription: string; + displayDescription?: string; /** 'Success' or the error details on query failures for this metric. */ errorCode?: string; /** the unit of the metric. */ @@ -159,3 +160,35 @@ export interface GetMetricNamespacesResult { /** The metric namespaces. */ namespaces: MetricNamespace[]; } + +/** + * Metric definition. + */ +export interface MetricDefinition { + /** Flag to indicate whether the dimension is required. */ + isDimensionRequired?: boolean; + /** the resource identifier of the resource that emitted the metric. */ + resourceId?: string; + /** the namespace the metric belongs to. */ + namespace?: string; + /** the name and the display name of the metric, i.e. it is a localizable string. */ + name?: string; + /** Detailed description of this metric. */ + displayDescription?: string; + /** Custom category name for this metric. */ + category?: string; + /** The class of the metric. */ + metricClass?: MetricClass; + /** The unit of the metric. */ + unit?: MetricUnit; + /** the primary aggregation type value defining how to use the values for display. */ + primaryAggregationType?: AggregationType; + /** the collection of what aggregation types are supported. */ + supportedAggregationTypes?: AggregationType[]; + /** the collection of what aggregation intervals are available to be queried. */ + metricAvailabilities?: MetricAvailability[]; + /** the resource identifier of the metric definition. */ + id?: string; + /** the name and the display name of the dimension, i.e. it is a localizable string. */ + dimensions?: string[]; +} diff --git a/sdk/monitor/monitor-query/swagger/README.md b/sdk/monitor/monitor-query/swagger/README.md index 65027c8ba1d6..6985b41b5231 100755 --- a/sdk/monitor/monitor-query/swagger/README.md +++ b/sdk/monitor/monitor-query/swagger/README.md @@ -1,9 +1,14 @@ ## Configuration file for autorest for JavaScript + + ## Log Query ```yaml $(tag) == 'logquery' -input-file: "https://raw.githubusercontent.com/srnagar/azure-rest-api-specs/azmon-query-swagger/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/preview/2021-05-19/OperationalInsights.json" +input-file: "https://github.com/Azure/azure-rest-api-specs/blob/86408a8777e623f5f41e260472ed831309b85086/specification/operationalinsights/data-plane/Microsoft.OperationalInsights/preview/2021-05-19_Preview/OperationalInsights.json" output-folder: ../src/generated/logquery package-name: "monitor-log-query" clear-output-folder: true @@ -21,7 +26,7 @@ hide-clients: true ``` ```yaml $(tag) == 'metrics' -input-file: "https://raw.githubusercontent.com/srnagar/azure-rest-api-specs/azmon-query-swagger/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/metrics_API.json" +input-file: "https://github.com/Azure/azure-rest-api-specs/blob/86408a8777e623f5f41e260472ed831309b85086/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-01-01/metrics_API.json" output-folder: ../src/generated/metrics package-name: "monitor-metrics" clear-output-folder: true @@ -39,7 +44,7 @@ hide-clients: true ``` ```yaml $(tag) == 'metrics-definitions' -input-file: "https://raw.githubusercontent.com/srnagar/azure-rest-api-specs/azmon-query-swagger/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-05-01-preview/metricDefinitions_API.json" +input-file: "https://github.com/Azure/azure-rest-api-specs/blob/86408a8777e623f5f41e260472ed831309b85086/specification/monitor/resource-manager/Microsoft.Insights/stable/2018-01-01/metricDefinitions_API.json" output-folder: ../src/generated/metricsdefinitions package-name: "monitor-metrics-definitions" clear-output-folder: true @@ -57,7 +62,7 @@ hide-clients: true ``` ```yaml $(tag) == 'metrics-namespaces' -input-file: "https://raw.githubusercontent.com/srnagar/azure-rest-api-specs/azmon-query-swagger/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-12-01-preview/metricNamespaces_API.json" +input-file: "https://github.com/Azure/azure-rest-api-specs/blob/86408a8777e623f5f41e260472ed831309b85086/specification/monitor/resource-manager/Microsoft.Insights/preview/2017-12-01-preview/metricNamespaces_API.json" output-folder: ../src/generated/metricsnamespaces package-name: "monitor-metrics-namespaces" clear-output-folder: true diff --git a/sdk/monitor/monitor-query/test/internal/unit/modelConverters.unittest.spec.ts b/sdk/monitor/monitor-query/test/internal/unit/modelConverters.unittest.spec.ts index 7a4cc2183387..8c8ea71fb617 100644 --- a/sdk/monitor/monitor-query/test/internal/unit/modelConverters.unittest.spec.ts +++ b/sdk/monitor/monitor-query/test/internal/unit/modelConverters.unittest.spec.ts @@ -4,7 +4,7 @@ import * as assert from "assert"; import { BatchRequest as GeneratedBatchRequest, - LogQueryRequest + BatchQueryRequest } from "../../../src/generated/logquery/src"; import { MetricsListOptionalParams as GeneratedMetricsListOptionalParams, @@ -80,7 +80,7 @@ describe("Model unit tests", () => { ] }); - assert.deepEqual(generatedRequest.requests?.[1], { + assert.deepEqual(generatedRequest.requests?.[1], { id: "1", // auto-generated (increments by 1 for each query in the batch) workspace: "the primary workspace id", headers: { @@ -126,12 +126,12 @@ describe("Model unit tests", () => { track2Model ); - assert.deepEqual(actualMetricsRequest, { + const expectedMetricsRequest: GeneratedMetricsListOptionalParams = { abortSignal, aggregation: "agg1,agg2", filter: "arbitraryFilter", interval: "arbitraryInterval", - metric: "name1,name2", + metricnames: "name1,name2", metricnamespace: "myMetricNamespace", orderby: "orderByClause", requestOptions, @@ -139,7 +139,9 @@ describe("Model unit tests", () => { timespan: "arbitraryTimespan", top: 10, tracingOptions - }); + }; + + assert.deepEqual(actualMetricsRequest, expectedMetricsRequest); }); it("convertRequestForMetrics (only required fields)", () => { diff --git a/sdk/monitor/monitor-query/test/public/logsQueryClient.spec.ts b/sdk/monitor/monitor-query/test/public/logsQueryClient.spec.ts index 735bc7c9a670..ef1dc73c1f9c 100644 --- a/sdk/monitor/monitor-query/test/public/logsQueryClient.spec.ts +++ b/sdk/monitor/monitor-query/test/public/logsQueryClient.spec.ts @@ -119,7 +119,7 @@ describe("LogsQueryClient live tests", function() { }); it("includeQueryStatistics", async () => { - const query = await createClient().queryLogs( + const results = await createClient().queryLogs( monitorWorkspaceId, "AppEvents | limit 1", Durations.last24Hours, @@ -130,8 +130,28 @@ describe("LogsQueryClient live tests", function() { // TODO: statistics are not currently modeled in the generated code but // the executionTime field is pretty useful. - assert.isOk(query.statistics); - assert.isNumber(query.statistics?.query?.executionTime); + assert.isOk(results.statistics); + assert.isNumber(results.statistics?.query?.executionTime); + }); + + it("includeRender/includeVisualization", async () => { + const results = await createClient().queryLogs( + monitorWorkspaceId, + `datatable (s: string, i: long) [ "a", 1, "b", 2, "c", 3 ] | render columnchart with (title="the chart title", xtitle="the x axis title")`, + Durations.last24Hours, + { + includeVisualization: true + } + ); + + // TODO: render/visualizations are not currently modeled in the generated + // code + assert.deepNestedInclude(results.visualization, { + // an example of the data (not currently modeled) + visualization: "columnchart", + xTitle: "the x axis title", + title: "the chart title" + }); }); it("query with types", async () => { diff --git a/sdk/monitor/monitor-query/test/public/metricsQueryClient.spec.ts b/sdk/monitor/monitor-query/test/public/metricsQueryClient.spec.ts index aab70b6ef299..90c0e203c854 100644 --- a/sdk/monitor/monitor-query/test/public/metricsQueryClient.spec.ts +++ b/sdk/monitor/monitor-query/test/public/metricsQueryClient.spec.ts @@ -9,11 +9,10 @@ import { createTestClientSecretCredential, getMetricsArmResourceId } from "./sha describe("MetricsClient live tests", function() { let resourceId: string; - let resourceNamespace: string; let metricsQueryClient: MetricsQueryClient; beforeEach(function(this: Context) { - ({ resourceNamespace, resourceId } = getMetricsArmResourceId(this)); + ({ resourceId } = getMetricsArmResourceId(this)); metricsQueryClient = new MetricsQueryClient(createTestClientSecretCredential()); }); @@ -55,11 +54,24 @@ describe("MetricsClient live tests", function() { assert.isNotEmpty(newResults.metrics); } - // query for a metric we do know about - metricsQueryClient.queryMetrics(resourceId, Durations.last24Hours, { - metricNames: ["Average_Uptime"], - metricNamespace: resourceNamespace - }); + // pick the first query and use the namespace as well. + + const firstMetricDefinition = metricDefinitions.definitions[0]; + + assert.isNotNull(firstMetricDefinition); + assert.isNotEmpty(firstMetricDefinition.name); + assert.isNotEmpty(firstMetricDefinition.namespace); + + const individualMetricWithNamespace = metricsQueryClient.queryMetrics( + resourceId, + Durations.last24Hours, + { + metricNames: [firstMetricDefinition.name!], + metricNamespace: firstMetricDefinition.namespace + } + ); + + assert.ok(individualMetricWithNamespace); }); it("listNamespaces", async () => { diff --git a/sdk/monitor/monitor-query/test/public/shared/testShared.ts b/sdk/monitor/monitor-query/test/public/shared/testShared.ts index e5dfe19212f3..b94f49cba7dd 100644 --- a/sdk/monitor/monitor-query/test/public/shared/testShared.ts +++ b/sdk/monitor/monitor-query/test/public/shared/testShared.ts @@ -91,11 +91,9 @@ export function getMetricsArmResourceId( mochaContext: Pick ): { resourceId: string; - resourceNamespace: string; } { return { - resourceId: getRequiredEnvVar(mochaContext, "METRICS_RESOURCE_ID"), - resourceNamespace: getRequiredEnvVar(mochaContext, "METRICS_RESOURCE_NAMESPACE") + resourceId: getRequiredEnvVar(mochaContext, "METRICS_RESOURCE_ID") }; } @@ -117,7 +115,9 @@ export function getAppInsightsConnectionString(mochaContext: Pick, variableName: string): string { if (!env[variableName]) { - console.log(`TODO: live tests skipped until test-resources + data population is set up.`); + console.log( + `TODO: live tests skipped until test-resources + data population is set up (missing ${variableName} env var).` + ); mochaContext.skip(); } From 8236d61502fabcfe05ac9ed0195445c6f990553e Mon Sep 17 00:00:00 2001 From: Richard Park <51494936+richardpark-msft@users.noreply.github.com> Date: Tue, 29 Jun 2021 11:09:36 -0700 Subject: [PATCH 33/49] Updating changelog with date and feature added and running PrepareRelease. (#16072) --- sdk/monitor/monitor-query/CHANGELOG.md | 9 +++------ .../generated/logquery/src/azureLogAnalyticsContext.ts | 2 +- .../metrics/src/monitorManagementClientContext.ts | 2 +- 3 files changed, 5 insertions(+), 8 deletions(-) diff --git a/sdk/monitor/monitor-query/CHANGELOG.md b/sdk/monitor/monitor-query/CHANGELOG.md index cfab5ad01696..4e56d3868d45 100644 --- a/sdk/monitor/monitor-query/CHANGELOG.md +++ b/sdk/monitor/monitor-query/CHANGELOG.md @@ -4,12 +4,9 @@ ### Features Added -### Breaking Changes - -### Key Bugs Fixed - -### Fixed - +- The `include-render` header can now be specified via `QueryLogsOption.includeVisualization`, allowing + visualization information to be returned in `QueryLogsResult.visualization`. The results are currently + unmodeled and reflect the underlying JSON structure. ## 1.0.0-beta.2 (2021-06-15) diff --git a/sdk/monitor/monitor-query/src/generated/logquery/src/azureLogAnalyticsContext.ts b/sdk/monitor/monitor-query/src/generated/logquery/src/azureLogAnalyticsContext.ts index 4ef4d15d1a2b..e4b7684a8467 100644 --- a/sdk/monitor/monitor-query/src/generated/logquery/src/azureLogAnalyticsContext.ts +++ b/sdk/monitor/monitor-query/src/generated/logquery/src/azureLogAnalyticsContext.ts @@ -10,7 +10,7 @@ import * as coreHttp from "@azure/core-http"; import { AzureLogAnalyticsOptionalParams } from "./models"; const packageName = "monitor-log-query"; -const packageVersion = "1.0.0"; +const packageVersion = "1.0.0-beta.3"; /** @hidden */ export class AzureLogAnalyticsContext extends coreHttp.ServiceClient { diff --git a/sdk/monitor/monitor-query/src/generated/metrics/src/monitorManagementClientContext.ts b/sdk/monitor/monitor-query/src/generated/metrics/src/monitorManagementClientContext.ts index 2bab9cc7718f..5246ace921db 100644 --- a/sdk/monitor/monitor-query/src/generated/metrics/src/monitorManagementClientContext.ts +++ b/sdk/monitor/monitor-query/src/generated/metrics/src/monitorManagementClientContext.ts @@ -10,7 +10,7 @@ import * as coreHttp from "@azure/core-http"; import { ApiVersion201801, MonitorManagementClientOptionalParams } from "./models"; const packageName = "monitor-metrics"; -const packageVersion = "1.0.0"; +const packageVersion = "1.0.0-beta.3"; /** @hidden */ export class MonitorManagementClientContext extends coreHttp.ServiceClient { From 20321ef20ad437cdf6af246ea886faedd0cce48f Mon Sep 17 00:00:00 2001 From: Sarangan Rajamanickam Date: Tue, 29 Jun 2021 13:09:31 -0700 Subject: [PATCH 34/49] Convenience Method to create a synonymmap object (#16054) * Convenience Method to create a synonymmap object * Update sdk/search/search-documents/src/synonymMapHelper.ts Co-authored-by: Jeff Fisher * Fix for PR Comments Co-authored-by: Jeff Fisher --- sdk/search/search-documents/package.json | 3 +- .../review/search-documents.api.md | 3 ++ sdk/search/search-documents/src/index.ts | 1 + .../src/synonymMapHelper.browser.ts | 19 ++++++++++++ .../search-documents/src/synonymMapHelper.ts | 30 +++++++++++++++++++ .../browser/synonymMap.browser.spec.ts | 17 +++++++++++ .../internal/node/synonymMap.node.spec.ts | 19 ++++++++++++ .../test/internal/synonymMap.txt | 2 ++ 8 files changed, 93 insertions(+), 1 deletion(-) create mode 100644 sdk/search/search-documents/src/synonymMapHelper.browser.ts create mode 100644 sdk/search/search-documents/src/synonymMapHelper.ts create mode 100644 sdk/search/search-documents/test/internal/browser/synonymMap.browser.spec.ts create mode 100644 sdk/search/search-documents/test/internal/node/synonymMap.node.spec.ts create mode 100644 sdk/search/search-documents/test/internal/synonymMap.txt diff --git a/sdk/search/search-documents/package.json b/sdk/search/search-documents/package.json index a660f14cd479..74d06d62a0d7 100644 --- a/sdk/search/search-documents/package.json +++ b/sdk/search/search-documents/package.json @@ -41,7 +41,8 @@ "LICENSE" ], "browser": { - "./dist-esm/src/base64.js": "./dist-esm/src/base64.browser.js" + "./dist-esm/src/base64.js": "./dist-esm/src/base64.browser.js", + "./dist-esm/src/synonymMapHelper.js": "./dist-esm/src/synonymMapHelper.browser.js" }, "//metadata": { "constantPaths": [ diff --git a/sdk/search/search-documents/review/search-documents.api.md b/sdk/search/search-documents/review/search-documents.api.md index 098ca8905f01..00a80e61d659 100644 --- a/sdk/search/search-documents/review/search-documents.api.md +++ b/sdk/search/search-documents/review/search-documents.api.md @@ -288,6 +288,9 @@ export interface CreateOrUpdateSynonymMapOptions extends OperationOptions { // @public export type CreateSkillsetOptions = OperationOptions; +// @public +export function createSynonymMapFromFile(name: string, filePath: string): Promise; + // @public export type CreateSynonymMapOptions = OperationOptions; diff --git a/sdk/search/search-documents/src/index.ts b/sdk/search/search-documents/src/index.ts index 85fa534379b3..d683c36da059 100644 --- a/sdk/search/search-documents/src/index.ts +++ b/sdk/search/search-documents/src/index.ts @@ -301,3 +301,4 @@ export { SearchIndexerKnowledgeStoreTableProjectionSelector } from "./generated/service/models"; export { AzureKeyCredential } from "@azure/core-auth"; +export { createSynonymMapFromFile } from "./synonymMapHelper"; diff --git a/sdk/search/search-documents/src/synonymMapHelper.browser.ts b/sdk/search/search-documents/src/synonymMapHelper.browser.ts new file mode 100644 index 000000000000..21157bdb866c --- /dev/null +++ b/sdk/search/search-documents/src/synonymMapHelper.browser.ts @@ -0,0 +1,19 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. + +import { SynonymMap } from "./serviceModels"; + +/** + * Helper method to create a SynonymMap object. This is a NodeJS only method. + * Will throw an error for browser. + * + * @param _name - Name of the SynonymMap. + * @param _filePath - Path of the file that contains the Synonyms (seperated by new lines) + * @returns SynonymMap object + */ +export async function createSynonymMapFromFile( + _name: string, + _filePath: string +): Promise { + throw new Error("Not implemented for browser."); +} diff --git a/sdk/search/search-documents/src/synonymMapHelper.ts b/sdk/search/search-documents/src/synonymMapHelper.ts new file mode 100644 index 000000000000..a01bf5f58f6d --- /dev/null +++ b/sdk/search/search-documents/src/synonymMapHelper.ts @@ -0,0 +1,30 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. + +import { SynonymMap } from "./serviceModels"; +import { promisify } from "util"; +import * as fs from "fs"; +const readFileAsync = promisify(fs.readFile); + +/** + * Helper method to create a SynonymMap object. This is a NodeJS only method. + * + * @param name - Name of the SynonymMap. + * @param filePath - Path of the file that contains the Synonyms (seperated by new lines) + * @returns SynonymMap object + */ +export async function createSynonymMapFromFile( + name: string, + filePath: string +): Promise { + const synonyms: string[] = (await readFileAsync(filePath, "utf-8")) + .replace(/\r/g, "") + .split("\n") + .map((line) => line.trim()) + .filter(Boolean); + + return { + name, + synonyms + }; +} diff --git a/sdk/search/search-documents/test/internal/browser/synonymMap.browser.spec.ts b/sdk/search/search-documents/test/internal/browser/synonymMap.browser.spec.ts new file mode 100644 index 000000000000..fc1d7a7a135c --- /dev/null +++ b/sdk/search/search-documents/test/internal/browser/synonymMap.browser.spec.ts @@ -0,0 +1,17 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. + +import { assert } from "chai"; +import { createSynonymMapFromFile } from "../../../src/synonymMapHelper.browser"; + +describe("synonymmap", () => { + it("create synonymmap from file(browser)", async function() { + let errorThrown = false; + try { + await createSynonymMapFromFile("my-synonym-map-1", "./test/internal/synonymMap.txt"); + } catch (ex) { + errorThrown = true; + } + assert.isTrue(errorThrown, "Expected createSynonymMapFromFile to fail with an exception"); + }); +}); diff --git a/sdk/search/search-documents/test/internal/node/synonymMap.node.spec.ts b/sdk/search/search-documents/test/internal/node/synonymMap.node.spec.ts new file mode 100644 index 000000000000..66b613005365 --- /dev/null +++ b/sdk/search/search-documents/test/internal/node/synonymMap.node.spec.ts @@ -0,0 +1,19 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. + +import { assert } from "chai"; +import { createSynonymMapFromFile } from "../../../src"; +import { SynonymMap } from "../../../src/serviceModels"; + +describe("synonymmap", () => { + it("create synonymmap from file(node)", async function() { + const synonymMap: SynonymMap = await createSynonymMapFromFile( + "my-synonym-map-1", + "./test/internal/synonymMap.txt" + ); + assert.equal(synonymMap.name, "my-synonym-map-1"); + assert.equal(synonymMap.synonyms.length, 2); + assert.equal(synonymMap.synonyms[0], "United States, United States of America => USA"); + assert.equal(synonymMap.synonyms[1], "Washington, Wash. => WA"); + }); +}); diff --git a/sdk/search/search-documents/test/internal/synonymMap.txt b/sdk/search/search-documents/test/internal/synonymMap.txt new file mode 100644 index 000000000000..c81a921ed614 --- /dev/null +++ b/sdk/search/search-documents/test/internal/synonymMap.txt @@ -0,0 +1,2 @@ +United States, United States of America => USA +Washington, Wash. => WA From 14fddf7d79d19e31fd2258ac0ca0728a13210f0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Rodr=C3=ADguez?= Date: Wed, 30 Jun 2021 10:49:35 -0400 Subject: [PATCH 35/49] [Identity] InteractiveBrowserCredential loginHint (#15855) * [Identity] InteractiveBrowserCredential LoginHint * formatting * Update CHANGELOG.md --- sdk/identity/identity/CHANGELOG.md | 1 + sdk/identity/identity/review/identity.api.md | 2 ++ .../interactiveBrowserCredentialOptions.ts | 12 ++++++++++++ .../identity/src/msal/browserFlows/browserCommon.ts | 1 + .../identity/src/msal/browserFlows/msalAuthCode.ts | 8 ++++++-- .../identity/src/msal/nodeFlows/msalOpenBrowser.ts | 4 ++++ 6 files changed, 26 insertions(+), 2 deletions(-) diff --git a/sdk/identity/identity/CHANGELOG.md b/sdk/identity/identity/CHANGELOG.md index 816d44824eb1..7869b5bdd82a 100644 --- a/sdk/identity/identity/CHANGELOG.md +++ b/sdk/identity/identity/CHANGELOG.md @@ -11,6 +11,7 @@ - Reintroduced the `TokenCachePersistenceOptions` property on most credential constructor options. This property must be present with an `enabled` property set to true to enable persistent token caching for a credential instance. Credentials that do not support persistent token caching do not have this property. - Added support to `ManagedIdentityCredential` for Bridge to Kubernetes local development authentication. - Enabled PKCE on `InteractiveBrowserCredential` for Node.js. [Proof Key for Code Exchange (PKCE)](https://datatracker.ietf.org/doc/html/rfc7636) is a security feature that mitigates authentication code interception attacks. +- Added `LoginHint` property to `InteractiveBrowserCredentialOptions` which allows a user name to be pre-selected for interactive logins. Setting this option skips the account selection prompt and immediately attempts to login with the specified account. - Added regional STS support to client credential types. - Added the `RegionalAuthority` type, that allows specifying Azure regions. - Added `regionalAuthority` property to `ClientSecretCredentialOptions` and `ClientCertificateCredentialOptions`. diff --git a/sdk/identity/identity/review/identity.api.md b/sdk/identity/identity/review/identity.api.md index 10e053664152..80669f0f6133 100644 --- a/sdk/identity/identity/review/identity.api.md +++ b/sdk/identity/identity/review/identity.api.md @@ -196,6 +196,7 @@ export class InteractiveBrowserCredential implements TokenCredential { // @public export interface InteractiveBrowserCredentialBrowserOptions extends InteractiveCredentialOptions { clientId: string; + loginHint?: string; loginStyle?: BrowserLoginStyle; redirectUri?: string | (() => string); tenantId?: string; @@ -204,6 +205,7 @@ export interface InteractiveBrowserCredentialBrowserOptions extends InteractiveC // @public export interface InteractiveBrowserCredentialOptions extends InteractiveCredentialOptions, CredentialPersistenceOptions { clientId?: string; + loginHint?: string; redirectUri?: string | (() => string); tenantId?: string; } diff --git a/sdk/identity/identity/src/credentials/interactiveBrowserCredentialOptions.ts b/sdk/identity/identity/src/credentials/interactiveBrowserCredentialOptions.ts index 2057c792f8bb..7d6887ac79fa 100644 --- a/sdk/identity/identity/src/credentials/interactiveBrowserCredentialOptions.ts +++ b/sdk/identity/identity/src/credentials/interactiveBrowserCredentialOptions.ts @@ -36,6 +36,12 @@ export interface InteractiveBrowserCredentialOptions * The client (application) ID of an App Registration in the tenant. */ clientId?: string; + + /** + * loginHint allows a user name to be pre-selected for interactive logins. + * Setting this option skips the account selection prompt and immediately attempts to login with the specified account. + */ + loginHint?: string; } /** @@ -66,4 +72,10 @@ export interface InteractiveBrowserCredentialBrowserOptions extends InteractiveC * */ loginStyle?: BrowserLoginStyle; + + /** + * loginHint allows a user name to be pre-selected for interactive logins. + * Setting this option skips the account selection prompt and immediately attempts to login with the specified account. + */ + loginHint?: string; } diff --git a/sdk/identity/identity/src/msal/browserFlows/browserCommon.ts b/sdk/identity/identity/src/msal/browserFlows/browserCommon.ts index 5e06a9ea4dbd..914b40a002f1 100644 --- a/sdk/identity/identity/src/msal/browserFlows/browserCommon.ts +++ b/sdk/identity/identity/src/msal/browserFlows/browserCommon.ts @@ -22,6 +22,7 @@ import { CredentialUnavailableError } from "../../client/errors"; export interface MsalBrowserFlowOptions extends MsalFlowOptions { redirectUri?: string; loginStyle: BrowserLoginStyle; + loginHint?: string; } /** diff --git a/sdk/identity/identity/src/msal/browserFlows/msalAuthCode.ts b/sdk/identity/identity/src/msal/browserFlows/msalAuthCode.ts index 9c8ee4317b26..f6294a3b885b 100644 --- a/sdk/identity/identity/src/msal/browserFlows/msalAuthCode.ts +++ b/sdk/identity/identity/src/msal/browserFlows/msalAuthCode.ts @@ -21,6 +21,7 @@ const redirectHash = self.location.hash; */ export class MSALAuthCode extends MsalBrowser { protected app: msalBrowser.PublicClientApplication; + private loginHint?: string; /** * Sets up an MSAL object based on the given parameters. @@ -30,6 +31,7 @@ export class MSALAuthCode extends MsalBrowser { */ constructor(options: MsalBrowserFlowOptions) { super(options); + this.loginHint = options.loginHint; this.msalConfig.cache = { cacheLocation: "sessionStorage", @@ -122,8 +124,9 @@ To work with multiple accounts for the same Client ID and Tenant ID, please prov */ public async login(scopes: string | string[] = []): Promise { const arrayScopes = Array.isArray(scopes) ? scopes : [scopes]; - const loginRequest = { - scopes: arrayScopes + const loginRequest: msalBrowser.RedirectRequest = { + scopes: arrayScopes, + loginHint: this.loginHint }; switch (this.loginStyle) { case "redirect": { @@ -191,6 +194,7 @@ To work with multiple accounts for the same Client ID and Tenant ID, please prov authority: this.msalConfig.auth.authority!, correlationId: options?.correlationId, account: publicToMsal(account), + loginHint: this.loginHint, scopes }; diff --git a/sdk/identity/identity/src/msal/nodeFlows/msalOpenBrowser.ts b/sdk/identity/identity/src/msal/nodeFlows/msalOpenBrowser.ts index fb8d1a52500b..c59887477dfc 100644 --- a/sdk/identity/identity/src/msal/nodeFlows/msalOpenBrowser.ts +++ b/sdk/identity/identity/src/msal/nodeFlows/msalOpenBrowser.ts @@ -21,6 +21,7 @@ import { CredentialUnavailableError } from "../../client/errors"; */ export interface MSALOpenBrowserOptions extends MsalNodeOptions { redirectUri: string; + loginHint?: string; } /** @@ -40,11 +41,13 @@ export class MsalOpenBrowser extends MsalNode { private redirectUri: string; private port: number; private hostname: string; + private loginHint?: string; constructor(options: MSALOpenBrowserOptions) { super(options); this.logger = credentialLogger("NodeJS MSAL Open Browser"); this.redirectUri = options.redirectUri; + this.loginHint = options.loginHint; const url = new URL(this.redirectUri); this.port = parseInt(url.port); @@ -200,6 +203,7 @@ export class MsalOpenBrowser extends MsalNode { const authCodeUrlParameters: msalNode.AuthorizationUrlRequest = { scopes: scopeArray, redirectUri: this.redirectUri, + loginHint: this.loginHint, codeChallenge: this.pkceCodes.challenge, codeChallengeMethod: "S256" // Use SHA256 Algorithm }; From 528f940c0fdd78dcaca97a638532053b0eb95a63 Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Wed, 30 Jun 2021 08:43:23 -0700 Subject: [PATCH 36/49] Sync eng/common directory with azure-sdk-tools for PR 1725 (#16079) * Bring changes from JS docs metadata * Move business logic inside Update-DocsMsMetadata.ps1 * Update with the latest changes in JS PR * Update from latest PR feedback * Add check for empty path to prevent crashes when creating relative paths Co-authored-by: Daniel Jurek --- .../steps/enable-long-path-support.yml | 10 ++ .../steps/set-daily-docs-branch-name.yml | 14 ++ .../templates/steps/set-default-branch.yml | 5 +- .../steps/update-docsms-metadata.yml | 95 +++++++++++ eng/common/scripts/Invoke-DevOpsAPI.ps1 | 7 +- eng/common/scripts/Package-Properties.ps1 | 1 + eng/common/scripts/Queue-Pipeline.ps1 | 15 +- .../scripts/Save-Package-Properties.ps1 | 74 ++++++++- eng/common/scripts/Update-DocsMsMetadata.ps1 | 155 ++++++++++++++++++ eng/common/scripts/Update-DocsMsPackages.ps1 | 115 ++++++++++++- eng/common/scripts/common.ps1 | 2 + 11 files changed, 474 insertions(+), 19 deletions(-) create mode 100644 eng/common/pipelines/templates/steps/enable-long-path-support.yml create mode 100644 eng/common/pipelines/templates/steps/set-daily-docs-branch-name.yml create mode 100644 eng/common/pipelines/templates/steps/update-docsms-metadata.yml create mode 100644 eng/common/scripts/Update-DocsMsMetadata.ps1 diff --git a/eng/common/pipelines/templates/steps/enable-long-path-support.yml b/eng/common/pipelines/templates/steps/enable-long-path-support.yml new file mode 100644 index 000000000000..1e0db13d754a --- /dev/null +++ b/eng/common/pipelines/templates/steps/enable-long-path-support.yml @@ -0,0 +1,10 @@ +steps: +- pwsh: | + if ($IsWindows) { + REG ADD HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem /f /v LongPathsEnabled /t REG_DWORD /d 1 + git config --system core.longpaths true + } + else { + Write-Host "This script is not executing on Windows, skipping registry modification." + } + displayName: Enable long path support if necessary diff --git a/eng/common/pipelines/templates/steps/set-daily-docs-branch-name.yml b/eng/common/pipelines/templates/steps/set-daily-docs-branch-name.yml new file mode 100644 index 000000000000..1548a9326f7a --- /dev/null +++ b/eng/common/pipelines/templates/steps/set-daily-docs-branch-name.yml @@ -0,0 +1,14 @@ +parameters: + - name: DailyBranchVariableName + type: string + default: TargetBranchName + +steps: + - pwsh: | + $branchName = $env:DAILYDOCSBRANCHNAMEOVERRIDE + if (!$branchName) { + $branchName = "daily/$(Get-Date -Format 'yyyy-MM-dd')" + } + Write-Host "Daily Branch Name: $branchName" + Write-Host "##vso[task.setvariable variable=${{ parameters.DailyBranchVariableName }};]$branchName" + displayName: Set daily docs branch name in $(${{ parameters.DailyBranchVariableName }}) diff --git a/eng/common/pipelines/templates/steps/set-default-branch.yml b/eng/common/pipelines/templates/steps/set-default-branch.yml index 491edaa8b68d..31bf28936164 100644 --- a/eng/common/pipelines/templates/steps/set-default-branch.yml +++ b/eng/common/pipelines/templates/steps/set-default-branch.yml @@ -1,6 +1,7 @@ parameters: WorkingDirectory: '$(System.DefaultWorkingDirectory)' RemoteRepo: 'origin' + DefaultBranchVariableName: DefaultBranch steps: - pwsh: | $setDefaultBranch = (git remote show ${{ parameters.RemoteRepo }} | Out-String) -replace "(?ms).*HEAD branch: (\w+).*", '$1' @@ -8,8 +9,8 @@ steps: Write-Host "Not able to fetch the default branch from git command. Set to main." $setDefaultBranch = 'main' } - Write-Host "Setting DefaultBranch=$setDefaultBranch" - Write-Host "##vso[task.setvariable variable=DefaultBranch]$setDefaultBranch" + Write-Host "Setting ${{ parameters.DefaultBranchVariableName }}=$setDefaultBranch" + Write-Host "##vso[task.setvariable variable=${{ parameters.DefaultBranchVariableName }}]$setDefaultBranch" displayName: "Setup Default Branch" workingDirectory: ${{ parameters.workingDirectory }} ignoreLASTEXITCODE: true diff --git a/eng/common/pipelines/templates/steps/update-docsms-metadata.yml b/eng/common/pipelines/templates/steps/update-docsms-metadata.yml new file mode 100644 index 000000000000..341169b37348 --- /dev/null +++ b/eng/common/pipelines/templates/steps/update-docsms-metadata.yml @@ -0,0 +1,95 @@ +parameters: + - name: PackageInfoLocations + type: object + default: [] + - name: RepoId + type: string + default: $(Build.Repository.Name) + - name: WorkingDirectory + type: string + default: '' + - name: ScriptDirectory + type: string + default: eng/common/scripts + - name: TargetDocRepoName + type: string + default: '' + - name: TargetDocRepoOwner + type: string + - name: Language + type: string + default: '' + - name: DailyDocsBuild + type: boolean + default: false + - name: SparseCheckoutPaths + type: object + default: + - '**' + +steps: +- template: /eng/common/pipelines/templates/steps/enable-long-path-support.yml + +- pwsh: | + Write-Host "###vso[task.setvariable variable=DocRepoLocation]${{ parameters.WorkingDirectory }}/doc" + displayName: Set $(DocRepoLocation) + +- template: /eng/common/pipelines/templates/steps/sparse-checkout.yml + parameters: + SkipDefaultCheckout: true + Repositories: + - Name: ${{ parameters.TargetDocRepoOwner }}/${{ parameters.TargetDocRepoName }} + WorkingDirectory: $(DocRepoLocation) + Paths: ${{ parameters.SparseCheckoutPaths }} + +# If performing a daily docs build set the $(TargetBranchName) to a daily branch +# name and attempt to checkout the daily docs branch. If the branch doesn't +# exist, create it +- ${{ if eq(parameters.DailyDocsBuild, 'true') }}: + - template: /eng/common/pipelines/templates/steps/set-daily-docs-branch-name.yml + + - pwsh: | + $ErrorActionPreference = "Continue" + $RemoteName = "origin" + $BranchName = "$(TargetBranchName)" + # Fetch and checkout remote branch if it already exists otherwise create a new branch. + git ls-remote --exit-code --heads $RemoteName $BranchName + if ($LASTEXITCODE -eq 0) { + Write-Host "git fetch $RemoteName $BranchName" + git fetch $RemoteName $BranchName + Write-Host "git checkout $BranchName." + git checkout $BranchName + } else { + Write-Host "git checkout -b $BranchName." + git checkout -b $BranchName + } + displayName: Checkout daily docs branch if it exists + workingDirectory: $(DocRepoLocation) + +# If NOT performing a daily docs build, set the $(TargetBranchName) to the +# default branch of the documentation repository. +- ${{ if ne(parameters.DailyDocsBuild, 'true') }}: + - template: /eng/common/pipelines/templates/steps/set-default-branch.yml + parameters: + WorkingDirectory: $(DocRepoLocation) + DefaultBranchVariableName: TargetBranchName + +- pwsh: | + $packageInfoJson = '${{ convertToJson(parameters.PackageInfoLocations) }}'.Trim('"') + $packageInfoLocations = ConvertFrom-Json $packageInfoJson + ${{ parameters.ScriptDirectory }}/Update-DocsMsMetadata.ps1 ` + -PackageInfoJsonLocations $packageInfoLocations ` + -DocRepoLocation "$(DocRepoLocation)" ` + -Language '${{parameters.Language}}' ` + -RepoId '${{ parameters.RepoId }}' + displayName: Apply Documentation Updates + +- template: /eng/common/pipelines/templates/steps/git-push-changes.yml + parameters: + BaseRepoBranch: $(TargetBranchName) + BaseRepoOwner: ${{ parameters.TargetDocRepoOwner }} + CommitMsg: "Update docs metadata" + TargetRepoName: ${{ parameters.TargetDocRepoName }} + TargetRepoOwner: ${{ parameters.TargetDocRepoOwner }} + WorkingDirectory: $(DocRepoLocation) + ScriptDirectory: ${{ parameters.WorkingDirectory }}/${{ parameters.ScriptDirectory }} diff --git a/eng/common/scripts/Invoke-DevOpsAPI.ps1 b/eng/common/scripts/Invoke-DevOpsAPI.ps1 index 32c3569a3cd2..72d61edd081f 100644 --- a/eng/common/scripts/Invoke-DevOpsAPI.ps1 +++ b/eng/common/scripts/Invoke-DevOpsAPI.ps1 @@ -19,7 +19,9 @@ function Start-DevOpsBuild { $DefinitionId, [ValidateNotNullOrEmpty()] [Parameter(Mandatory = $true)] - $Base64EncodedAuthToken + $Base64EncodedAuthToken, + [Parameter(Mandatory = $false)] + [string]$BuildParametersJson ) $uri = "$DevOpsAPIBaseURI" -F $Organization, $Project , "build" , "builds", "" @@ -27,6 +29,7 @@ function Start-DevOpsBuild { $parameters = @{ sourceBranch = $SourceBranch definition = @{ id = $DefinitionId } + parameters = $BuildParametersJson } return Invoke-RestMethod ` @@ -157,4 +160,4 @@ function Add-RetentionLease { -MaximumRetryCount 3 ` -ContentType "application/json" -} \ No newline at end of file +} diff --git a/eng/common/scripts/Package-Properties.ps1 b/eng/common/scripts/Package-Properties.ps1 index e00ea7bb9eaf..622c5fd925aa 100644 --- a/eng/common/scripts/Package-Properties.ps1 +++ b/eng/common/scripts/Package-Properties.ps1 @@ -5,6 +5,7 @@ class PackageProps { [string]$Name [string]$Version + [string]$DevVersion [string]$DirectoryPath [string]$ServiceDirectory [string]$ReadMePath diff --git a/eng/common/scripts/Queue-Pipeline.ps1 b/eng/common/scripts/Queue-Pipeline.ps1 index a8c147e2ef38..30a4282c8cbb 100644 --- a/eng/common/scripts/Queue-Pipeline.ps1 +++ b/eng/common/scripts/Queue-Pipeline.ps1 @@ -18,7 +18,10 @@ param( [string]$VsoQueuedPipelines, [Parameter(Mandatory = $true)] - [string]$Base64EncodedAuthToken + [string]$Base64EncodedAuthToken, + + [Parameter(Mandatory = $false)] + [string]$BuildParametersJson ) . (Join-Path $PSScriptRoot common.ps1) @@ -46,7 +49,13 @@ if ($CancelPreviousBuilds) } try { - $resp = Start-DevOpsBuild -SourceBranch $SourceBranch -DefinitionId $DefinitionId -Base64EncodedAuthToken $Base64EncodedAuthToken + $resp = Start-DevOpsBuild ` + -Organization $Organization ` + -Project $Project ` + -SourceBranch $SourceBranch ` + -DefinitionId $DefinitionId ` + -Base64EncodedAuthToken $Base64EncodedAuthToken ` + -BuildParametersJson $BuildParametersJson } catch { LogError "Start-DevOpsBuild failed with exception:`n$_" @@ -64,4 +73,4 @@ if ($VsoQueuedPipelines) { } $QueuedPipelineLinks Write-Host "##vso[task.setvariable variable=$VsoQueuedPipelines]$QueuedPipelineLinks" -} \ No newline at end of file +} diff --git a/eng/common/scripts/Save-Package-Properties.ps1 b/eng/common/scripts/Save-Package-Properties.ps1 index 26f4f17c8807..7e51813830dd 100644 --- a/eng/common/scripts/Save-Package-Properties.ps1 +++ b/eng/common/scripts/Save-Package-Properties.ps1 @@ -1,12 +1,79 @@ +<# +.SYNOPSIS +Saves package properties from source into JSON files + +.DESCRIPTION +Saves package properties in source of a given service directory to JSON files. +JSON files are named in the form .json or .json if +an artifact name property is available in the package properties. + +Can optionally add a dev version property which can be used logic for daily +builds. + +.PARAMETER serviceDirectory +Service directory in which to search for packages + +.PARAMETER outDirectory +Output location (generally a package artifact directory in DevOps) for JSON +files + +.PARAMETER addDevVersion +Reads the version out of the source and adds a DevVersion property to the +package properties JSON file. If the package properties JSON file already +exists, read the Version property from the existing package properties JSON file +and set that as the Version property for the new output. This has the effect of +"adding" a DevVersion property to the file which could be different from the +Verison property in that file. +#> + [CmdletBinding()] Param ( [Parameter(Mandatory=$True)] [string] $serviceDirectory, [Parameter(Mandatory=$True)] - [string] $outDirectory + [string] $outDirectory, + [switch] $addDevVersion ) . (Join-Path $PSScriptRoot common.ps1) + +function SetOutput($outputPath, $incomingPackageSpec) { + $outputObject = $incomingPackageSpec + + if ($addDevVersion) { + # Use the "Version" property which was provided by the incoming package spec + # as the DevVersion. This may be overridden later. + $outputObject.DevVersion = $incomingPackageSpec.Version + + # If there is an exsiting package info json file read that and set the + # Version property from that JSON file. + if (Test-Path $outputPath) { + $originalObject = ConvertFrom-Json (Get-Content $outputPath -Raw) + $outputObject.Version = $originalObject.Version + } + } + + # Set file paths to relative paths + $outputObject.DirectoryPath = GetRelativePath $outputObject.DirectoryPath + $outputObject.ReadMePath = GetRelativePath $outputObject.ReadMePath + $outputObject.ChangeLogPath = GetRelativePath $outputObject.ChangeLogPath + + Set-Content ` + -Path $outputPath ` + -Value (ConvertTo-Json -InputObject $outputObject -Depth 100) +} + +function GetRelativePath($path) { + # If the path is empty return an empty string + if (!$path) { + return '' + } + $relativeTo = Resolve-Path $PSScriptRoot/../../../ + # Replace "\" with "/" so the path is valid across other platforms and tools + $relativePath = [IO.Path]::GetRelativePath($relativeTo, $path) -replace "\\", '/' + return $relativePath +} + $allPackageProperties = Get-AllPkgProperties $serviceDirectory if ($allPackageProperties) { @@ -29,9 +96,8 @@ if ($allPackageProperties) $configFilePrefix = $pkg.ArtifactName } $outputPath = Join-Path -Path $outDirectory "$configFilePrefix.json" - $outputObject = $pkg | ConvertTo-Json - Set-Content -Path $outputPath -Value $outputObject - } + SetOutput $outputPath $pkg + } } Get-ChildItem -Path $outDirectory diff --git a/eng/common/scripts/Update-DocsMsMetadata.ps1 b/eng/common/scripts/Update-DocsMsMetadata.ps1 new file mode 100644 index 000000000000..2a9d4f26a999 --- /dev/null +++ b/eng/common/scripts/Update-DocsMsMetadata.ps1 @@ -0,0 +1,155 @@ +<# +.SYNOPSIS +Updates package README.md for publishing to docs.microsoft.com + +.DESCRIPTION +Given a PackageInfo .json file, format the package README.md file with metadata +and other information needed to release reference docs: + +* Adjust README.md content to include metadata +* Insert the package verison number in the README.md title +* Copy file to the appropriate location in the documentation repository +* Copy PackageInfo .json file to the metadata location in the reference docs + repository. This enables the Docs CI build to onboard packages which have not + shipped and for which there are no entries in the metadata CSV files. + +.PARAMETER PackageInfoJsonLocations +List of locations of the artifact information .json file. This is usually stored +in build artifacts under packages/PackageInfo/.json. Can also be +a single item. + +.PARAMETER DocRepoLocation +Location of the root of the docs.microsoft.com reference doc location. Further +path information is provided by $GetDocsMsMetadataForPackageFn + +.PARAMETER Language +Programming language to supply to metadata + +.PARAMETER RepoId +GitHub repository ID of the SDK. Typically of the form: 'Azure/azure-sdk-for-js' + +#> + +param( + [Parameter(Mandatory = $true)] + [array]$PackageInfoJsonLocations, + + [Parameter(Mandatory = $true)] + [string]$DocRepoLocation, + + [Parameter(Mandatory = $true)] + [string]$Language, + + [Parameter(Mandatory = $true)] + [string]$RepoId +) + +. (Join-Path $PSScriptRoot common.ps1) + +$releaseReplaceRegex = "(https://github.com/$RepoId/(?:blob|tree)/)(?:master|main)" +$TITLE_REGEX = "(\#\s+(?Azure .+? (?:client|plugin|shared) library for (?:JavaScript|Java|Python|\.NET|C)))" + +function GetAdjustedReadmeContent($ReadmeContent, $PackageInfo, $PackageMetadata) { + # Normalize service name "Key Vault" -> "keyvault" + # TODO: Use taxonomy for service name -- https://github.com/Azure/azure-sdk-tools/issues/1442 + # probably from metadata + $service = $PackageMetadata.ServiceName.ToLower().Replace(" ", "") + # Generate the release tag for use in link substitution + $tag = "$($PackageInfo.Name)_$($PackageInfo.Version)" + $date = Get-Date -Format "MM/dd/yyyy" + + + $foundTitle = "" + if ($ReadmeContent -match $TITLE_REGEX) { + $ReadmeContent = $ReadmeContent -replace $TITLE_REGEX, "`${0} - Version $($PackageInfo.Version) `n" + $foundTitle = $matches["filetitle"] + } + + # If this is not a daily dev package, perform link replacement + if (!$packageInfo.DevVersion) { + $replacementPattern = "`${1}$tag" + $ReadmeContent = $ReadmeContent -replace $releaseReplaceRegex, $replacementPattern + } + + $header = @" +--- +title: $foundTitle +keywords: Azure, $Language, SDK, API, $($PackageInfo.Name), $service +author: maggiepint +ms.author: magpint +ms.date: $date +ms.topic: article +ms.prod: azure +ms.technology: azure +ms.devlang: $Language +ms.service: $service +--- + +"@ + + return "$header`n$ReadmeContent" +} + +function UpdateDocsMsMetadataForPackage($packageInfoJsonLocation) { + $packageInfoJson = Get-Content $packageInfoJsonLocation -Raw + $packageInfo = ConvertFrom-Json $packageInfoJson + + $originalVersion = [AzureEngSemanticVersion]::ParseVersionString($packageInfo.Version) + if ($packageInfo.DevVersion) { + # If the package is of a dev version there may be language-specific needs to + # specify the appropriate version. For example, in the case of JS, the dev + # version is always 'dev' when interacting with NPM. + if ($GetDocsMsDevLanguageSpecificPackageInfoFn -and (Test-Path "Function:$GetDocsMsDevLanguageSpecificPackageInfoFn")) { + $packageInfo = &$GetDocsMsDevLanguageSpecificPackageInfoFn $packageInfo + } else { + # Default: use the dev version from package info as the version for + # downstream processes + $packageInfo.Version = $packageInfo.DevVersion + } + } + + $packageMetadataArray = (Get-CSVMetadata).Where({ $_.Package -eq $packageInfo.Name -and $_.GroupId -eq $packageInfo.Group -and $_.Hide -ne 'true' -and $_.New -eq 'true' }) + if ($packageMetadataArray.Count -eq 0) { + LogError "Could not retrieve metadata for $($packageInfo.Name) from metadata CSV" + } elseif ($packageMetadataArray.Count -gt 1) { + LogWarning "Multiple metadata entries for $($packageInfo.Name) in metadata CSV. Using first entry." + } + $packageMetadata = $packageMetadataArray[0] + + $readmeContent = Get-Content $packageInfo.ReadMePath -Raw + $outputReadmeContent = "" + if ($readmeContent) { + $outputReadmeContent = GetAdjustedReadmeContent $readmeContent $packageInfo $packageMetadata + } + + $docsMsMetadata = &$GetDocsMsMetadataForPackageFn $packageInfo + $readMePath = $docsMsMetadata.LatestReadMeLocation + if ($originalVersion.IsPrerelease) { + $readMePath = $docsMsMetadata.PreviewReadMeLocation + } + + $suffix = $docsMsMetadata.Suffix + $readMeName = "$($docsMsMetadata.DocsMsReadMeName.ToLower())-readme${suffix}.md" + + $readmeLocation = Join-Path $DocRepoLocation $readMePath $readMeName + + Set-Content -Path $readmeLocation -Value $outputReadmeContent + + # Copy package info file to the docs repo + $metadataMoniker = 'latest' + if ($originalVersion.IsPrerelease) { + $metadataMoniker = 'preview' + } + $packageMetadataName = Split-Path $packageInfoJsonLocation -Leaf + $packageInfoLocation = Join-Path $DocRepoLocation "metadata/$metadataMoniker" + $packageInfoJson = ConvertTo-Json $packageInfo + New-Item -ItemType Directory -Path $packageInfoLocation -Force + Set-Content ` + -Path $packageInfoLocation/$packageMetadataName ` + -Value $packageInfoJson +} + +foreach ($packageInfo in $PackageInfoJsonLocations) { + Write-Host "Updating metadata for package: $packageInfo" + UpdateDocsMsMetadataForPackage $packageInfo +} diff --git a/eng/common/scripts/Update-DocsMsPackages.ps1 b/eng/common/scripts/Update-DocsMsPackages.ps1 index 4292200f3b6f..576159e7785d 100644 --- a/eng/common/scripts/Update-DocsMsPackages.ps1 +++ b/eng/common/scripts/Update-DocsMsPackages.ps1 @@ -1,10 +1,24 @@ -# This script is intended to update docs.ms CI configuration (currently supports Java, Python, C#, JS) in nightly build -# For details on calling, check `docindex.yml`. +<# +.SYNOPSIS +Update docs.microsoft.com CI configuration with provided metadata -# In this script, we will do the following business logic. -# 1. Filter out the packages from release csv file by `New=true`, `Hide!=true` -# 2. Compare current package list with the csv packages, and keep them in sync. Leave other packages as they are. -# 3. Update the tarage packages back to CI config files. +.DESCRIPTION +Update docs.microsoft.com CI configuration with metadata in the Azure/azure-sdk +metadata CSV file and information in the docs.microsoft.com repo's own /metadata +folder. The docs.microsoft.com repo's /metadata folder allows onboarding of +packages which have not released to a central package manager. + +* Use packages in the Azure/azure-sdk metadata CSV where New == true and + Hide != true +* Add metadata from files in the metadata/ folder to the CSV metadata +* Onboard new packages, update existing tracked packages, leave other packages + in place. (This is implemented on a per-language basis by + $UpdateDocsMsPackagesFn) + +.PARAMETER DocRepoLocation +Location of the docs.microsoft.com reference docs repo. + +#> param ( [Parameter(Mandatory = $true)] $DocRepoLocation # the location of the cloned doc repo @@ -12,8 +26,93 @@ param ( . (Join-Path $PSScriptRoot common.ps1) -function GetDocsMetadata() { - (Get-CSVMetadata).Where({ $_.New -eq 'true' -and $_.Hide -ne 'true' }) +function GetDocsMetadataForMoniker($moniker) { + $searchPath = Join-Path $DocRepoLocation 'metadata' $moniker + if (!(Test-Path $searchPath)) { + return @() + } + $paths = Get-ChildItem -Path $searchPath -Filter *.json + + $metadata = @() + foreach ($path in $paths) { + $fileContents = Get-Content $path -Raw + $fileObject = ConvertFrom-Json -InputObject $fileContents + $versionGa = '' + $versionPreview = '' + if ($moniker -eq 'latest') { + $versionGa = $fileObject.Version + } else { + $versionPreview = $fileObject.Version + } + + $metadata += @{ + Package = $fileObject.Name; + VersionGA = $versionGa; + VersionPreview = $versionPreview; + RepoPath = $fileObject.ServiceDirectory; + Type = $fileObject.SdkType; + New = $fileObject.IsNewSdk; + } + } + + return $metadata +} +function GetDocsMetadata() { + # Read metadata from CSV + $csvMetadata = (Get-CSVMetadata).Where({ $_.New -eq 'true' -and $_.Hide -ne 'true' }) + + # Read metadata from docs repo + $metadataByPackage = @{} + foreach ($package in GetDocsMetadataForMoniker 'latest') { + if ($metadataByPackage.ContainsKey($package.Package)) { + LogWarning "Duplicate package in latest metadata: $($package.Package)" + } + Write-Host "Adding latest package: $($package.Package)" + $metadataByPackage[$package.Package] = $package + } + + foreach ($package in GetDocsMetadataForMoniker 'preview') { + if ($metadataByPackage.ContainsKey($package.Package)) { + # Merge VersionPreview of each object + Write-Host "Merging preview package version for $($package.Package))" + $metadataByPackage[$package.Package].VersionPreview = $package.VersionPreview + } else { + Write-Host "Adding preview package: $($package.Package)" + $metadataByPackage[$package.Package] = $package + } + } + + # Override CSV metadata version information before returning + $outputMetadata = @() + foreach ($item in $csvMetadata) { + if ($metadataByPackage.ContainsKey($item.Package)) { + Write-Host "Overriding CSV metadata from docs repo for $($item.Package)" + $matchingPackage = $metadataByPackage[$item.Package] + + # Only update the version from metadata present in the docs repo IF there + # is a specified version. The absence of package metadata in the docs repo + # (e.g. no GA version) does not imply that the CSV metadata is incorrect. + if ($matchingPackage.VersionGA) { + $item.VersionGA = $matchingPackage.VersionGA + } + if ($matchingPackage.VersionPreview) { + $item.VersionPreview = $matchingPackage.VersionPreview + } + } + $outputMetadata += $item + } + + # Add entries present in the docs repo which are not present in CSV. These are + # usually packages which have not yet published a preview or GA version. + foreach ($item in $metadataByPackage.Values) { + $matchingPackagesInCsvMetadata = $csvMetadata.Where({ $_.Package -eq $item.Package }) + if (!$matchingPackagesInCsvMetadata) { + Write-Host "Adding package from docs metadata that is not found in CSV metadata: $($item.Package)" + $outputMetadata += $item + } + } + + return $outputMetadata } if ($UpdateDocsMsPackagesFn -and (Test-Path "Function:$UpdateDocsMsPackagesFn")) { diff --git a/eng/common/scripts/common.ps1 b/eng/common/scripts/common.ps1 index b92235c208f9..4e0b0847cdbf 100644 --- a/eng/common/scripts/common.ps1 +++ b/eng/common/scripts/common.ps1 @@ -40,5 +40,7 @@ $GetPackageInfoFromRepoFn = "Get-${Language}-PackageInfoFromRepo" $GetPackageInfoFromPackageFileFn = "Get-${Language}-PackageInfoFromPackageFile" $PublishGithubIODocsFn = "Publish-${Language}-GithubIODocs" $UpdateDocsMsPackagesFn = "Update-${Language}-DocsMsPackages" +$GetDocsMsMetadataForPackageFn = "Get-${Language}-DocsMsMetadataForPackage" +$GetDocsMsDevLanguageSpecificPackageInfoFn = "Get-${Language}-DocsMsDevLanguageSpecificPackageInfo" $GetGithubIoDocIndexFn = "Get-${Language}-GithubIoDocIndex" $FindArtifactForApiReviewFn = "Find-${Language}-Artifacts-For-Apireview" From 702007a91a101869d6215dacf5fcf4d4f5f8cc45 Mon Sep 17 00:00:00 2001 From: Maor Leger Date: Wed, 30 Jun 2021 08:57:11 -0700 Subject: [PATCH 37/49] [core] - Update release dates for July Release (#16069) This PR just updates the release dates for core releases that I plan to release: - @azure/core-tracing - @azure/core-http - @azure/core-rest-pipeline - @azure/core-client - @azure/core-lro - @azure/core-auth --- sdk/core/core-auth/CHANGELOG.md | 2 +- sdk/core/core-client/CHANGELOG.md | 2 +- sdk/core/core-http/CHANGELOG.md | 2 +- sdk/core/core-lro/CHANGELOG.md | 2 +- sdk/core/core-rest-pipeline/CHANGELOG.md | 2 +- sdk/core/core-tracing/CHANGELOG.md | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/sdk/core/core-auth/CHANGELOG.md b/sdk/core/core-auth/CHANGELOG.md index 8babbff10b65..e0817d8a22e6 100644 --- a/sdk/core/core-auth/CHANGELOG.md +++ b/sdk/core/core-auth/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 1.3.1 (Unreleased) +## 1.3.1 (2021-06-30) ## 1.3.0 (2021-03-30) diff --git a/sdk/core/core-client/CHANGELOG.md b/sdk/core/core-client/CHANGELOG.md index 1fbe0479458f..d9565a5221ee 100644 --- a/sdk/core/core-client/CHANGELOG.md +++ b/sdk/core/core-client/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 1.2.0 (UNRELEASED) +## 1.2.0 (2021-06-30) ### Features Added diff --git a/sdk/core/core-http/CHANGELOG.md b/sdk/core/core-http/CHANGELOG.md index 7163b4275fc6..10db2bf0c5b9 100644 --- a/sdk/core/core-http/CHANGELOG.md +++ b/sdk/core/core-http/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 2.0.0 (Unreleased) +## 2.0.0 (2021-06-30) ### Features Added diff --git a/sdk/core/core-lro/CHANGELOG.md b/sdk/core/core-lro/CHANGELOG.md index 60dca1cffbdc..125462933aee 100644 --- a/sdk/core/core-lro/CHANGELOG.md +++ b/sdk/core/core-lro/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 2.0.0 (Unreleased) +## 2.0.0 (2021-06-30) ### New Features diff --git a/sdk/core/core-rest-pipeline/CHANGELOG.md b/sdk/core/core-rest-pipeline/CHANGELOG.md index 2fc48a81256d..7e390b51db1b 100644 --- a/sdk/core/core-rest-pipeline/CHANGELOG.md +++ b/sdk/core/core-rest-pipeline/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 1.1.0 (Unreleased) +## 1.1.0 (2021-06-30) ### Fixed diff --git a/sdk/core/core-tracing/CHANGELOG.md b/sdk/core/core-tracing/CHANGELOG.md index a309dea716be..b77e8e9407d0 100644 --- a/sdk/core/core-tracing/CHANGELOG.md +++ b/sdk/core/core-tracing/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 1.0.0-preview.12 (Unreleased) +## 1.0.0-preview.12 (2021-06-30) - Update `@opentelemetry/api` to version 1.0.0 [PR #15883](https://github.com/Azure/azure-sdk-for-js/pull/15883) From bbd295a9afba9771f5c736c60e4772a0b4720478 Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Wed, 30 Jun 2021 09:20:34 -0700 Subject: [PATCH 38/49] Update devops workitem helpers (#16083) - Switch to using rest instead of cli for querying work items as cli is limited to 1000 items only. - Fix issues with Generated fields not being set. - Correctly sort older workitems by version isntead of string. Co-authored-by: Wes Haggard --- .../Helpers/DevOps-WorkItem-Helpers.ps1 | 141 +++++++++++++----- 1 file changed, 105 insertions(+), 36 deletions(-) diff --git a/eng/common/scripts/Helpers/DevOps-WorkItem-Helpers.ps1 b/eng/common/scripts/Helpers/DevOps-WorkItem-Helpers.ps1 index 3897cfa816a9..aca34080da46 100644 --- a/eng/common/scripts/Helpers/DevOps-WorkItem-Helpers.ps1 +++ b/eng/common/scripts/Helpers/DevOps-WorkItem-Helpers.ps1 @@ -12,6 +12,77 @@ function Invoke-AzBoardsCmd($subCmd, $parameters, $output = $true) return Invoke-Expression "$azCmdStr" | ConvertFrom-Json -AsHashTable } +function Invoke-Query($fields, $wiql, $output = $true) +{ + #POST https://dev.azure.com/{organization}/{project}/{team}/_apis/wit/wiql?timePrecision={timePrecision}&$top={$top}&api-version=6.1-preview.2 + + $body = @" +{ + "query": "$wiql" +} +"@ + + if ($output) { + Write-Host "Executing query $wiql" + } + + $headers = $null + if (Get-Variable -Name "devops_pat" -ValueOnly -ErrorAction "Ignore") + { + $encodedToken = [System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes([string]::Format("{0}:{1}", "", $devops_pat))) + $headers = @{ Authorization = "Basic $encodedToken" } + } + else + { + # Get a temp access token from the logged in az cli user for azure devops resource + $jwt_accessToken = (az account get-access-token --resource "499b84ac-1321-427f-aa17-267ca6975798" --query "accessToken" --output tsv) + $headers = @{ Authorization = "Bearer $jwt_accessToken" } + } + $response = Invoke-RestMethod -Method POST ` + -Uri "https://dev.azure.com/azure-sdk/Release/_apis/wit/wiql/?`$top=10000&api-version=6.0" ` + -Headers $headers -Body $body -ContentType "application/json" | ConvertTo-Json -Depth 10 | ConvertFrom-Json -AsHashTable + + if (!$response.workItems) { + Write-Verbose "Query returned no items. $wiql" + return ,@() + } + + $workItems = @() + $i = 0 + do + { + $idBatch = @() + while ($idBatch.Count -lt 200 -and $i -lt $response.workItems.Count) + { + $idBatch += $response.workItems[$i].id + $i++ + } + + $uri = "https://dev.azure.com/azure-sdk/Release/_apis/wit/workitems?ids=$($idBatch -join ',')&fields=$($fields -join ',')&api-version=6.0" + + Write-Verbose "Pulling work items $uri " + + $batchResponse = Invoke-RestMethod -Method GET -Uri $uri ` + -Headers $headers -ContentType "application/json" -MaximumRetryCount 3 | ConvertTo-Json -Depth 10 | ConvertFrom-Json -AsHashTable + + if ($batchResponse.value) + { + $batchResponse.value | % { $workItems += $_ } + } + else + { + Write-Warning "Batch return no items from $uri" + } + } + while ($i -lt $response.workItems.Count) + + if ($output) { + Write-Host "Query return $($workItems.Count) items" + } + + return $workItems +} + function LoginToAzureDevops([string]$devops_pat) { if (!$devops_pat) { @@ -64,13 +135,14 @@ function FindParentWorkItem($serviceName, $packageDisplayName, $outputCommand = $serviceCondition = "[ServiceName] <> ''" } - $parameters = $ReleaseDevOpsCommonParametersWithProject - $parameters += "--wiql" - $parameters += "`"SELECT [ID], [ServiceName], [PackageDisplayName], [Parent] FROM WorkItems WHERE [Work Item Type] = 'Epic' AND ${serviceCondition}`"" + $query = "SELECT [ID], [ServiceName], [PackageDisplayName], [Parent] FROM WorkItems WHERE [Work Item Type] = 'Epic' AND ${serviceCondition}" - $workItems = Invoke-AzBoardsCmd "query" $parameters $outputCommand + $fields = @("System.Id", "Custom.ServiceName", "Custom.PackageDisplayName", "System.Parent") - foreach ($wi in $workItems) { + $workItems = Invoke-Query $fields $query $outputCommand + + foreach ($wi in $workItems) + { $localKey = BuildHashKey $wi.fields["Custom.ServiceName"] $wi.fields["Custom.PackageDisplayName"] if (!$localKey) { continue } if ($parentWorkItems.ContainsKey($localKey) -and $parentWorkItems[$localKey].id -ne $wi.id) { @@ -107,9 +179,7 @@ function FindLatestPackageWorkItem($lang, $packageName, $outputCommand = $true) continue } - # Note this only does string sorting which is enough for our current usages - # if we need absolute sorting at some point we would need to parse these versions - if ($wi.fields["Custom.PackageVersionMajorMinor"] -gt $latestWI.fields["Custom.PackageVersionMajorMinor"]) { + if (($wi.fields["Custom.PackageVersionMajorMinor"] -as [Version]) -gt ($latestWI.fields["Custom.PackageVersionMajorMinor"] -as [Version])) { $latestWI = $wi } } @@ -124,26 +194,26 @@ function FindPackageWorkItem($lang, $packageName, $version, $outputCommand = $tr } $fields = @() - $fields += "ID" - $fields += "State" + $fields += "System.ID" + $fields += "System.State" $fields += "System.AssignedTo" - $fields += "Parent" - $fields += "Language" - $fields += "Package" - $fields += "PackageDisplayName" - $fields += "Title" - $fields += "PackageType" - $fields += "PackageTypeNewLibrary" - $fields += "PackageVersionMajorMinor" - $fields += "PackageRepoPath" - $fields += "ServiceName" - $fields += "Planned Packages" - $fields += "Shipped Packages" - $fields += "PackageBetaVersions" - $fields += "PackageGAVersion" - $fields += "PackagePatchVersions" - $fields += "Generated" - $fields += "RoadmapState" + $fields += "System.Parent" + $fields += "Custom.Language" + $fields += "Custom.Package" + $fields += "Custom.PackageDisplayName" + $fields += "System.Title" + $fields += "Custom.PackageType" + $fields += "Custom.PackageTypeNewLibrary" + $fields += "Custom.PackageVersionMajorMinor" + $fields += "Custom.PackageRepoPath" + $fields += "Custom.ServiceName" + $fields += "Custom.PlannedPackages" + $fields += "Custom.ShippedPackages" + $fields += "Custom.PackageBetaVersions" + $fields += "Custom.PackageGAVersion" + $fields += "Custom.PackagePatchVersions" + $fields += "Custom.Generated" + $fields += "Custom.RoadmapState" $fieldList = ($fields | ForEach-Object { "[$_]"}) -join ", " $query = "SELECT ${fieldList} FROM WorkItems WHERE [Work Item Type] = 'Package'" @@ -160,14 +230,8 @@ function FindPackageWorkItem($lang, $packageName, $version, $outputCommand = $tr if ($version) { $query += " AND [PackageVersionMajorMinor] = '${version}'" } - $parameters = $ReleaseDevOpsCommonParametersWithProject - $parameters += "--wiql", "`"${query}`"" - - $workItems = Invoke-AzBoardsCmd "query" $parameters $outputCommand - if ($workItems -and $workItems.Count -eq 1000) { - Write-Warning "Retrieved the max of 1000 items so item list might not be complete." - } + $workItems = Invoke-Query $fields $query $outputCommand foreach ($wi in $workItems) { @@ -316,8 +380,13 @@ function FindOrCreateClonePackageWorkItem($lang, $pkg, $verMajorMinor, $allowPro $pkg.RepoPath = $pkg.fields["Custom.PackageRepoPath"] } - $extraFields += "`"Generated=" + $latestVersionItem.fields["Custom.Generated"] + "`"" - $extraFields += "`"RoadmapState=" + $latestVersionItem.fields["Custom.RoadmapState"] + "`"" + if ($latestVersionItem.fields["Custom.Generated"]) { + $extraFields += "`"Generated=" + $latestVersionItem.fields["Custom.Generated"] + "`"" + } + + if ($latestVersionItem.fields["Custom.RoadmapState"]) { + $extraFields += "`"RoadmapState=" + $latestVersionItem.fields["Custom.RoadmapState"] + "`"" + } } if ($allowPrompt) { From 19d0e7681c061771789f0ef2b2d049d4cbe91607 Mon Sep 17 00:00:00 2001 From: chradek <51000525+chradek@users.noreply.github.com> Date: Wed, 30 Jun 2021 10:38:39 -0700 Subject: [PATCH 39/49] [event-hubs] add AmqpAnnotatedMessage support (#15939) * [event-hubs] add AmqpAnnotatedMessage support * undo experimental deletion of decode method from service bus * address feedback --- sdk/eventhub/event-hubs/CHANGELOG.md | 8 +- sdk/eventhub/event-hubs/package.json | 1 + .../event-hubs/review/event-hubs.api.md | 12 +- .../event-hubs/src/dataTransformer.ts | 143 ++++++-- .../src/diagnostics/instrumentEventData.ts | 26 +- sdk/eventhub/event-hubs/src/eventData.ts | 183 ++++++++-- sdk/eventhub/event-hubs/src/eventDataBatch.ts | 15 +- .../event-hubs/src/eventHubProducerClient.ts | 8 +- .../event-hubs/src/eventHubReceiver.ts | 18 +- sdk/eventhub/event-hubs/src/eventHubSender.ts | 2 - .../event-hubs/test/internal/amqp.spec.ts | 61 ++++ .../test/internal/dataTransformer.spec.ts | 344 +++++++++++++----- .../test/internal/eventdata.spec.ts | 141 ++++++- .../event-hubs/test/internal/misc.spec.ts | 11 +- .../test/internal/partitionPump.spec.ts | 5 +- .../test/public/amqpAnnotatedMessage.spec.ts | 296 +++++++++++++++ .../event-hubs/test/public/eventData.spec.ts | 132 +++++++ 17 files changed, 1228 insertions(+), 178 deletions(-) create mode 100644 sdk/eventhub/event-hubs/test/internal/amqp.spec.ts create mode 100644 sdk/eventhub/event-hubs/test/public/amqpAnnotatedMessage.spec.ts create mode 100644 sdk/eventhub/event-hubs/test/public/eventData.spec.ts diff --git a/sdk/eventhub/event-hubs/CHANGELOG.md b/sdk/eventhub/event-hubs/CHANGELOG.md index 9b800f2596c0..7ca515b854e4 100644 --- a/sdk/eventhub/event-hubs/CHANGELOG.md +++ b/sdk/eventhub/event-hubs/CHANGELOG.md @@ -3,13 +3,19 @@ ## 5.6.0 (Unreleased) ### Features Added + - With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. +- Adds the `contentType`, `correlationId`, and `messageId` AMQP properties as top-level fields on `EventData` and `ReceivedEventData`. + +- Enable encoding the body of a message to the 'value' or 'sequence' sections (via AmqpAnnotatedMessage.bodyType). Using this encoding is not required but does allow you to take advantage of native AMQP serialization for supported primitives or sequences. + + More information about the AMQP message body type can be found in the AMQP specification: [link](https://docs.oasis-open.org/amqp/core/v1.0/os/amqp-core-messaging-v1.0-os.html#section-message-format) + ### Breaking Changes ### Key Bugs Fixed - ## 5.5.2 (2021-06-10) ### Bug fixes diff --git a/sdk/eventhub/event-hubs/package.json b/sdk/eventhub/event-hubs/package.json index f32080899c6f..953a510a95a0 100644 --- a/sdk/eventhub/event-hubs/package.json +++ b/sdk/eventhub/event-hubs/package.json @@ -145,6 +145,7 @@ "assert": "^1.4.1", "chai": "^4.2.0", "chai-as-promised": "^7.1.1", + "chai-exclude": "^2.0.2", "chai-string": "^1.5.0", "cross-env": "^7.0.2", "debug": "^4.1.1", diff --git a/sdk/eventhub/event-hubs/review/event-hubs.api.md b/sdk/eventhub/event-hubs/review/event-hubs.api.md index 9f25e798454b..45d801b43ce8 100644 --- a/sdk/eventhub/event-hubs/review/event-hubs.api.md +++ b/sdk/eventhub/event-hubs/review/event-hubs.api.md @@ -5,6 +5,7 @@ ```ts import { AbortSignalLike } from '@azure/abort-controller'; +import { AmqpAnnotatedMessage } from '@azure/core-amqp'; import { MessagingError } from '@azure/core-amqp'; import { NamedKeyCredential } from '@azure/core-auth'; import { OperationTracingOptions } from '@azure/core-tracing'; @@ -54,6 +55,9 @@ export const earliestEventPosition: EventPosition; // @public export interface EventData { body: any; + contentType?: string; + correlationId?: string | number | Buffer; + messageId?: string | number | Buffer; properties?: { [key: string]: any; }; @@ -72,7 +76,7 @@ export interface EventDataBatch { // @internal readonly partitionKey?: string; readonly sizeInBytes: number; - tryAdd(eventData: EventData, options?: TryAddOptions): boolean; + tryAdd(eventData: EventData | AmqpAnnotatedMessage, options?: TryAddOptions): boolean; } // @public @@ -129,7 +133,7 @@ export class EventHubProducerClient { getEventHubProperties(options?: GetEventHubPropertiesOptions): Promise; getPartitionIds(options?: GetPartitionIdsOptions): Promise>; getPartitionProperties(partitionId: string, options?: GetPartitionPropertiesOptions): Promise; - sendBatch(batch: EventData[], options?: SendBatchOptions): Promise; + sendBatch(batch: EventData[] | AmqpAnnotatedMessage[], options?: SendBatchOptions): Promise; sendBatch(batch: EventDataBatch, options?: OperationOptions): Promise; } @@ -239,7 +243,11 @@ export type ProcessInitializeHandler = (context: PartitionContext) => Promise Constants.maxMessageIdLength + ) { + throw new Error( + `Length of 'messageId' property on the event cannot be greater than ${Constants.maxMessageIdLength} characters.` + ); + } + rheaMessage.message_id = data.messageId; + } } - return msg; + return rheaMessage; } /** @@ -240,6 +323,29 @@ export interface EventData { * cross-language compatibility. */ body: any; + + /** + * The content type of the message. Optionally describes + * the payload of the message, with a descriptor following the format of RFC2045, Section 5, for + * example "application/json". + */ + contentType?: string; + + /** + * The correlation identifier that allows an + * application to specify a context for the message for the purposes of correlation, for example + * reflecting the MessageId of a message that is being replied to. + */ + correlationId?: string | number | Buffer; + + /** + * The message identifier is an + * application-defined value that uniquely identifies the message and its payload. + * + * Note: Numbers that are not whole integers are not allowed. + */ + messageId?: string | number | Buffer; + /** * Set of key value pairs that can be used to set properties specific to user application. */ @@ -287,6 +393,41 @@ export interface ReceivedEventData { systemProperties?: { [key: string]: any; }; + + /** + * The content type of the message. Optionally describes + * the payload of the message, with a descriptor following the format of RFC2045, Section 5, for + * example "application/json". + */ + contentType?: string; + + /** + * The correlation identifier that allows an + * application to specify a context for the message for the purposes of correlation, for example + * reflecting the MessageId of a message that is being replied to. + */ + correlationId?: string | number | Buffer; + + /** + * The message identifier is an + * application-defined value that uniquely identifies the message and its payload. + */ + messageId?: string | number | Buffer; + + /** + * Returns the underlying raw amqp message. + */ + getRawAmqpMessage(): AmqpAnnotatedMessage; +} + +/** + * @internal + */ +export function isAmqpAnnotatedMessage(possible: unknown): possible is AmqpAnnotatedMessage { + return ( + isObjectWithProperties(possible, ["body", "bodyType"]) && + !objectHasProperty(possible, "getRawAmqpMessage") + ); } /** diff --git a/sdk/eventhub/event-hubs/src/eventDataBatch.ts b/sdk/eventhub/event-hubs/src/eventDataBatch.ts index 9d1e17821126..dcd16a6c97b1 100644 --- a/sdk/eventhub/event-hubs/src/eventDataBatch.ts +++ b/sdk/eventhub/event-hubs/src/eventDataBatch.ts @@ -1,14 +1,14 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import { EventData, toRheaMessage } from "./eventData"; +import { EventData, isAmqpAnnotatedMessage, toRheaMessage } from "./eventData"; import { ConnectionContext } from "./connectionContext"; import { MessageAnnotations, message, Message as RheaMessage } from "rhea-promise"; import { throwTypeErrorIfParameterMissing } from "./util/error"; +import { AmqpAnnotatedMessage } from "@azure/core-amqp"; import { Span, SpanContext } from "@azure/core-tracing"; import { TRACEPARENT_PROPERTY, instrumentEventData } from "./diagnostics/instrumentEventData"; import { convertTryAddOptionsForCompatibility, createMessageSpan } from "./diagnostics/tracing"; -import { defaultDataTransformer } from "./dataTransformer"; import { isDefined, isObjectWithProperties } from "./util/typeGuards"; import { OperationTracingOptions } from "@azure/core-tracing"; @@ -106,10 +106,10 @@ export interface EventDataBatch { * **NOTE**: Always remember to check the return value of this method, before calling it again * for the next event. * - * @param eventData - An individual event data object. + * @param eventData - An individual event data object or AmqpAnnotatedMessage. * @returns A boolean value indicating if the event data has been added to the batch or not. */ - tryAdd(eventData: EventData, options?: TryAddOptions): boolean; + tryAdd(eventData: EventData | AmqpAnnotatedMessage, options?: TryAddOptions): boolean; /** * The AMQP message containing encoded events that were added to the batch. @@ -284,13 +284,15 @@ export class EventDataBatchImpl implements EventDataBatch { * @param eventData - An individual event data object. * @returns A boolean value indicating if the event data has been added to the batch or not. */ - public tryAdd(eventData: EventData, options: TryAddOptions = {}): boolean { + public tryAdd(eventData: EventData | AmqpAnnotatedMessage, options: TryAddOptions = {}): boolean { throwTypeErrorIfParameterMissing(this._context.connectionId, "tryAdd", "eventData", eventData); options = convertTryAddOptionsForCompatibility(options); // check if the event has already been instrumented const previouslyInstrumented = Boolean( - eventData.properties && eventData.properties[TRACEPARENT_PROPERTY] + (isAmqpAnnotatedMessage(eventData) + ? eventData.applicationProperties + : eventData.properties)?.[TRACEPARENT_PROPERTY] // Event Data maps properties to applicationProperties. ); let spanContext: SpanContext | undefined; if (!previouslyInstrumented) { @@ -302,7 +304,6 @@ export class EventDataBatchImpl implements EventDataBatch { // Convert EventData to RheaMessage. const amqpMessage = toRheaMessage(eventData, this._partitionKey); - amqpMessage.body = defaultDataTransformer.encode(eventData.body); const encodedMessage = message.encode(amqpMessage); let currentSize = this._sizeInBytes; diff --git a/sdk/eventhub/event-hubs/src/eventHubProducerClient.ts b/sdk/eventhub/event-hubs/src/eventHubProducerClient.ts index 78ade573fdc1..72bd6d1c9c72 100644 --- a/sdk/eventhub/event-hubs/src/eventHubProducerClient.ts +++ b/sdk/eventhub/event-hubs/src/eventHubProducerClient.ts @@ -1,6 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. +import { AmqpAnnotatedMessage } from "@azure/core-amqp"; import { NamedKeyCredential, SASCredential, TokenCredential } from "@azure/core-auth"; import { SpanStatusCode, Link, Span, SpanContext, SpanKind } from "@azure/core-tracing"; import { ConnectionContext, createConnectionContext } from "./connectionContext"; @@ -226,7 +227,7 @@ export class EventHubProducerClient { * await client.sendBatch(messages); * ``` * - * @param batch - An array of {@link EventData}. + * @param batch - An array of {@link EventData} or `AmqpAnnotatedMessage`. * @param options - A set of options that can be specified to influence the way in which * events are sent to the associated Event Hub. * - `abortSignal` : A signal the request to cancel the send operation. @@ -238,7 +239,10 @@ export class EventHubProducerClient { * @throws MessagingError if an error is encountered while sending a message. * @throws Error if the underlying connection or sender has been closed. */ - async sendBatch(batch: EventData[], options?: SendBatchOptions): Promise; + async sendBatch( + batch: EventData[] | AmqpAnnotatedMessage[], + options?: SendBatchOptions + ): Promise; /** * Sends a batch of events to the associated Event Hub. * diff --git a/sdk/eventhub/event-hubs/src/eventHubReceiver.ts b/sdk/eventhub/event-hubs/src/eventHubReceiver.ts index 7b3814280942..b0d97fe83b6b 100644 --- a/sdk/eventhub/event-hubs/src/eventHubReceiver.ts +++ b/sdk/eventhub/event-hubs/src/eventHubReceiver.ts @@ -25,7 +25,6 @@ import { ConnectionContext } from "./connectionContext"; import { LinkEntity } from "./linkEntity"; import { EventPosition, getEventPositionFilter } from "./eventPosition"; import { AbortError, AbortSignalLike } from "@azure/abort-controller"; -import { defaultDataTransformer } from "./dataTransformer"; import { getRetryAttemptTimeoutInMs } from "./util/retries"; /** @@ -224,15 +223,28 @@ export class EventHubReceiver extends LinkEntity { } const data: EventDataInternal = fromRheaMessage(context.message); + const rawMessage = data.getRawAmqpMessage(); const receivedEventData: ReceivedEventData = { - body: defaultDataTransformer.decode(context.message.body), + body: data.body, properties: data.properties, offset: data.offset!, sequenceNumber: data.sequenceNumber!, enqueuedTimeUtc: data.enqueuedTimeUtc!, partitionKey: data.partitionKey!, - systemProperties: data.systemProperties + systemProperties: data.systemProperties, + getRawAmqpMessage() { + return rawMessage; + } }; + if (data.correlationId != null) { + receivedEventData.correlationId = data.correlationId; + } + if (data.contentType != null) { + receivedEventData.contentType = data.contentType; + } + if (data.messageId != null) { + receivedEventData.messageId = data.messageId; + } this._checkpoint = receivedEventData.sequenceNumber; diff --git a/sdk/eventhub/event-hubs/src/eventHubSender.ts b/sdk/eventhub/event-hubs/src/eventHubSender.ts index e79ec67200bc..441336530f99 100644 --- a/sdk/eventhub/event-hubs/src/eventHubSender.ts +++ b/sdk/eventhub/event-hubs/src/eventHubSender.ts @@ -30,7 +30,6 @@ import { SendOptions } from "./models/public"; import { getRetryAttemptTimeoutInMs } from "./util/retries"; import { AbortSignalLike } from "@azure/abort-controller"; import { EventDataBatch, isEventDataBatch } from "./eventDataBatch"; -import { defaultDataTransformer } from "./dataTransformer"; /** * Describes the EventHubSender that will send event data to EventHub. @@ -259,7 +258,6 @@ export class EventHubSender extends LinkEntity { // Convert EventData to RheaMessage. for (let i = 0; i < events.length; i++) { const rheaMessage = toRheaMessage(events[i], partitionKey); - rheaMessage.body = defaultDataTransformer.encode(events[i].body); messages[i] = rheaMessage; } // Encode every amqp message and then convert every encoded message to amqp data section diff --git a/sdk/eventhub/event-hubs/test/internal/amqp.spec.ts b/sdk/eventhub/event-hubs/test/internal/amqp.spec.ts new file mode 100644 index 000000000000..24e9c33c4512 --- /dev/null +++ b/sdk/eventhub/event-hubs/test/internal/amqp.spec.ts @@ -0,0 +1,61 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. + +import chai from "chai"; +import { Constants } from "@azure/core-amqp"; +import { fromRheaMessage, isAmqpAnnotatedMessage } from "../../src/eventData"; +const assert = chai.assert; + +describe("AMQP message encoding", () => { + it("isAmqpAnnotatedMessage", () => { + assert.isFalse(isAmqpAnnotatedMessage({})); + assert.isFalse(isAmqpAnnotatedMessage({ body: "hello world" })); + assert.isFalse( + isAmqpAnnotatedMessage( + fromRheaMessage({ + message_annotations: { + [Constants.enqueuedTime]: Date.now() + }, + body: undefined + }) + ) + ); + + assert.isTrue( + isAmqpAnnotatedMessage( + fromRheaMessage({ + message_annotations: { + [Constants.enqueuedTime]: Date.now() + }, + body: undefined + }).getRawAmqpMessage() + ) + ); + + assert.isTrue( + isAmqpAnnotatedMessage({ + body: "hello world", + bodyType: "sequence" + }) + ); + assert.isTrue( + isAmqpAnnotatedMessage({ + body: "hello world", + bodyType: "value" + }) + ); + assert.isTrue( + isAmqpAnnotatedMessage({ + body: "hello world", + bodyType: "data" + }) + ); + + assert.isTrue( + isAmqpAnnotatedMessage({ + body: "hello world", + bodyType: undefined // the property _must_ exist, but undefined is fine. We'll default to 'data' + }) + ); + }); +}); diff --git a/sdk/eventhub/event-hubs/test/internal/dataTransformer.spec.ts b/sdk/eventhub/event-hubs/test/internal/dataTransformer.spec.ts index 45df00a6fe1e..14257983e175 100644 --- a/sdk/eventhub/event-hubs/test/internal/dataTransformer.spec.ts +++ b/sdk/eventhub/event-hubs/test/internal/dataTransformer.spec.ts @@ -41,155 +41,317 @@ describe("DataTransformer", function() { const hexBufferBody: Buffer = Buffer.from("7468697320697320612074c3a97374", "hex"); const transformer = defaultDataTransformer; - it("should correctly encode/decode a string message body", function(done) { - const encoded: any = transformer.encode(stringBody); - encoded.typecode.should.equal(117); - isBuffer(encoded.content).should.equal(true); - const decoded: any = transformer.decode(encoded); - decoded.should.equal(stringBody); - done(); - }); + describe(`encoded bodyType: "data"`, () => { + const bodyType = "data"; - it("should correctly encode/decode a number message body", function(done) { - const encoded: any = transformer.encode(numberBody); - encoded.typecode.should.equal(117); - isBuffer(encoded.content).should.equal(true); - const decoded: any = transformer.decode(encoded); - decoded.should.equal(numberBody); - done(); - }); + it("should correctly encode/decode a string message body", function(done) { + const encoded: any = transformer.encode(stringBody, "data"); + encoded.typecode.should.equal(117); + isBuffer(encoded.content).should.equal(true); + const { body: decoded, bodyType: decodedType } = transformer.decode(encoded); + should.equal(decodedType, bodyType); + (decoded as any).should.equal(stringBody); + done(); + }); - it("should correctly encode/decode a boolean message body", function(done) { - const encoded: any = transformer.encode(booleanBody); - encoded.typecode.should.equal(117); - isBuffer(encoded.content).should.equal(true); - const decoded: any = transformer.decode(encoded); - decoded.should.equal(booleanBody); - done(); - }); + it("should correctly encode/decode a number message body", function(done) { + const encoded: any = transformer.encode(numberBody, "data"); + encoded.typecode.should.equal(117); + isBuffer(encoded.content).should.equal(true); + const { body: decoded, bodyType: decodedType } = transformer.decode(encoded); + should.equal(decodedType, bodyType); + (decoded as any).should.equal(numberBody); + done(); + }); - it("should correctly encode/decode a null message body", function(done) { - const encoded: any = transformer.encode(nullBody); - encoded.typecode.should.equal(117); - isBuffer(encoded.content).should.equal(true); - const decoded: any = transformer.decode(encoded); - should.equal(decoded, nullBody); - done(); - }); + it("should correctly encode/decode a boolean message body", function(done) { + const encoded: any = transformer.encode(booleanBody, "data"); + encoded.typecode.should.equal(117); + isBuffer(encoded.content).should.equal(true); + const { body: decoded, bodyType: decodedType } = transformer.decode(encoded); + should.equal(decodedType, bodyType); + (decoded as any).should.equal(booleanBody); + done(); + }); - it("should correctly encode/decode an undefined message body", function(done) { - const encoded: any = transformer.encode(undefinedBody); - encoded.typecode.should.equal(117); - isBuffer(encoded.content).should.equal(true); - const decoded: any = transformer.decode(encoded); - should.equal(decoded, nullBody); - done(); - }); + it("should correctly encode/decode a null message body", function(done) { + const encoded: any = transformer.encode(nullBody, "data"); + encoded.typecode.should.equal(117); + isBuffer(encoded.content).should.equal(false); + const { body: decoded, bodyType: decodedType } = transformer.decode(encoded); + should.equal(decodedType, bodyType); + should.equal(decoded, nullBody); + done(); + }); - it("should correctly encode/decode an empty string message body", function(done) { - const encoded: any = transformer.encode(emptyStringBody); - encoded.typecode.should.equal(117); - isBuffer(encoded.content).should.equal(true); - const decoded: any = transformer.decode(encoded); - decoded.should.equal(emptyStringBody); - done(); - }); + it("should correctly encode/decode an undefined message body", function(done) { + const encoded: any = transformer.encode(undefinedBody, "data"); + encoded.typecode.should.equal(117); + isBuffer(encoded.content).should.equal(false); + const { body: decoded, bodyType: decodedType } = transformer.decode(encoded); + should.equal(decodedType, bodyType); + should.equal(decoded, nullBody); + done(); + }); - it("should correctly encode/decode an array message body", function(done) { - const encoded: any = transformer.encode(arrayBody); - encoded.typecode.should.equal(117); - isBuffer(encoded.content).should.equal(true); - const decoded: any = transformer.decode(encoded); - assert.deepEqual(decoded, arrayBody); - done(); - }); + it("should correctly encode/decode an empty string message body", function(done) { + const encoded: any = transformer.encode(emptyStringBody, "data"); + encoded.typecode.should.equal(117); + isBuffer(encoded.content).should.equal(true); + const { body: decoded, bodyType: decodedType } = transformer.decode(encoded); + should.equal(decodedType, bodyType); + (decoded as any).should.equal(emptyStringBody); + done(); + }); + + it("should correctly encode/decode an array message body", function(done) { + const encoded: any = transformer.encode(arrayBody, "data"); + encoded.typecode.should.equal(117); + isBuffer(encoded.content).should.equal(true); + const { body: decoded, bodyType: decodedType } = transformer.decode(encoded); + should.equal(decodedType, bodyType); + assert.deepEqual(decoded, arrayBody); + done(); + }); + + it("should correctly encode/decode an object message body", function(done) { + const encoded: any = transformer.encode(objectBody, "data"); + encoded.typecode.should.equal(117); + isBuffer(encoded.content).should.equal(true); + const { body: decoded, bodyType: decodedType } = transformer.decode(encoded); + should.equal(decodedType, bodyType); + assert.deepEqual(decoded, objectBody); + done(); + }); + + it("should correctly encode/decode a buffer message body", function(done) { + const encoded: any = transformer.encode(bufferBody, "data"); + encoded.typecode.should.equal(117); + isBuffer(encoded.content).should.equal(true); + const { body: decoded, bodyType: decodedType } = transformer.decode(encoded); + should.equal(decodedType, bodyType); + assert.deepEqual(decoded, bufferBody); + done(); + }); - it("should correctly encode/decode an object message body", function(done) { - const encoded: any = transformer.encode(objectBody); - encoded.typecode.should.equal(117); - isBuffer(encoded.content).should.equal(true); - const decoded: any = transformer.decode(encoded); - assert.deepEqual(decoded, objectBody); - done(); + it("should correctly encode/decode a hex buffer message body", function(done) { + const encoded: any = transformer.encode(hexBufferBody, "data"); + encoded.typecode.should.equal(117); + isBuffer(encoded.content).should.equal(true); + const { body: decoded, bodyType: decodedType } = transformer.decode(encoded); + should.equal(decodedType, bodyType); + assert.deepEqual(decoded, hexBufferBody); + done(); + }); }); - it("should correctly encode/decode a buffer message body", function(done) { - const encoded: any = transformer.encode(bufferBody); - encoded.typecode.should.equal(117); - isBuffer(encoded.content).should.equal(true); - const decoded: any = transformer.decode(encoded); - assert.deepEqual(decoded, bufferBody); - done(); + describe(`encoded bodyType: "value"`, () => { + const expectedTypeCode = 0x77; + const bodyType = "value"; + + it("should correctly encode/decode a string message body", function(done) { + const encoded: any = transformer.encode(stringBody, bodyType); + encoded.typecode.should.equal(expectedTypeCode); + const { body: decoded, bodyType: decodedType } = transformer.decode(encoded); + should.equal(decodedType, bodyType); + (decoded as any).should.equal(stringBody); + done(); + }); + + it("should correctly encode/decode a number message body", function(done) { + const encoded: any = transformer.encode(numberBody, bodyType); + encoded.typecode.should.equal(expectedTypeCode); + const { body: decoded, bodyType: decodedType } = transformer.decode(encoded); + should.equal(decodedType, bodyType); + (decoded as any).should.equal(numberBody); + done(); + }); + + it("should correctly encode/decode a boolean message body", function(done) { + const encoded: any = transformer.encode(booleanBody, bodyType); + encoded.typecode.should.equal(expectedTypeCode); + const { body: decoded, bodyType: decodedType } = transformer.decode(encoded); + should.equal(decodedType, bodyType); + (decoded as any).should.equal(booleanBody); + done(); + }); + + it("should correctly encode/decode a null message body", function(done) { + const encoded: any = transformer.encode(nullBody, bodyType); + encoded.typecode.should.equal(expectedTypeCode); + const { body: decoded, bodyType: decodedType } = transformer.decode(encoded); + should.equal(decodedType, bodyType); + should.equal(decoded, nullBody); + done(); + }); + + it("should correctly encode/decode an undefined message body", function(done) { + const encoded: any = transformer.encode(undefinedBody, bodyType); + encoded.typecode.should.equal(expectedTypeCode); + const { body: decoded, bodyType: decodedType } = transformer.decode(encoded); + should.equal(decodedType, bodyType); + should.equal(decoded, nullBody); + done(); + }); + + it("should correctly encode/decode an empty string message body", function(done) { + const encoded: any = transformer.encode(emptyStringBody, bodyType); + encoded.typecode.should.equal(expectedTypeCode); + const { body: decoded, bodyType: decodedType } = transformer.decode(encoded); + should.equal(decodedType, bodyType); + (decoded as any).should.equal(emptyStringBody); + done(); + }); + + it("should correctly encode/decode an array message body", function(done) { + const encoded: any = transformer.encode(arrayBody, bodyType); + encoded.typecode.should.equal(expectedTypeCode); + const { body: decoded, bodyType: decodedType } = transformer.decode(encoded); + should.equal(decodedType, bodyType); + assert.deepEqual(decoded, arrayBody); + done(); + }); + + it("should correctly encode/decode an object message body", function(done) { + const encoded: any = transformer.encode(objectBody, bodyType); + encoded.typecode.should.equal(expectedTypeCode); + const { body: decoded, bodyType: decodedType } = transformer.decode(encoded); + should.equal(decodedType, bodyType); + assert.deepEqual(decoded, objectBody); + done(); + }); + + it("should correctly encode/decode a buffer message body", function(done) { + const encoded: any = transformer.encode(bufferBody, bodyType); + encoded.typecode.should.equal(expectedTypeCode); + isBuffer(encoded.content).should.equal(true); + const { body: decoded, bodyType: decodedType } = transformer.decode(encoded); + should.equal(decodedType, bodyType); + assert.deepEqual(decoded, bufferBody); + done(); + }); + + it("should correctly encode/decode a hex buffer message body", function(done) { + const encoded: any = transformer.encode(hexBufferBody, bodyType); + encoded.typecode.should.equal(expectedTypeCode); + isBuffer(encoded.content).should.equal(true); + const { body: decoded, bodyType: decodedType } = transformer.decode(encoded); + should.equal(decodedType, bodyType); + assert.deepEqual(decoded, hexBufferBody); + done(); + }); }); - it("should correctly encode/decode a hex buffer message body", function(done) { - const encoded: any = transformer.encode(hexBufferBody); - encoded.typecode.should.equal(117); - isBuffer(encoded.content).should.equal(true); - const decoded: any = transformer.decode(encoded); - assert.deepEqual(decoded, hexBufferBody); - done(); + describe(`encoded bodyType: "sequence"`, () => { + const expectedTypeCode = 0x76; + const bodyType = "sequence"; + + it("should correctly encode/decode a null message body", function(done) { + const encoded: any = transformer.encode(nullBody, bodyType); + encoded.typecode.should.equal(expectedTypeCode); + const { body: decoded, bodyType: decodedType } = transformer.decode(encoded); + should.equal(decodedType, bodyType); + should.equal(decoded, nullBody); + done(); + }); + + it("should correctly encode/decode an undefined message body", function(done) { + const encoded: any = transformer.encode(undefinedBody, bodyType); + encoded.typecode.should.equal(expectedTypeCode); + const { body: decoded, bodyType: decodedType } = transformer.decode(encoded); + should.equal(decodedType, bodyType); + should.equal(decoded, nullBody); + done(); + }); + + it("should correctly encode/decode an array message body", function(done) { + const encoded: any = transformer.encode(arrayBody, bodyType); + encoded.typecode.should.equal(expectedTypeCode); + const { body: decoded, bodyType: decodedType } = transformer.decode(encoded); + should.equal(decodedType, bodyType); + assert.deepEqual(decoded, arrayBody); + done(); + }); + + it("should correctly encode/decode an object message body", function(done) { + const encoded: any = transformer.encode(objectBody, bodyType); + encoded.typecode.should.equal(expectedTypeCode); + const { body: decoded, bodyType: decodedType } = transformer.decode(encoded); + should.equal(decodedType, bodyType); + assert.deepEqual(decoded, objectBody); + done(); + }); }); describe("decode", function() { // It is possible that we receive an AMQP value type from the messages that were sent with // previously shipped version of the sdk. If so then we should be able to handle those scenarios. it("should correctly decode a string message body", function(done) { - const decoded: any = transformer.decode(stringBody); - decoded.should.equal(stringBody); + const { body: decoded, bodyType: decodedType } = transformer.decode(stringBody); + should.equal(decodedType, "value"); + (decoded as any).should.equal(stringBody); done(); }); it("should correctly decode a number message body", function(done) { - const decoded: any = transformer.decode(numberBody); - decoded.should.equal(numberBody); + const { body: decoded, bodyType: decodedType } = transformer.decode(numberBody); + should.equal(decodedType, "value"); + (decoded as any).should.equal(numberBody); done(); }); it("should correctly decode a boolean message body", function(done) { - const decoded: any = transformer.decode(booleanBody); - decoded.should.equal(booleanBody); + const { body: decoded, bodyType: decodedType } = transformer.decode(booleanBody); + should.equal(decodedType, "value"); + (decoded as any).should.equal(booleanBody); done(); }); it("should correctly decode a null message body", function(done) { - const decoded: any = transformer.decode(nullBody); + const { body: decoded, bodyType: decodedType } = transformer.decode(nullBody); + should.equal(decodedType, "value"); should.equal(decoded, nullBody); done(); }); it("should correctly decode an undefined message body", function(done) { - const decoded: any = transformer.decode(undefinedBody); + const { body: decoded, bodyType: decodedType } = transformer.decode(undefinedBody); + should.equal(decodedType, "value"); should.equal(decoded, undefined); done(); }); it("should correctly decode an empty string message body", function(done) { - const decoded: any = transformer.decode(emptyStringBody); - decoded.should.equal(emptyStringBody); + const { body: decoded, bodyType: decodedType } = transformer.decode(emptyStringBody); + should.equal(decodedType, "value"); + (decoded as any).should.equal(emptyStringBody); done(); }); it("should correctly decode an array message body", function(done) { - const decoded: any = transformer.decode(arrayBody); + const { body: decoded, bodyType: decodedType } = transformer.decode(arrayBody); + should.equal(decodedType, "value"); assert.deepEqual(decoded, arrayBody); done(); }); it("should correctly decode an object message body", function(done) { - const decoded: any = transformer.decode(objectBody); + const { body: decoded, bodyType: decodedType } = transformer.decode(objectBody); + should.equal(decodedType, "value"); assert.deepEqual(decoded, objectBody); done(); }); it("should correctly decode a buffer message body", function(done) { - const decoded: any = transformer.decode(bufferBody); + const { body: decoded, bodyType: decodedType } = transformer.decode(bufferBody); + should.equal(decodedType, "data"); assert.deepEqual(decoded, bufferBody); done(); }); it("should correctly decode a hex buffer message body", function(done) { - const decoded: any = transformer.decode(hexBufferBody); + const { body: decoded, bodyType: decodedType } = transformer.decode(hexBufferBody); + should.equal(decodedType, "data"); assert.deepEqual(decoded, hexBufferBody); done(); }); diff --git a/sdk/eventhub/event-hubs/test/internal/eventdata.spec.ts b/sdk/eventhub/event-hubs/test/internal/eventdata.spec.ts index feef0349b359..a8b1bd7a76b8 100644 --- a/sdk/eventhub/event-hubs/test/internal/eventdata.spec.ts +++ b/sdk/eventhub/event-hubs/test/internal/eventdata.spec.ts @@ -1,11 +1,17 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import chai from "chai"; +import chai, { assert, should } from "chai"; chai.should(); -import { EventData, fromRheaMessage, toRheaMessage } from "../../src/eventData"; +import { EventData, fromRheaMessage, ReceivedEventData, toRheaMessage } from "../../src/eventData"; import { Message } from "rhea-promise"; +import { + dataSectionTypeCode, + sequenceSectionTypeCode, + valueSectionTypeCode +} from "../../src/dataTransformer"; +import { AmqpAnnotatedMessage } from "@azure/core-amqp"; const testAnnotations = { "x-opt-enqueued-time": Date.now(), @@ -44,6 +50,20 @@ describe("EventData", function(): void { testEventData.body.should.equal(testBody); }); + it("populates top-level fields", () => { + const testEventData = fromRheaMessage({ + ...testMessage, + ...{ content_type: "application/json", correlation_id: "cid", message_id: 1 } + }); + should().equal(testEventData.messageId, 1, "Unexpected messageId found."); + should().equal( + testEventData.contentType, + "application/json", + "Unexpected contentType found." + ); + should().equal(testEventData.correlationId, "cid", "Unexpected correlationId found."); + }); + describe("properties", function(): void { it("enqueuedTimeUtc gets the enqueued time from system properties", function(): void { const testEventData = fromRheaMessage(testMessage); @@ -171,14 +191,125 @@ describe("EventData", function(): void { }); }); }); - describe("toAmqpMessage", function(): void { - it("populates body with the message body", function(): void { - messageFromED.body.should.equal(testBody); + it("populates body with the message body encoded", function(): void { + const expectedTestBodyContents = Buffer.from(JSON.stringify(testBody)); + should().equal( + expectedTestBodyContents.equals(messageFromED.body.content), + true, + "Encoded body does not match expected result." + ); + should().equal( + messageFromED.body.typecode, + dataSectionTypeCode, + "Unexpected typecode encountered on body." + ); + }); + + it("populates top-level fields", () => { + const message = toRheaMessage({ + ...testSourceEventData, + ...{ contentType: "application/json", correlationId: "cid", messageId: 1 } + }); + should().equal(message.message_id, 1, "Unexpected message_id found."); + should().equal(message.content_type, "application/json", "Unexpected content_type found."); + should().equal(message.correlation_id, "cid", "Unexpected correlation_id found."); }); it("populates application_properties of the message", function(): void { messageFromED.application_properties!.should.equal(properties); }); + + it("AmqpAnnotatedMessage (explicit type)", () => { + const amqpAnnotatedMessage: AmqpAnnotatedMessage = { + body: "hello", + bodyType: "value" + }; + + const rheaMessage = toRheaMessage(amqpAnnotatedMessage); + + assert.equal(rheaMessage.body.typecode, valueSectionTypeCode); + }); + + it("AmqpAnnotatedMessage (implicit type)", () => { + const amqpAnnotatedMessage: AmqpAnnotatedMessage = { + body: "hello", + bodyType: undefined + }; + + const rheaMessage = toRheaMessage(amqpAnnotatedMessage); + + assert.equal(rheaMessage.body.typecode, dataSectionTypeCode); + }); + + it("EventData", () => { + const event: EventData = { + body: "hello" + }; + + const rheaMessage = toRheaMessage(event); + + assert.equal(rheaMessage.body.typecode, dataSectionTypeCode); + }); + + it("ReceivedEventData (sequence)", () => { + const event: ReceivedEventData = { + enqueuedTimeUtc: new Date(), + offset: 100, + partitionKey: null, + sequenceNumber: 1, + body: ["foo", "bar"], + getRawAmqpMessage() { + return { + body: this.body, + bodyType: "sequence" + }; + } + }; + + const rheaMessage = toRheaMessage(event); + + assert.equal(rheaMessage.body.typecode, sequenceSectionTypeCode); + }); + + it("ReceivedEventData (data)", () => { + const event: ReceivedEventData = { + enqueuedTimeUtc: new Date(), + offset: 100, + partitionKey: null, + sequenceNumber: 1, + body: ["foo", "bar"], + getRawAmqpMessage() { + return { + body: this.body, + bodyType: "data" + }; + } + }; + + const rheaMessage = toRheaMessage(event); + + assert.equal(rheaMessage.body.typecode, dataSectionTypeCode); + }); + + it("ReceivedEventData (value)", () => { + const event: ReceivedEventData = { + enqueuedTimeUtc: new Date(), + offset: 100, + partitionKey: null, + sequenceNumber: 1, + body: ["foo", "bar"], + getRawAmqpMessage() { + return { + body: this.body, + bodyType: "value" + }; + } + }; + + const rheaMessage = toRheaMessage(event); + + assert.equal(rheaMessage.body.typecode, valueSectionTypeCode); + }); }); }); diff --git a/sdk/eventhub/event-hubs/test/internal/misc.spec.ts b/sdk/eventhub/event-hubs/test/internal/misc.spec.ts index 7763ba6ffd50..4b82855c07c6 100644 --- a/sdk/eventhub/event-hubs/test/internal/misc.spec.ts +++ b/sdk/eventhub/event-hubs/test/internal/misc.spec.ts @@ -410,6 +410,9 @@ describe("extractSpanContextFromEventData", function() { partitionKey: null, properties: { [TRACEPARENT_PROPERTY]: `00-${traceId}-${spanId}-${flags}` + }, + getRawAmqpMessage() { + return {} as any; } }; @@ -437,6 +440,9 @@ describe("extractSpanContextFromEventData", function() { partitionKey: null, properties: { [TRACEPARENT_PROPERTY]: `99-${traceId}-${spanId}-${flags}` + }, + getRawAmqpMessage() { + return {} as any; } }; @@ -454,7 +460,10 @@ describe("extractSpanContextFromEventData", function() { enqueuedTimeUtc: new Date(), offset: 0, sequenceNumber: 0, - partitionKey: null + partitionKey: null, + getRawAmqpMessage() { + return {} as any; + } }; const spanContext = extractSpanContextFromEventData(eventData); diff --git a/sdk/eventhub/event-hubs/test/internal/partitionPump.spec.ts b/sdk/eventhub/event-hubs/test/internal/partitionPump.spec.ts index e3b0d5a02344..9538dd8f1827 100644 --- a/sdk/eventhub/event-hubs/test/internal/partitionPump.spec.ts +++ b/sdk/eventhub/event-hubs/test/internal/partitionPump.spec.ts @@ -73,7 +73,10 @@ describe("PartitionPump", () => { enqueuedTimeUtc: new Date(), offset: 0, partitionKey: null, - sequenceNumber: 0 + sequenceNumber: 0, + getRawAmqpMessage() { + return {} as any; + } }; const { tracer, resetTracer } = setTracerForTest(new TestTracer2()); diff --git a/sdk/eventhub/event-hubs/test/public/amqpAnnotatedMessage.spec.ts b/sdk/eventhub/event-hubs/test/public/amqpAnnotatedMessage.spec.ts new file mode 100644 index 000000000000..72c39e50b247 --- /dev/null +++ b/sdk/eventhub/event-hubs/test/public/amqpAnnotatedMessage.spec.ts @@ -0,0 +1,296 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. + +import chai from "chai"; +import chaiAsPromised from "chai-as-promised"; +import chaiExclude from "chai-exclude"; +import { Buffer } from "buffer"; +import { AmqpAnnotatedMessage } from "@azure/core-amqp"; +import { v4 } from "uuid"; +import { EnvVarKeys, getEnvVars, getStartingPositionsForTests } from "./utils/testUtils"; +import { + EventHubConsumerClient, + EventHubProducerClient, + EventPosition, + ReceivedEventData, + Subscription +} from "../../src"; +import { BodyTypes } from "../../src/dataTransformer"; + +const should = chai.should(); +chai.use(chaiAsPromised); +chai.use(chaiExclude); +const assert = chai.assert; + +const env = getEnvVars(); + +describe("AmqpAnnotatedMessage", function(): void { + let producerClient: EventHubProducerClient; + let consumerClient: EventHubConsumerClient; + const service = { + connectionString: env[EnvVarKeys.EVENTHUB_CONNECTION_STRING], + path: env[EnvVarKeys.EVENTHUB_NAME] + }; + + before("validate environment", function(): void { + should.exist( + env[EnvVarKeys.EVENTHUB_CONNECTION_STRING], + "define EVENTHUB_CONNECTION_STRING in your environment before running integration tests." + ); + should.exist( + env[EnvVarKeys.EVENTHUB_NAME], + "define EVENTHUB_NAME in your environment before running integration tests." + ); + }); + + beforeEach(async () => { + producerClient = new EventHubProducerClient(service.connectionString, service.path); + consumerClient = new EventHubConsumerClient( + EventHubConsumerClient.defaultConsumerGroupName, + service.connectionString, + service.path + ); + }); + + afterEach("close the connection", async function(): Promise { + await producerClient.close(); + await consumerClient.close(); + }); + + function getSampleAmqpAnnotatedMessage(): AmqpAnnotatedMessage { + const randomTag = Math.random().toString(); + + return { + body: `message body ${randomTag}`, + bodyType: "data", + applicationProperties: { + propOne: 1, + propTwo: "two", + propThree: true, + propFour: Date() + }, + footer: { + propFooter: "foot" + }, + messageAnnotations: { propMsgAnnotate: "annotation" }, + properties: { + contentEncoding: "application/json; charset=utf-8", + correlationId: randomTag, + messageId: v4() + } + } as AmqpAnnotatedMessage; + } + + /** + * Helper function that will receive a single event that comes after the starting positions. + * + * Note: Call this after sending a single event to Event Hubs to validate + * @internal + */ + async function receiveEvent(startingPositions: { + [partitionId: string]: EventPosition; + }): Promise { + return new Promise((resolve, reject) => { + const subscription: Subscription = consumerClient.subscribe( + { + async processError(err) { + reject(err); + return subscription.close(); + }, + async processEvents(events) { + if (events.length) { + resolve(events[0]); + return subscription.close(); + } + } + }, + { + startPosition: startingPositions + } + ); + }); + } + + async function sendEvents(messages: AmqpAnnotatedMessage[], { useBatch }: { useBatch: boolean }) { + if (!useBatch) { + return producerClient.sendBatch(messages); + } + + const batch = await producerClient.createBatch(); + for (const message of messages) { + assert.isTrue(batch.tryAdd(message)); + } + + return producerClient.sendBatch(batch); + } + + describe("round-tripping AMQP encoding/decoding", () => { + [{ useBatch: true }, { useBatch: false }].forEach(({ useBatch }) => { + it(`props (useBatch: ${useBatch})`, async () => { + const startingPositions = await getStartingPositionsForTests(consumerClient); + const testMessage = getSampleAmqpAnnotatedMessage(); + await sendEvents([testMessage], { useBatch }); + + const event = await receiveEvent(startingPositions); + should.equal(event.body, testMessage.body, "Unexpected body on the received event."); + should.equal( + event.getRawAmqpMessage().messageAnnotations!["propMsgAnnotate"], + testMessage.messageAnnotations!["propMsgAnnotate"], + "Unexpected messageAnnotations on the received event." + ); + assert.deepEqualExcluding( + event.getRawAmqpMessage(), + testMessage, + ["deliveryAnnotations", "body", "messageAnnotations", "header", "properties"], + "Unexpected on the AmqpAnnotatedMessage" + ); + assert.deepEqualExcluding( + event.getRawAmqpMessage().footer!, + testMessage.footer!, + ["deliveryCount"], + "Unexpected header on the AmqpAnnotatedMessage" + ); + assert.deepEqualExcluding( + event.getRawAmqpMessage().properties!, + testMessage.properties!, + ["creationTime", "absoluteExpiryTime", "groupId"], + "Unexpected properties on the AmqpAnnotatedMessage" + ); + assert.equal( + event.getRawAmqpMessage().properties!.groupId, + testMessage.properties!.groupId, + "Unexpected session-id on the AmqpAnnotatedMessage" + ); + }); + + it(`values (useBatch: ${useBatch})`, async () => { + const valueTypes = [[1, 2, 3], 1, 1.5, "hello", { hello: "world" }]; + for (const valueType of valueTypes) { + const startingPositions = await getStartingPositionsForTests(consumerClient); + await sendEvents( + [ + { + body: valueType, + bodyType: "value" + } + ], + { useBatch } + ); + + const event = await receiveEvent(startingPositions); + assert.deepEqual( + event.getRawAmqpMessage().bodyType, + "value", + `Should be identified as a value: ${valueType.toString()}` + ); + + assert.deepEqual( + event.body, + valueType, + `Deserialized body should be equal: ${valueType.toString()}` + ); + } + }); + + it(`sequences (useBatch: ${useBatch})`, async () => { + const sequenceTypes = [ + [[1], [2], [3]], + [1, 2, 3] + ]; + + for (const sequenceType of sequenceTypes) { + const startingPositions = await getStartingPositionsForTests(consumerClient); + await sendEvents( + [ + { + body: sequenceType, + bodyType: "sequence" + } + ], + { useBatch } + ); + + const event = await receiveEvent(startingPositions); + assert.deepEqual( + event.getRawAmqpMessage().bodyType, + "sequence", + `Should be identified as a value: ${sequenceType.toString()}` + ); + + assert.deepEqual( + event.body, + sequenceType, + `Deserialized body should be equal: ${sequenceType.toString()}` + ); + } + }); + + it(`data (useBatch: ${useBatch})`, async () => { + const buff = Buffer.from("hello", "utf8"); + + const dataTypes = [1, 1.5, "hello", { hello: "world" }, buff, [1, 2, 3]]; + + for (const dataType of dataTypes) { + const startingPositions = await getStartingPositionsForTests(consumerClient); + await sendEvents( + [ + { + body: dataType, + bodyType: "data" + } + ], + { useBatch } + ); + + const event = await receiveEvent(startingPositions); + + assert.deepEqual( + event.getRawAmqpMessage().bodyType, + "data", + `Should be identified as data: ${dataType.toString()}` + ); + assert.deepEqual( + event.body, + dataType, + `Deserialized body should be equal: : ${dataType.toString()}` + ); + } + }); + + ([ + ["sequence", [1, 2, 3]], + ["value", "hello"], + ["data", "hello"] + ] as [BodyTypes, any][]).forEach(([expectedBodyType, expectedBody]) => { + it(`receive EventData and resend (useBatch: ${useBatch})`, async () => { + let startingPositions = await getStartingPositionsForTests(consumerClient); + // if we receive an event that was encoded to a non-data section + // and then re-send it (again, as an EventData) we should + // respect it. + await sendEvents( + [ + { + body: expectedBody, + bodyType: expectedBodyType + } + ], + { useBatch } + ); + + const event = await receiveEvent(startingPositions); + + assert.equal(event.getRawAmqpMessage().bodyType, expectedBodyType); + + startingPositions = await getStartingPositionsForTests(consumerClient); + // now let's just resend it, unaltered + await sendEvents([event], { useBatch }); + + const reencodedEvent = await receiveEvent(startingPositions); + + assert.equal(reencodedEvent.getRawAmqpMessage().bodyType, expectedBodyType); + assert.deepEqual(reencodedEvent.body, expectedBody); + }); + }); + }); + }); +}); diff --git a/sdk/eventhub/event-hubs/test/public/eventData.spec.ts b/sdk/eventhub/event-hubs/test/public/eventData.spec.ts new file mode 100644 index 000000000000..16105d656921 --- /dev/null +++ b/sdk/eventhub/event-hubs/test/public/eventData.spec.ts @@ -0,0 +1,132 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. + +import chai from "chai"; +import chaiAsPromised from "chai-as-promised"; +import chaiExclude from "chai-exclude"; +import { v4 } from "uuid"; +import { EnvVarKeys, getEnvVars, getStartingPositionsForTests } from "./utils/testUtils"; +import { + EventData, + EventHubConsumerClient, + EventHubProducerClient, + EventPosition, + ReceivedEventData, + Subscription +} from "../../src"; + +const should = chai.should(); +chai.use(chaiAsPromised); +chai.use(chaiExclude); + +const env = getEnvVars(); + +describe("EventData", function(): void { + let producerClient: EventHubProducerClient; + let consumerClient: EventHubConsumerClient; + const service = { + connectionString: env[EnvVarKeys.EVENTHUB_CONNECTION_STRING], + path: env[EnvVarKeys.EVENTHUB_NAME] + }; + + before("validate environment", function(): void { + should.exist( + env[EnvVarKeys.EVENTHUB_CONNECTION_STRING], + "define EVENTHUB_CONNECTION_STRING in your environment before running integration tests." + ); + should.exist( + env[EnvVarKeys.EVENTHUB_NAME], + "define EVENTHUB_NAME in your environment before running integration tests." + ); + }); + + beforeEach(async () => { + producerClient = new EventHubProducerClient(service.connectionString, service.path); + consumerClient = new EventHubConsumerClient( + EventHubConsumerClient.defaultConsumerGroupName, + service.connectionString, + service.path + ); + }); + + afterEach("close the connection", async function(): Promise { + await producerClient.close(); + await consumerClient.close(); + }); + + function getSampleEventData(): EventData { + const randomTag = Math.random().toString(); + + return { + body: `message body ${randomTag}`, + contentEncoding: "application/json; charset=utf-8", + correlationId: randomTag, + messageId: v4() + } as EventData; + } + + /** + * Helper function that will receive a single event that comes after the starting positions. + * + * Note: Call this after sending a single event to Event Hubs to validate + * @internal + */ + async function receiveEvent(startingPositions: { + [partitionId: string]: EventPosition; + }): Promise { + return new Promise((resolve, reject) => { + const subscription: Subscription = consumerClient.subscribe( + { + async processError(err) { + reject(err); + return subscription.close(); + }, + async processEvents(events) { + if (events.length) { + resolve(events[0]); + return subscription.close(); + } + } + }, + { + startPosition: startingPositions + } + ); + }); + } + + describe("round-tripping AMQP encoding/decoding", () => { + it(`props`, async () => { + const startingPositions = await getStartingPositionsForTests(consumerClient); + const testEvent = getSampleEventData(); + await producerClient.sendBatch([testEvent]); + + const event = await receiveEvent(startingPositions); + should.equal(event.body, testEvent.body, "Unexpected body on the received event."); + should.equal( + event.contentType, + testEvent.contentType, + "Unexpected contentType on the received event." + ); + should.equal( + event.correlationId, + testEvent.correlationId, + "Unexpected correlationId on the received event." + ); + should.equal( + event.messageId, + testEvent.messageId, + "Unexpected messageId on the received event." + ); + }); + + it(`null body`, async () => { + const startingPositions = await getStartingPositionsForTests(consumerClient); + const testEvent: EventData = { body: null }; + await producerClient.sendBatch([testEvent]); + + const event = await receiveEvent(startingPositions); + should.equal(event.body, testEvent.body, "Unexpected body on the received event."); + }); + }); +}); From 39d2a80b404dbe9bfd1316ce32d45a5d69630024 Mon Sep 17 00:00:00 2001 From: Maor Leger Date: Wed, 30 Jun 2021 11:35:43 -0700 Subject: [PATCH 40/49] update core-client version to 1.2.1 (#16109) See #16094 for details. This PR just updates core-client to 1.2.1 so I can release it --- sdk/core/core-client/CHANGELOG.md | 2 +- sdk/core/core-client/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/core/core-client/CHANGELOG.md b/sdk/core/core-client/CHANGELOG.md index d9565a5221ee..951fa6b0ba5a 100644 --- a/sdk/core/core-client/CHANGELOG.md +++ b/sdk/core/core-client/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 1.2.0 (2021-06-30) +## 1.2.1 (2021-06-30) ### Features Added diff --git a/sdk/core/core-client/package.json b/sdk/core/core-client/package.json index 83451f88acbb..4e8bb2652239 100644 --- a/sdk/core/core-client/package.json +++ b/sdk/core/core-client/package.json @@ -1,6 +1,6 @@ { "name": "@azure/core-client", - "version": "1.2.0", + "version": "1.2.1", "description": "Core library for interfacing with AutoRest generated code", "sdk-type": "client", "main": "dist/index.js", From 44ba53098bb2c679021b124fc1f580e9aa0c6bab Mon Sep 17 00:00:00 2001 From: Maor Leger Date: Wed, 30 Jun 2021 13:48:38 -0700 Subject: [PATCH 41/49] fix core-http changelog (#16116) The release pipeline complains if there are empty sections in the changelog. Removing the empty section to correct this and unblock core-http release. --- sdk/core/core-http/CHANGELOG.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/sdk/core/core-http/CHANGELOG.md b/sdk/core/core-http/CHANGELOG.md index 10db2bf0c5b9..11f46c8f0d36 100644 --- a/sdk/core/core-http/CHANGELOG.md +++ b/sdk/core/core-http/CHANGELOG.md @@ -12,8 +12,6 @@ - Updated @azure/core-tracing to version `1.0.0-preview.12`. See [@azure/core-tracing CHANGELOG](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-tracing/CHANGELOG.md) for details about breaking changes with tracing. -### Key Bugs Fixed - ### Fixed - Fixed an issue where `proxySettings` does not work when there is username but no password [Issue 15720](https://github.com/Azure/azure-sdk-for-js/issues/15720) From f143bcf7f00fcc256b76951e24fcda32dccee7f3 Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Wed, 30 Jun 2021 14:33:32 -0700 Subject: [PATCH 42/49] Sync eng/common directory with azure-sdk-tools for PR 1763 (#16091) * Disable release date check * Release check is not finding release date Co-authored-by: Praveen Kuttappan --- eng/common/scripts/Package-Properties.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/common/scripts/Package-Properties.ps1 b/eng/common/scripts/Package-Properties.ps1 index 622c5fd925aa..acbb66e9d2b9 100644 --- a/eng/common/scripts/Package-Properties.ps1 +++ b/eng/common/scripts/Package-Properties.ps1 @@ -52,7 +52,7 @@ class PackageProps $this.ChangeLogPath = Join-Path $directoryPath "CHANGELOG.md" # Get release date for current version and set in package property $changeLogEntry = Get-ChangeLogEntry -ChangeLogLocation $this.ChangeLogPath -VersionString $this.Version - if ($changeLogEntry -and !$changeLogEntry.ReleaseStatus) + if ($changeLogEntry -and $changeLogEntry.ReleaseStatus) { $this.ReleaseStatus = $changeLogEntry.ReleaseStatus.Trim().Trim("()") } From 40dd9e49843978c60cb4d7f2e10ff38083f2a711 Mon Sep 17 00:00:00 2001 From: Harsha Nalluru Date: Wed, 30 Jun 2021 16:10:55 -0700 Subject: [PATCH 43/49] [App Config] changelog and update versions for GA (#16115) For 1.2.0 release --- sdk/appconfiguration/app-configuration/CHANGELOG.md | 10 ++++++---- sdk/appconfiguration/app-configuration/package.json | 2 +- .../app-configuration/src/appConfigurationClient.ts | 2 +- .../src/generated/src/appConfigurationContext.ts | 2 +- 4 files changed, 9 insertions(+), 7 deletions(-) diff --git a/sdk/appconfiguration/app-configuration/CHANGELOG.md b/sdk/appconfiguration/app-configuration/CHANGELOG.md index 9abaf67ac0d4..ff83426e89c0 100644 --- a/sdk/appconfiguration/app-configuration/CHANGELOG.md +++ b/sdk/appconfiguration/app-configuration/CHANGELOG.md @@ -1,13 +1,15 @@ # Release History -## 1.2.0-beta.3 (Unreleased) +## 1.2.0 (2021-07-07) ### Features Added -- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. -### Breaking Changes +- Special configuration settings - feature flag and secret reference are now supported. 🎉 + + - For types, use `ConfigurationSetting` and `ConfigurationSetting`. + - Use `parseFeatureFlag` and `parseSecretReference` methods to parse the configuration settings into feature flag and secret reference respectively. -### Key Bugs Fixed +- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ### Fixed diff --git a/sdk/appconfiguration/app-configuration/package.json b/sdk/appconfiguration/app-configuration/package.json index 44e66e96b360..899ce6b4c597 100644 --- a/sdk/appconfiguration/app-configuration/package.json +++ b/sdk/appconfiguration/app-configuration/package.json @@ -2,7 +2,7 @@ "name": "@azure/app-configuration", "author": "Microsoft Corporation", "description": "An isomorphic client library for the Azure App Configuration service.", - "version": "1.2.0-beta.3", + "version": "1.2.0", "sdk-type": "client", "keywords": [ "node", diff --git a/sdk/appconfiguration/app-configuration/src/appConfigurationClient.ts b/sdk/appconfiguration/app-configuration/src/appConfigurationClient.ts index a703f9f04bc4..f29024c20614 100644 --- a/sdk/appconfiguration/app-configuration/src/appConfigurationClient.ts +++ b/sdk/appconfiguration/app-configuration/src/appConfigurationClient.ts @@ -70,7 +70,7 @@ const packageName = "azsdk-js-app-configuration"; * User - Agent header. There's a unit test that makes sure it always stays in sync. * @internal */ -export const packageVersion = "1.2.0-beta.3"; +export const packageVersion = "1.2.0"; const apiVersion = "1.0"; const ConnectionStringRegex = /Endpoint=(.*);Id=(.*);Secret=(.*)/; const deserializationContentTypes = { diff --git a/sdk/appconfiguration/app-configuration/src/generated/src/appConfigurationContext.ts b/sdk/appconfiguration/app-configuration/src/generated/src/appConfigurationContext.ts index 239cde2e6add..d5dba464891e 100644 --- a/sdk/appconfiguration/app-configuration/src/generated/src/appConfigurationContext.ts +++ b/sdk/appconfiguration/app-configuration/src/generated/src/appConfigurationContext.ts @@ -10,7 +10,7 @@ import * as coreHttp from "@azure/core-http"; import { ApiVersion10, AppConfigurationOptionalParams } from "./models"; const packageName = "app-configuration"; -const packageVersion = "1.2.0-beta.3"; +const packageVersion = "1.2.0"; /** @internal */ export class AppConfigurationContext extends coreHttp.ServiceClient { From 761a4e6692c3cd316a055c996188a3f68cb992ba Mon Sep 17 00:00:00 2001 From: Deyaaeldeen Almahallawi Date: Wed, 30 Jun 2021 16:11:27 -0700 Subject: [PATCH 44/49] [Text Analytics] Merge feature branch for v5.1.0 to main (#16121) It consists of the following already-reviewed PRs: https://github.com/Azure/azure-sdk-for-js/pull/16114 https://github.com/Azure/azure-sdk-for-js/pull/16095 https://github.com/Azure/azure-sdk-for-js/pull/15995 https://github.com/Azure/azure-sdk-for-js/pull/15684 https://github.com/Azure/azure-sdk-for-js/pull/15649 https://github.com/Azure/azure-sdk-for-js/pull/15598 https://github.com/Azure/azure-sdk-for-js/pull/15554 --- .../ai-text-analytics/CHANGELOG.md | 10 +- sdk/textanalytics/ai-text-analytics/README.md | 12 +- .../ai-text-analytics/package.json | 3 +- ...ng_client_accepts_string_and_language.json | 18 +- ...lient_accepts_string_with_no_language.json | 18 +- ...ding_client_accepts_textdocumentinput.json | 18 +- ...lient_gets_negative_mined_assessments.json | 18 +- ...ding_client_gets_no_mined_assessments.json | 18 +- ...lient_gets_positive_mined_assessments.json | 18 +- ...recording_client_throws_on_empty_list.json | 2 +- ...ncing_assessments_in_doc_6_or_greater.json | 18 +- ...eturns_an_error_for_an_empty_document.json | 18 +- ...ce_returns_error_for_invalid_language.json | 18 +- ...ecording_client_accepts_a_countryhint.json | 18 +- ...epts_mixedcountry_detectlanguageinput.json | 18 +- ...cording_client_accepts_no_countryhint.json | 16 +- ...y_hint_with_detectlanguageinput_input.json | 18 +- ...s_none_country_hint_with_string_input.json | 18 +- ...recording_client_throws_on_empty_list.json | 2 +- ...ervice_errors_on_invalid_country_hint.json | 18 +- ...cepts_mixedlanguage_textdocumentinput.json | 20 +- ...epts_string_with_a_language_specified.json | 20 +- ...lient_accepts_string_with_no_language.json | 20 +- ...recording_client_throws_on_empty_list.json | 2 +- ...ervice_errors_on_unsupported_language.json | 18 +- ...ervice_reports_warning_for_long_words.json | 51 - ...cepts_mixedlanguage_textdocumentinput.json | 20 +- ...epts_string_with_a_language_specified.json | 20 +- ...lient_accepts_string_with_no_language.json | 20 +- ..._throws_exception_for_too_many_inputs.json | 18 +- ...recording_client_throws_on_empty_list.json | 2 +- ...ervice_errors_on_unsupported_language.json | 20 +- ...cepts_mixedlanguage_textdocumentinput.json | 20 +- ...epts_string_with_a_language_specified.json | 20 +- ...lient_accepts_string_with_no_language.json | 20 +- ..._throws_exception_for_too_many_inputs.json | 18 +- ...recording_client_throws_on_empty_list.json | 2 +- ...ervice_errors_on_unsupported_language.json | 20 +- .../recording_accepts_domain_filter.json | 18 +- .../recording_accepts_pii_categories.json | 18 +- ...cepts_mixedlanguage_textdocumentinput.json | 18 +- ...epts_string_with_a_language_specified.json | 18 +- ...lient_accepts_string_with_no_language.json | 18 +- ...eports_recognition_of_piilike_pattern.json | 18 +- ...recording_client_throws_on_empty_list.json | 18 +- ..._pii_categories_are_accepted_as_input.json | 26 +- ...ervice_errors_on_unsupported_language.json | 18 +- .../recording_diacritics_nfc.json | 20 +- .../recording_diacritics_nfd.json | 20 +- .../recording_emoji.json | 20 +- ...cording_emoji_with_skin_tone_modifier.json | 20 +- .../recording_family_emoji.json | 20 +- ...g_family_emoji_wit_skin_tone_modifier.json | 20 +- .../recording_korean_nfc.json | 20 +- .../recording_korean_nfd.json | 20 +- .../recording_zalgo.json | 20 +- .../recording_diacritics_nfc.json | 18 +- .../recording_diacritics_nfd.json | 18 +- .../recording_emoji.json | 18 +- ...cording_emoji_with_skin_tone_modifier.json | 18 +- .../recording_family_emoji.json | 18 +- ...g_family_emoji_wit_skin_tone_modifier.json | 18 +- .../recording_korean_nfc.json | 18 +- .../recording_korean_nfd.json | 18 +- .../recording_zalgo.json | 18 +- .../recording_diacritics_nfc.json | 53 - .../recording_diacritics_nfd.json | 53 - .../recording_family_emoji.json | 53 - ...g_family_emoji_wit_skin_tone_modifier.json | 53 - .../recording_korean_nfc.json | 53 - .../recording_korean_nfd.json | 53 - .../recording_zalgo.json | 53 - .../recording_diacritics_nfc.json | 20 +- .../recording_diacritics_nfd.json | 20 +- .../recording_emoji.json | 20 +- ...cording_emoji_with_skin_tone_modifier.json | 20 +- .../recording_family_emoji.json | 20 +- ...g_family_emoji_wit_skin_tone_modifier.json | 20 +- .../recording_korean_nfc.json | 20 +- .../recording_korean_nfd.json | 20 +- .../recording_zalgo.json | 20 +- ...ents_with_errors_and_multiple_actions.json | 574 ++- .../recording_bad_request_empty_string.json | 22 +- ...ecording_each_doc_has_a_language_hint.json | 669 ++- ...g_family_emoji_wit_skin_tone_modifier.json | 99 +- .../recording_invalid_language_hint.json | 205 +- .../recording_malformed_actions.json | 22 +- ...tiple_actions_per_type_are_disallowed.json | 8 + .../recording_operation_metadata.json | 135 +- ...order_input_ids_with_multiple_actions.json | 136 +- ..._the_inputs_one_with_multiple_actions.json | 141 +- ...g_paged_results_with_custom_page_size.json | 565 ++- ...ording_pii_redacted_test_is_not_empty.json | 126 +- ...ording_single_entities_linking_action.json | 81 +- ...ng_single_entities_recognition_action.json | 153 +- ...ding_single_entity_recognition_action.json | 246 +- .../recording_single_key_phrases_action.json | 190 +- ...ingle_pii_entities_recognition_action.json | 236 +- ...ding_single_sentiment_analysis_action.json | 224 +- ...ents_with_errors_and_multiple_actions.json | 233 +- ...hole_batch_input_with_a_language_hint.json | 857 +++- .../recording_whole_batch_language_hint.json | 574 ++- ...ing_whole_batch_with_no_language_hint.json | 186 +- .../recording_all_documents_have_errors.json | 147 + .../recording_all_inputs_with_errors.json | 128 + .../recording_cancelled.json | 88 + .../recording_document_warnings.json | 128 + ...cording_documents_with_duplicate_ids.json} | 27 +- .../recording_entity_assertions.json | 375 ++ ...n_tone_modifier_with_unicodecodepoint.json | 128 + ...skin_tone_modifier_with_utf16codeunit.json | 128 + .../recording_input_documents.json | 128 + .../recording_input_strings.json | 337 ++ .../recording_invalid_language_hint.json | 147 + ...ecording_invalid_language_hint_in_doc.json | 147 + .../recording_operation_metadata.json | 109 + ...ng_output_has_the_same_order_as_input.json | 128 + ..._order_as_input_with_out_of_order_ids.json | 128 + .../recording_payload_too_large.json | 52 + ...ecording_show_stats_and_model_version.json | 113 + .../recording_some_inputs_with_errors.json | 128 + .../recording_too_many_documents.json} | 27 +- ...rding_whole_batch_empty_language_hint.json | 147 + ...ole_batch_empty_language_hint_per_doc.json | 147 + .../recording_whole_batch_language_hint.json | 318 ++ ...g_whole_batch_with_multiple_languages.json | 147 + .../recording_extractkeyphrases.json | 27 - .../recording_recognizeentities.json | 29 - .../recording_recognizelinkedentities.json | 29 - .../recording_recognizepiientities.json | 29 - .../recording_cancelled.json | 64 - .../recording_document_warnings.json | 123 - .../recording_input_documents.json | 123 - .../recording_input_strings.json | 161 - .../recording_operation_metadata.json | 85 - ...ng_output_has_the_same_order_as_input.json | 123 - .../recording_payload_too_large.json | 28 - ...ecording_show_stats_and_model_version.json | 89 - ...rding_whole_batch_empty_language_hint.json | 104 - ...ole_batch_empty_language_hint_per_doc.json | 104 - ...g_whole_batch_with_multiple_languages.json | 104 - ...g_client_accepts_string_and_language.json} | 10 +- ...lient_accepts_string_with_no_language.json | 29 + ...ding_client_accepts_textdocumentinput.json | 29 + ...lient_gets_negative_mined_assessments.json | 30 + ...ding_client_gets_no_mined_assessments.json | 30 + ...lient_gets_positive_mined_assessments.json | 30 + ...recording_client_throws_on_empty_list.json | 8 + ...ncing_assessments_in_doc_6_or_greater.json | 30 + ...eturns_an_error_for_an_empty_document.json | 29 + ...ce_returns_error_for_invalid_language.json | 28 + ...cording_client_accepts_a_countryhint.json} | 10 +- ...epts_mixedcountry_detectlanguageinput.json | 27 + ...cording_client_accepts_no_countryhint.json | 27 + ...y_hint_with_detectlanguageinput_input.json | 27 + ...s_none_country_hint_with_string_input.json | 27 + ...recording_client_throws_on_empty_list.json | 8 + ...ervice_errors_on_invalid_country_hint.json | 26 + ...cepts_mixedlanguage_textdocumentinput.json | 27 + ...epts_string_with_a_language_specified.json | 27 + ...lient_accepts_string_with_no_language.json | 27 + ...recording_client_throws_on_empty_list.json | 8 + ...ervice_errors_on_unsupported_language.json | 26 + ...cepts_mixedlanguage_textdocumentinput.json | 29 + ...epts_string_with_a_language_specified.json | 29 + ...lient_accepts_string_with_no_language.json | 29 + ..._throws_exception_for_too_many_inputs.json | 28 + ...recording_client_throws_on_empty_list.json | 8 + ...ervice_errors_on_unsupported_language.json | 28 + ...cepts_mixedlanguage_textdocumentinput.json | 29 + ...epts_string_with_a_language_specified.json | 29 + ...lient_accepts_string_with_no_language.json | 29 + ..._throws_exception_for_too_many_inputs.json | 28 + ...recording_client_throws_on_empty_list.json | 8 + ...ervice_errors_on_unsupported_language.json | 28 + .../recording_accepts_domain_filter.json | 30 + .../recording_accepts_pii_categories.json | 30 + ...cepts_mixedlanguage_textdocumentinput.json | 29 + ...epts_string_with_a_language_specified.json | 29 + ...lient_accepts_string_with_no_language.json | 29 + ...eports_recognition_of_piilike_pattern.json | 29 + ...recording_client_throws_on_empty_list.json | 28 + ..._pii_categories_are_accepted_as_input.json | 50 + ...ervice_errors_on_unsupported_language.json | 28 + .../recording_diacritics_nfc.json | 29 + .../recording_diacritics_nfd.json | 29 + .../recording_emoji.json | 29 + ...cording_emoji_with_skin_tone_modifier.json | 29 + .../recording_family_emoji.json | 29 + .../recording_korean_nfc.json | 29 + .../recording_korean_nfd.json | 29 + .../recording_zalgo.json | 29 + .../recording_diacritics_nfc.json | 29 + .../recording_diacritics_nfd.json | 29 + .../recording_emoji.json | 29 + ...cording_emoji_with_skin_tone_modifier.json | 29 + .../recording_family_emoji.json | 29 + .../recording_korean_nfc.json | 29 + .../recording_korean_nfd.json | 29 + .../recording_zalgo.json | 29 + .../recording_diacritics_nfc.json | 29 + .../recording_diacritics_nfd.json | 29 + .../recording_emoji.json | 29 + ...cording_emoji_with_skin_tone_modifier.json | 29 + .../recording_family_emoji.json | 29 + .../recording_korean_nfc.json | 29 + .../recording_korean_nfd.json | 29 + .../recording_zalgo.json | 29 + ...ents_with_errors_and_multiple_actions.json | 311 ++ .../recording_bad_request_empty_string.json | 26 + ...ecording_each_doc_has_a_language_hint.json | 311 ++ ...g_family_emoji_wit_skin_tone_modifier.json | 159 + .../recording_invalid_language_hint.json | 254 ++ .../recording_malformed_actions.json | 26 + ...tiple_actions_per_type_are_disallowed.json | 8 + .../recording_operation_metadata.json | 140 + ...order_input_ids_with_multiple_actions.json | 767 ++++ ..._the_inputs_one_with_multiple_actions.json | 349 ++ ...g_paged_results_with_custom_page_size.json | 313 ++ ...ording_pii_redacted_test_is_not_empty.json | 159 + ...ording_single_entities_linking_action.json | 121 + ...ng_single_entities_recognition_action.json | 235 + ...ding_single_entity_recognition_action.json | 387 ++ .../recording_single_key_phrases_action.json | 330 ++ ...ingle_pii_entities_recognition_action.json | 273 ++ ...ding_single_sentiment_analysis_action.json | 406 ++ ...ents_with_errors_and_multiple_actions.json | 767 ++++ ...hole_batch_input_with_a_language_hint.json | 197 + .../recording_whole_batch_language_hint.json | 349 ++ ...ing_whole_batch_with_no_language_hint.json | 235 + .../recording_all_documents_have_errors.json | 69 +- .../recording_all_inputs_with_errors.json | 60 +- .../recording_cancelled.json | 64 + .../recording_document_warnings.json | 104 + ...ecording_documents_with_duplicate_ids.json | 10 +- .../recording_entity_assertions.json | 71 +- ...n_tone_modifier_with_unicodecodepoint.json | 98 +- ...skin_tone_modifier_with_utf16codeunit.json | 67 +- .../recording_input_documents.json | 313 ++ .../recording_input_strings.json | 275 ++ .../recording_invalid_language_hint.json | 50 +- ...ecording_invalid_language_hint_in_doc.json | 50 +- .../recording_operation_metadata.json | 104 + ...ng_output_has_the_same_order_as_input.json | 104 + ..._order_as_input_with_out_of_order_ids.json | 50 +- .../recording_payload_too_large.json | 28 + ...ecording_show_stats_and_model_version.json | 289 ++ .../recording_some_inputs_with_errors.json | 62 +- .../recording_too_many_documents.json | 10 +- ...rding_whole_batch_empty_language_hint.json | 104 + ...ole_batch_empty_language_hint_per_doc.json | 104 + .../recording_whole_batch_language_hint.json | 48 +- ...g_whole_batch_with_multiple_languages.json | 104 + ...ding_client_accepts_string_and_language.js | 47 +- ..._client_accepts_string_with_no_language.js | 51 +- ...ording_client_accepts_textdocumentinput.js | 51 +- ..._client_gets_negative_mined_assessments.js | 55 +- ...ording_client_gets_no_mined_assessments.js | 47 +- ..._client_gets_positive_mined_assessments.js | 55 +- .../recording_client_throws_on_empty_list.js | 2 +- ...rencing_assessments_in_doc_6_or_greater.js | 47 +- ..._returns_an_error_for_an_empty_document.js | 53 +- ...vice_returns_error_for_invalid_language.js | 57 +- .../recording_client_accepts_a_countryhint.js | 53 +- ...ccepts_mixedcountry_detectlanguageinput.js | 49 +- ...recording_client_accepts_no_countryhint.js | 46 +- ...try_hint_with_detectlanguageinput_input.js | 53 +- ...pts_none_country_hint_with_string_input.js | 47 +- .../recording_client_throws_on_empty_list.js | 2 +- ..._service_errors_on_invalid_country_hint.js | 51 +- ...accepts_mixedlanguage_textdocumentinput.js | 55 +- ...ccepts_string_with_a_language_specified.js | 55 +- ..._client_accepts_string_with_no_language.js | 55 +- .../recording_client_throws_on_empty_list.js | 2 +- ..._service_errors_on_unsupported_language.js | 53 +- ..._service_reports_warning_for_long_words.js | 135 - ...accepts_mixedlanguage_textdocumentinput.js | 53 +- ...ccepts_string_with_a_language_specified.js | 55 +- ..._client_accepts_string_with_no_language.js | 55 +- ...nt_throws_exception_for_too_many_inputs.js | 47 +- .../recording_client_throws_on_empty_list.js | 2 +- ..._service_errors_on_unsupported_language.js | 55 +- ...accepts_mixedlanguage_textdocumentinput.js | 53 +- ...ccepts_string_with_a_language_specified.js | 55 +- ..._client_accepts_string_with_no_language.js | 51 +- ...nt_throws_exception_for_too_many_inputs.js | 47 +- .../recording_client_throws_on_empty_list.js | 2 +- ..._service_errors_on_unsupported_language.js | 49 +- .../recording_accepts_domain_filter.js | 47 +- .../recording_accepts_pii_categories.js | 49 +- ...accepts_mixedlanguage_textdocumentinput.js | 47 +- ...ccepts_string_with_a_language_specified.js | 55 +- ..._client_accepts_string_with_no_language.js | 55 +- ..._reports_recognition_of_piilike_pattern.js | 51 +- .../recording_client_throws_on_empty_list.js | 55 +- ...ut_pii_categories_are_accepted_as_input.js | 55 +- ..._service_errors_on_unsupported_language.js | 57 +- .../recording_diacritics_nfc.js | 53 +- .../recording_diacritics_nfd.js | 47 +- .../recording_emoji.js | 47 +- ...recording_emoji_with_skin_tone_modifier.js | 47 +- .../recording_family_emoji.js | 53 +- ...ing_family_emoji_wit_skin_tone_modifier.js | 51 +- .../recording_korean_nfc.js | 49 +- .../recording_korean_nfd.js | 47 +- .../recording_zalgo.js | 47 +- .../recording_diacritics_nfc.js | 52 +- .../recording_diacritics_nfd.js | 48 +- .../recording_emoji.js | 54 +- ...recording_emoji_with_skin_tone_modifier.js | 54 +- .../recording_family_emoji.js | 48 +- ...ing_family_emoji_wit_skin_tone_modifier.js | 54 +- .../recording_korean_nfc.js | 50 +- .../recording_korean_nfd.js | 50 +- .../recording_zalgo.js | 48 +- ...recording_emoji_with_skin_tone_modifier.js | 136 - .../recording_family_emoji.js | 136 - ...ing_family_emoji_wit_skin_tone_modifier.js | 136 - .../recording_korean_nfd.js | 136 - .../recording_diacritics_nfc.js | 53 +- .../recording_diacritics_nfd.js | 53 +- .../recording_emoji.js | 47 +- ...recording_emoji_with_skin_tone_modifier.js | 53 +- .../recording_family_emoji.js | 47 +- ...ing_family_emoji_wit_skin_tone_modifier.js | 47 +- .../recording_korean_nfc.js | 49 +- .../recording_korean_nfd.js | 55 +- .../recording_zalgo.js | 47 +- ...uments_with_errors_and_multiple_actions.js | 283 +- .../recording_bad_model.js | 133 - .../recording_bad_request_empty_string.js | 57 +- .../recording_each_doc_has_a_language_hint.js | 243 +- ...ing_family_emoji_wit_skin_tone_modifier.js | 223 +- .../recording_invalid_language_hint.js | 233 +- .../recording_malformed_actions.js | 52 +- ...ultiple_actions_per_type_are_disallowed.js | 5 + .../recording_operation_metadata.js | 115 +- ...f_order_input_ids_with_multiple_actions.js | 201 +- ...as_the_inputs_one_with_multiple_actions.js | 583 +-- ...ing_paged_results_with_custom_page_size.js | 233 +- ...ecording_pii_redacted_test_is_not_empty.js | 163 +- ...ecording_single_entities_linking_action.js | 97 +- ...ding_single_entities_recognition_action.js | 229 +- ...ording_single_entity_recognition_action.js | 289 +- .../recording_single_key_phrases_action.js | 295 +- ..._single_pii_entities_recognition_action.js | 293 +- ...ording_single_sentiment_analysis_action.js | 313 +- ...uments_with_errors_and_multiple_actions.js | 255 +- .../recording_statistics.js | 333 -- ..._whole_batch_input_with_a_language_hint.js | 351 +- .../recording_whole_batch_language_hint.js | 237 +- ...rding_whole_batch_with_no_language_hint.js | 245 +- .../recording_all_documents_have_errors.js | 211 + .../recording_all_inputs_with_errors.js | 211 + .../recording_cancelled.js} | 94 +- .../recording_document_warnings.js} | 135 +- ...recording_documents_with_duplicate_ids.js} | 53 +- .../recording_entity_assertions.js | 491 +++ ...kin_tone_modifier_with_unicodecodepoint.js | 471 ++ ...t_skin_tone_modifier_with_utf16codeunit.js | 231 + .../recording_input_documents.js | 211 + .../recording_input_strings.js | 511 +++ .../recording_invalid_language_hint.js | 211 + .../recording_invalid_language_hint_in_doc.js | 211 + .../recording_operation_metadata.js | 211 + ...ding_output_has_the_same_order_as_input.js | 211 + ...me_order_as_input_with_out_of_order_ids.js | 231 + .../recording_payload_too_large.js | 131 + ...recording_show_stats_and_model_version.js} | 117 +- .../recording_some_inputs_with_errors.js | 231 + .../recording_too_many_documents.js} | 53 +- ...cording_whole_batch_empty_language_hint.js | 211 + ...whole_batch_empty_language_hint_per_doc.js | 211 + .../recording_whole_batch_language_hint.js | 211 + ...ing_whole_batch_with_multiple_languages.js | 231 + .../recording_recognizeentities.js | 27 - .../recording_recognizelinkedentities.js | 27 - .../recording_cancelled.js | 64 - ...t_skin_tone_modifier_with_utf16codeunit.js | 125 - .../recording_input_documents.js | 105 - .../recording_input_strings.js | 125 - .../recording_invalid_language_hint.js | 125 - .../recording_invalid_language_hint_in_doc.js | 165 - .../recording_operation_metadata.js | 85 - ...ding_output_has_the_same_order_as_input.js | 125 - ...me_order_as_input_with_out_of_order_ids.js | 145 - .../recording_payload_too_large.js | 25 - .../recording_show_stats_and_model_version.js | 105 - .../recording_too_many_documents.js | 25 - ...whole_batch_empty_language_hint_per_doc.js | 125 - .../recording_whole_batch_language_hint.js | 125 - ...ing_whole_batch_with_multiple_languages.js | 125 - ...ing_client_accepts_string_and_language.js} | 10 +- ..._client_accepts_string_with_no_language.js | 27 + ...ording_client_accepts_textdocumentinput.js | 27 + ..._client_gets_negative_mined_assessments.js | 27 + ...ording_client_gets_no_mined_assessments.js | 27 + ..._client_gets_positive_mined_assessments.js | 27 + .../recording_client_throws_on_empty_list.js | 5 + ...rencing_assessments_in_doc_6_or_greater.js | 27 + ..._returns_an_error_for_an_empty_document.js | 27 + ...vice_returns_error_for_invalid_language.js | 25 + ...recording_client_accepts_a_countryhint.js} | 10 +- ...ccepts_mixedcountry_detectlanguageinput.js | 26 + ...recording_client_accepts_no_countryhint.js | 26 + ...try_hint_with_detectlanguageinput_input.js | 26 + ...ts_none_country_hint_with_string_input.js} | 12 +- .../recording_client_throws_on_empty_list.js | 5 + ..._service_errors_on_invalid_country_hint.js | 24 + ...accepts_mixedlanguage_textdocumentinput.js | 26 + ...ccepts_string_with_a_language_specified.js | 26 + ..._client_accepts_string_with_no_language.js | 26 + .../recording_client_throws_on_empty_list.js | 5 + ..._service_errors_on_unsupported_language.js | 24 + ...accepts_mixedlanguage_textdocumentinput.js | 27 + ...ccepts_string_with_a_language_specified.js | 27 + ..._client_accepts_string_with_no_language.js | 27 + ...nt_throws_exception_for_too_many_inputs.js | 25 + .../recording_client_throws_on_empty_list.js | 5 + ..._service_errors_on_unsupported_language.js | 25 + ...accepts_mixedlanguage_textdocumentinput.js | 27 + ...ccepts_string_with_a_language_specified.js | 27 + ..._client_accepts_string_with_no_language.js | 27 + ...nt_throws_exception_for_too_many_inputs.js | 25 + .../recording_client_throws_on_empty_list.js | 5 + ..._service_errors_on_unsupported_language.js | 25 + .../recording_accepts_domain_filter.js | 27 + .../recording_accepts_pii_categories.js | 27 + ...accepts_mixedlanguage_textdocumentinput.js | 27 + ...ccepts_string_with_a_language_specified.js | 27 + ..._client_accepts_string_with_no_language.js | 27 + ..._reports_recognition_of_piilike_pattern.js | 27 + .../recording_client_throws_on_empty_list.js | 25 + ...ut_pii_categories_are_accepted_as_input.js | 49 + ..._service_errors_on_unsupported_language.js | 25 + .../recording_diacritics_nfc.js} | 12 +- .../recording_diacritics_nfd.js | 27 + .../recording_emoji.js | 27 + ...recording_emoji_with_skin_tone_modifier.js | 27 + .../recording_family_emoji.js | 27 + ...ing_family_emoji_wit_skin_tone_modifier.js | 27 + .../recording_korean_nfc.js | 27 + .../recording_korean_nfd.js | 27 + .../recording_zalgo.js | 27 + .../recording_diacritics_nfc.js | 27 + .../recording_diacritics_nfd.js | 27 + .../recording_emoji.js | 27 + ...recording_emoji_with_skin_tone_modifier.js | 27 + .../recording_family_emoji.js | 27 + ...ing_family_emoji_wit_skin_tone_modifier.js | 27 + .../recording_korean_nfc.js | 27 + .../recording_korean_nfd.js | 27 + .../recording_zalgo.js | 27 + .../recording_diacritics_nfc.js | 27 + .../recording_diacritics_nfd.js | 27 + .../recording_emoji.js | 27 + ...recording_emoji_with_skin_tone_modifier.js | 27 + .../recording_family_emoji.js | 27 + ...ing_family_emoji_wit_skin_tone_modifier.js | 27 + .../recording_korean_nfc.js | 27 + .../recording_korean_nfd.js | 27 + .../recording_zalgo.js | 27 + ...uments_with_errors_and_multiple_actions.js | 324 ++ .../recording_bad_request_empty_string.js | 24 + .../recording_each_doc_has_a_language_hint.js | 204 + ...ing_family_emoji_wit_skin_tone_modifier.js | 144 + .../recording_invalid_language_hint.js | 224 + .../recording_malformed_actions.js | 24 + ...ultiple_actions_per_type_are_disallowed.js | 5 + .../recording_operation_metadata.js | 144 + ...f_order_input_ids_with_multiple_actions.js | 324 ++ ...as_the_inputs_one_with_multiple_actions.js | 224 + ...ing_paged_results_with_custom_page_size.js | 224 + ...ecording_pii_redacted_test_is_not_empty.js | 164 + ...ecording_single_entities_linking_action.js | 124 + ...ding_single_entities_recognition_action.js | 484 ++ ...ording_single_entity_recognition_action.js | 364 ++ .../recording_single_key_phrases_action.js | 404 ++ ..._single_pii_entities_recognition_action.js | 304 ++ ...ording_single_sentiment_analysis_action.js | 504 +++ ...uments_with_errors_and_multiple_actions.js | 324 ++ ..._whole_batch_input_with_a_language_hint.js | 324 ++ .../recording_whole_batch_language_hint.js | 824 ++++ ...rding_whole_batch_with_no_language_hint.js | 444 ++ .../recording_all_documents_have_errors.js | 50 +- .../recording_all_inputs_with_errors.js | 72 +- .../recording_cancelled.js | 64 + .../recording_document_warnings.js | 52 +- .../recording_documents_with_duplicate_ids.js | 10 +- .../recording_entity_assertions.js | 92 +- ...kin_tone_modifier_with_unicodecodepoint.js | 62 +- ...t_skin_tone_modifier_with_utf16codeunit.js | 365 ++ .../recording_input_documents.js | 245 ++ .../recording_input_strings.js | 365 ++ .../recording_invalid_language_hint.js | 105 + .../recording_invalid_language_hint_in_doc.js | 105 + .../recording_operation_metadata.js | 105 + ...ding_output_has_the_same_order_as_input.js | 105 + ...me_order_as_input_with_out_of_order_ids.js | 105 + .../recording_payload_too_large.js | 25 + .../recording_show_stats_and_model_version.js | 85 + .../recording_some_inputs_with_errors.js | 72 +- .../recording_too_many_documents.js | 25 + ...cording_whole_batch_empty_language_hint.js | 50 +- ...whole_batch_empty_language_hint_per_doc.js | 105 + .../recording_whole_batch_language_hint.js | 105 + ...ing_whole_batch_with_multiple_languages.js | 105 + .../review/ai-text-analytics.api.md | 104 +- .../src/analyzeHealthcareEntitiesResult.ts | 40 +- .../ai-text-analytics/src/constants.ts | 2 +- .../src/generated/generatedClient.ts | 132 +- .../src/generated/generatedClientContext.ts | 17 +- .../src/generated/models/index.ts | 247 +- .../src/generated/models/mappers.ts | 448 +- .../src/generated/models/parameters.ts | 13 + .../ai-text-analytics/src/index.ts | 6 +- .../src/textAnalyticsAction.ts | 17 + .../src/textAnalyticsClient.ts | 76 +- .../ai-text-analytics/src/util.ts | 8 +- .../ai-text-analytics/swagger/README.md | 15 +- .../test/public/apiKey.spec.ts | 718 --- .../test/public/pipelineOptions.spec.ts | 2 +- .../test/public/textAnalyticsClient.spec.ts | 3884 ++++++++++------- .../test/public/utils/recordedClient.ts | 12 +- 524 files changed, 40148 insertions(+), 14225 deletions(-) delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_reports_warning_for_long_words.json delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_diacritics_nfc.json delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_diacritics_nfd.json delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_family_emoji.json delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_family_emoji_wit_skin_tone_modifier.json delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_korean_nfc.json delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_korean_nfd.json delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_zalgo.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_multiple_actions_per_type_are_disallowed.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_all_documents_have_errors.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_all_inputs_with_errors.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_cancelled.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_document_warnings.json rename sdk/textanalytics/ai-text-analytics/recordings/browsers/{aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_emoji.json => aad_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.json} (58%) create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_entity_assertions.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_input_documents.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_input_strings.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_invalid_language_hint.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_operation_metadata.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_payload_too_large.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_show_stats_and_model_version.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_some_inputs_with_errors.json rename sdk/textanalytics/ai-text-analytics/recordings/browsers/{aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_emoji_with_skin_tone_modifier.json => aad_textanalyticsclient_lros_health/recording_too_many_documents.json} (50%) create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_language_hint.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.json delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_fast_tests/recording_extractkeyphrases.json delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_fast_tests/recording_recognizeentities.json delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_fast_tests/recording_recognizelinkedentities.json delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_fast_tests/recording_recognizepiientities.json delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_cancelled.json delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_document_warnings.json delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_input_documents.json delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_input_strings.json delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_operation_metadata.json delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.json delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_payload_too_large.json delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_show_stats_and_model_version.json delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.json delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.json delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.json rename sdk/textanalytics/ai-text-analytics/recordings/browsers/{api_key_textanalyticsclient_fast_tests/recording_analyzesentiment.json => apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.json} (91%) create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.json rename sdk/textanalytics/ai-text-analytics/recordings/browsers/{api_key_textanalyticsclient_fast_tests/recording_detectlanguage.json => apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.json} (75%) create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_invalid_language_hint.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_malformed_actions.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_multiple_actions_per_type_are_disallowed.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_operation_metadata.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.json rename sdk/textanalytics/ai-text-analytics/recordings/browsers/{api_key_textanalyticsclient_lros_health => apikey_textanalyticsclient_lros_health}/recording_all_documents_have_errors.json (72%) rename sdk/textanalytics/ai-text-analytics/recordings/browsers/{api_key_textanalyticsclient_lros_health => apikey_textanalyticsclient_lros_health}/recording_all_inputs_with_errors.json (55%) create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_cancelled.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_document_warnings.json rename sdk/textanalytics/ai-text-analytics/recordings/browsers/{api_key_textanalyticsclient_lros_health => apikey_textanalyticsclient_lros_health}/recording_documents_with_duplicate_ids.json (74%) rename sdk/textanalytics/ai-text-analytics/recordings/browsers/{api_key_textanalyticsclient_lros_health => apikey_textanalyticsclient_lros_health}/recording_entity_assertions.json (84%) rename sdk/textanalytics/ai-text-analytics/recordings/browsers/{api_key_textanalyticsclient_lros_health => apikey_textanalyticsclient_lros_health}/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.json (53%) rename sdk/textanalytics/ai-text-analytics/recordings/browsers/{api_key_textanalyticsclient_lros_health => apikey_textanalyticsclient_lros_health}/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.json (60%) create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_input_documents.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_input_strings.json rename sdk/textanalytics/ai-text-analytics/recordings/browsers/{api_key_textanalyticsclient_lros_health => apikey_textanalyticsclient_lros_health}/recording_invalid_language_hint.json (51%) rename sdk/textanalytics/ai-text-analytics/recordings/browsers/{api_key_textanalyticsclient_lros_health => apikey_textanalyticsclient_lros_health}/recording_invalid_language_hint_in_doc.json (51%) create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_operation_metadata.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.json rename sdk/textanalytics/ai-text-analytics/recordings/browsers/{api_key_textanalyticsclient_lros_health => apikey_textanalyticsclient_lros_health}/recording_output_has_the_same_order_as_input_with_out_of_order_ids.json (53%) create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_payload_too_large.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_show_stats_and_model_version.json rename sdk/textanalytics/ai-text-analytics/recordings/browsers/{api_key_textanalyticsclient_lros_health => apikey_textanalyticsclient_lros_health}/recording_some_inputs_with_errors.json (71%) rename sdk/textanalytics/ai-text-analytics/recordings/browsers/{api_key_textanalyticsclient_lros_health => apikey_textanalyticsclient_lros_health}/recording_too_many_documents.json (83%) create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.json create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.json rename sdk/textanalytics/ai-text-analytics/recordings/browsers/{api_key_textanalyticsclient_lros_health => apikey_textanalyticsclient_lros_health}/recording_whole_batch_language_hint.json (50%) create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.json delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_reports_warning_for_long_words.js delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_emoji_with_skin_tone_modifier.js delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_family_emoji.js delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_family_emoji_wit_skin_tone_modifier.js delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_korean_nfd.js delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_bad_model.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_multiple_actions_per_type_are_disallowed.js delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_statistics.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_all_documents_have_errors.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_all_inputs_with_errors.js rename sdk/textanalytics/ai-text-analytics/recordings/node/{aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_korean_nfc.js => aad_textanalyticsclient_lros_health/recording_cancelled.js} (59%) rename sdk/textanalytics/ai-text-analytics/recordings/node/{aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_diacritics_nfd.js => aad_textanalyticsclient_lros_health/recording_document_warnings.js} (50%) rename sdk/textanalytics/ai-text-analytics/recordings/node/{aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_emoji.js => aad_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.js} (68%) create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_entity_assertions.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_input_documents.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_input_strings.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_invalid_language_hint.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_operation_metadata.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_payload_too_large.js rename sdk/textanalytics/ai-text-analytics/recordings/node/{aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_zalgo.js => aad_textanalyticsclient_lros_health/recording_show_stats_and_model_version.js} (50%) create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_some_inputs_with_errors.js rename sdk/textanalytics/ai-text-analytics/recordings/node/{aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_diacritics_nfc.js => aad_textanalyticsclient_lros_health/recording_too_many_documents.js} (65%) create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_language_hint.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.js delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_fast_tests/recording_recognizeentities.js delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_fast_tests/recording_recognizelinkedentities.js delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_cancelled.js delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.js delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_input_documents.js delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_input_strings.js delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_invalid_language_hint.js delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.js delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_operation_metadata.js delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.js delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.js delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_payload_too_large.js delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_show_stats_and_model_version.js delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_too_many_documents.js delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.js delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_whole_batch_language_hint.js delete mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.js rename sdk/textanalytics/ai-text-analytics/recordings/node/{api_key_textanalyticsclient_fast_tests/recording_analyzesentiment.js => apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.js} (74%) create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.js rename sdk/textanalytics/ai-text-analytics/recordings/node/{api_key_textanalyticsclient_fast_tests/recording_detectlanguage.js => apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.js} (73%) create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.js rename sdk/textanalytics/ai-text-analytics/recordings/node/{api_key_textanalyticsclient_fast_tests/recording_extractkeyphrases.js => apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.js} (54%) create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.js rename sdk/textanalytics/ai-text-analytics/recordings/node/{api_key_textanalyticsclient_fast_tests/recording_recognizepiientities.js => apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.js} (51%) create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_wit_skin_tone_modifier.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_wit_skin_tone_modifier.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_wit_skin_tone_modifier.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_invalid_language_hint.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_malformed_actions.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_multiple_actions_per_type_are_disallowed.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_operation_metadata.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.js rename sdk/textanalytics/ai-text-analytics/recordings/node/{api_key_textanalyticsclient_lros_health => apikey_textanalyticsclient_lros_health}/recording_all_documents_have_errors.js (80%) rename sdk/textanalytics/ai-text-analytics/recordings/node/{api_key_textanalyticsclient_lros_health => apikey_textanalyticsclient_lros_health}/recording_all_inputs_with_errors.js (51%) create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_cancelled.js rename sdk/textanalytics/ai-text-analytics/recordings/node/{api_key_textanalyticsclient_lros_health => apikey_textanalyticsclient_lros_health}/recording_document_warnings.js (52%) rename sdk/textanalytics/ai-text-analytics/recordings/node/{api_key_textanalyticsclient_lros_health => apikey_textanalyticsclient_lros_health}/recording_documents_with_duplicate_ids.js (67%) rename sdk/textanalytics/ai-text-analytics/recordings/node/{api_key_textanalyticsclient_lros_health => apikey_textanalyticsclient_lros_health}/recording_entity_assertions.js (81%) rename sdk/textanalytics/ai-text-analytics/recordings/node/{api_key_textanalyticsclient_lros_health => apikey_textanalyticsclient_lros_health}/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.js (66%) create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_input_documents.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_input_strings.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_operation_metadata.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_payload_too_large.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_show_stats_and_model_version.js rename sdk/textanalytics/ai-text-analytics/recordings/node/{api_key_textanalyticsclient_lros_health => apikey_textanalyticsclient_lros_health}/recording_some_inputs_with_errors.js (70%) create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_too_many_documents.js rename sdk/textanalytics/ai-text-analytics/recordings/node/{api_key_textanalyticsclient_lros_health => apikey_textanalyticsclient_lros_health}/recording_whole_batch_empty_language_hint.js (50%) create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_language_hint.js create mode 100644 sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.js create mode 100644 sdk/textanalytics/ai-text-analytics/src/textAnalyticsAction.ts delete mode 100644 sdk/textanalytics/ai-text-analytics/test/public/apiKey.spec.ts diff --git a/sdk/textanalytics/ai-text-analytics/CHANGELOG.md b/sdk/textanalytics/ai-text-analytics/CHANGELOG.md index d1cf02fb45fa..8c854b435ea8 100644 --- a/sdk/textanalytics/ai-text-analytics/CHANGELOG.md +++ b/sdk/textanalytics/ai-text-analytics/CHANGELOG.md @@ -1,14 +1,22 @@ # Release History -## 5.1.0-beta.7 (Unreleased) +## 5.1.0 (Unreleased) + +### New Features + +- We are now targeting the service's v3.1 API as the default instead of v3.1-preview.5. ### Breaking Changes - `PiiEntityDomainType` was renamed to `PiiEntityDomain`. +- `domain` property of `RecognizePiiEntitiesAction` was renamed to `domainFilter`. +- `categoriesFilter` was added to `RecognizePiiEntitiesAction`. +- `beginAnalyzeActions` is now limited to accept up to one action only per type. ## 5.1.0-beta.6 (2021-05-18) ### New Features + - With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. - We are now targeting the service's v3.1-preview.5 API as the default instead of v3.1-preview.4. - `beginAnalyzeActions` adds support for analyze sentiment actions. diff --git a/sdk/textanalytics/ai-text-analytics/README.md b/sdk/textanalytics/ai-text-analytics/README.md index bf7f9ea7cc66..1d0a6a757c37 100644 --- a/sdk/textanalytics/ai-text-analytics/README.md +++ b/sdk/textanalytics/ai-text-analytics/README.md @@ -2,7 +2,7 @@ [Azure TextAnalytics](https://azure.microsoft.com/services/cognitive-services/text-analytics/) is a cloud-based service that provides advanced natural language processing over raw text, and includes six main functions: -**Note:** This SDK targets Azure Text Analytics service API version 3.1.0-preview.5. +**Note:** This SDK targets Azure Text Analytics service API version 3.1.0. - Language Detection - Sentiment Analysis @@ -254,10 +254,7 @@ There is a separate endpoint and operation for recognizing Personally Identifiab ```javascript const { TextAnalyticsClient, AzureKeyCredential } = require("@azure/ai-text-analytics"); -const client = new TextAnalyticsClient( - "", - new AzureKeyCredential("") -); +const client = new TextAnalyticsClient("", new AzureKeyCredential("")); const documents = [ "The employee's SSN is 555-55-5555.", "The employee's phone number is (555) 555-5555." @@ -501,11 +498,6 @@ async function main() { main(); ``` -## Known Issues - -- `beginAnalyzeHealthcareEntities` is still in gated preview and can not be used with AAD credentials. For more information, see [the Text Analytics for Health documentation](https://docs.microsoft.com/azure/cognitive-services/text-analytics/how-tos/text-analytics-for-health?tabs=ner#request-access-to-the-public-preview). -- At time of this SDK release, the `modelVersion` option to `beginAnalyzeHealthcareEntities` is ignored by the service. The service always processes the operation using the "latest" model. - ## Troubleshooting ### Logging diff --git a/sdk/textanalytics/ai-text-analytics/package.json b/sdk/textanalytics/ai-text-analytics/package.json index fdde9c063cb0..342ad3327875 100644 --- a/sdk/textanalytics/ai-text-analytics/package.json +++ b/sdk/textanalytics/ai-text-analytics/package.json @@ -3,7 +3,7 @@ "sdk-type": "client", "author": "Microsoft Corporation", "description": "An isomorphic client library for the Azure Text Analytics service.", - "version": "5.1.0-beta.7", + "version": "5.1.0", "keywords": [ "node", "azure", @@ -104,6 +104,7 @@ "@azure/dev-tool": "^1.0.0", "@azure/eslint-plugin-azure-sdk": "^3.0.0", "@azure/identity": "2.0.0-beta.3", + "@azure/test-utils": "^1.0.0", "@azure/test-utils-recorder": "^1.0.0", "@microsoft/api-extractor": "7.7.11", "@types/chai": "^4.1.6", diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.json index da1fc30bc3f8..3f22b257b941 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:09 GMT", + "date": "Fri, 25 Jun 2021 19:57:41 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,13 +20,13 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - WUS2 ProdSlices", - "x-ms-request-id": "1f623800-874c-4277-b16b-879a23c1be00" + "x-ms-ests-server": "2.1.11829.9 - WUS2 ProdSlices", + "x-ms-request-id": "eab54377-ea4c-4e0d-a5d6-ad798fd76500" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/sentiment", + "url": "https://endpoint//text/analytics/v3.1/sentiment", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -34,14 +34,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": "147d01a5-cc56-4430-9ac1-a7cd939fcfb5", + "apim-request-id": "5695811c-e8d5-46c5-8fb2-07499b55e105", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Wed, 12 May 2021 19:17:09 GMT", + "date": "Fri, 25 Jun 2021 19:57:43 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "153" + "x-envoy-upstream-service-time": "113" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "e3ba6312c7614d41fea02a1f23870ef2" + "hash": "8b01993817087370bb908d9a38a4c2e3" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.json index 9d8428e05f1a..f3ff087c6798 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:10 GMT", + "date": "Fri, 25 Jun 2021 19:57:43 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,13 +20,13 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - NCUS ProdSlices", - "x-ms-request-id": "4e081bcf-0a12-4b10-9110-b01a8ec85600" + "x-ms-ests-server": "2.1.11829.9 - NCUS ProdSlices", + "x-ms-request-id": "ce29a862-fba0-489c-90cf-00cc78b55e00" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/sentiment", + "url": "https://endpoint//text/analytics/v3.1/sentiment", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -34,14 +34,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": "e2451264-7b80-47be-8f1c-a46167ec710d", + "apim-request-id": "91477d3b-3b5e-47b2-8d97-d8dd014c9d91", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Wed, 12 May 2021 19:17:09 GMT", + "date": "Fri, 25 Jun 2021 19:57:43 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "92" + "x-envoy-upstream-service-time": "130" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "71b9430ebec3e1020001ed45da5447c0" + "hash": "4b8d21704d9ca84d28e03111e415243b" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.json index fc0a9aa64212..6ed461a89e01 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:19 GMT", + "date": "Fri, 25 Jun 2021 19:57:49 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,13 +20,13 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - WUS2 ProdSlices", - "x-ms-request-id": "0c969697-c15c-4290-963c-8600d8c0c900" + "x-ms-ests-server": "2.1.11829.9 - WUS2 ProdSlices", + "x-ms-request-id": "28812791-b9ec-449e-b425-0faaff715c00" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/sentiment", + "url": "https://endpoint//text/analytics/v3.1/sentiment", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -34,14 +34,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": "828f5ed0-e745-4175-b712-a82c0bc5ebb6", + "apim-request-id": "fb214bf8-8c2b-478b-9180-724184162f35", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", - "date": "Wed, 12 May 2021 19:17:24 GMT", + "date": "Fri, 25 Jun 2021 19:57:50 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5241" + "x-envoy-upstream-service-time": "105" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "990aac00ab881b1c7a85978fdb99f65d" + "hash": "00180065469789c0a8b259a0b5727975" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.json index b1f6f7edf130..7211ce07f193 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:27 GMT", + "date": "Fri, 25 Jun 2021 19:57:55 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,13 +20,13 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - WUS2 ProdSlices", - "x-ms-request-id": "e7a67084-aa52-4720-8c70-d750ee69d500" + "x-ms-ests-server": "2.1.11829.9 - NCUS ProdSlices", + "x-ms-request-id": "ce29a862-fba0-489c-90cf-00cc97b75e00" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/sentiment", + "url": "https://endpoint//text/analytics/v3.1/sentiment", "query": { "stringIndexType": "Utf16CodeUnit", "opinionMining": "true" @@ -35,14 +35,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\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":4,\"length\":4,\"text\":\"food\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":13,\"length\":7,\"text\":\"service\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"}]}],\"assessments\":[{\"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": "e81a59b1-54d9-42a8-872d-07a2438ecc32", + "apim-request-id": "0d56640b-ed1b-406b-ac46-6ef6956b5dde", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:17:27 GMT", + "date": "Fri, 25 Jun 2021 19:57:55 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "83" + "x-envoy-upstream-service-time": "89" } } ], @@ -50,5 +50,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "03c419627e70ce2bb4389ebeb7bef24b" + "hash": "a8f83bf62f937724c49fbdc52c92cd01" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.json index f526bfde808d..471fc4421260 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:27 GMT", + "date": "Fri, 25 Jun 2021 19:57:55 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,13 +20,13 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - EUS ProdSlices", - "x-ms-request-id": "066edeb7-a09f-4303-a4a3-ddc362ea5500" + "x-ms-ests-server": "2.1.11829.9 - NCUS ProdSlices", + "x-ms-request-id": "995fb27d-f6fa-4b35-ab9d-b2712cf05e00" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/sentiment", + "url": "https://endpoint//text/analytics/v3.1/sentiment", "query": { "stringIndexType": "Utf16CodeUnit", "opinionMining": "true" @@ -35,14 +35,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\",\"targets\":[],\"assessments\":[]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}", "responseHeaders": { - "apim-request-id": "642ec648-45ad-4eca-be73-146253a2e5f2", + "apim-request-id": "1bb84374-cf18-4e5d-af6e-352c8ec5b2ad", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:17:30 GMT", + "date": "Fri, 25 Jun 2021 19:57:56 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2566" + "x-envoy-upstream-service-time": "121" } } ], @@ -50,5 +50,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "ec581b478d23d80891b369a0702019cc" + "hash": "4a32b51201e582791f5a784bb39eb256" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.json index 30d831db1db0..e437d42b23d1 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:24 GMT", + "date": "Fri, 25 Jun 2021 19:57:49 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,13 +20,13 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - EUS ProdSlices", - "x-ms-request-id": "743b3b92-2f52-481c-a716-8c78fa365200" + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "84bdf8e2-d00d-4332-9ea9-2d5e593b7900" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/sentiment", + "url": "https://endpoint//text/analytics/v3.1/sentiment", "query": { "stringIndexType": "Utf16CodeUnit", "opinionMining": "true" @@ -35,14 +35,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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":32,\"length\":6,\"text\":\"design\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/1\"}]}],\"assessments\":[{\"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": "57600586-fa03-44d2-aae6-291835103104", + "apim-request-id": "82b59c3c-a540-4f87-9183-aefda3859b34", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:17:27 GMT", + "date": "Fri, 25 Jun 2021 19:57:55 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2570" + "x-envoy-upstream-service-time": "5061" } } ], @@ -50,5 +50,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "7f8fe441996deb94b9b104a350a800f0" + "hash": "aec5e48e164c2a8b36c1b91efb4e6a75" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.json index 7d870844f876..bba3bd417dfe 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.json @@ -4,5 +4,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "eff365e44534c46b3f7c9212114d80f5" + "hash": "cabbc96937b89ec2ffef29ca710c8540" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.json index c6ccb0fa7023..bc7f907927ed 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:10 GMT", + "date": "Fri, 25 Jun 2021 19:57:43 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,13 +20,13 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - WUS2 ProdSlices", - "x-ms-request-id": "e7a67084-aa52-4720-8c70-d750cf67d500" + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "84bdf8e2-d00d-4332-9ea9-2d5e123a7900" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/sentiment", + "url": "https://endpoint//text/analytics/v3.1/sentiment", "query": { "stringIndexType": "Utf16CodeUnit", "opinionMining": "true" @@ -35,14 +35,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\":25,\"text\":\"The food was unacceptable\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":4,\"length\":4,\"text\":\"food\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/0/assessments/0\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":30,\"length\":2,\"text\":\"AC\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/1/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/1/assessments/1\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/2/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":32,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/2/sentences/0/assessments/1\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":11,\"length\":5,\"text\":\"hotel\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/0\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":24,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/1\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":41,\"length\":15,\"text\":\"shuttle service\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/2\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":65,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/1\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/3\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/2\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.97,\"negative\":0.03},\"offset\":27,\"length\":4,\"text\":\"view\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/4/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/4/sentences/0/assessments/1\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":5,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/5/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":15,\"length\":9,\"text\":\"bathrooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/5/sentences/0/assessments/1\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":42,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/5/sentences/0/assessments/2\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":4,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/6/sentences/0/assessments/0\"}]}],\"assessments\":[{\"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": "964c6cde-692b-4b11-9e66-6380cf897d17", + "apim-request-id": "70bbaf62-d670-4ed7-bda2-2cbd080d2435", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=7,CognitiveServices.TextAnalytics.TextRecords=7", - "date": "Wed, 12 May 2021 19:17:18 GMT", + "date": "Fri, 25 Jun 2021 19:57:49 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7647" + "x-envoy-upstream-service-time": "5068" } } ], @@ -50,5 +50,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "9e4b6a5234aaae7e39f623eb89e91ec2" + "hash": "40f144d24f3fb5c645999a2c78b3953e" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.json index 14858a0713fd..abd6b944089b 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:18 GMT", + "date": "Fri, 25 Jun 2021 19:57:49 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,13 +20,13 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - EUS ProdSlices", - "x-ms-request-id": "066edeb7-a09f-4303-a4a3-ddc306e95500" + "x-ms-ests-server": "2.1.11829.9 - WUS2 ProdSlices", + "x-ms-request-id": "57418012-2503-4660-964d-7a7e15236400" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/sentiment", + "url": "https://endpoint//text/analytics/v3.1/sentiment", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -34,14 +34,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": "5141f81a-fee8-44ff-8978-8b49700c1eaa", + "apim-request-id": "ed3c384c-1d6b-41a4-8443-1a6c791f6477", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Wed, 12 May 2021 19:17:18 GMT", + "date": "Fri, 25 Jun 2021 19:57:49 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "132" + "x-envoy-upstream-service-time": "176" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "0d6754a184f1407d3afcc80ff5e02d74" + "hash": "e151e8485409be49c4aed9e1e27f646b" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.json index bf7440ebd1c3..05873c037d4c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:10 GMT", + "date": "Fri, 25 Jun 2021 19:57:43 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,13 +20,13 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - WUS2 ProdSlices", - "x-ms-request-id": "0c969697-c15c-4290-963c-8600afbfc900" + "x-ms-ests-server": "2.1.11829.9 - NCUS ProdSlices", + "x-ms-request-id": "95dd752c-c66f-48d3-96a0-2af2f39a5e00" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/sentiment", + "url": "https://endpoint//text/analytics/v3.1/sentiment", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -34,13 +34,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,hi,it,ja,ko,nl,no,pt-BR,pt-PT,tr,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=sentiment-analysis\"}}}],\"modelVersion\":\"2020-04-01\"}", "responseHeaders": { - "apim-request-id": "e4bf4260-241b-445a-867a-804099d0d6a9", + "apim-request-id": "43379161-88b7-41b5-9ad9-f5a01d50a2ab", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:10 GMT", + "date": "Fri, 25 Jun 2021 19:57:44 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "3" + "x-envoy-upstream-service-time": "4" } } ], @@ -48,5 +48,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "f02a808463021dc94de203913bc4a53d" + "hash": "95dc0a75a7e111778cfbf0de50a24cb0" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.json index 1335f4bec07d..c26260d5a3a1 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:30 GMT", + "date": "Fri, 25 Jun 2021 19:57:56 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,26 +20,26 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - NCUS ProdSlices", - "x-ms-request-id": "4e081bcf-0a12-4b10-9110-b01aaecb5600" + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "a8469818-98d5-4f27-9e2b-efa517027700" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/languages", + "url": "https://endpoint//text/analytics/v3.1/languages", "query": {}, "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"impossible\",\"countryHint\":\"fr\"}]}", "status": 200, "response": "{\"documents\":[{\"id\":\"0\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":0.58},\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-05\"}", "responseHeaders": { - "apim-request-id": "016b7975-bb04-427a-833e-01ec3bdadca0", + "apim-request-id": "0b795b3a-18f8-4d38-8e19-f047bab29316", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:17:30 GMT", + "date": "Fri, 25 Jun 2021 19:57:56 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": "7" } } ], @@ -47,5 +47,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "25109d71d73c0f05dc15914aff19dd86" + "hash": "1c00e733f3426ca4c2ad539a5e61d689" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.json index 4910c280004a..534bb3caf27f 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:31 GMT", + "date": "Fri, 25 Jun 2021 19:57:57 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,26 +20,26 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - WUS2 ProdSlices", - "x-ms-request-id": "cd27eebe-0298-4850-834e-c0d8124bb600" + "x-ms-ests-server": "2.1.11829.9 - NCUS ProdSlices", + "x-ms-request-id": "95dd752c-c66f-48d3-96a0-2af2669c5e00" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/languages", + "url": "https://endpoint//text/analytics/v3.1/languages", "query": {}, "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\"},{\"id\":\"4\",\"text\":\"I didn't like the last book I read at all.\"},{\"id\":\"5\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"countryHint\":\"mx\"},{\"id\":\"6\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"countryHint\":\"mx\"}]}", "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\":0.99},\"warnings\":[]},{\"id\":\"6\",\"detectedLanguage\":{\"name\":\"Spanish\",\"iso6391Name\":\"es\",\"confidenceScore\":1.0},\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-05\"}", "responseHeaders": { - "apim-request-id": "f7e0e67f-8f13-4ab3-802d-996c98a50786", + "apim-request-id": "e450af8d-8327-4ef6-a2dc-564e6d58fa02", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", - "date": "Wed, 12 May 2021 19:17:34 GMT", + "date": "Fri, 25 Jun 2021 19:57:57 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2517" + "x-envoy-upstream-service-time": "12" } } ], @@ -47,5 +47,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "659e28ad17d34ae2a24c337cbb95d77c" + "hash": "fe64a916306e48562569c99a6f167f98" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.json index 6daa6b1f560b..a595929324a4 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.json @@ -11,31 +11,31 @@ "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Tue, 25 May 2021 18:02:10 GMT", + "date": "Fri, 25 Jun 2021 19:57:56 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11774.11 - EUS ProdSlices", - "x-ms-request-id": "045dea54-c661-4319-ae91-fbadabfc2000" + "x-ms-ests-server": "2.1.11829.9 - SCUS ProdSlices", + "x-ms-request-id": "6193c514-d6a6-4dcd-bb2f-f9fc8dda7700" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/languages", + "url": "https://endpoint//text/analytics/v3.1/languages", "query": {}, "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"countryHint\":\"us\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"countryHint\":\"us\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"countryHint\":\"us\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"countryHint\":\"us\"}]}", "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\":\"2021-01-05\"}", "responseHeaders": { - "apim-request-id": "a60e0845-43a4-43ad-b678-45361eed896c", + "apim-request-id": "e6ed8025-8018-463c-8d75-6551cf8ca684", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Tue, 25 May 2021 18:02:12 GMT", + "date": "Fri, 25 Jun 2021 19:57:56 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -47,5 +47,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "4ec7d553e30c3fb01b69536e0536c46a" + "hash": "cf45d28b6431c9dcf6e5585c883eeed6" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.json index 5f568123a320..d4e7a55a61e8 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:31 GMT", + "date": "Fri, 25 Jun 2021 19:57:56 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,26 +20,26 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - SCUS ProdSlices", - "x-ms-request-id": "37cbc159-7924-4f74-bcb8-8ca181a85900" + "x-ms-ests-server": "2.1.11829.9 - SCUS ProdSlices", + "x-ms-request-id": "b10314ef-1e76-4785-9505-f5445ec77000" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/languages", + "url": "https://endpoint//text/analytics/v3.1/languages", "query": {}, "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"countryHint\":\"\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"countryHint\":\"\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"countryHint\":\"\"},{\"id\":\"4\",\"text\":\"I didn't like the last book I read at all.\",\"countryHint\":\"\"},{\"id\":\"5\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"countryHint\":\"\"},{\"id\":\"6\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"countryHint\":\"\"}]}", "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\":0.99},\"warnings\":[]},{\"id\":\"6\",\"detectedLanguage\":{\"name\":\"Spanish\",\"iso6391Name\":\"es\",\"confidenceScore\":1.0},\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-05\"}", "responseHeaders": { - "apim-request-id": "50671b5c-16a5-49be-8a69-bf18ba5631b6", + "apim-request-id": "1d574583-7012-4519-a48a-2b8a7997ed29", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", - "date": "Wed, 12 May 2021 19:17:31 GMT", + "date": "Fri, 25 Jun 2021 19:57:57 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "8" } } ], @@ -47,5 +47,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "10188c9d9d003d42ab9a343fc0638a75" + "hash": "07a89b99a0d5d9f650d0b29b95719c66" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.json index af26542cfa4c..ce1fc56669be 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:30 GMT", + "date": "Fri, 25 Jun 2021 19:57:56 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,26 +20,26 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - WUS2 ProdSlices", - "x-ms-request-id": "50b07056-565c-44fe-b146-9951de83af00" + "x-ms-ests-server": "2.1.11829.9 - SCUS ProdSlices", + "x-ms-request-id": "b10314ef-1e76-4785-9505-f5444bc77000" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/languages", + "url": "https://endpoint//text/analytics/v3.1/languages", "query": {}, "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I use Azure Functions to develop my service.\",\"countryHint\":\"\"}]}", "status": 200, "response": "{\"documents\":[{\"id\":\"0\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":0.95},\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-05\"}", "responseHeaders": { - "apim-request-id": "8ee96e3b-64e8-4763-a40b-6f7feb07a205", + "apim-request-id": "ae744218-da53-4c35-88a3-95aae7646b4d", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:17:31 GMT", + "date": "Fri, 25 Jun 2021 19:57:56 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "6" } } ], @@ -47,5 +47,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "05b5233a70e3a35d13008dcf4e6549c2" + "hash": "1e4ad2fbcfb9705b49f259dce5dd663f" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.json index 03a81aa3f71d..f837cfbc7c5b 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.json @@ -4,5 +4,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "9589de94b5be540b968d2122e13ebc4b" + "hash": "7a76e1e1e89f55f4e595e2fbaeab47ee" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.json index aaab459acd31..ae4328d0da58 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:31 GMT", + "date": "Fri, 25 Jun 2021 19:57:57 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,25 +20,25 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - EUS ProdSlices", - "x-ms-request-id": "743b3b92-2f52-481c-a716-8c7802385200" + "x-ms-ests-server": "2.1.11829.9 - NCUS ProdSlices", + "x-ms-request-id": "10121119-4aa0-420a-a503-c541cad65d00" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/languages", + "url": "https://endpoint//text/analytics/v3.1/languages", "query": {}, "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"hello\",\"countryHint\":\"invalidcountry\"}]}", "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\":\"2021-01-05\"}", "responseHeaders": { - "apim-request-id": "ab5434a8-bde1-4c98-ba83-6fa9a4bbf6a2", + "apim-request-id": "77d78523-7cf7-4272-8bd0-455f1d8b569a", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:31 GMT", + "date": "Fri, 25 Jun 2021 19:57:57 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" } } ], @@ -46,5 +46,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "44ef5d8619b1a3b1f5260bd5ebace8d5" + "hash": "47fb39e4d90d4d4f6b254f5b853c7a94" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.json index 1a4c7a6a548f..76f8a1390d5c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:46 GMT", + "date": "Fri, 25 Jun 2021 19:58:17 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,26 +20,26 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - SCUS ProdSlices", - "x-ms-request-id": "c53ac30c-0f0c-44df-8647-6ebb22ec5800" + "x-ms-ests-server": "2.1.11829.9 - SCUS ProdSlices", + "x-ms-request-id": "e0b3e3aa-321c-4078-9fcf-b7627ac27000" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/keyPhrases", + "url": "https://endpoint//text/analytics/v3.1/keyPhrases", "query": {}, "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"language\":\"es\"},{\"id\":\"6\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"language\":\"es\"}]}", "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\"}", + "response": "{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"wonderful trip\",\"Space Needle\",\"Seattle\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"entire trip\",\"Seattle\",\"Space\",\"Needle\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"movie\",\"Saturday\"],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[\"last book\"],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[\"Los\",\"caminos\",\"Monte\",\"Rainier\"],\"warnings\":[]},{\"id\":\"6\",\"keyPhrases\":[\"mucho tráfico\",\"carretera\",\"ayer\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", "responseHeaders": { - "apim-request-id": "64362b34-699c-4354-b561-973e962a9af7", + "apim-request-id": "790be618-70a9-4f12-99c8-a8a957ebfc26", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", - "date": "Wed, 12 May 2021 19:17:46 GMT", + "date": "Fri, 25 Jun 2021 19:58:17 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "25" } } ], @@ -47,5 +47,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "5b8ceb69c9f9f5f56aa9a2ea9b7290bd" + "hash": "b1fef77e495c77fd0f24ac797998e7cd" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.json index ad825988e0b6..b4eb28fa5a3e 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:45 GMT", + "date": "Fri, 25 Jun 2021 19:58:16 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,26 +20,26 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - NCUS ProdSlices", - "x-ms-request-id": "5c46cd0a-304b-4f9b-a5f1-199c98635100" + "x-ms-ests-server": "2.1.11829.9 - NCUS ProdSlices", + "x-ms-request-id": "95dd752c-c66f-48d3-96a0-2af2299f5e00" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/keyPhrases", + "url": "https://endpoint//text/analytics/v3.1/keyPhrases", "query": {}, "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", "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\"}", + "response": "{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"wonderful trip\",\"Space Needle\",\"Seattle\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"entire trip\",\"Seattle\",\"Space\",\"Needle\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"movie\",\"Saturday\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"last book\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", "responseHeaders": { - "apim-request-id": "1f9deed6-f308-43aa-b8ac-db0d363ae88e", + "apim-request-id": "a316ba0c-9c7d-4287-9f67-6de53458579b", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Wed, 12 May 2021 19:17:45 GMT", + "date": "Fri, 25 Jun 2021 19:58:17 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "44" } } ], @@ -47,5 +47,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "90c8316976a142beaba677cb17157194" + "hash": "87d3297b8831a7187e4fc0b3fbb0c461" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.json index 034f9832994f..1addf950f55c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:45 GMT", + "date": "Fri, 25 Jun 2021 19:58:16 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,26 +20,26 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - EUS ProdSlices", - "x-ms-request-id": "743b3b92-2f52-481c-a716-8c78023a5200" + "x-ms-ests-server": "2.1.11829.9 - WUS2 ProdSlices", + "x-ms-request-id": "28812791-b9ec-449e-b425-0faa84755c00" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/keyPhrases", + "url": "https://endpoint//text/analytics/v3.1/keyPhrases", "query": {}, "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", "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\"}", + "response": "{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"wonderful trip\",\"Space Needle\",\"Seattle\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"entire trip\",\"Seattle\",\"Space\",\"Needle\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"movie\",\"Saturday\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"last book\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", "responseHeaders": { - "apim-request-id": "be10aa8e-9ab7-4a4d-9c62-864b3e329b3c", + "apim-request-id": "2cbd9c1c-b12d-48cd-830c-6083b1a20c6d", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Wed, 12 May 2021 19:17:45 GMT", + "date": "Fri, 25 Jun 2021 19:58:17 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": "43" } } ], @@ -47,5 +47,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "5bbcd76d9b3268248461d2db74409783" + "hash": "0615d3d4c4fd132428e37ddec4e40fdd" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.json index 820fc0f61169..0936c6c18e4e 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.json @@ -4,5 +4,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "b0d085bdbb39e5970bad6f7dbfc09cf2" + "hash": "e3619dd2bea2cc5858c29bf862efe4bd" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.json index 359d20bd7b6e..69d8291cc163 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:45 GMT", + "date": "Fri, 25 Jun 2021 19:58:17 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,21 +20,21 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - NCUS ProdSlices", - "x-ms-request-id": "c1e705ec-3912-4743-ac25-e105ff104e00" + "x-ms-ests-server": "2.1.11829.9 - WUS2 ProdSlices", + "x-ms-request-id": "9c2a0045-784c-4338-a06a-102070796100" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/keyPhrases", + "url": "https://endpoint//text/analytics/v3.1/keyPhrases", "query": {}, "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"This is some text, but it doesn't matter.\",\"language\":\"notalanguage\"}]}", "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. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2020-07-01\"}", + "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,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2021-06-01\"}", "responseHeaders": { - "apim-request-id": "fcebb877-73cd-4f7f-84ed-201cfa749287", + "apim-request-id": "8ec60d13-7cda-4dd2-a7b0-2faa03d2f65c", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:45 GMT", + "date": "Fri, 25 Jun 2021 19:58:17 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -46,5 +46,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "e8bf57f5c5efbc0525d2949aa0ff1bb7" + "hash": "7a23f594562b7234b10430b3185b9a05" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_reports_warning_for_long_words.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_reports_warning_for_long_words.json deleted file mode 100644 index 219d4cc617df..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_reports_warning_for_long_words.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:45 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - WUS2 ProdSlices", - "x-ms-request-id": "cd27eebe-0298-4850-834e-c0d8d94cb600" - } - }, - { - "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/keyPhrases", - "query": {}, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"Hello world, thisisanextremelymassivesequenceoflettersthatislongerthansixtyfourcharacters.\",\"language\":\"en\"}]}", - "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": "0f99bde8-4ba9-4a24-8695-050270e4e708", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:17:45 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "13" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "ce5280121703e04a53b08a00ab4390bd" -} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.json index 491a938ef889..de798bd7ff56 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:39 GMT", + "date": "Fri, 25 Jun 2021 19:58:08 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,28 +20,28 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - NCUS ProdSlices", - "x-ms-request-id": "c1e705ec-3912-4743-ac25-e10553104e00" + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "a7490fb9-b183-45a5-a7bb-68e65cac7a00" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/general", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/general", "query": { "stringIndexType": "Utf16CodeUnit" }, "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"language\":\"es\"},{\"id\":\"5\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"language\":\"es\"}]}", "status": 200, - "response": "{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":26,\"length\":7,\"confidenceScore\":0.98},{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8},{\"text\":\"Space Needle\",\"category\":\"Location\",\"offset\":65,\"length\":12,\"confidenceScore\":0.73},{\"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.99}],\"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.92}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"text\":\"carretera\",\"category\":\"Location\",\"offset\":3,\"length\":9,\"confidenceScore\":0.68},{\"text\":\"ayer\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":60,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "response": "{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"trip\",\"category\":\"Event\",\"offset\":18,\"length\":4,\"confidenceScore\":0.65},{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":26,\"length\":7,\"confidenceScore\":1.0},{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8},{\"text\":\"Space Needle\",\"category\":\"Location\",\"offset\":65,\"length\":12,\"confidenceScore\":0.95},{\"text\":\"2\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":78,\"length\":1,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"trip\",\"category\":\"Event\",\"offset\":42,\"length\":4,\"confidenceScore\":0.79},{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":50,\"length\":7,\"confidenceScore\":1.0},{\"text\":\"Space Needle\",\"category\":\"Location\",\"offset\":90,\"length\":12,\"confidenceScore\":0.94}],\"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.74}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"text\":\"carretera\",\"category\":\"Location\",\"offset\":3,\"length\":9,\"confidenceScore\":0.84},{\"text\":\"ayer\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":60,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", "responseHeaders": { - "apim-request-id": "ea57cb93-b4e3-4fd8-b6fd-ceafb311599a", + "apim-request-id": "cc4b5e18-1939-4239-a3dd-3320121afcdf", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", - "date": "Wed, 12 May 2021 19:17:44 GMT", + "date": "Fri, 25 Jun 2021 19:58:16 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5050" + "x-envoy-upstream-service-time": "7573" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "7bd1ad8cb0900d84bddc4d4ff15b70d8" + "hash": "7c7eca1ef4566913e8eabad160d2de95" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.json index e33851bd1316..27173ab7dda7 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:37 GMT", + "date": "Fri, 25 Jun 2021 19:58:00 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,28 +20,28 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - WUS2 ProdSlices", - "x-ms-request-id": "e7a67084-aa52-4720-8c70-d7505d6bd500" + "x-ms-ests-server": "2.1.11829.9 - SCUS ProdSlices", + "x-ms-request-id": "6193c514-d6a6-4dcd-bb2f-f9fc95db7700" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/general", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/general", "query": { "stringIndexType": "Utf16CodeUnit" }, "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"entities\":[{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":26,\"length\":7,\"confidenceScore\":0.98},{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8},{\"text\":\"Space Needle\",\"category\":\"Location\",\"offset\":65,\"length\":12,\"confidenceScore\":0.73},{\"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.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Saturday\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":25,\"length\":8,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"book\",\"category\":\"Product\",\"offset\":23,\"length\":4,\"confidenceScore\":0.6}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "response": "{\"documents\":[{\"id\":\"0\",\"entities\":[{\"text\":\"trip\",\"category\":\"Event\",\"offset\":18,\"length\":4,\"confidenceScore\":0.65},{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":26,\"length\":7,\"confidenceScore\":1.0},{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8},{\"text\":\"Space Needle\",\"category\":\"Location\",\"offset\":65,\"length\":12,\"confidenceScore\":0.95},{\"text\":\"2\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":78,\"length\":1,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"trip\",\"category\":\"Event\",\"offset\":42,\"length\":4,\"confidenceScore\":0.79},{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":50,\"length\":7,\"confidenceScore\":1.0},{\"text\":\"Space Needle\",\"category\":\"Location\",\"offset\":90,\"length\":12,\"confidenceScore\":0.94}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Saturday\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":25,\"length\":8,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"book\",\"category\":\"Product\",\"offset\":23,\"length\":4,\"confidenceScore\":0.93}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", "responseHeaders": { - "apim-request-id": "3a61935b-20f4-461a-ae0e-924a1aacc64f", + "apim-request-id": "f8dcdb52-31c6-4bf0-a571-dd3cb8d4ca64", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Wed, 12 May 2021 19:17:39 GMT", + "date": "Fri, 25 Jun 2021 19:58:08 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2588" + "x-envoy-upstream-service-time": "7552" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "f40d7720f844e58dbb0f1f095e13410a" + "hash": "483ba314d4233192906e80e6e7456301" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.json index c5be722dd3fd..105ca02a87bf 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:34 GMT", + "date": "Fri, 25 Jun 2021 19:57:57 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,28 +20,28 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - NCUS ProdSlices", - "x-ms-request-id": "5c46cd0a-304b-4f9b-a5f1-199ce4615100" + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "bc6f6286-ef1f-41cd-a185-ef7461a47400" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/general", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/general", "query": { "stringIndexType": "Utf16CodeUnit" }, "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"entities\":[{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":26,\"length\":7,\"confidenceScore\":0.98},{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8},{\"text\":\"Space Needle\",\"category\":\"Location\",\"offset\":65,\"length\":12,\"confidenceScore\":0.73},{\"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.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Saturday\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":25,\"length\":8,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"book\",\"category\":\"Product\",\"offset\":23,\"length\":4,\"confidenceScore\":0.6}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "response": "{\"documents\":[{\"id\":\"0\",\"entities\":[{\"text\":\"trip\",\"category\":\"Event\",\"offset\":18,\"length\":4,\"confidenceScore\":0.65},{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":26,\"length\":7,\"confidenceScore\":1.0},{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8},{\"text\":\"Space Needle\",\"category\":\"Location\",\"offset\":65,\"length\":12,\"confidenceScore\":0.95},{\"text\":\"2\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":78,\"length\":1,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"trip\",\"category\":\"Event\",\"offset\":42,\"length\":4,\"confidenceScore\":0.79},{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":50,\"length\":7,\"confidenceScore\":1.0},{\"text\":\"Space Needle\",\"category\":\"Location\",\"offset\":90,\"length\":12,\"confidenceScore\":0.94}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Saturday\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":25,\"length\":8,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"book\",\"category\":\"Product\",\"offset\":23,\"length\":4,\"confidenceScore\":0.93}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", "responseHeaders": { - "apim-request-id": "30006388-27be-46b7-8893-5bc513925951", + "apim-request-id": "e74c23b3-675f-422c-86ee-be0f8e185b37", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Wed, 12 May 2021 19:17:36 GMT", + "date": "Fri, 25 Jun 2021 19:58:00 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2569" + "x-envoy-upstream-service-time": "2535" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "13433d758be6f5dcaa12d5dcbbb124be" + "hash": "ba84ff7f5448122a1514c4eb618c81eb" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.json index dcb42d33174c..7e679a1d34e1 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:45 GMT", + "date": "Fri, 25 Jun 2021 19:58:16 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,13 +20,13 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - EUS ProdSlices", - "x-ms-request-id": "066edeb7-a09f-4303-a4a3-ddc31bed5500" + "x-ms-ests-server": "2.1.11829.9 - WUS2 ProdSlices", + "x-ms-request-id": "9c2a0045-784c-4338-a06a-102045796100" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/general", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/general", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -34,13 +34,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": "14074b71-0b4f-4e01-b5a0-618ca8e06bab", + "apim-request-id": "e4cfcb64-215f-4a7f-a62b-b60ebc366152", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:45 GMT", + "date": "Fri, 25 Jun 2021 19:58:16 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "6" } } ], @@ -48,5 +48,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "dec5f2270e2809632da7f047a5e78b96" + "hash": "7de71703965569a57d9c84d5ae95763a" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.json index 5e7b336b98ae..678b6ed2704e 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.json @@ -4,5 +4,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "e6093cdf877f26bd4356af2f881aab9a" + "hash": "aa30e0a7c5dbe20f0e0c7ccd6c0fb095" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.json index b404f225553c..eb590192cbd4 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:39 GMT", + "date": "Fri, 25 Jun 2021 19:58:08 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,27 +20,27 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - WUS2 ProdSlices", - "x-ms-request-id": "cd27eebe-0298-4850-834e-c0d8134cb600" + "x-ms-ests-server": "2.1.11829.9 - NCUS ProdSlices", + "x-ms-request-id": "5d80b8a6-644e-4556-a2b6-4c9b407d5a00" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/general", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/general", "query": { "stringIndexType": "Utf16CodeUnit" }, "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"This is some text, but it doesn't matter.\",\"language\":\"notalanguage\"}]}", "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. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}", + "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. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}", "responseHeaders": { - "apim-request-id": "45b37465-c608-4313-821b-5739c72206e4", + "apim-request-id": "8354fc24-10c5-4568-8e69-e5ff589198fc", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:39 GMT", + "date": "Fri, 25 Jun 2021 19:58:09 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "3" + "x-envoy-upstream-service-time": "2" } } ], @@ -48,5 +48,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "1646453cc4dc7b8f27ac9b5b6dec776a" + "hash": "93d3c5553b3c71f204cb6844585dc315" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.json index cc528957147e..b1af5f58aa22 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:07 GMT", + "date": "Fri, 25 Jun 2021 19:58:36 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,28 +20,28 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - WUS2 ProdSlices", - "x-ms-request-id": "cd27eebe-0298-4850-834e-c0d8bc4fb600" + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "a7490fb9-b183-45a5-a7bb-68e63fb27a00" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/linking", + "url": "https://endpoint//text/analytics/v3.1/entities/linking", "query": { "stringIndexType": "Utf16CodeUnit" }, "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"language\":\"es\"},{\"id\":\"5\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"language\":\"es\"}]}", "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\"}", + "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\":\"2021-06-01\"}", "responseHeaders": { - "apim-request-id": "62ad912a-8365-40ac-844d-00393150c74b", + "apim-request-id": "cef16080-6657-45fb-b4b7-7c7d20705ad0", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", - "date": "Wed, 12 May 2021 19:18:10 GMT", + "date": "Fri, 25 Jun 2021 19:58:36 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "3263" + "x-envoy-upstream-service-time": "34" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "3031963f9a5ba5ff46fee6a8b20f9b12" + "hash": "e409ba5d8d13f9e12d9f5e0ea02b9921" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.json index 72057ddddd69..b9165b00aef8 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:06 GMT", + "date": "Fri, 25 Jun 2021 19:58:35 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,28 +20,28 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - WUS2 ProdSlices", - "x-ms-request-id": "cd27eebe-0298-4850-834e-c0d8a64fb600" + "x-ms-ests-server": "2.1.11829.9 - SCUS ProdSlices", + "x-ms-request-id": "b10314ef-1e76-4785-9505-f54424cf7000" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/linking", + "url": "https://endpoint//text/analytics/v3.1/entities/linking", "query": { "stringIndexType": "Utf16CodeUnit" }, "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", "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\"}", + "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\":\"2021-06-01\"}", "responseHeaders": { - "apim-request-id": "cf8125fe-5cd3-4d3c-9041-feca77533633", + "apim-request-id": "9c62d68d-2a2d-4a91-982b-1080b9370b93", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Wed, 12 May 2021 19:18:06 GMT", + "date": "Fri, 25 Jun 2021 19:58:36 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "168" + "x-envoy-upstream-service-time": "16" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "defbef8db3d22f0ecf8428b4d248c57f" + "hash": "4f0d5d390bc38c36eaf5bdaaa4349e83" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.json index 384e41fba8ef..9423c8f1dbf8 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:58 GMT", + "date": "Fri, 25 Jun 2021 19:58:35 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,28 +20,28 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - EUS ProdSlices", - "x-ms-request-id": "066edeb7-a09f-4303-a4a3-ddc338ef5500" + "x-ms-ests-server": "2.1.11829.9 - NCUS ProdSlices", + "x-ms-request-id": "95dd752c-c66f-48d3-96a0-2af295a15e00" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/linking", + "url": "https://endpoint//text/analytics/v3.1/entities/linking", "query": { "stringIndexType": "Utf16CodeUnit" }, "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", "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\"}", + "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\":\"2021-06-01\"}", "responseHeaders": { - "apim-request-id": "c7da9c5c-4864-4570-84ea-f7fa1a5d480c", + "apim-request-id": "74d1b4c0-0f4c-4dee-b644-e453264ec388", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Wed, 12 May 2021 19:18:06 GMT", + "date": "Fri, 25 Jun 2021 19:58:36 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7716" + "x-envoy-upstream-service-time": "18" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "2b30fd0c0b571e5816df1b0c15913c9f" + "hash": "30c29afb38fdf2180cc2cedeb3f4fc16" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.json index ad8eba0ccf00..d4a5fbb43c48 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:10 GMT", + "date": "Fri, 25 Jun 2021 19:58:36 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,13 +20,13 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - WUS2 ProdSlices", - "x-ms-request-id": "cd27eebe-0298-4850-834e-c0d83f50b600" + "x-ms-ests-server": "2.1.11829.9 - SCUS ProdSlices", + "x-ms-request-id": "8e39ec98-09f7-43aa-b65f-9f37fc887600" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/general", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/general", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -34,13 +34,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": "f23f2fcc-f278-49b8-b762-8fc380445f75", + "apim-request-id": "f201996e-234d-4bc5-90b5-3f264158f94d", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:10 GMT", + "date": "Fri, 25 Jun 2021 19:58:37 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "5" } } ], @@ -48,5 +48,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "dec5f2270e2809632da7f047a5e78b96" + "hash": "7de71703965569a57d9c84d5ae95763a" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.json index 5820cac62acf..6e5f1ec654ea 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.json @@ -4,5 +4,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "4b75caef41d2205c9039c478cbb49362" + "hash": "85638de68feea86c1695a14c61ca59de" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.json index 4d3de8b7776e..0542cdeff7c2 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:06 GMT", + "date": "Fri, 25 Jun 2021 19:58:35 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,27 +20,27 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - EUS ProdSlices", - "x-ms-request-id": "d00521bc-1a92-477a-94fd-37903f3d4f00" + "x-ms-ests-server": "2.1.11829.9 - SCUS ProdSlices", + "x-ms-request-id": "b10314ef-1e76-4785-9505-f5442fcf7000" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/linking", + "url": "https://endpoint//text/analytics/v3.1/entities/linking", "query": { "stringIndexType": "Utf16CodeUnit" }, "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"This is some text, but it doesn't matter.\",\"language\":\"notalanguage\"}]}", "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. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2020-02-01\"}", + "response": "{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}", "responseHeaders": { - "apim-request-id": "114b1522-e7de-4e67-b805-1972a9ab2976", + "apim-request-id": "55d37abf-7ee0-4364-898a-9f441e9d9c79", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:07 GMT", + "date": "Fri, 25 Jun 2021 19:58:36 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "2" } } ], @@ -48,5 +48,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "e883f7ba3fdd90498da6e742703cb331" + "hash": "5fb15576b315482f44754cc0f6d91801" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.json index 6584af6cc397..982ab7420fde 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:57 GMT", + "date": "Fri, 25 Jun 2021 19:58:34 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,13 +20,13 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - EUS ProdSlices", - "x-ms-request-id": "d00521bc-1a92-477a-94fd-3790133c4f00" + "x-ms-ests-server": "2.1.11829.9 - NCUS ProdSlices", + "x-ms-request-id": "5d80b8a6-644e-4556-a2b6-4c9b11815a00" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "Utf16CodeUnit", "domain": "PHI" @@ -35,14 +35,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"I work at ********* and my phone number is ************\",\"id\":\"0\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":10,\"length\":9,\"confidenceScore\":0.95},{\"text\":\"333-333-3333\",\"category\":\"PhoneNumber\",\"offset\":43,\"length\":12,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "49d2a322-a40f-440e-9e16-c32965f73f55", + "apim-request-id": "ad911f37-b6c2-48d6-b1d6-22df89ac9897", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:17:58 GMT", + "date": "Fri, 25 Jun 2021 19:58:35 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "70" + "x-envoy-upstream-service-time": "29" } } ], @@ -50,5 +50,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "84330346f05d0dadfb7d35edb26f4f2e" + "hash": "6aacb0e9cdd05e66fe9904538c611eab" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.json index 79df4aacba77..cb5014572485 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:57 GMT", + "date": "Fri, 25 Jun 2021 19:58:34 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,13 +20,13 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - WUS2 ProdSlices", - "x-ms-request-id": "50b07056-565c-44fe-b146-9951a287af00" + "x-ms-ests-server": "2.1.11829.9 - WUS2 ProdSlices", + "x-ms-request-id": "eab54377-ea4c-4e0d-a5d6-ad792bdf6500" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "Utf16CodeUnit", "piiCategories": "USSocialSecurityNumber" @@ -35,14 +35,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"Patient name is Joe and SSN is ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":31,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "39c3fc76-a2c4-4ee8-a56b-12efc25f377c", + "apim-request-id": "df300b5b-9fca-4a68-ab5b-c7f7fafe3a36", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:17:58 GMT", + "date": "Fri, 25 Jun 2021 19:58:35 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "73" } } ], @@ -50,5 +50,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "de58d7e405c02076ccaeb4d5b2190080" + "hash": "715a39f4e2fef48461eed60ed7c423ec" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.json index f0da0842a8c1..8933042e930c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:49 GMT", + "date": "Fri, 25 Jun 2021 19:58:29 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,13 +20,13 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - WUS2 ProdSlices", - "x-ms-request-id": "1f623800-874c-4277-b16b-879aefc6be00" + "x-ms-ests-server": "2.1.11829.9 - NCUS ProdSlices", + "x-ms-request-id": "10121119-4aa0-420a-a503-c541a1db5d00" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!\",\"id\":\"1\",\"entities\":[{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8}],\"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\":[]},{\"redactedText\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"La carretera estaba atascada. Había mucho tráfico el día de ****.\",\"id\":\"5\",\"entities\":[{\"text\":\"ayer\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":60,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "cde0a087-e7ee-43c1-a1ac-166a351793b6", + "apim-request-id": "a1b2ea14-8aa0-4cd3-ab70-c002df77cbca", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", - "date": "Wed, 12 May 2021 19:17:57 GMT", + "date": "Fri, 25 Jun 2021 19:58:35 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7559" + "x-envoy-upstream-service-time": "5126" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "62482340a86037315fe778124cf9d3a3" + "hash": "5ec8aaf6662a33e07532390829e62e7a" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.json index c75f73c66f22..243e3bb309e5 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:49 GMT", + "date": "Fri, 25 Jun 2021 19:58:20 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,13 +20,13 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - EUS ProdSlices", - "x-ms-request-id": "d00521bc-1a92-477a-94fd-3790503b4f00" + "x-ms-ests-server": "2.1.11829.9 - SCUS ProdSlices", + "x-ms-request-id": "8e39ec98-09f7-43aa-b65f-9f3790857600" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!\",\"id\":\"0\",\"entities\":[{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8}],\"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\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "aae69e89-18cb-4c92-8bb3-409d5fa66849", + "apim-request-id": "336164b5-3a1a-4d57-a884-19bee2e6fdd7", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Wed, 12 May 2021 19:17:49 GMT", + "date": "Fri, 25 Jun 2021 19:58:28 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "73" + "x-envoy-upstream-service-time": "7537" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "628c680cbc79498708b61558b22479b4" + "hash": "a7239aa57ac74e2a4ab2321e2ed80998" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.json index 0dcbd4d167cf..0eb008663699 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:46 GMT", + "date": "Fri, 25 Jun 2021 19:58:18 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,13 +20,13 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - WUS2 ProdSlices", - "x-ms-request-id": "0c969697-c15c-4290-963c-8600f5c4c900" + "x-ms-ests-server": "2.1.11829.9 - NCUS ProdSlices", + "x-ms-request-id": "10121119-4aa0-420a-a503-c541ecd95d00" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!\",\"id\":\"0\",\"entities\":[{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8}],\"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\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "104c480f-e740-4d69-b7b1-81ac95befe12", + "apim-request-id": "2ab288c2-bae2-4f66-99c3-2d3dc768bc96", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Wed, 12 May 2021 19:17:48 GMT", + "date": "Fri, 25 Jun 2021 19:58:20 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2595" + "x-envoy-upstream-service-time": "2589" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "2730c589619d43c2b132b28b3a099db2" + "hash": "44cf1e73908b195dbdfa52311ea4fdef" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.json index 1f0fc9578dad..a9c5f26baaf3 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:49 GMT", + "date": "Fri, 25 Jun 2021 19:58:28 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,13 +20,13 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - EUS ProdSlices", - "x-ms-request-id": "066edeb7-a09f-4303-a4a3-ddc3cced5500" + "x-ms-ests-server": "2.1.11829.9 - SCUS ProdSlices", + "x-ms-request-id": "0bf26b5d-85ea-49fb-99ba-7277cd397a00" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"Your Social Security Number is ***********.\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":31,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "a18046c0-d51c-4d5b-931e-67248ca377a4", + "apim-request-id": "3bc4ae91-b1cd-4cd9-8f69-731a3f6c3e22", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:17:49 GMT", + "date": "Fri, 25 Jun 2021 19:58:28 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "79" + "x-envoy-upstream-service-time": "32" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "74d071ef5b7f2cf7a540bf9599731a2b" + "hash": "30fd28c96f68f1a412fbad3315f2a3a2" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.json index c6219bf5cfbb..e8ec1b849fa1 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:46 GMT", + "date": "Fri, 25 Jun 2021 19:58:17 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,13 +20,13 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - NCUS ProdSlices", - "x-ms-request-id": "4e081bcf-0a12-4b10-9110-b01a28ce5600" + "x-ms-ests-server": "2.1.11829.9 - NCUS ProdSlices", + "x-ms-request-id": "10121119-4aa0-420a-a503-c541e1d95d00" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -34,13 +34,13 @@ "status": 400, "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid Request.\",\"innererror\":{\"code\":\"MissingInputRecords\",\"message\":\"Missing input records.\"}}}", "responseHeaders": { - "apim-request-id": "5e442bdc-386f-4473-9a5f-b86055b686b5", + "apim-request-id": "c255caa3-3afb-4c41-aa4a-b2d6f684fe29", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:46 GMT", + "date": "Fri, 25 Jun 2021 19:58:18 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "5" } } ], @@ -48,5 +48,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "cc302f3f2f63db389e3b21b16baf80ce" + "hash": "01afa681adb7f537c0fd8ec67214b5c0" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.json index b78e37ab50ef..cad8001c3059 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:58 GMT", + "date": "Fri, 25 Jun 2021 19:58:35 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,13 +20,13 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - EUS ProdSlices", - "x-ms-request-id": "d00521bc-1a92-477a-94fd-3790203c4f00" + "x-ms-ests-server": "2.1.11829.9 - WUS2 ProdSlices", + "x-ms-request-id": "9c2a0045-784c-4338-a06a-1020197c6100" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -34,19 +34,19 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"Patient name is *** and SSN is ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"Joe\",\"category\":\"Person\",\"offset\":16,\"length\":3,\"confidenceScore\":0.79},{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":31,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "931d52c6-d2fb-4459-86a8-d300d65c4f1d", + "apim-request-id": "ce8bd112-a858-4775-a640-3a9eab2c6816", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:17:58 GMT", + "date": "Fri, 25 Jun 2021 19:58:35 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "64" + "x-envoy-upstream-service-time": "57" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "Utf16CodeUnit", "piiCategories": "USSocialSecurityNumber" @@ -55,14 +55,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"Patient name is Joe and SSN is ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":31,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "b2b45fee-dccd-4c8e-a1d2-76539f19610b", + "apim-request-id": "68459a9b-19cf-4466-93ec-89469c682675", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:17:58 GMT", + "date": "Fri, 25 Jun 2021 19:58:35 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "33" } } ], @@ -70,5 +70,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "1c1d9197499cd3914b0252e6a988dc52" + "hash": "de5b4b37967461f9ed943fb6f84228e5" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.json index b407f2f22db9..20455074fe1b 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:49 GMT", + "date": "Fri, 25 Jun 2021 19:58:28 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,13 +20,13 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - SCUS ProdSlices", - "x-ms-request-id": "d8b4f1c7-068a-49ca-8be3-b9fbba665800" + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "84bdf8e2-d00d-4332-9ea9-2d5e5e437900" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -34,13 +34,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,pt-BR,pt-PT,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "45bc4337-55dc-469b-b11f-f8801f65df82", + "apim-request-id": "027fcc67-a453-4997-8a13-58a1411d240f", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:49 GMT", + "date": "Fri, 25 Jun 2021 19:58:28 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "7" } } ], @@ -48,5 +48,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "516a3a45043425fcc85c475f2483fdcc" + "hash": "80acdc66d0bcc0cc3b0446e597fc56bf" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.json index 29539bbf122f..49f04418dd84 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.json @@ -4,29 +4,29 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:13 GMT", + "date": "Tue, 29 Jun 2021 21:09:36 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - EUS ProdSlices", - "x-ms-request-id": "1abc1a8a-2ae7-4c0a-9aec-0f300e745600" + "x-ms-ests-server": "2.1.11829.9 - SCUS ProdSlices", + "x-ms-request-id": "b8594f4f-9f44-40e0-9a82-8e2b54fb3101" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"año SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":9,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "2b685f20-21e8-43b6-85a1-b46f51c8e51b", + "apim-request-id": "eebf05d4-640c-449f-94ad-245aaa9b99e4", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:18:13 GMT", + "date": "Tue, 29 Jun 2021 21:09:35 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "59" + "x-envoy-upstream-service-time": "48" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "811aa0ce40f1c7f9f3b639cb2379bd82" + "hash": "1405fd53d6237d457a1bba0408b1e696" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.json index 4b0f385b196b..cd86ff603bc1 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.json @@ -4,29 +4,29 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:14 GMT", + "date": "Tue, 29 Jun 2021 21:09:36 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - WUS2 ProdSlices", - "x-ms-request-id": "0c969697-c15c-4290-963c-86004ac9c900" + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "c694b77a-b61d-4bb5-bf7e-8469d19e4701" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"año SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":10,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "acd0ead0-4461-42ab-9ab7-064c5fc5d6f7", + "apim-request-id": "ecdeb0cd-21e0-4ab8-a8d8-caffe7fe258f", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:18:14 GMT", + "date": "Tue, 29 Jun 2021 21:09:35 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "25" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "8311009fea9846c5b4917f9b4bda0aa6" + "hash": "bd8f8e11c32bea3ce834804ae6e55eba" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.json index 21493e7b3d30..d3c4ca70dced 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.json @@ -4,29 +4,29 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:10 GMT", + "date": "Tue, 29 Jun 2021 21:09:34 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - WUS2 ProdSlices", - "x-ms-request-id": "0c969697-c15c-4290-963c-8600e0c8c900" + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "fc08600f-2b4b-4f32-aea1-31fc97184301" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"👩 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "aab19fd2-7c82-48c0-afbf-8db34ee74767", + "apim-request-id": "77b306a7-8ee1-49ab-97a9-ab00bc063cf7", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:18:10 GMT", + "date": "Tue, 29 Jun 2021 21:09:34 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "37" + "x-envoy-upstream-service-time": "53" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "88e2c6a75966d0ab41836d845147d472" + "hash": "908cd4b4839d69ee785150461c56ff98" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.json index d6b51f846a95..a26dc7c99174 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.json @@ -4,29 +4,29 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:10 GMT", + "date": "Tue, 29 Jun 2021 21:09:35 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - SCUS ProdSlices", - "x-ms-request-id": "c53ac30c-0f0c-44df-8647-6ebbfdef5800" + "x-ms-ests-server": "2.1.11829.9 - NCUS ProdSlices", + "x-ms-request-id": "a9c6fa36-25c5-4249-81a7-f830eb5e1601" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"👩🏻 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":10,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "f6ae4fee-4cb8-485a-b8be-6051a21eec55", + "apim-request-id": "feb30d0e-da0a-4d24-8312-8b617f311efb", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:18:13 GMT", + "date": "Tue, 29 Jun 2021 21:09:34 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2579" + "x-envoy-upstream-service-time": "49" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "aa34be3c24dcca4d8e8cd12c407c97f3" + "hash": "567cf9233223f7f12a6a5228401a4c20" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.json index 8f5c19c67d37..d21573fafce4 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.json @@ -4,29 +4,29 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:13 GMT", + "date": "Tue, 29 Jun 2021 21:09:35 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - SCUS ProdSlices", - "x-ms-request-id": "d8b4f1c7-068a-49ca-8be3-b9fbac6a5800" + "x-ms-ests-server": "2.1.11829.9 - WUS2 ProdSlices", + "x-ms-request-id": "c0795943-7ed8-404a-90ea-6a7d00930b01" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"👩‍👩‍👧‍👧 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":17,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "66cc84b8-f96b-422a-aca2-5cf116799cc1", + "apim-request-id": "e089096f-8811-4a0b-8054-ddc2e6f2e000", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:18:13 GMT", + "date": "Tue, 29 Jun 2021 21:09:35 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "90" + "x-envoy-upstream-service-time": "35" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "4f0115f74e4899092f6ea861c92c1a28" + "hash": "8d00943bbcf0fb21630156b78d055772" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_wit_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_wit_skin_tone_modifier.json index 5b777f958b81..ce1b62022ff2 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_wit_skin_tone_modifier.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_wit_skin_tone_modifier.json @@ -4,29 +4,29 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:13 GMT", + "date": "Tue, 29 Jun 2021 21:09:35 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - EUS ProdSlices", - "x-ms-request-id": "d00521bc-1a92-477a-94fd-37902e3e4f00" + "x-ms-ests-server": "2.1.11829.9 - WUS2 ProdSlices", + "x-ms-request-id": "e88fb5c0-5677-414a-90f6-b9ef03fe2c01" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":25,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "451bb45f-1916-4944-9893-9dfd482880da", + "apim-request-id": "9855f7db-39c9-4311-ae27-daee55f96cf4", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:18:13 GMT", + "date": "Tue, 29 Jun 2021 21:09:35 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "66" + "x-envoy-upstream-service-time": "71" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "802c62ddbf5a689aa72b6d72dd4e886e" + "hash": "75436508d73c2f748b997198dbef2ea3" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.json index 190214d0fd39..175adef0cd78 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.json @@ -4,29 +4,29 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:14 GMT", + "date": "Tue, 29 Jun 2021 21:09:36 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - NCUS ProdSlices", - "x-ms-request-id": "5c46cd0a-304b-4f9b-a5f1-199c99675100" + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "fc08600f-2b4b-4f32-aea1-31fc07194301" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"아가 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "c8446f95-6212-458c-83cf-b6dc3d6a4408", + "apim-request-id": "eb4bd13e-8f00-4034-a36e-d7fd67e057ce", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:18:14 GMT", + "date": "Tue, 29 Jun 2021 21:09:36 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "56" + "x-envoy-upstream-service-time": "34" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "a84c18994e1e7d9f8b94afadfb529e84" + "hash": "36d5a15867f64e61b29bc146c4ef9483" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.json index 1d4cb31167fe..fb8d0becf7c1 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.json @@ -4,29 +4,29 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:14 GMT", + "date": "Tue, 29 Jun 2021 21:09:37 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - EUS ProdSlices", - "x-ms-request-id": "d00521bc-1a92-477a-94fd-3790533e4f00" + "x-ms-ests-server": "2.1.11829.9 - SCUS ProdSlices", + "x-ms-request-id": "b8594f4f-9f44-40e0-9a82-8e2b82fb3101" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"아가 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "4634eadf-846b-4a14-868b-16807933f2e0", + "apim-request-id": "e9c7709d-c256-488e-a19e-1bede5611ddb", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:18:14 GMT", + "date": "Tue, 29 Jun 2021 21:09:36 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "56" + "x-envoy-upstream-service-time": "29" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "a84c18994e1e7d9f8b94afadfb529e84" + "hash": "36d5a15867f64e61b29bc146c4ef9483" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.json index 84c0088431ce..13f627c40c48 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.json @@ -4,29 +4,29 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:14 GMT", + "date": "Tue, 29 Jun 2021 21:09:37 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - EUS ProdSlices", - "x-ms-request-id": "1abc1a8a-2ae7-4c0a-9aec-0f3038745600" + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "c694b77a-b61d-4bb5-bf7e-8469f19e4701" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":121,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "9bebea37-a018-4e6b-90c7-c767ef2ecf8b", + "apim-request-id": "f60f2f07-f2c0-4994-ac26-cfde8a300303", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:18:14 GMT", + "date": "Tue, 29 Jun 2021 21:09:36 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "172" + "x-envoy-upstream-service-time": "99" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "495ba94d5bdf3613ac68c0d7a1a65066" + "hash": "7087283e7c49a7af17336acd08edebd6" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.json index f73b8d0435db..4596dd34358b 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Tue, 18 May 2021 19:57:41 GMT", + "date": "Tue, 29 Jun 2021 21:09:41 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,13 +20,13 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - NCUS ProdSlices", - "x-ms-request-id": "08303867-6d5f-4360-aedf-af3c61080b00" + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "c694b77a-b61d-4bb5-bf7e-8469da9f4701" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "TextElement_v8" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"año SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":9,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "f8e5973f-61ec-43cb-93c8-0a7004414727", + "apim-request-id": "a59ac9b3-e3db-487d-95c1-0a0b787efdbd", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Tue, 18 May 2021 19:57:41 GMT", + "date": "Tue, 29 Jun 2021 21:09:40 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-envoy-upstream-service-time": "25" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "06328e91e5b53f66fc1f9f3ea3e3736b" + "hash": "c4168ce455743735cc3b0867596a0298" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.json index 0e5960497ad2..58e26f75651c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Tue, 18 May 2021 19:57:41 GMT", + "date": "Tue, 29 Jun 2021 21:09:41 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,13 +20,13 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - NCUS ProdSlices", - "x-ms-request-id": "e10036aa-ffcc-4bb1-adb5-1009658b2900" + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "b0096cab-6e8f-4888-9dbd-f2f936184e01" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "TextElement_v8" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"año SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":9,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "1c118e87-e744-4cdd-82da-3f84bac2e77c", + "apim-request-id": "75c3697a-4b66-414c-a832-abf37726c490", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Tue, 18 May 2021 19:57:41 GMT", + "date": "Tue, 29 Jun 2021 21:09:40 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "51" + "x-envoy-upstream-service-time": "27" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "efe43b9d5f26cfe26b291ec9c8ed8ac7" + "hash": "97deed18f72cb452533d75fe71f106cd" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.json index cbad7bba406c..4716c0ad546e 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Tue, 18 May 2021 19:57:40 GMT", + "date": "Tue, 29 Jun 2021 21:09:40 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,13 +20,13 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - NCUS ProdSlices", - "x-ms-request-id": "8b1ef0c5-5826-462d-b0dd-9af815081c00" + "x-ms-ests-server": "2.1.11829.9 - NCUS ProdSlices", + "x-ms-request-id": "10121119-4aa0-420a-a503-c5413b360901" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "TextElement_v8" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"👩 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":7,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "7c4e167c-686d-426c-8e26-58063f12f9bf", + "apim-request-id": "e918317f-6e6b-49db-8fe6-6d8987c0d260", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Tue, 18 May 2021 19:57:40 GMT", + "date": "Tue, 29 Jun 2021 21:09:39 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "36" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "92c4ca23a19ac9dfdf651bbee4cccaba" + "hash": "4e42b362a5c0bfae3331b57329538488" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.json index 745e602e38d3..2eaf54373b8f 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Tue, 18 May 2021 19:57:40 GMT", + "date": "Tue, 29 Jun 2021 21:09:40 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,13 +20,13 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - NCUS ProdSlices", - "x-ms-request-id": "e10036aa-ffcc-4bb1-adb5-10093e8b2900" + "x-ms-ests-server": "2.1.11829.9 - SCUS ProdSlices", + "x-ms-request-id": "612a0ebe-d109-4328-9da1-01a12cb93101" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "TextElement_v8" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"👩🏻 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "5134bd9c-6daa-4d90-b706-2054c289f553", + "apim-request-id": "4f1f594c-ec7b-4963-9f89-986a34ba3f06", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Tue, 18 May 2021 19:57:40 GMT", + "date": "Tue, 29 Jun 2021 21:09:39 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "52" + "x-envoy-upstream-service-time": "27" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "4d0592a58f8f59e3d082e7a09ddeb312" + "hash": "c819adc2f07c63a60990e748cd4d68e9" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.json index 3c98f6c71e50..16acd1a97570 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Tue, 18 May 2021 19:57:41 GMT", + "date": "Tue, 29 Jun 2021 21:09:40 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,13 +20,13 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - WUS2 ProdSlices", - "x-ms-request-id": "29618e7b-ec84-4f59-8b2b-a1fa17672b00" + "x-ms-ests-server": "2.1.11829.9 - SCUS ProdSlices", + "x-ms-request-id": "145ede9c-71e0-49e8-aa1e-40e8f2cc3801" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "TextElement_v8" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"👩‍👩‍👧‍👧 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":13,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "47ee7928-1b1b-48d2-bb3a-eb611e118ecd", + "apim-request-id": "708caa04-bc8c-46fb-8fce-785af1bf5358", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Tue, 18 May 2021 19:57:40 GMT", + "date": "Tue, 29 Jun 2021 21:09:39 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": "33" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "c5a22d0f539389732019fddcaa624fa0" + "hash": "3a2084188b00fbb623bd37ce1666c56e" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_wit_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_wit_skin_tone_modifier.json index 72692d11e9a7..781e05f9f8d6 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_wit_skin_tone_modifier.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_wit_skin_tone_modifier.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Tue, 18 May 2021 19:57:41 GMT", + "date": "Tue, 29 Jun 2021 21:09:40 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,13 +20,13 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - NCUS ProdSlices", - "x-ms-request-id": "08303867-6d5f-4360-aedf-af3c52080b00" + "x-ms-ests-server": "2.1.11829.9 - SCUS ProdSlices", + "x-ms-request-id": "b7611b7c-a4e8-418b-bbba-f2d66a1d2501" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "TextElement_v8" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":17,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "55e7b1df-d736-4c34-837e-a3e20384fb49", + "apim-request-id": "2938d401-e90f-464c-8b0c-9c9e0c3fdeb3", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Tue, 18 May 2021 19:57:40 GMT", + "date": "Tue, 29 Jun 2021 21:09:40 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": "65" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "b81ee4cfeca46f190c599586cf07e884" + "hash": "cd6d067309fdf79fc7a14469a1e60099" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.json index c847e7b33d29..a592bf4993c1 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Tue, 18 May 2021 19:57:41 GMT", + "date": "Tue, 29 Jun 2021 21:09:41 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,13 +20,13 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - NCUS ProdSlices", - "x-ms-request-id": "08303867-6d5f-4360-aedf-af3c74080b00" + "x-ms-ests-server": "2.1.11829.9 - WUS2 ProdSlices", + "x-ms-request-id": "c0795943-7ed8-404a-90ea-6a7d03940b01" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "TextElement_v8" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"아가 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "6dd2283d-d790-4607-83ec-0d3e094417df", + "apim-request-id": "40ce69fa-d392-4775-ae1a-21aeb979aced", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Tue, 18 May 2021 19:57:41 GMT", + "date": "Tue, 29 Jun 2021 21:09:40 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": "31" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "5f2ebbf4d45649384770a81733766b94" + "hash": "b748441acac968abb561573139954822" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.json index 4a0832350e84..24f51c648b7d 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Tue, 18 May 2021 19:57:42 GMT", + "date": "Tue, 29 Jun 2021 21:09:41 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,13 +20,13 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - WUS2 ProdSlices", - "x-ms-request-id": "a5099c8b-d42f-4815-9abc-34709ba22300" + "x-ms-ests-server": "2.1.11829.9 - SCUS ProdSlices", + "x-ms-request-id": "b8594f4f-9f44-40e0-9a82-8e2b79fc3101" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "TextElement_v8" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"아가 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "1ca202a5-5094-4e4a-865a-1fe6755bb11b", + "apim-request-id": "2e6496c4-14f2-4d2d-9a66-e6ccb047608a", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Tue, 18 May 2021 19:57:41 GMT", + "date": "Tue, 29 Jun 2021 21:09:41 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "31" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "5f2ebbf4d45649384770a81733766b94" + "hash": "b748441acac968abb561573139954822" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.json index 64f5ee5dfe1b..dd91e19e4e85 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Tue, 18 May 2021 19:57:42 GMT", + "date": "Tue, 29 Jun 2021 21:09:42 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,13 +20,13 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - NCUS ProdSlices", - "x-ms-request-id": "e10036aa-ffcc-4bb1-adb5-1009788b2900" + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "b0096cab-6e8f-4888-9dbd-f2f954184e01" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "TextElement_v8" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":9,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "c500923d-13b0-4610-8799-ad6daee93fca", + "apim-request-id": "32c7e74e-ce39-472e-afad-a33b024c3f13", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Tue, 18 May 2021 19:57:41 GMT", + "date": "Tue, 29 Jun 2021 21:09:41 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "237" + "x-envoy-upstream-service-time": "99" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "d2fdb53e7bbb2f3dc7962588b508d90f" + "hash": "5666bd084b5377efc9af0f8dd722e62b" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_diacritics_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_diacritics_nfc.json deleted file mode 100644 index ffb385d1bb37..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_diacritics_nfc.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:19 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - WUS2 ProdSlices", - "x-ms-request-id": "e7a67084-aa52-4720-8c70-d7504472d500" - } - }, - { - "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", - "query": { - "stringIndexType": "TextElements_v8" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"año SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"año SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":9,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "9bb6e8a9-a8c5-48a1-a187-8b44c702623a", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:18:19 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "63" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "1efcdd610962c1ff7c6480fa499cf7ee" -} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_diacritics_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_diacritics_nfd.json deleted file mode 100644 index 44fe99b44e9c..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_diacritics_nfd.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:19 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - EUS ProdSlices", - "x-ms-request-id": "066edeb7-a09f-4303-a4a3-ddc382f25500" - } - }, - { - "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", - "query": { - "stringIndexType": "TextElements_v8" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"año SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"año SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":9,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "0540a9c4-9fb5-4319-a411-38074c4f5a69", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:18:19 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "39" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "155f76cac941a391d179000ea0bcbf27" -} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_family_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_family_emoji.json deleted file mode 100644 index d6432209eca9..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_family_emoji.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:19 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - WUS2 ProdSlices", - "x-ms-request-id": "e7a67084-aa52-4720-8c70-d7502a72d500" - } - }, - { - "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", - "query": { - "stringIndexType": "TextElements_v8" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩‍👩‍👧‍👧 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"👩‍👩‍👧‍👧 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":13,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "ab5de782-8a3a-4129-bbde-6486ec6eb811", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:18:19 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "65" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "d89f099e025ac55821ee569cb518da65" -} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_family_emoji_wit_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_family_emoji_wit_skin_tone_modifier.json deleted file mode 100644 index 44eb552f2905..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_family_emoji_wit_skin_tone_modifier.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:19 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - SCUS ProdSlices", - "x-ms-request-id": "37cbc159-7924-4f74-bcb8-8ca153b05900" - } - }, - { - "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", - "query": { - "stringIndexType": "TextElements_v8" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":17,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "3891d6e7-be07-432f-bb12-0da576cae195", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:18:19 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "79" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "448dc02a8f4a75429a2bedc6c435a92c" -} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_korean_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_korean_nfc.json deleted file mode 100644 index 63c41ff51136..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_korean_nfc.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:20 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - SCUS ProdSlices", - "x-ms-request-id": "c53ac30c-0f0c-44df-8647-6ebb70f15800" - } - }, - { - "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", - "query": { - "stringIndexType": "TextElements_v8" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"아가 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"아가 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "b50388ea-9404-4ff5-adb0-b2c7f63cfb1f", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:18:19 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "59" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "7a201abffdefb7c51f8d3ea5a02fbfa1" -} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_korean_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_korean_nfd.json deleted file mode 100644 index 8476b8ccdefb..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_korean_nfd.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:20 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - EUS ProdSlices", - "x-ms-request-id": "743b3b92-2f52-481c-a716-8c78d83d5200" - } - }, - { - "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", - "query": { - "stringIndexType": "TextElements_v8" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"아가 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"아가 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "22f55c9a-1887-4815-a964-87d1af23ce0a", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:18:20 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "62" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "7a201abffdefb7c51f8d3ea5a02fbfa1" -} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_zalgo.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_zalgo.json deleted file mode 100644 index ce1fb58ac81e..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_zalgo.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "recordings": [ - { - "method": "POST", - "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1331", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:20 GMT", - "expires": "-1", - "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", - "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", - "pragma": "no-cache", - "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - EUS ProdSlices", - "x-ms-request-id": "066edeb7-a09f-4303-a4a3-ddc39af25500" - } - }, - { - "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", - "query": { - "stringIndexType": "TextElements_v8" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":9,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "5b7b4736-048e-4805-87c2-56e7591564f6", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:18:20 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "229" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "1d0364805700bf675e8f3e1902b4848d" -} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.json index 8a33d294cad2..c7d2b7fdf2c6 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.json @@ -4,29 +4,29 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:16 GMT", + "date": "Tue, 29 Jun 2021 21:09:38 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - NCUS ProdSlices", - "x-ms-request-id": "c1e705ec-3912-4743-ac25-e105db154e00" + "x-ms-ests-server": "2.1.11829.9 - NCUS ProdSlices", + "x-ms-request-id": "81c4d353-4e45-4f32-8e2d-524256d00501" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "UnicodeCodePoint" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"año SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":9,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "a87435d3-4c3b-4139-a34d-c3e600915633", + "apim-request-id": "b41509f9-7a5b-4b1b-913e-701cfec6517f", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:18:17 GMT", + "date": "Tue, 29 Jun 2021 21:09:38 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "1026" + "x-envoy-upstream-service-time": "47" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "a272b3490594cff624a35c8324a21092" + "hash": "ab9960d541e7c4bd338117cb7daf5920" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.json index db972f15968c..4656f7a6819b 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.json @@ -4,29 +4,29 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:17 GMT", + "date": "Tue, 29 Jun 2021 21:09:39 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - SCUS ProdSlices", - "x-ms-request-id": "de5a6e1f-a68e-43b4-9aab-f8b650804f00" + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "b0096cab-6e8f-4888-9dbd-f2f9cc174e01" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "UnicodeCodePoint" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"año SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":10,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "d53a44c2-9e68-4b7e-9ad3-6a4bdb5f8777", + "apim-request-id": "749156d4-b38c-4691-8fb8-9793387e2ce0", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:18:17 GMT", + "date": "Tue, 29 Jun 2021 21:09:38 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "82" + "x-envoy-upstream-service-time": "52" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "2c955994136040af46c74d99e0669c18" + "hash": "0e1b2a9dcd3d5fcaf9d7b9f44a56b3fd" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.json index b05885c62977..34ab3f312fc7 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.json @@ -4,29 +4,29 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:15 GMT", + "date": "Tue, 29 Jun 2021 21:09:37 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - NCUS ProdSlices", - "x-ms-request-id": "c1e705ec-3912-4743-ac25-e10598154e00" + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "c694b77a-b61d-4bb5-bf7e-84690b9f4701" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "UnicodeCodePoint" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"👩 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":7,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "a65466d6-7239-45df-bb33-d5536bfd38b4", + "apim-request-id": "ef01a87f-3bea-4280-9184-a55e8e75922c", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:18:14 GMT", + "date": "Tue, 29 Jun 2021 21:09:36 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "27" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "512ee86c2b42562cc62150dc6757eff2" + "hash": "47884ef2981b03ff59ce02b82a931678" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.json index 0a9604ef5e9d..1b9ac2660eb2 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.json @@ -4,29 +4,29 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:15 GMT", + "date": "Tue, 29 Jun 2021 21:09:37 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - SCUS ProdSlices", - "x-ms-request-id": "d8b4f1c7-068a-49ca-8be3-b9fbf96a5800" + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "5bf7ee08-4237-472f-b5d3-80f28b203a01" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "UnicodeCodePoint" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"👩🏻 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "872b5351-a116-44cb-888e-88ac0734cf96", + "apim-request-id": "e45d3004-a4b5-4ab5-a24a-374d537c8b67", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:18:15 GMT", + "date": "Tue, 29 Jun 2021 21:09:37 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": "49" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "ddeeeb049f345ed6dd5a65a0e22182d3" + "hash": "caf1393d64f58fff7dfb3e2d5e88900d" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.json index a0b2de24806d..39dc30a89ab0 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.json @@ -4,29 +4,29 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:15 GMT", + "date": "Tue, 29 Jun 2021 21:09:38 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - EUS ProdSlices", - "x-ms-request-id": "1abc1a8a-2ae7-4c0a-9aec-0f305a745600" + "x-ms-ests-server": "2.1.11829.9 - NCUS ProdSlices", + "x-ms-request-id": "10121119-4aa0-420a-a503-c541e8350901" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "UnicodeCodePoint" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"👩‍👩‍👧‍👧 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":13,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "e01044fc-3c53-4148-97ea-71cd052b3170", + "apim-request-id": "cf11f431-cb89-4491-a3cd-ed0ae838c969", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:18:16 GMT", + "date": "Tue, 29 Jun 2021 21:09:37 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "706" + "x-envoy-upstream-service-time": "35" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "7421c201ebd7624fac38c1049a4a5425" + "hash": "cf86e2d033b790043263dc6047ead0c2" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_wit_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_wit_skin_tone_modifier.json index 1509693bdef0..71fa6bba6f14 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_wit_skin_tone_modifier.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_wit_skin_tone_modifier.json @@ -4,29 +4,29 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:16 GMT", + "date": "Tue, 29 Jun 2021 21:09:38 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - SCUS ProdSlices", - "x-ms-request-id": "de5a6e1f-a68e-43b4-9aab-f8b612804f00" + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "c694b77a-b61d-4bb5-bf7e-84693f9f4701" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "UnicodeCodePoint" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":17,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "b478b783-e9db-41a3-9180-f9e79476a275", + "apim-request-id": "356fe262-00f5-47e9-9d7d-b74f701a7724", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:18:16 GMT", + "date": "Tue, 29 Jun 2021 21:09:37 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "84" + "x-envoy-upstream-service-time": "35" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "4de584ed59a2a0fd5b6ccfbefe62612b" + "hash": "ba85026ec528be77d06677cb0241bf4b" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.json index 9a6672ec8011..bdceaa323c64 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.json @@ -4,29 +4,29 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:18 GMT", + "date": "Tue, 29 Jun 2021 21:09:39 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - NCUS ProdSlices", - "x-ms-request-id": "77684d85-de6c-4446-8bd8-80263b515600" + "x-ms-ests-server": "2.1.11829.9 - SCUS ProdSlices", + "x-ms-request-id": "612a0ebe-d109-4328-9da1-01a1e9b83101" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "UnicodeCodePoint" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"아가 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "9670efb4-4016-4902-b902-1d52e3f65bdc", + "apim-request-id": "a2227cd3-f160-45d1-b7dd-9716abdc6eee", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:18:17 GMT", + "date": "Tue, 29 Jun 2021 21:09:38 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "77" + "x-envoy-upstream-service-time": "29" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "598060bfe5f87f42b105c503861fd51e" + "hash": "efeafd6bc19716841855e51f9bfcaae5" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.json index 74ea49701cd8..94c1d514974d 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.json @@ -4,29 +4,29 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:18 GMT", + "date": "Tue, 29 Jun 2021 21:09:39 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - SCUS ProdSlices", - "x-ms-request-id": "37cbc159-7924-4f74-bcb8-8ca127b05900" + "x-ms-ests-server": "2.1.11829.9 - NCUS ProdSlices", + "x-ms-request-id": "10121119-4aa0-420a-a503-c5411f360901" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "UnicodeCodePoint" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"아가 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "6a9ec952-4c41-461b-b6af-89f640998212", + "apim-request-id": "41705626-35bd-4a04-b572-e97c79667754", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:18:18 GMT", + "date": "Tue, 29 Jun 2021 21:09:38 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "75" + "x-envoy-upstream-service-time": "34" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "598060bfe5f87f42b105c503861fd51e" + "hash": "efeafd6bc19716841855e51f9bfcaae5" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.json index 23f8c3b95207..fb4c559463fd 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.json @@ -4,29 +4,29 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:18 GMT", + "date": "Tue, 29 Jun 2021 21:09:39 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", "pragma": "no-cache", "referrer-policy": "strict-origin-when-cross-origin", - "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - NCUS ProdSlices", - "x-ms-request-id": "5c46cd0a-304b-4f9b-a5f1-199c53685100" + "x-ms-ests-server": "2.1.11829.9 - WUS2 ProdSlices", + "x-ms-request-id": "e88fb5c0-5677-414a-90f6-b9efd3fe2c01" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", "query": { "stringIndexType": "UnicodeCodePoint" }, @@ -34,14 +34,14 @@ "status": 200, "response": "{\"documents\":[{\"redactedText\":\"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":121,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", "responseHeaders": { - "apim-request-id": "a17918ac-04c0-44eb-9fec-745b1f3b28e6", + "apim-request-id": "de0ab68c-4663-4480-932f-b2d7a0e8fcde", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:18:18 GMT", + "date": "Tue, 29 Jun 2021 21:09:39 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "247" + "x-envoy-upstream-service-time": "232" } } ], @@ -49,5 +49,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "1001cba93467d0c21efe8d7b416d0203" + "hash": "44c2300ce411e8279dc446b4136bb8d1" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.json index f4cac963f3fa..3c62fb4cd7ac 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:41 GMT", + "date": "Fri, 25 Jun 2021 20:01:39 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,116 +20,116 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - NCUS ProdSlices", - "x-ms-request-id": "c1e705ec-3912-4743-ac25-e10525284e00" + "x-ms-ests-server": "2.1.11829.9 - NCUS ProdSlices", + "x-ms-request-id": "ce29a862-fba0-489c-90cf-00cc6fdb5e00" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze", + "url": "https://endpoint//text/analytics/v3.1/analyze", "query": {}, - "requestBody": "{\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]},\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"\",\"language\":\"\"},{\"id\":\"2\",\"text\":\"I did not like the hotel we stayed at. It was too expensive.\",\"language\":\"english\"},{\"id\":\"3\",\"text\":\"\",\"language\":\"en\"}]}}", + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"\",\"language\":\"\"},{\"id\":\"2\",\"text\":\"I did not like the hotel we stayed at. It was too expensive.\",\"language\":\"english\"},{\"id\":\"3\",\"text\":\"\",\"language\":\"en\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", "status": 202, "response": "", "responseHeaders": { - "apim-request-id": "6956e33a-3b61-42d4-b11d-41fc04996017", - "date": "Wed, 12 May 2021 19:20:41 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/c90df2b2-3cdb-4443-a8ca-8e37866ab2c7", + "apim-request-id": "1896f6da-444e-485b-89fd-ec2ec3ad62d1", + "date": "Fri, 25 Jun 2021 20:01:40 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "124" + "x-envoy-upstream-service-time": "234" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/c90df2b2-3cdb-4443-a8ca-8e37866ab2c7", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"c90df2b2-3cdb-4443-a8ca-8e37866ab2c7\",\"lastUpdateDateTime\":\"2021-05-12T19:20:42Z\",\"createdDateTime\":\"2021-05-12T19:20:41Z\",\"expirationDateTime\":\"2021-05-13T19:20:41Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:42Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:01:40Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "243aaac6-f0c2-4e1f-8404-78b2a4510a8b", + "apim-request-id": "f85295a6-6fd3-49e0-90a8-453e73f989fc", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:42 GMT", + "date": "Fri, 25 Jun 2021 20:01:40 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "6" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/c90df2b2-3cdb-4443-a8ca-8e37866ab2c7", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"c90df2b2-3cdb-4443-a8ca-8e37866ab2c7\",\"lastUpdateDateTime\":\"2021-05-12T19:20:42Z\",\"createdDateTime\":\"2021-05-12T19:20:41Z\",\"expirationDateTime\":\"2021-05-13T19:20:41Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:42Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:01:40Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "35c6c0c6-801d-433f-a9f5-65f3b878dd44", + "apim-request-id": "5424d03f-3007-4b23-ad02-87bbb3c0e00b", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:42 GMT", + "date": "Fri, 25 Jun 2021 20:01:40 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "6" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/c90df2b2-3cdb-4443-a8ca-8e37866ab2c7", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"c90df2b2-3cdb-4443-a8ca-8e37866ab2c7\",\"lastUpdateDateTime\":\"2021-05-12T19:20:43Z\",\"createdDateTime\":\"2021-05-12T19:20:41Z\",\"expirationDateTime\":\"2021-05-13T19:20:41Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:43Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:01:41Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "a90c1371-0a0f-4128-9b2f-9b22c5802259", + "apim-request-id": "8f26e901-9706-4489-b9a8-40b2fd964bbb", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:44 GMT", + "date": "Fri, 25 Jun 2021 20:01:42 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "8" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/c90df2b2-3cdb-4443-a8ca-8e37866ab2c7", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"c90df2b2-3cdb-4443-a8ca-8e37866ab2c7\",\"lastUpdateDateTime\":\"2021-05-12T19:20:43Z\",\"createdDateTime\":\"2021-05-12T19:20:41Z\",\"expirationDateTime\":\"2021-05-13T19:20:41Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:43Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:01:41Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "880f5b09-bded-4ade-bd94-3755f78c273b", + "apim-request-id": "5019072f-7b2b-4ace-ab31-e088b70b9697", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:46 GMT", + "date": "Fri, 25 Jun 2021 20:01:44 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "19" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/c90df2b2-3cdb-4443-a8ca-8e37866ab2c7", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"c90df2b2-3cdb-4443-a8ca-8e37866ab2c7\",\"lastUpdateDateTime\":\"2021-05-12T19:20:47Z\",\"createdDateTime\":\"2021-05-12T19:20:41Z\",\"expirationDateTime\":\"2021-05-13T19:20:41Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:47Z\"},\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:47.5187299Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:01:41Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "224de6c2-3ff2-442a-a422-eb5381c5d9fc", + "apim-request-id": "378df8f4-7eb9-4f14-be90-62be21b53a38", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:48 GMT", + "date": "Fri, 25 Jun 2021 20:01:46 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -138,103 +138,559 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/c90df2b2-3cdb-4443-a8ca-8e37866ab2c7", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:01:47Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:47.4637832Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "d3d8faa5-ba8b-45a6-a100-0af9ce66de35", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:01:48 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "63" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:01:47Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:47.4637832Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "9b273481-10ac-4449-b21b-8c4b55af8e41", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:01:50 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "61" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:01:47Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:47.4637832Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "781446ea-56b6-4d1a-98d6-421e33ecc7c2", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:01:52 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "67" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"c90df2b2-3cdb-4443-a8ca-8e37866ab2c7\",\"lastUpdateDateTime\":\"2021-05-12T19:20:47Z\",\"createdDateTime\":\"2021-05-12T19:20:41Z\",\"expirationDateTime\":\"2021-05-13T19:20:41Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:47Z\"},\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:47.5187299Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:01:47Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:47.4637832Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "1ad5552b-89b8-4b5d-8c08-85a8af63e7c4", + "apim-request-id": "0273e210-44fd-4817-a8b3-941cd3f5b72a", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:50 GMT", + "date": "Fri, 25 Jun 2021 20:01:55 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-envoy-upstream-service-time": "68" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/c90df2b2-3cdb-4443-a8ca-8e37866ab2c7", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"c90df2b2-3cdb-4443-a8ca-8e37866ab2c7\",\"lastUpdateDateTime\":\"2021-05-12T19:20:51Z\",\"createdDateTime\":\"2021-05-12T19:20:41Z\",\"expirationDateTime\":\"2021-05-13T19:20:41Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:51Z\"},\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:47.5187299Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:51.0202489Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:01:47Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:47.4637832Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "a8e4b6b7-1be8-47d8-8334-9a696565ea2d", + "apim-request-id": "791985e5-ec37-4aa8-b677-6f88767edd9c", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:52 GMT", + "date": "Fri, 25 Jun 2021 20:01:58 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": "85" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/c90df2b2-3cdb-4443-a8ca-8e37866ab2c7", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"c90df2b2-3cdb-4443-a8ca-8e37866ab2c7\",\"lastUpdateDateTime\":\"2021-05-12T19:20:51Z\",\"createdDateTime\":\"2021-05-12T19:20:41Z\",\"expirationDateTime\":\"2021-05-13T19:20:41Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:51Z\"},\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:47.5187299Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:51.0202489Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:01:58Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:47.4637832Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:58.719393Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", "responseHeaders": { - "apim-request-id": "9e46840c-e560-423e-ab65-07f5ee2ec92c", + "apim-request-id": "920668cd-58ae-474a-8b23-118196ae6e50", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:54 GMT", + "date": "Fri, 25 Jun 2021 20:02:00 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": "127" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/c90df2b2-3cdb-4443-a8ca-8e37866ab2c7", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"c90df2b2-3cdb-4443-a8ca-8e37866ab2c7\",\"lastUpdateDateTime\":\"2021-05-12T19:20:54Z\",\"createdDateTime\":\"2021-05-12T19:20:41Z\",\"expirationDateTime\":\"2021-05-13T19:20:41Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:54Z\"},\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:47.5187299Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:54.8544262Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:51.0202489Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:01:58Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:47.4637832Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:58.719393Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", "responseHeaders": { - "apim-request-id": "4623df1c-fcbc-4fa2-8893-caae757c86ae", + "apim-request-id": "034bc1fd-b476-4a5e-b711-69718b1053d8", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:56 GMT", + "date": "Fri, 25 Jun 2021 20:02:02 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "159" + "x-envoy-upstream-service-time": "114" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/c90df2b2-3cdb-4443-a8ca-8e37866ab2c7", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"c90df2b2-3cdb-4443-a8ca-8e37866ab2c7\",\"lastUpdateDateTime\":\"2021-05-12T19:20:54Z\",\"createdDateTime\":\"2021-05-12T19:20:41Z\",\"expirationDateTime\":\"2021-05-13T19:20:41Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:54Z\"},\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:47.5187299Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:54.8544262Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:51.0202489Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:01:58Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:47.4637832Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:58.719393Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", "responseHeaders": { - "apim-request-id": "8f00b330-68f0-4eae-9f5d-3002ce2acd9c", + "apim-request-id": "411627c5-660d-4578-b59a-48a39f91bf6d", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:56 GMT", + "date": "Fri, 25 Jun 2021 20:02:04 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "140" } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:01:58Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:47.4637832Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:58.719393Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "02180413-abde-4301-88c8-8f99dd5808db", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:02:06 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "122" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:01:58Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:47.4637832Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:58.719393Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "c1aca793-5955-4722-96ae-efba233611bb", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:02:08 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "124" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:01:58Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:47.4637832Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:58.719393Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "4dabfdb1-2f20-4835-92ff-896bbdf6ea97", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:02:11 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "118" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:01:58Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:47.4637832Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:58.719393Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "6335f0fb-089b-4c69-a44c-5996aa4544aa", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:02:13 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "108" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:01:58Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:47.4637832Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:58.719393Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "fee03d4d-754d-4f87-9f4a-a2f2ac238813", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:02:15 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "174" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:01:58Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:47.4637832Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:58.719393Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "9e7f9dc7-1059-4c4e-ac2e-e41ec8377f77", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:02:17 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "114" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:01:58Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:47.4637832Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:58.719393Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "928d0f93-6da3-4847-8103-92815a3960eb", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:02:19 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "132" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:01:58Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:47.4637832Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:58.719393Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "20ac4401-0b01-42ba-9904-1d057e4536d5", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:02:22 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "113" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:01:58Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:47.4637832Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:58.719393Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "1ac2931f-76b6-42fe-8811-fa0eda7e418d", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:02:27 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "148" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:01:58Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:47.4637832Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:58.719393Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "8a690ae8-f90d-42e5-8797-3c6bf9be758a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:02:29 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "117" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:01:58Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:47.4637832Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:58.719393Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "169381e8-3a04-445f-b029-52443dc41419", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:02:31 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "188" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:01:58Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:47.4637832Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:58.719393Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "7d2381c6-d2af-4b59-b23d-2935555c3947", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:02:34 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "139" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:01:58Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:47.4637832Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:58.719393Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "f7be123c-7baa-4a65-a0ab-9462f93a09ae", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:02:36 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "132" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:01:58Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:47.4637832Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:58.719393Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "7ffa489e-9330-4193-99c7-c449fc744f35", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:02:39 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "125" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:02:40Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:47.4637832Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:58.719393Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "9f4ad346-44f7-4eb3-ac80-d8c38d534296", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:02:41 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "139" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:02:40Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:47.4637832Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:58.719393Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "43c898dc-a287-4835-bfc8-52f1eb8459e6", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:02:43 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "129" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:02:40Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:47.4637832Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:58.719393Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "052ad24b-47bb-4144-9967-b939c25b7d4f", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:02:45 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "226" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:02:40Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:47.4637832Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:58.719393Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "a52e9409-53a1-466a-b1c5-805d225245ec", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:02:47 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "105" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:02:40Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:47.4637832Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:58.719393Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "c493c4d1-90ed-4da5-bf7a-6ed44a1abbb2", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:02:50 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "148" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:02:51Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:47.4637832Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:58.719393Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:02:51.7547589Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "784a63e5-bbb6-44d1-9814-e45a82da44d7", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:02:52 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "209" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/01e11957-b620-4602-b924-cb31ae38f708", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01e11957-b620-4602-b924-cb31ae38f708\",\"lastUpdateDateTime\":\"2021-06-25T20:02:51Z\",\"createdDateTime\":\"2021-06-25T20:01:40Z\",\"expirationDateTime\":\"2021-06-26T20:01:40Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:47.4637832Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:58.719393Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:02:51.7547589Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "a520d911-9db7-4337-8e28-d157ebb9ce0e", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:02:52 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "209" + } } ], "uniqueTestInfo": { "uniqueName": {}, "newDate": {} }, - "hash": "c6f092b647c7445547aef89cb26be79c" + "hash": "31bfac5ad44409ca98708bce61443165" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.json index 55f445cb13ca..93b5cffe3c2a 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:09 GMT", + "date": "Fri, 25 Jun 2021 20:01:18 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,25 +20,25 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - WUS2 ProdSlices", - "x-ms-request-id": "1f623800-874c-4277-b16b-879ac5dbbe00" + "x-ms-ests-server": "2.1.11829.9 - WUS2 ProdSlices", + "x-ms-request-id": "9c2a0045-784c-4338-a06a-1020b5966100" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze", + "url": "https://endpoint//text/analytics/v3.1/analyze", "query": {}, - "requestBody": "{\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]},\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"\",\"language\":\"en\"}]}}", + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"\",\"language\":\"en\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", "status": 400, - "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocumentBatch\",\"message\":\"Missing input documents.\"}}}", + "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocumentBatch\",\"message\":\"Document text is empty.\"}}}", "responseHeaders": { - "apim-request-id": "53000d79-1f39-44a3-bcb4-799964582c41", + "apim-request-id": "22770bf8-0ce0-4f5d-836a-9d5c94d76392", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:10 GMT", + "date": "Fri, 25 Jun 2021 20:01:19 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" } } ], @@ -46,5 +46,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "df4c50f939c2f492603cb35f015630f7" + "hash": "f9f441a825a1fe550fcd21e25757994a" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.json index 543239ebeea6..18c23b82df8a 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:05 GMT", + "date": "Fri, 25 Jun 2021 20:05:00 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,97 +20,116 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - NCUS ProdSlices", - "x-ms-request-id": "c1e705ec-3912-4743-ac25-e1055f334e00" + "x-ms-ests-server": "2.1.11829.9 - NCUS ProdSlices", + "x-ms-request-id": "5d80b8a6-644e-4556-a2b6-4c9bc6b95a00" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze", + "url": "https://endpoint//text/analytics/v3.1/analyze", "query": {}, - "requestBody": "{\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]},\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\",\"language\":\"\"},{\"id\":\"2\",\"text\":\"I did not like the hotel we stayed at.\",\"language\":\"\"},{\"id\":\"3\",\"text\":\"The restaurant had really good food.\"}]}}", + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\",\"language\":\"\"},{\"id\":\"2\",\"text\":\"I did not like the hotel we stayed at.\",\"language\":\"\"},{\"id\":\"3\",\"text\":\"The restaurant had really good food.\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", "status": 202, "response": "", "responseHeaders": { - "apim-request-id": "cccb9203-792e-410a-aebb-688674cb1731", - "date": "Wed, 12 May 2021 19:22:06 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/4bc24ee8-54f9-4081-8ac3-b423e8ecf233", + "apim-request-id": "3b721294-e942-4a80-b01d-3020c28ec685", + "date": "Fri, 25 Jun 2021 20:05:01 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "135" + "x-envoy-upstream-service-time": "258" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/4bc24ee8-54f9-4081-8ac3-b423e8ecf233", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"4bc24ee8-54f9-4081-8ac3-b423e8ecf233\",\"lastUpdateDateTime\":\"2021-05-12T19:22:06Z\",\"createdDateTime\":\"2021-05-12T19:22:06Z\",\"expirationDateTime\":\"2021-05-13T19:22:06Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:06Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:01Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "b4170a35-c352-4040-8d01-5e1b5fbbc465", + "apim-request-id": "62e918d5-2b4c-4fac-a7bc-580149e9d954", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:06 GMT", + "date": "Fri, 25 Jun 2021 20:05:01 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "8" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/4bc24ee8-54f9-4081-8ac3-b423e8ecf233", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"4bc24ee8-54f9-4081-8ac3-b423e8ecf233\",\"lastUpdateDateTime\":\"2021-05-12T19:22:06Z\",\"createdDateTime\":\"2021-05-12T19:22:06Z\",\"expirationDateTime\":\"2021-05-13T19:22:06Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:06Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:01Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "b6490cae-4382-4d93-ad1d-a2724489c90a", + "apim-request-id": "ada67dc4-24f2-4ad7-9bb5-eb6f6185e273", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:06 GMT", + "date": "Fri, 25 Jun 2021 20:05:01 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "7" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/4bc24ee8-54f9-4081-8ac3-b423e8ecf233", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"4bc24ee8-54f9-4081-8ac3-b423e8ecf233\",\"lastUpdateDateTime\":\"2021-05-12T19:22:08Z\",\"createdDateTime\":\"2021-05-12T19:22:06Z\",\"expirationDateTime\":\"2021-05-13T19:22:06Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:08Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:02Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "608e1dde-d701-43b7-a2a9-feccaea606f6", + "apim-request-id": "0b081839-01ce-483e-9af7-9e7767f47a20", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:08 GMT", + "date": "Fri, 25 Jun 2021 20:05:03 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:02Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "cac83108-4303-4326-800e-96a223fc2d59", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:05:05 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/4bc24ee8-54f9-4081-8ac3-b423e8ecf233", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"4bc24ee8-54f9-4081-8ac3-b423e8ecf233\",\"lastUpdateDateTime\":\"2021-05-12T19:22:08Z\",\"createdDateTime\":\"2021-05-12T19:22:06Z\",\"expirationDateTime\":\"2021-05-13T19:22:06Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:08Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:02Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "6164b961-baa6-44b4-bb34-59eaaddbb639", + "apim-request-id": "8f21f1fa-7ec9-4c35-90fa-5dff2b4072ce", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:10 GMT", + "date": "Fri, 25 Jun 2021 20:05:07 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -119,93 +138,226 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/4bc24ee8-54f9-4081-8ac3-b423e8ecf233", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:10Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "a55205a5-bed6-40c6-a758-ea534f7e0638", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:05:09 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "69" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:10Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "2634e2f8-744c-4569-bffc-75754fceef0b", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:05:11 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "67" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:10Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "3c9f022d-3115-4e52-91f7-157c6f1dc8c1", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:05:14 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "63" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:10Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "683c0403-e6e4-48ba-bed8-98386399efa3", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:05:16 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "59" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:10Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "56db7c27-13c5-48ab-b470-e299697112bc", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:05:18 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "79" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:20Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:20.1116742Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "172da94d-2d79-4e96-ab2a-ba81caae0f9d", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:05:21 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "127" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"4bc24ee8-54f9-4081-8ac3-b423e8ecf233\",\"lastUpdateDateTime\":\"2021-05-12T19:22:12Z\",\"createdDateTime\":\"2021-05-12T19:22:06Z\",\"expirationDateTime\":\"2021-05-13T19:22:06Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:12Z\"},\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:12.5909428Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.95}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.89}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.87}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:20Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:20.1116742Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", "responseHeaders": { - "apim-request-id": "44fcbf67-e7a0-427d-88ec-41154ecaf9ef", + "apim-request-id": "f71f8d20-67a1-4de8-a161-fd007eca77aa", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:12 GMT", + "date": "Fri, 25 Jun 2021 20:05:23 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "60" + "x-envoy-upstream-service-time": "120" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/4bc24ee8-54f9-4081-8ac3-b423e8ecf233", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"4bc24ee8-54f9-4081-8ac3-b423e8ecf233\",\"lastUpdateDateTime\":\"2021-05-12T19:22:13Z\",\"createdDateTime\":\"2021-05-12T19:22:06Z\",\"expirationDateTime\":\"2021-05-13T19:22:06Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:13Z\"},\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:12.5909428Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.95}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.89}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.87}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:13.6012496Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"park\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"restaurant\",\"good food\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:20Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:20.1116742Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", "responseHeaders": { - "apim-request-id": "7e073334-8f8a-4b94-9717-a8ee8c763291", + "apim-request-id": "a0651b0e-a2bb-4599-85e2-909bb2c8853d", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:14 GMT", + "date": "Fri, 25 Jun 2021 20:05:25 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "94" + "x-envoy-upstream-service-time": "121" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/4bc24ee8-54f9-4081-8ac3-b423e8ecf233", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"4bc24ee8-54f9-4081-8ac3-b423e8ecf233\",\"lastUpdateDateTime\":\"2021-05-12T19:22:13Z\",\"createdDateTime\":\"2021-05-12T19:22:06Z\",\"expirationDateTime\":\"2021-05-13T19:22:06Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:13Z\"},\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:12.5909428Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.95}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.89}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.87}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:13.6012496Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"park\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"restaurant\",\"good food\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:20Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:20.1116742Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", "responseHeaders": { - "apim-request-id": "816b77c5-c22f-4aeb-866c-bb14dd96eb9b", + "apim-request-id": "1bb1d9a6-129f-44c0-991a-1a529b29d037", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:17 GMT", + "date": "Fri, 25 Jun 2021 20:05:27 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "85" + "x-envoy-upstream-service-time": "191" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/4bc24ee8-54f9-4081-8ac3-b423e8ecf233", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"4bc24ee8-54f9-4081-8ac3-b423e8ecf233\",\"lastUpdateDateTime\":\"2021-05-12T19:22:13Z\",\"createdDateTime\":\"2021-05-12T19:22:06Z\",\"expirationDateTime\":\"2021-05-13T19:22:06Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:13Z\"},\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:12.5909428Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.95}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.89}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.87}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:13.6012496Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"park\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"restaurant\",\"good food\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:20Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:20.1116742Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", "responseHeaders": { - "apim-request-id": "2ef808d1-578c-4820-993f-e911a8e75b21", + "apim-request-id": "7555fa07-4526-4450-9a02-8a67f1fa2b0e", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:19 GMT", + "date": "Fri, 25 Jun 2021 20:05:29 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "105" + "x-envoy-upstream-service-time": "173" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/4bc24ee8-54f9-4081-8ac3-b423e8ecf233", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"4bc24ee8-54f9-4081-8ac3-b423e8ecf233\",\"lastUpdateDateTime\":\"2021-05-12T19:22:19Z\",\"createdDateTime\":\"2021-05-12T19:22:06Z\",\"expirationDateTime\":\"2021-05-13T19:22:06Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:19Z\"},\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:12.5909428Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.95}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.89}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.87}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:19.9674532Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:13.6012496Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"park\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"restaurant\",\"good food\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:20Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:20.1116742Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", "responseHeaders": { - "apim-request-id": "b1873cfb-031a-49e3-a8ee-c4375eb550d5", + "apim-request-id": "a238ea82-411e-4d19-85d8-b2e010178feb", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:21 GMT", + "date": "Fri, 25 Jun 2021 20:05:32 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "141" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:20Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:20.1116742Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "9af35ee7-bae6-483e-b4b6-38ac0cc47733", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:05:34 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -214,21 +366,420 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/4bc24ee8-54f9-4081-8ac3-b423e8ecf233", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:20Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:20.1116742Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "3a6176ee-8f8b-4a91-a2fd-48d5f54d9efb", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:05:36 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "133" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:20Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:20.1116742Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "73f54cc3-9a13-4e32-ab66-523cf74a66ae", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:05:38 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "109" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:20Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:20.1116742Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "abd3f04f-79ff-4ca0-aa28-a6ccc63fec9e", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:05:40 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "117" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:20Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:20.1116742Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "891cdf38-ec7f-47e6-b6fc-fc1418258230", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:05:42 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "119" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:20Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:20.1116742Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "66e27688-5a88-4d17-9b0f-6881e93c5832", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:05:44 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "121" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:20Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:20.1116742Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "9ebe8a47-b075-4950-8add-a36780dc0f59", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:05:46 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "125" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:20Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:20.1116742Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "873863dd-fdbf-4962-b508-d4281655785b", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:05:49 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "133" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:20Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:20.1116742Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "14279a03-c936-49b3-99b7-6dda2cf3714a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:05:51 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "180" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:20Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:20.1116742Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "c0a97afb-165a-4576-b2c5-cd3e2d8210d8", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:05:54 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "110" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:20Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:20.1116742Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "079b1bca-b801-4d98-bc43-5d8af26200b1", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:05:56 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "133" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:20Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:20.1116742Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "5fbd886b-3f8b-430e-b0e0-8993fdc2d668", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:05:58 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "114" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:20Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:20.1116742Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "6e9c9bcd-0757-422a-8b28-5a47eba3f57b", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:06:00 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "107" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:20Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:20.1116742Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "24902766-76f4-4316-9fcb-fbf3c9b2a86d", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:06:02 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "145" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:20Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:20.1116742Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "a4ab3211-f375-4505-90ea-429b870996d6", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:06:04 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "123" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:20Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:20.1116742Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "2f08ad4a-2115-4369-86f2-5dbdb5f48397", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:06:07 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "117" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:20Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:20.1116742Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "802ee9f9-a0ea-4efa-b627-05a05ca923f1", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:06:09 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "132" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:20Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:20.1116742Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "dbf33c18-c401-4054-9a3a-bfc499e24e8d", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:06:11 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "126" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:20Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:20.1116742Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "a99089b7-d54d-4bc4-9d49-820216d09d1b", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:06:13 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "113" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:20Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:20.1116742Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "10e7e97e-ad53-48ce-af42-fe0d370b1b41", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:06:15 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "119" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:05:20Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:20.1116742Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "c43a472a-c7c0-4065-b5ae-c5192459d118", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:06:17 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "149" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:06:20Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:20.1116742Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:06:20.3712313Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"park\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"good food\",\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "1a426fa1-4217-44f1-8e4c-264190ea077a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:06:20 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "291" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4ea4761d-4dca-49a4-8051-40ac5c7d92dd", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"4bc24ee8-54f9-4081-8ac3-b423e8ecf233\",\"lastUpdateDateTime\":\"2021-05-12T19:22:19Z\",\"createdDateTime\":\"2021-05-12T19:22:06Z\",\"expirationDateTime\":\"2021-05-13T19:22:06Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:19Z\"},\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:12.5909428Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.95}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.89}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.87}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:19.9674532Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:13.6012496Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"park\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"restaurant\",\"good food\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"4ea4761d-4dca-49a4-8051-40ac5c7d92dd\",\"lastUpdateDateTime\":\"2021-06-25T20:06:20Z\",\"createdDateTime\":\"2021-06-25T20:05:01Z\",\"expirationDateTime\":\"2021-06-26T20:05:01Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:20.1116742Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:08.522256Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:06:20.3712313Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"park\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"good food\",\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "349cc69a-f8f7-40b5-915c-31fb5b0970b8", + "apim-request-id": "363de599-3886-4021-8c29-fff5cf38ff26", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:21 GMT", + "date": "Fri, 25 Jun 2021 20:06:20 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "159" + "x-envoy-upstream-service-time": "206" } } ], @@ -236,5 +787,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "c3d86987f42b63e08f45ff9fe639d188" + "hash": "36897fdd6ebafb0b68c76afe29d7a3d4" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.json index 244aefbdb8a6..d1a712f52e6f 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:31 GMT", + "date": "Fri, 25 Jun 2021 20:10:13 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,78 +20,97 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - SCUS ProdSlices", - "x-ms-request-id": "c53ac30c-0f0c-44df-8647-6ebb8a225900" + "x-ms-ests-server": "2.1.11829.9 - NCUS ProdSlices", + "x-ms-request-id": "f444c40d-3826-47ee-8fe8-2032e1df6100" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze", + "url": "https://endpoint//text/analytics/v3.1/analyze", "query": {}, - "requestBody": "{\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"UnicodeCodePoint\"}}]},\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987\",\"language\":\"en\"}]}}", + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987\",\"language\":\"en\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"UnicodeCodePoint\"}}]}}", "status": 202, "response": "", "responseHeaders": { - "apim-request-id": "aa9fae85-c896-40da-ad95-c7160db1a617", - "date": "Wed, 12 May 2021 19:23:30 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/a801855a-14df-40b6-9928-fedf3db4a54c", + "apim-request-id": "a3e0d108-c467-4093-b44e-614a9487620d", + "date": "Fri, 25 Jun 2021 20:10:14 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/e844c28d-149c-4ff1-9c8c-a423cd23e0be", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "67" + "x-envoy-upstream-service-time": "138" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/a801855a-14df-40b6-9928-fedf3db4a54c", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e844c28d-149c-4ff1-9c8c-a423cd23e0be", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"a801855a-14df-40b6-9928-fedf3db4a54c\",\"lastUpdateDateTime\":\"2021-05-12T19:23:31Z\",\"createdDateTime\":\"2021-05-12T19:23:31Z\",\"expirationDateTime\":\"2021-05-13T19:23:31Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:23:31Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"e844c28d-149c-4ff1-9c8c-a423cd23e0be\",\"lastUpdateDateTime\":\"2021-06-25T20:10:14Z\",\"createdDateTime\":\"2021-06-25T20:10:14Z\",\"expirationDateTime\":\"2021-06-26T20:10:14Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "c251a19e-2d6f-4626-800c-db76c3b62826", + "apim-request-id": "ecd7ccb2-c126-47af-b681-c1c214e9fcba", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:30 GMT", + "date": "Fri, 25 Jun 2021 20:10:14 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "7" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/a801855a-14df-40b6-9928-fedf3db4a54c", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e844c28d-149c-4ff1-9c8c-a423cd23e0be", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"a801855a-14df-40b6-9928-fedf3db4a54c\",\"lastUpdateDateTime\":\"2021-05-12T19:23:31Z\",\"createdDateTime\":\"2021-05-12T19:23:31Z\",\"expirationDateTime\":\"2021-05-13T19:23:31Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:23:31Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"e844c28d-149c-4ff1-9c8c-a423cd23e0be\",\"lastUpdateDateTime\":\"2021-06-25T20:10:14Z\",\"createdDateTime\":\"2021-06-25T20:10:14Z\",\"expirationDateTime\":\"2021-06-26T20:10:14Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "e78fed05-6159-4de1-870b-9614fd10791f", + "apim-request-id": "b2c5d65d-aeb3-4bf5-9cd4-50b064c868f0", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:30 GMT", + "date": "Fri, 25 Jun 2021 20:10:14 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e844c28d-149c-4ff1-9c8c-a423cd23e0be", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e844c28d-149c-4ff1-9c8c-a423cd23e0be\",\"lastUpdateDateTime\":\"2021-06-25T20:10:15Z\",\"createdDateTime\":\"2021-06-25T20:10:14Z\",\"expirationDateTime\":\"2021-06-26T20:10:14Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "cc3ee007-ad69-470b-aaa1-79d6edaa51d5", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:10:16 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "15" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/a801855a-14df-40b6-9928-fedf3db4a54c", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e844c28d-149c-4ff1-9c8c-a423cd23e0be", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"a801855a-14df-40b6-9928-fedf3db4a54c\",\"lastUpdateDateTime\":\"2021-05-12T19:23:32Z\",\"createdDateTime\":\"2021-05-12T19:23:31Z\",\"expirationDateTime\":\"2021-05-13T19:23:31Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:23:32Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"e844c28d-149c-4ff1-9c8c-a423cd23e0be\",\"lastUpdateDateTime\":\"2021-06-25T20:10:15Z\",\"createdDateTime\":\"2021-06-25T20:10:14Z\",\"expirationDateTime\":\"2021-06-26T20:10:14Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "5b440037-67c7-4b9d-b2eb-d4f4f3a67661", + "apim-request-id": "06a8e723-b7e5-4388-bd37-d0df46c09c9c", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:33 GMT", + "date": "Fri, 25 Jun 2021 20:10:18 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -100,59 +119,59 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/a801855a-14df-40b6-9928-fedf3db4a54c", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e844c28d-149c-4ff1-9c8c-a423cd23e0be", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"a801855a-14df-40b6-9928-fedf3db4a54c\",\"lastUpdateDateTime\":\"2021-05-12T19:23:32Z\",\"createdDateTime\":\"2021-05-12T19:23:31Z\",\"expirationDateTime\":\"2021-05-13T19:23:31Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:23:32Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"e844c28d-149c-4ff1-9c8c-a423cd23e0be\",\"lastUpdateDateTime\":\"2021-06-25T20:10:15Z\",\"createdDateTime\":\"2021-06-25T20:10:14Z\",\"expirationDateTime\":\"2021-06-26T20:10:14Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "b5d0c423-c4f4-4166-b1e1-66cc782d1696", + "apim-request-id": "b5b02599-71ed-4cc9-ac73-3ffa9ce7e650", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:35 GMT", + "date": "Fri, 25 Jun 2021 20:10:21 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "13" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/a801855a-14df-40b6-9928-fedf3db4a54c", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e844c28d-149c-4ff1-9c8c-a423cd23e0be", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"a801855a-14df-40b6-9928-fedf3db4a54c\",\"lastUpdateDateTime\":\"2021-05-12T19:23:37Z\",\"createdDateTime\":\"2021-05-12T19:23:31Z\",\"expirationDateTime\":\"2021-05-13T19:23:31Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:23:37Z\"},\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:23:37.5614256Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":17,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "response": "{\"jobId\":\"e844c28d-149c-4ff1-9c8c-a423cd23e0be\",\"lastUpdateDateTime\":\"2021-06-25T20:10:21Z\",\"createdDateTime\":\"2021-06-25T20:10:14Z\",\"expirationDateTime\":\"2021-06-26T20:10:14Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:10:21.5135088Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":17,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", "responseHeaders": { - "apim-request-id": "e2805346-a186-4dec-bff7-82926bd59587", + "apim-request-id": "8e7e7773-6e8f-4b1c-becd-0e2647962a25", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:37 GMT", + "date": "Fri, 25 Jun 2021 20:10:23 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "124" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/a801855a-14df-40b6-9928-fedf3db4a54c", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e844c28d-149c-4ff1-9c8c-a423cd23e0be", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"a801855a-14df-40b6-9928-fedf3db4a54c\",\"lastUpdateDateTime\":\"2021-05-12T19:23:37Z\",\"createdDateTime\":\"2021-05-12T19:23:31Z\",\"expirationDateTime\":\"2021-05-13T19:23:31Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:23:37Z\"},\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:23:37.5614256Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":17,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "response": "{\"jobId\":\"e844c28d-149c-4ff1-9c8c-a423cd23e0be\",\"lastUpdateDateTime\":\"2021-06-25T20:10:21Z\",\"createdDateTime\":\"2021-06-25T20:10:14Z\",\"expirationDateTime\":\"2021-06-26T20:10:14Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:10:21.5135088Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":17,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", "responseHeaders": { - "apim-request-id": "0a3eb058-3e6b-4d34-befc-d41662507a46", + "apim-request-id": "c1bb761c-6e7c-437f-914c-51f3c208ae9a", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:37 GMT", + "date": "Fri, 25 Jun 2021 20:10:23 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": "41" } } ], @@ -160,5 +179,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "ed717653e7bafdb530f36a6c3b406dc0" + "hash": "425e31a777619d837f737b23058c4474" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_invalid_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_invalid_language_hint.json index ba89ecb56117..1f526eec7828 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_invalid_language_hint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_invalid_language_hint.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:37 GMT", + "date": "Fri, 25 Jun 2021 20:08:00 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,40 +20,40 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - WUS2 ProdSlices", - "x-ms-request-id": "cd27eebe-0298-4850-834e-c0d84d74b600" + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "84bdf8e2-d00d-4332-9ea9-2d5e5cbf7900" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze", + "url": "https://endpoint//text/analytics/v3.1/analyze", "query": {}, - "requestBody": "{\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]},\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"This should fail because we're passing in an invalid language hint\",\"language\":\"notalanguage\"}]}}", + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"This should fail because we're passing in an invalid language hint\",\"language\":\"notalanguage\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", "status": 202, "response": "", "responseHeaders": { - "apim-request-id": "e338b584-8f76-42a0-931d-445f9c9b1a34", - "date": "Wed, 12 May 2021 19:22:37 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/c6ed74ec-0cee-4aaf-b65b-14037f818412", + "apim-request-id": "74b38a66-ec0c-4689-8301-0d3617658313", + "date": "Fri, 25 Jun 2021 20:08:00 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/a42a677e-bb5f-4a38-b322-83fe24e9055b", "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": "200" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/c6ed74ec-0cee-4aaf-b65b-14037f818412", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/a42a677e-bb5f-4a38-b322-83fe24e9055b", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"c6ed74ec-0cee-4aaf-b65b-14037f818412\",\"lastUpdateDateTime\":\"2021-05-12T19:22:37Z\",\"createdDateTime\":\"2021-05-12T19:22:37Z\",\"expirationDateTime\":\"2021-05-13T19:22:37Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:37Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"a42a677e-bb5f-4a38-b322-83fe24e9055b\",\"lastUpdateDateTime\":\"2021-06-25T20:08:01Z\",\"createdDateTime\":\"2021-06-25T20:08:01Z\",\"expirationDateTime\":\"2021-06-26T20:08:01Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "50b8875a-b6da-4c23-a4ee-30cf63a002ac", + "apim-request-id": "d4eb11e3-290c-43d1-ab54-06862ec87c8c", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:37 GMT", + "date": "Fri, 25 Jun 2021 20:08:00 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -62,55 +62,55 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/c6ed74ec-0cee-4aaf-b65b-14037f818412", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/a42a677e-bb5f-4a38-b322-83fe24e9055b", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"c6ed74ec-0cee-4aaf-b65b-14037f818412\",\"lastUpdateDateTime\":\"2021-05-12T19:22:37Z\",\"createdDateTime\":\"2021-05-12T19:22:37Z\",\"expirationDateTime\":\"2021-05-13T19:22:37Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:37Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"a42a677e-bb5f-4a38-b322-83fe24e9055b\",\"lastUpdateDateTime\":\"2021-06-25T20:08:01Z\",\"createdDateTime\":\"2021-06-25T20:08:01Z\",\"expirationDateTime\":\"2021-06-26T20:08:01Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "e94a7768-ab00-45d5-bd51-1b669066c5d2", + "apim-request-id": "715abb9a-6b05-4676-b038-82909982adf3", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:37 GMT", + "date": "Fri, 25 Jun 2021 20:08:00 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "9" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/c6ed74ec-0cee-4aaf-b65b-14037f818412", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/a42a677e-bb5f-4a38-b322-83fe24e9055b", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"c6ed74ec-0cee-4aaf-b65b-14037f818412\",\"lastUpdateDateTime\":\"2021-05-12T19:22:39Z\",\"createdDateTime\":\"2021-05-12T19:22:37Z\",\"expirationDateTime\":\"2021-05-13T19:22:37Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:39Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"a42a677e-bb5f-4a38-b322-83fe24e9055b\",\"lastUpdateDateTime\":\"2021-06-25T20:08:01Z\",\"createdDateTime\":\"2021-06-25T20:08:01Z\",\"expirationDateTime\":\"2021-06-26T20:08:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "86d768a8-72e8-426d-acec-e06d22b6ca85", + "apim-request-id": "f707dab5-2327-44f5-9b49-da2e61d94a51", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:39 GMT", + "date": "Fri, 25 Jun 2021 20:08:03 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/c6ed74ec-0cee-4aaf-b65b-14037f818412", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/a42a677e-bb5f-4a38-b322-83fe24e9055b", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"c6ed74ec-0cee-4aaf-b65b-14037f818412\",\"lastUpdateDateTime\":\"2021-05-12T19:22:39Z\",\"createdDateTime\":\"2021-05-12T19:22:37Z\",\"expirationDateTime\":\"2021-05-13T19:22:37Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:39Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"a42a677e-bb5f-4a38-b322-83fe24e9055b\",\"lastUpdateDateTime\":\"2021-06-25T20:08:04Z\",\"createdDateTime\":\"2021-06-25T20:08:01Z\",\"expirationDateTime\":\"2021-06-26T20:08:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "e7005c0d-97d2-417e-8a5e-b20d1ffd438c", + "apim-request-id": "000a1ed4-47b5-4758-976e-cff11585aa6c", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:41 GMT", + "date": "Fri, 25 Jun 2021 20:08:05 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -119,173 +119,230 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/c6ed74ec-0cee-4aaf-b65b-14037f818412", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/a42a677e-bb5f-4a38-b322-83fe24e9055b", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"a42a677e-bb5f-4a38-b322-83fe24e9055b\",\"lastUpdateDateTime\":\"2021-06-25T20:08:07Z\",\"createdDateTime\":\"2021-06-25T20:08:01Z\",\"expirationDateTime\":\"2021-06-26T20:08:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:07.1153743Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "53fb8a28-0191-46fe-bb64-40da2272eab4", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:08:07 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/a42a677e-bb5f-4a38-b322-83fe24e9055b", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"a42a677e-bb5f-4a38-b322-83fe24e9055b\",\"lastUpdateDateTime\":\"2021-06-25T20:08:07Z\",\"createdDateTime\":\"2021-06-25T20:08:01Z\",\"expirationDateTime\":\"2021-06-26T20:08:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:07.1153743Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "6725a073-2c63-4d29-ae9d-fe54c47f81eb", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:08:09 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "46" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/a42a677e-bb5f-4a38-b322-83fe24e9055b", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"a42a677e-bb5f-4a38-b322-83fe24e9055b\",\"lastUpdateDateTime\":\"2021-06-25T20:08:07Z\",\"createdDateTime\":\"2021-06-25T20:08:01Z\",\"expirationDateTime\":\"2021-06-26T20:08:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:07.1153743Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "165f4d28-db64-4836-8600-4fce4eb7a790", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:08:12 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "45" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/a42a677e-bb5f-4a38-b322-83fe24e9055b", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"c6ed74ec-0cee-4aaf-b65b-14037f818412\",\"lastUpdateDateTime\":\"2021-05-12T19:22:43Z\",\"createdDateTime\":\"2021-05-12T19:22:37Z\",\"expirationDateTime\":\"2021-05-13T19:22:37Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:43Z\"},\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:43.4930903Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"a42a677e-bb5f-4a38-b322-83fe24e9055b\",\"lastUpdateDateTime\":\"2021-06-25T20:08:07Z\",\"createdDateTime\":\"2021-06-25T20:08:01Z\",\"expirationDateTime\":\"2021-06-26T20:08:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:07.1153743Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "a6dbf3a8-3a4a-485d-8aa1-7ab00346528e", + "apim-request-id": "7a44fae7-3a75-4bae-afed-fe88574aba5e", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:44 GMT", + "date": "Fri, 25 Jun 2021 20:08:14 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "60" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/c6ed74ec-0cee-4aaf-b65b-14037f818412", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/a42a677e-bb5f-4a38-b322-83fe24e9055b", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"c6ed74ec-0cee-4aaf-b65b-14037f818412\",\"lastUpdateDateTime\":\"2021-05-12T19:22:43Z\",\"createdDateTime\":\"2021-05-12T19:22:37Z\",\"expirationDateTime\":\"2021-05-13T19:22:37Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:43Z\"},\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:43.4930903Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"a42a677e-bb5f-4a38-b322-83fe24e9055b\",\"lastUpdateDateTime\":\"2021-06-25T20:08:07Z\",\"createdDateTime\":\"2021-06-25T20:08:01Z\",\"expirationDateTime\":\"2021-06-26T20:08:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:07.1153743Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "8c63455c-30a1-4866-bc5a-c6760c5f53c8", + "apim-request-id": "7dbd57fd-184c-4c01-bc9d-e99c86cbf0ce", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:46 GMT", + "date": "Fri, 25 Jun 2021 20:08:16 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "105" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/c6ed74ec-0cee-4aaf-b65b-14037f818412", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/a42a677e-bb5f-4a38-b322-83fe24e9055b", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"c6ed74ec-0cee-4aaf-b65b-14037f818412\",\"lastUpdateDateTime\":\"2021-05-12T19:22:43Z\",\"createdDateTime\":\"2021-05-12T19:22:37Z\",\"expirationDateTime\":\"2021-05-13T19:22:37Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:43Z\"},\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:43.4930903Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"a42a677e-bb5f-4a38-b322-83fe24e9055b\",\"lastUpdateDateTime\":\"2021-06-25T20:08:07Z\",\"createdDateTime\":\"2021-06-25T20:08:01Z\",\"expirationDateTime\":\"2021-06-26T20:08:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:07.1153743Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "5808ed70-afc4-48ab-b693-39ac6f154abc", + "apim-request-id": "becb5ea3-54f9-4d65-b1c1-1a30f39b93b7", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:48 GMT", + "date": "Fri, 25 Jun 2021 20:08:18 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "46" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/c6ed74ec-0cee-4aaf-b65b-14037f818412", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/a42a677e-bb5f-4a38-b322-83fe24e9055b", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"c6ed74ec-0cee-4aaf-b65b-14037f818412\",\"lastUpdateDateTime\":\"2021-05-12T19:22:43Z\",\"createdDateTime\":\"2021-05-12T19:22:37Z\",\"expirationDateTime\":\"2021-05-13T19:22:37Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:43Z\"},\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:43.4930903Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"a42a677e-bb5f-4a38-b322-83fe24e9055b\",\"lastUpdateDateTime\":\"2021-06-25T20:08:07Z\",\"createdDateTime\":\"2021-06-25T20:08:01Z\",\"expirationDateTime\":\"2021-06-26T20:08:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:07.1153743Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "b876735b-2efc-460b-bcfe-c8a3e9bb10b0", + "apim-request-id": "8af11308-cd24-4e2e-a882-801a42ee3f9e", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:50 GMT", + "date": "Fri, 25 Jun 2021 20:08:20 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "41" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/c6ed74ec-0cee-4aaf-b65b-14037f818412", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/a42a677e-bb5f-4a38-b322-83fe24e9055b", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"c6ed74ec-0cee-4aaf-b65b-14037f818412\",\"lastUpdateDateTime\":\"2021-05-12T19:22:43Z\",\"createdDateTime\":\"2021-05-12T19:22:37Z\",\"expirationDateTime\":\"2021-05-13T19:22:37Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:43Z\"},\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:43.4930903Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"a42a677e-bb5f-4a38-b322-83fe24e9055b\",\"lastUpdateDateTime\":\"2021-06-25T20:08:07Z\",\"createdDateTime\":\"2021-06-25T20:08:01Z\",\"expirationDateTime\":\"2021-06-26T20:08:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:07.1153743Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "882be7bf-d032-4f9a-a9b6-d7a5531ec2f5", + "apim-request-id": "d16da2aa-3278-474a-8260-56bced6349bf", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:52 GMT", + "date": "Fri, 25 Jun 2021 20:08:22 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-envoy-upstream-service-time": "44" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/c6ed74ec-0cee-4aaf-b65b-14037f818412", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/a42a677e-bb5f-4a38-b322-83fe24e9055b", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"c6ed74ec-0cee-4aaf-b65b-14037f818412\",\"lastUpdateDateTime\":\"2021-05-12T19:22:43Z\",\"createdDateTime\":\"2021-05-12T19:22:37Z\",\"expirationDateTime\":\"2021-05-13T19:22:37Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:43Z\"},\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:43.4930903Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"a42a677e-bb5f-4a38-b322-83fe24e9055b\",\"lastUpdateDateTime\":\"2021-06-25T20:08:07Z\",\"createdDateTime\":\"2021-06-25T20:08:01Z\",\"expirationDateTime\":\"2021-06-26T20:08:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:07.1153743Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "14a87692-3037-4fca-9322-a64142f39fae", + "apim-request-id": "638f0c36-cd60-4e05-9831-ec2cf7adec26", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:54 GMT", + "date": "Fri, 25 Jun 2021 20:08:24 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-envoy-upstream-service-time": "48" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/c6ed74ec-0cee-4aaf-b65b-14037f818412", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/a42a677e-bb5f-4a38-b322-83fe24e9055b", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"c6ed74ec-0cee-4aaf-b65b-14037f818412\",\"lastUpdateDateTime\":\"2021-05-12T19:22:55Z\",\"createdDateTime\":\"2021-05-12T19:22:37Z\",\"expirationDateTime\":\"2021-05-13T19:22:37Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:55Z\"},\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:55.8597922Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:43.4930903Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"a42a677e-bb5f-4a38-b322-83fe24e9055b\",\"lastUpdateDateTime\":\"2021-06-25T20:08:25Z\",\"createdDateTime\":\"2021-06-25T20:08:01Z\",\"expirationDateTime\":\"2021-06-26T20:08:01Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:25.3280119Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:07.1153743Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "5932fc9d-6323-40ed-93df-b1f20567f529", + "apim-request-id": "30c98a73-2c86-4f56-a727-a1e7aeeedaba", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:56 GMT", + "date": "Fri, 25 Jun 2021 20:08:26 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-envoy-upstream-service-time": "130" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/c6ed74ec-0cee-4aaf-b65b-14037f818412", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/a42a677e-bb5f-4a38-b322-83fe24e9055b", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"c6ed74ec-0cee-4aaf-b65b-14037f818412\",\"lastUpdateDateTime\":\"2021-05-12T19:22:58Z\",\"createdDateTime\":\"2021-05-12T19:22:37Z\",\"expirationDateTime\":\"2021-05-13T19:22:37Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:58Z\"},\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:55.8597922Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:58.1804109Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:43.4930903Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"a42a677e-bb5f-4a38-b322-83fe24e9055b\",\"lastUpdateDateTime\":\"2021-06-25T20:08:27Z\",\"createdDateTime\":\"2021-06-25T20:08:01Z\",\"expirationDateTime\":\"2021-06-26T20:08:01Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:25.3280119Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:27.684236Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:07.1153743Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "8c258cf0-b420-479c-8973-4dfe0b26775f", + "apim-request-id": "183524ab-99f5-4654-9f27-667dcc5b1d80", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:58 GMT", + "date": "Fri, 25 Jun 2021 20:08:28 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "95" + "x-envoy-upstream-service-time": "132" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/c6ed74ec-0cee-4aaf-b65b-14037f818412", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/a42a677e-bb5f-4a38-b322-83fe24e9055b", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"c6ed74ec-0cee-4aaf-b65b-14037f818412\",\"lastUpdateDateTime\":\"2021-05-12T19:22:58Z\",\"createdDateTime\":\"2021-05-12T19:22:37Z\",\"expirationDateTime\":\"2021-05-13T19:22:37Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:58Z\"},\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:55.8597922Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:58.1804109Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:43.4930903Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"a42a677e-bb5f-4a38-b322-83fe24e9055b\",\"lastUpdateDateTime\":\"2021-06-25T20:08:27Z\",\"createdDateTime\":\"2021-06-25T20:08:01Z\",\"expirationDateTime\":\"2021-06-26T20:08:01Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:25.3280119Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:27.684236Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:07.1153743Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "c4012381-06fd-48a7-8af7-0bde9e8ebdac", + "apim-request-id": "10b1e33a-f308-4199-bb86-21a0e953b1ea", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:58 GMT", + "date": "Fri, 25 Jun 2021 20:08:29 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "81" + "x-envoy-upstream-service-time": "146" } } ], @@ -293,5 +350,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "88a45b6fe1b6beae0c01c1c32021dcf6" + "hash": "55a9332c301d4649020961749a1eefec" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_malformed_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_malformed_actions.json index 98bb7599b7f1..545c91f80dbc 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_malformed_actions.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_malformed_actions.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Tue, 18 May 2021 19:57:42 GMT", + "date": "Wed, 30 Jun 2021 19:34:43 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,25 +20,25 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - WUS2 ProdSlices", - "x-ms-request-id": "30182c44-a38a-4b06-8524-f336e5f41500" + "x-ms-ests-server": "2.1.11829.9 - WUS2 ProdSlices", + "x-ms-request-id": "7c9f8702-87aa-46a2-8483-efd0f1da4601" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze", + "url": "https://endpoint//text/analytics/v3.1/analyze", "query": {}, - "requestBody": "{\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"bad\",\"stringIndexType\":\"Utf16CodeUnit\"}},{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}},{\"parameters\":{\"model-version\":\"bad\",\"stringIndexType\":\"TextElement_v8\"}}]},\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\"}]}}", + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"bad\",\"stringIndexType\":\"TextElement_v8\"}}]}}", "status": 400, - "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Job task parameter value bad is not supported for model-version parameter for job task type PersonallyIdentifiableInformation. Supported values latest,2020-07-01,2021-01-15.\"}}", + "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid parameter in request\",\"innererror\":{\"code\":\"InvalidParameterValue\",\"message\":\"Job task parameter value bad is not supported for model-version parameter for job task type PersonallyIdentifiableInformation. Supported values latest,2020-07-01,2021-01-15.\"}}}", "responseHeaders": { - "apim-request-id": "85e0e984-2360-47d9-83be-94cfc1d2d9d6", + "apim-request-id": "9bfe4f7b-c910-48a0-a254-934efac82a8a", "content-type": "application/json; charset=utf-8", - "date": "Tue, 18 May 2021 19:57:42 GMT", + "date": "Wed, 30 Jun 2021 19:34:43 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "507" } } ], @@ -46,5 +46,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "ebcb37fb35361f2e9eeffaa20bba2b1d" + "hash": "35683911136f1ebaf864ca74c3f0b597" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_multiple_actions_per_type_are_disallowed.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_multiple_actions_per_type_are_disallowed.json new file mode 100644 index 000000000000..ddbcfe4d7dbe --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_multiple_actions_per_type_are_disallowed.json @@ -0,0 +1,8 @@ +{ + "recordings": [], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "64c8206f4b6d3882233f0ebe745aea90" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_operation_metadata.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_operation_metadata.json index b904eeba65c8..6e42ac629a64 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_operation_metadata.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_operation_metadata.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:22 GMT", + "date": "Fri, 25 Jun 2021 20:09:58 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,40 +20,40 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - NCUS ProdSlices", - "x-ms-request-id": "5c46cd0a-304b-4f9b-a5f1-199c01915100" + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "04923b22-c5b5-4349-b2d4-c550beea7d00" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze", + "url": "https://endpoint//text/analytics/v3.1/analyze", "query": {}, - "requestBody": "{\"displayName\":\"testJob\",\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]},\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\"},{\"id\":\"2\",\"text\":\"Este es un document escrito en Español.\"},{\"id\":\"3\",\"text\":\"猫は幸せ\"}]}}", + "requestBody": "{\"displayName\":\"testJob\",\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\"},{\"id\":\"2\",\"text\":\"Este es un document escrito en Español.\"},{\"id\":\"3\",\"text\":\"猫は幸せ\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", "status": 202, "response": "", "responseHeaders": { - "apim-request-id": "cd7229b1-612f-4040-bf57-450234f867c7", - "date": "Wed, 12 May 2021 19:23:22 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/361c484c-18fb-40e7-beb3-30851090e319", + "apim-request-id": "cd2ef66a-243a-4ea2-a3e6-9476a0f31efe", + "date": "Fri, 25 Jun 2021 20:09:59 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/1aaf83bf-3375-4ccf-b53a-615f4af32dfd", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "92" + "x-envoy-upstream-service-time": "227" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/361c484c-18fb-40e7-beb3-30851090e319", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/1aaf83bf-3375-4ccf-b53a-615f4af32dfd", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"361c484c-18fb-40e7-beb3-30851090e319\",\"lastUpdateDateTime\":\"2021-05-12T19:23:22Z\",\"createdDateTime\":\"2021-05-12T19:23:22Z\",\"expirationDateTime\":\"2021-05-13T19:23:22Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"details\":{\"name\":\"testJob\",\"lastUpdateDateTime\":\"2021-05-12T19:23:22Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"1aaf83bf-3375-4ccf-b53a-615f4af32dfd\",\"lastUpdateDateTime\":\"2021-06-25T20:09:59Z\",\"createdDateTime\":\"2021-06-25T20:09:59Z\",\"expirationDateTime\":\"2021-06-26T20:09:59Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "460386fe-fc8f-4afe-9124-f1cb3fff7241", + "apim-request-id": "72722a4c-53dc-4b0f-949f-a207cd5d2352", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:22 GMT", + "date": "Fri, 25 Jun 2021 20:09:59 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -62,36 +62,55 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/361c484c-18fb-40e7-beb3-30851090e319", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/1aaf83bf-3375-4ccf-b53a-615f4af32dfd", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"361c484c-18fb-40e7-beb3-30851090e319\",\"lastUpdateDateTime\":\"2021-05-12T19:23:22Z\",\"createdDateTime\":\"2021-05-12T19:23:22Z\",\"expirationDateTime\":\"2021-05-13T19:23:22Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"details\":{\"name\":\"testJob\",\"lastUpdateDateTime\":\"2021-05-12T19:23:22Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"1aaf83bf-3375-4ccf-b53a-615f4af32dfd\",\"lastUpdateDateTime\":\"2021-06-25T20:09:59Z\",\"createdDateTime\":\"2021-06-25T20:09:59Z\",\"expirationDateTime\":\"2021-06-26T20:09:59Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "5be88a47-d69e-4f3c-99ad-7b3457995ac8", + "apim-request-id": "7a08ea44-c6c1-4f33-979f-361ba1ca12d5", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:22 GMT", + "date": "Fri, 25 Jun 2021 20:09:59 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/1aaf83bf-3375-4ccf-b53a-615f4af32dfd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"1aaf83bf-3375-4ccf-b53a-615f4af32dfd\",\"lastUpdateDateTime\":\"2021-06-25T20:10:00Z\",\"createdDateTime\":\"2021-06-25T20:09:59Z\",\"expirationDateTime\":\"2021-06-26T20:09:59Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "44be0d9b-6eee-4302-8c09-130c5938e6ee", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:10:01 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/361c484c-18fb-40e7-beb3-30851090e319", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/1aaf83bf-3375-4ccf-b53a-615f4af32dfd", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"361c484c-18fb-40e7-beb3-30851090e319\",\"lastUpdateDateTime\":\"2021-05-12T19:23:24Z\",\"createdDateTime\":\"2021-05-12T19:23:22Z\",\"expirationDateTime\":\"2021-05-13T19:23:22Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"details\":{\"name\":\"testJob\",\"lastUpdateDateTime\":\"2021-05-12T19:23:24Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"1aaf83bf-3375-4ccf-b53a-615f4af32dfd\",\"lastUpdateDateTime\":\"2021-06-25T20:10:00Z\",\"createdDateTime\":\"2021-06-25T20:09:59Z\",\"expirationDateTime\":\"2021-06-26T20:09:59Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "fc86deb0-75e9-4ecf-aed5-93c7194253d4", + "apim-request-id": "b0e7f6b7-f33b-4a90-a2e7-a34788cc7100", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:24 GMT", + "date": "Fri, 25 Jun 2021 20:10:03 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -100,59 +119,97 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/361c484c-18fb-40e7-beb3-30851090e319", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/1aaf83bf-3375-4ccf-b53a-615f4af32dfd", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"361c484c-18fb-40e7-beb3-30851090e319\",\"lastUpdateDateTime\":\"2021-05-12T19:23:24Z\",\"createdDateTime\":\"2021-05-12T19:23:22Z\",\"expirationDateTime\":\"2021-05-13T19:23:22Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"details\":{\"name\":\"testJob\",\"lastUpdateDateTime\":\"2021-05-12T19:23:24Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"1aaf83bf-3375-4ccf-b53a-615f4af32dfd\",\"lastUpdateDateTime\":\"2021-06-25T20:10:00Z\",\"createdDateTime\":\"2021-06-25T20:09:59Z\",\"expirationDateTime\":\"2021-06-26T20:09:59Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "96cbb2f8-de84-496b-bc2d-e5739752b5e4", + "apim-request-id": "292e4f18-eb90-4612-b51f-440f5a1321b3", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:26 GMT", + "date": "Fri, 25 Jun 2021 20:10:05 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "5" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/361c484c-18fb-40e7-beb3-30851090e319", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/1aaf83bf-3375-4ccf-b53a-615f4af32dfd", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"361c484c-18fb-40e7-beb3-30851090e319\",\"lastUpdateDateTime\":\"2021-05-12T19:23:24Z\",\"createdDateTime\":\"2021-05-12T19:23:22Z\",\"expirationDateTime\":\"2021-05-13T19:23:22Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"details\":{\"name\":\"testJob\",\"lastUpdateDateTime\":\"2021-05-12T19:23:24Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"1aaf83bf-3375-4ccf-b53a-615f4af32dfd\",\"lastUpdateDateTime\":\"2021-06-25T20:10:00Z\",\"createdDateTime\":\"2021-06-25T20:09:59Z\",\"expirationDateTime\":\"2021-06-26T20:09:59Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "eafd74ed-74f8-4f35-a0e0-ba450d28595c", + "apim-request-id": "13f8eaf4-3ec5-41dc-97c5-5283688ef6d2", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:28 GMT", + "date": "Fri, 25 Jun 2021 20:10:07 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/1aaf83bf-3375-4ccf-b53a-615f4af32dfd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"1aaf83bf-3375-4ccf-b53a-615f4af32dfd\",\"lastUpdateDateTime\":\"2021-06-25T20:10:00Z\",\"createdDateTime\":\"2021-06-25T20:09:59Z\",\"expirationDateTime\":\"2021-06-26T20:09:59Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "2d91f1f4-9978-4aa2-8282-87d19441913d", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:10:09 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/1aaf83bf-3375-4ccf-b53a-615f4af32dfd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"1aaf83bf-3375-4ccf-b53a-615f4af32dfd\",\"lastUpdateDateTime\":\"2021-06-25T20:10:00Z\",\"createdDateTime\":\"2021-06-25T20:09:59Z\",\"expirationDateTime\":\"2021-06-26T20:09:59Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "ff36aa91-41cc-4795-a39d-5323ef6bd3ff", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:10:12 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/361c484c-18fb-40e7-beb3-30851090e319", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/1aaf83bf-3375-4ccf-b53a-615f4af32dfd", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"361c484c-18fb-40e7-beb3-30851090e319\",\"lastUpdateDateTime\":\"2021-05-12T19:23:30Z\",\"createdDateTime\":\"2021-05-12T19:23:22Z\",\"expirationDateTime\":\"2021-05-13T19:23:22Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"details\":{\"name\":\"testJob\",\"lastUpdateDateTime\":\"2021-05-12T19:23:30Z\"},\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:23:30.3331504Z\",\"name\":\"testJob\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "response": "{\"jobId\":\"1aaf83bf-3375-4ccf-b53a-615f4af32dfd\",\"lastUpdateDateTime\":\"2021-06-25T20:10:12Z\",\"createdDateTime\":\"2021-06-25T20:09:59Z\",\"expirationDateTime\":\"2021-06-26T20:09:59Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:10:12.3972364Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", "responseHeaders": { - "apim-request-id": "86e7ee61-df66-4e2d-82b1-6b0d31e019cb", + "apim-request-id": "51c3bb1a-2d10-45c4-802c-09f49570c07a", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:30 GMT", + "date": "Fri, 25 Jun 2021 20:10:14 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "68" } } ], @@ -160,5 +217,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "793d8772cbc8c056bafec964172ba32a" + "hash": "f1824e388e5e072cfa6552fb3e25e68c" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.json index 1c358be6b691..24546ed26f02 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:20 GMT", + "date": "Fri, 25 Jun 2021 20:03:12 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,40 +20,78 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - WUS2 ProdSlices", - "x-ms-request-id": "cd27eebe-0298-4850-834e-c0d8a969b600" + "x-ms-ests-server": "2.1.11829.9 - WUS2 ProdSlices", + "x-ms-request-id": "57418012-2503-4660-964d-7a7edd576400" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze", + "url": "https://endpoint//text/analytics/v3.1/analyze", "query": {}, - "requestBody": "{\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]},\"analysisInput\":{\"documents\":[{\"id\":\"56\",\"text\":\":)\"},{\"id\":\"0\",\"text\":\":(\"},{\"id\":\"22\",\"text\":\"w\"},{\"id\":\"19\",\"text\":\":P\"},{\"id\":\"1\",\"text\":\":D\"}]}}", + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"56\",\"text\":\":)\"},{\"id\":\"0\",\"text\":\":(\"},{\"id\":\"22\",\"text\":\"w\"},{\"id\":\"19\",\"text\":\":P\"},{\"id\":\"1\",\"text\":\":D\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", "status": 202, "response": "", "responseHeaders": { - "apim-request-id": "a3f21564-844f-40b1-b589-d728a13d41a3", - "date": "Wed, 12 May 2021 19:21:25 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/95b921d0-5374-4e15-a9e2-f804d24c655b", + "apim-request-id": "6a2add94-e52b-4b0f-8f9f-852dfa5aa312", + "date": "Fri, 25 Jun 2021 20:03:12 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/10616c0f-16bd-4263-9fb1-c7ce29b58ac4", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5293" + "x-envoy-upstream-service-time": "419" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/95b921d0-5374-4e15-a9e2-f804d24c655b", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/10616c0f-16bd-4263-9fb1-c7ce29b58ac4", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"95b921d0-5374-4e15-a9e2-f804d24c655b\",\"lastUpdateDateTime\":\"2021-05-12T19:21:26Z\",\"createdDateTime\":\"2021-05-12T19:21:21Z\",\"expirationDateTime\":\"2021-05-13T19:21:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:26Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"10616c0f-16bd-4263-9fb1-c7ce29b58ac4\",\"lastUpdateDateTime\":\"2021-06-25T20:03:13Z\",\"createdDateTime\":\"2021-06-25T20:03:13Z\",\"expirationDateTime\":\"2021-06-26T20:03:13Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "80dae327-d28b-484c-b392-d430c3c52eb7", + "apim-request-id": "5ccdf207-d555-4c3d-8e48-920fa7b4b4b1", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:25 GMT", + "date": "Fri, 25 Jun 2021 20:03:12 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/10616c0f-16bd-4263-9fb1-c7ce29b58ac4", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"10616c0f-16bd-4263-9fb1-c7ce29b58ac4\",\"lastUpdateDateTime\":\"2021-06-25T20:03:13Z\",\"createdDateTime\":\"2021-06-25T20:03:13Z\",\"expirationDateTime\":\"2021-06-26T20:03:13Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "ae09f12c-733f-403b-b9a7-ad3954fa9b1f", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:03:13 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/10616c0f-16bd-4263-9fb1-c7ce29b58ac4", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"10616c0f-16bd-4263-9fb1-c7ce29b58ac4\",\"lastUpdateDateTime\":\"2021-06-25T20:03:14Z\",\"createdDateTime\":\"2021-06-25T20:03:13Z\",\"expirationDateTime\":\"2021-06-26T20:03:13Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "20e910c8-364e-4ff7-a986-8c9b1192e1a2", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:03:15 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -62,17 +100,17 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/95b921d0-5374-4e15-a9e2-f804d24c655b", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/10616c0f-16bd-4263-9fb1-c7ce29b58ac4", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"95b921d0-5374-4e15-a9e2-f804d24c655b\",\"lastUpdateDateTime\":\"2021-05-12T19:21:26Z\",\"createdDateTime\":\"2021-05-12T19:21:21Z\",\"expirationDateTime\":\"2021-05-13T19:21:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:26Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"10616c0f-16bd-4263-9fb1-c7ce29b58ac4\",\"lastUpdateDateTime\":\"2021-06-25T20:03:17Z\",\"createdDateTime\":\"2021-06-25T20:03:13Z\",\"expirationDateTime\":\"2021-06-26T20:03:13Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "25a3cbcb-b229-4abc-8adf-bf06fe80e7fb", + "apim-request-id": "089ec225-0361-436d-b7c5-53405fbb94ca", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:25 GMT", + "date": "Fri, 25 Jun 2021 20:03:17 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -81,116 +119,116 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/95b921d0-5374-4e15-a9e2-f804d24c655b", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/10616c0f-16bd-4263-9fb1-c7ce29b58ac4", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"95b921d0-5374-4e15-a9e2-f804d24c655b\",\"lastUpdateDateTime\":\"2021-05-12T19:21:28Z\",\"createdDateTime\":\"2021-05-12T19:21:21Z\",\"expirationDateTime\":\"2021-05-13T19:21:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:28Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"10616c0f-16bd-4263-9fb1-c7ce29b58ac4\",\"lastUpdateDateTime\":\"2021-06-25T20:03:17Z\",\"createdDateTime\":\"2021-06-25T20:03:13Z\",\"expirationDateTime\":\"2021-06-26T20:03:13Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "2037dd78-9cfd-4dd7-99c1-d12ecc8affb7", + "apim-request-id": "e89d81dd-31c1-4595-a7dc-db9cf771162c", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:28 GMT", + "date": "Fri, 25 Jun 2021 20:03:20 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "11" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/95b921d0-5374-4e15-a9e2-f804d24c655b", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/10616c0f-16bd-4263-9fb1-c7ce29b58ac4", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"95b921d0-5374-4e15-a9e2-f804d24c655b\",\"lastUpdateDateTime\":\"2021-05-12T19:21:28Z\",\"createdDateTime\":\"2021-05-12T19:21:21Z\",\"expirationDateTime\":\"2021-05-13T19:21:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:28Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"10616c0f-16bd-4263-9fb1-c7ce29b58ac4\",\"lastUpdateDateTime\":\"2021-06-25T20:03:17Z\",\"createdDateTime\":\"2021-06-25T20:03:13Z\",\"expirationDateTime\":\"2021-06-26T20:03:13Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "faa86753-2fa5-4c49-a037-52ed837200b5", + "apim-request-id": "fc65360d-53b9-4f09-85d3-820454040ee5", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:30 GMT", + "date": "Fri, 25 Jun 2021 20:03:22 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "7" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/95b921d0-5374-4e15-a9e2-f804d24c655b", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/10616c0f-16bd-4263-9fb1-c7ce29b58ac4", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"95b921d0-5374-4e15-a9e2-f804d24c655b\",\"lastUpdateDateTime\":\"2021-05-12T19:21:32Z\",\"createdDateTime\":\"2021-05-12T19:21:21Z\",\"expirationDateTime\":\"2021-05-13T19:21:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:32Z\"},\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:32.654333Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "response": "{\"jobId\":\"10616c0f-16bd-4263-9fb1-c7ce29b58ac4\",\"lastUpdateDateTime\":\"2021-06-25T20:03:23Z\",\"createdDateTime\":\"2021-06-25T20:03:13Z\",\"expirationDateTime\":\"2021-06-26T20:03:13Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:23.5223955Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", "responseHeaders": { - "apim-request-id": "d5baaa5b-f5a9-4c59-97d8-6edffc6e2cc8", + "apim-request-id": "3af978ce-ce25-486b-b16e-8f6eab3d2260", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:32 GMT", + "date": "Fri, 25 Jun 2021 20:03:24 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "68" + "x-envoy-upstream-service-time": "94" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/95b921d0-5374-4e15-a9e2-f804d24c655b", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/10616c0f-16bd-4263-9fb1-c7ce29b58ac4", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"95b921d0-5374-4e15-a9e2-f804d24c655b\",\"lastUpdateDateTime\":\"2021-05-12T19:21:33Z\",\"createdDateTime\":\"2021-05-12T19:21:21Z\",\"expirationDateTime\":\"2021-05-13T19:21:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:33Z\"},\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:32.654333Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:33.6306476Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"0\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"22\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"19\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"10616c0f-16bd-4263-9fb1-c7ce29b58ac4\",\"lastUpdateDateTime\":\"2021-06-25T20:03:23Z\",\"createdDateTime\":\"2021-06-25T20:03:13Z\",\"expirationDateTime\":\"2021-06-26T20:03:13Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:23.5223955Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", "responseHeaders": { - "apim-request-id": "18923dab-4a23-4210-9a30-83f25ef2c816", + "apim-request-id": "b8da79e3-fe3d-4b87-b15a-1224d034a903", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:34 GMT", + "date": "Fri, 25 Jun 2021 20:03:26 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "135" + "x-envoy-upstream-service-time": "86" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/95b921d0-5374-4e15-a9e2-f804d24c655b", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/10616c0f-16bd-4263-9fb1-c7ce29b58ac4", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"95b921d0-5374-4e15-a9e2-f804d24c655b\",\"lastUpdateDateTime\":\"2021-05-12T19:21:35Z\",\"createdDateTime\":\"2021-05-12T19:21:21Z\",\"expirationDateTime\":\"2021-05-13T19:21:21Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:35Z\"},\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:32.654333Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:35.2415295Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:33.6306476Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"0\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"22\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"19\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"10616c0f-16bd-4263-9fb1-c7ce29b58ac4\",\"lastUpdateDateTime\":\"2021-06-25T20:03:27Z\",\"createdDateTime\":\"2021-06-25T20:03:13Z\",\"expirationDateTime\":\"2021-06-26T20:03:13Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:27.5492554Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:23.5223955Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:26.9179545Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"0\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"22\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"19\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "baa198c5-d057-48fc-b16c-b1e2f99029fd", + "apim-request-id": "7f5b9917-ff89-455d-8b61-cc1c85566079", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:36 GMT", + "date": "Fri, 25 Jun 2021 20:03:28 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "390" + "x-envoy-upstream-service-time": "236" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/95b921d0-5374-4e15-a9e2-f804d24c655b", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/10616c0f-16bd-4263-9fb1-c7ce29b58ac4", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"95b921d0-5374-4e15-a9e2-f804d24c655b\",\"lastUpdateDateTime\":\"2021-05-12T19:21:35Z\",\"createdDateTime\":\"2021-05-12T19:21:21Z\",\"expirationDateTime\":\"2021-05-13T19:21:21Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:35Z\"},\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:32.654333Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:35.2415295Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:33.6306476Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"0\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"22\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"19\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"10616c0f-16bd-4263-9fb1-c7ce29b58ac4\",\"lastUpdateDateTime\":\"2021-06-25T20:03:27Z\",\"createdDateTime\":\"2021-06-25T20:03:13Z\",\"expirationDateTime\":\"2021-06-26T20:03:13Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:27.5492554Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:23.5223955Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:26.9179545Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"0\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"22\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"19\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "3fe77831-74e4-4a06-a80b-d661f291278f", + "apim-request-id": "72fb33f3-9cfa-4463-8401-dc6ca0f356c7", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:36 GMT", + "date": "Fri, 25 Jun 2021 20:03:29 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "196" + "x-envoy-upstream-service-time": "320" } } ], @@ -198,5 +236,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "18809ba9f95c777c14595aa1db13c7cd" + "hash": "985928d389900f82ef53f2eca9ffbe0e" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.json index 77062701e90c..f79298cb60c1 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:56 GMT", + "date": "Fri, 25 Jun 2021 20:02:53 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,234 +20,215 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - WUS2 ProdSlices", - "x-ms-request-id": "cd27eebe-0298-4850-834e-c0d8e566b600" + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "84bdf8e2-d00d-4332-9ea9-2d5e3c7f7900" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze", + "url": "https://endpoint//text/analytics/v3.1/analyze", "query": {}, - "requestBody": "{\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]},\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"one\"},{\"id\":\"2\",\"text\":\"two\"},{\"id\":\"3\",\"text\":\"three\"},{\"id\":\"4\",\"text\":\"four\"},{\"id\":\"5\",\"text\":\"five\"}]}}", + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"one\"},{\"id\":\"2\",\"text\":\"two\"},{\"id\":\"3\",\"text\":\"three\"},{\"id\":\"4\",\"text\":\"four\"},{\"id\":\"5\",\"text\":\"five\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", "status": 202, "response": "", "responseHeaders": { - "apim-request-id": "f76eb6d9-2790-4a25-ae20-70cc53f313bb", - "date": "Wed, 12 May 2021 19:20:57 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/6c7e6e57-bd41-422b-b5c1-0bb2247c375c", + "apim-request-id": "31c9f85a-6008-4927-9631-c5f9de5c36fe", + "date": "Fri, 25 Jun 2021 20:02:56 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/f3ad54bf-e037-4d1c-83b7-c2ea1ffd1e59", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "173" + "x-envoy-upstream-service-time": "3056" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/6c7e6e57-bd41-422b-b5c1-0bb2247c375c", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f3ad54bf-e037-4d1c-83b7-c2ea1ffd1e59", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"6c7e6e57-bd41-422b-b5c1-0bb2247c375c\",\"lastUpdateDateTime\":\"2021-05-12T19:20:57Z\",\"createdDateTime\":\"2021-05-12T19:20:57Z\",\"expirationDateTime\":\"2021-05-13T19:20:57Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:57Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"f3ad54bf-e037-4d1c-83b7-c2ea1ffd1e59\",\"lastUpdateDateTime\":\"2021-06-25T20:02:56Z\",\"createdDateTime\":\"2021-06-25T20:02:53Z\",\"expirationDateTime\":\"2021-06-26T20:02:53Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "9e1573cd-5de9-4dff-81fe-26feda72a3ec", + "apim-request-id": "a2eab855-42cf-4609-9919-797b977675a3", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:57 GMT", + "date": "Fri, 25 Jun 2021 20:02:56 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/6c7e6e57-bd41-422b-b5c1-0bb2247c375c", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"6c7e6e57-bd41-422b-b5c1-0bb2247c375c\",\"lastUpdateDateTime\":\"2021-05-12T19:20:57Z\",\"createdDateTime\":\"2021-05-12T19:20:57Z\",\"expirationDateTime\":\"2021-05-13T19:20:57Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:57Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "c8a4156d-c781-4067-8907-537ab554cb1e", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:57 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": "10" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/6c7e6e57-bd41-422b-b5c1-0bb2247c375c", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f3ad54bf-e037-4d1c-83b7-c2ea1ffd1e59", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"6c7e6e57-bd41-422b-b5c1-0bb2247c375c\",\"lastUpdateDateTime\":\"2021-05-12T19:20:59Z\",\"createdDateTime\":\"2021-05-12T19:20:57Z\",\"expirationDateTime\":\"2021-05-13T19:20:57Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:59Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"f3ad54bf-e037-4d1c-83b7-c2ea1ffd1e59\",\"lastUpdateDateTime\":\"2021-06-25T20:02:57Z\",\"createdDateTime\":\"2021-06-25T20:02:53Z\",\"expirationDateTime\":\"2021-06-26T20:02:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "1a7f272a-ed77-4e79-a1de-29dd91374372", + "apim-request-id": "8e95b37e-1e7d-4513-8f32-d8ea65ffb8fc", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:59 GMT", + "date": "Fri, 25 Jun 2021 20:02:56 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "7" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/6c7e6e57-bd41-422b-b5c1-0bb2247c375c", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f3ad54bf-e037-4d1c-83b7-c2ea1ffd1e59", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"6c7e6e57-bd41-422b-b5c1-0bb2247c375c\",\"lastUpdateDateTime\":\"2021-05-12T19:20:59Z\",\"createdDateTime\":\"2021-05-12T19:20:57Z\",\"expirationDateTime\":\"2021-05-13T19:20:57Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:59Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"f3ad54bf-e037-4d1c-83b7-c2ea1ffd1e59\",\"lastUpdateDateTime\":\"2021-06-25T20:02:57Z\",\"createdDateTime\":\"2021-06-25T20:02:53Z\",\"expirationDateTime\":\"2021-06-26T20:02:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "49290821-08cf-472f-baaa-2a12cbd749a4", + "apim-request-id": "85193e68-2b7e-473c-8333-58a18795eb80", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:01 GMT", + "date": "Fri, 25 Jun 2021 20:02:58 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "6" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/6c7e6e57-bd41-422b-b5c1-0bb2247c375c", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f3ad54bf-e037-4d1c-83b7-c2ea1ffd1e59", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"6c7e6e57-bd41-422b-b5c1-0bb2247c375c\",\"lastUpdateDateTime\":\"2021-05-12T19:21:03Z\",\"createdDateTime\":\"2021-05-12T19:20:57Z\",\"expirationDateTime\":\"2021-05-13T19:20:57Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:03Z\"},\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:03.5805139Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"f3ad54bf-e037-4d1c-83b7-c2ea1ffd1e59\",\"lastUpdateDateTime\":\"2021-06-25T20:02:57Z\",\"createdDateTime\":\"2021-06-25T20:02:53Z\",\"expirationDateTime\":\"2021-06-26T20:02:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "53e8b4c0-c289-4698-b838-1c8d1fd30121", + "apim-request-id": "9d03a2dd-0633-4d2b-b23a-666a4a4bcd63", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:03 GMT", + "date": "Fri, 25 Jun 2021 20:03:00 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "64" + "x-envoy-upstream-service-time": "6" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/6c7e6e57-bd41-422b-b5c1-0bb2247c375c", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f3ad54bf-e037-4d1c-83b7-c2ea1ffd1e59", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"6c7e6e57-bd41-422b-b5c1-0bb2247c375c\",\"lastUpdateDateTime\":\"2021-05-12T19:21:05Z\",\"createdDateTime\":\"2021-05-12T19:20:57Z\",\"expirationDateTime\":\"2021-05-13T19:20:57Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:05Z\"},\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:05.2632939Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:03.5805139Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"f3ad54bf-e037-4d1c-83b7-c2ea1ffd1e59\",\"lastUpdateDateTime\":\"2021-06-25T20:02:57Z\",\"createdDateTime\":\"2021-06-25T20:02:53Z\",\"expirationDateTime\":\"2021-06-26T20:02:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "b0924a8f-f846-4e0e-847a-f9a58b902c4a", + "apim-request-id": "a4d77599-07e5-4712-b78c-261b0f5be406", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:05 GMT", + "date": "Fri, 25 Jun 2021 20:03:02 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "156" + "x-envoy-upstream-service-time": "7" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/6c7e6e57-bd41-422b-b5c1-0bb2247c375c", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f3ad54bf-e037-4d1c-83b7-c2ea1ffd1e59", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"6c7e6e57-bd41-422b-b5c1-0bb2247c375c\",\"lastUpdateDateTime\":\"2021-05-12T19:21:07Z\",\"createdDateTime\":\"2021-05-12T19:20:57Z\",\"expirationDateTime\":\"2021-05-13T19:20:57Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:07Z\"},\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:05.2632939Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:03.5805139Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"f3ad54bf-e037-4d1c-83b7-c2ea1ffd1e59\",\"lastUpdateDateTime\":\"2021-06-25T20:03:03Z\",\"createdDateTime\":\"2021-06-25T20:02:53Z\",\"expirationDateTime\":\"2021-06-26T20:02:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:03.4781899Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"one\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"two\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"three\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":5,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"4\",\"entities\":[{\"text\":\"four\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"text\":\"five\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "a7c8d8c1-8c18-4d77-a3a3-b15988fc32f7", + "apim-request-id": "2c4ddc82-62b9-495b-ab6f-3754efad8780", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:07 GMT", + "date": "Fri, 25 Jun 2021 20:03:05 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "115" + "x-envoy-upstream-service-time": "89" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/6c7e6e57-bd41-422b-b5c1-0bb2247c375c", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f3ad54bf-e037-4d1c-83b7-c2ea1ffd1e59", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"6c7e6e57-bd41-422b-b5c1-0bb2247c375c\",\"lastUpdateDateTime\":\"2021-05-12T19:21:07Z\",\"createdDateTime\":\"2021-05-12T19:20:57Z\",\"expirationDateTime\":\"2021-05-13T19:20:57Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:07Z\"},\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:05.2632939Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:03.5805139Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"f3ad54bf-e037-4d1c-83b7-c2ea1ffd1e59\",\"lastUpdateDateTime\":\"2021-06-25T20:03:03Z\",\"createdDateTime\":\"2021-06-25T20:02:53Z\",\"expirationDateTime\":\"2021-06-26T20:02:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:03.4781899Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"one\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"two\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"three\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":5,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"4\",\"entities\":[{\"text\":\"four\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"text\":\"five\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "e3509979-e87c-468c-add6-3f3a9baefb39", + "apim-request-id": "3687bfd7-f3e3-45da-bf37-94e2813392af", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:09 GMT", + "date": "Fri, 25 Jun 2021 20:03:07 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "184" + "x-envoy-upstream-service-time": "89" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/6c7e6e57-bd41-422b-b5c1-0bb2247c375c", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f3ad54bf-e037-4d1c-83b7-c2ea1ffd1e59", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"6c7e6e57-bd41-422b-b5c1-0bb2247c375c\",\"lastUpdateDateTime\":\"2021-05-12T19:21:07Z\",\"createdDateTime\":\"2021-05-12T19:20:57Z\",\"expirationDateTime\":\"2021-05-13T19:20:57Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:07Z\"},\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:05.2632939Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:03.5805139Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"f3ad54bf-e037-4d1c-83b7-c2ea1ffd1e59\",\"lastUpdateDateTime\":\"2021-06-25T20:03:08Z\",\"createdDateTime\":\"2021-06-25T20:02:53Z\",\"expirationDateTime\":\"2021-06-26T20:02:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:03.4781899Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"one\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"two\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"three\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":5,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"4\",\"entities\":[{\"text\":\"four\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"text\":\"five\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:08.6402926Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", "responseHeaders": { - "apim-request-id": "e0127ebb-0781-4c93-9092-61a6e4abf588", + "apim-request-id": "956e4481-2b02-4e2e-bc20-476bd0482050", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:13 GMT", + "date": "Fri, 25 Jun 2021 20:03:09 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "121" + "x-envoy-upstream-service-time": "146" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/6c7e6e57-bd41-422b-b5c1-0bb2247c375c", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f3ad54bf-e037-4d1c-83b7-c2ea1ffd1e59", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"6c7e6e57-bd41-422b-b5c1-0bb2247c375c\",\"lastUpdateDateTime\":\"2021-05-12T19:21:14Z\",\"createdDateTime\":\"2021-05-12T19:20:57Z\",\"expirationDateTime\":\"2021-05-13T19:20:57Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:14Z\"},\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:14.9720537Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"one\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"two\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"three\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":5,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"4\",\"entities\":[{\"text\":\"four\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"text\":\"five\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:05.2632939Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:03.5805139Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"f3ad54bf-e037-4d1c-83b7-c2ea1ffd1e59\",\"lastUpdateDateTime\":\"2021-06-25T20:03:10Z\",\"createdDateTime\":\"2021-06-25T20:02:53Z\",\"expirationDateTime\":\"2021-06-26T20:02:53Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:03.4781899Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"one\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"two\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"three\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":5,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"4\",\"entities\":[{\"text\":\"four\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"text\":\"five\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:08.6402926Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:10.9202509Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "99550605-7d07-4be9-9d69-64916f8cddac", + "apim-request-id": "398c78a3-f718-438c-8ff9-7e8c537dc41d", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:20 GMT", + "date": "Fri, 25 Jun 2021 20:03:11 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5279" + "x-envoy-upstream-service-time": "278" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/6c7e6e57-bd41-422b-b5c1-0bb2247c375c", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f3ad54bf-e037-4d1c-83b7-c2ea1ffd1e59", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"6c7e6e57-bd41-422b-b5c1-0bb2247c375c\",\"lastUpdateDateTime\":\"2021-05-12T19:21:14Z\",\"createdDateTime\":\"2021-05-12T19:20:57Z\",\"expirationDateTime\":\"2021-05-13T19:20:57Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:14Z\"},\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:14.9720537Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"one\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"two\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"three\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":5,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"4\",\"entities\":[{\"text\":\"four\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"text\":\"five\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:05.2632939Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:03.5805139Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"f3ad54bf-e037-4d1c-83b7-c2ea1ffd1e59\",\"lastUpdateDateTime\":\"2021-06-25T20:03:10Z\",\"createdDateTime\":\"2021-06-25T20:02:53Z\",\"expirationDateTime\":\"2021-06-26T20:02:53Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:03.4781899Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"one\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"two\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"three\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":5,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"4\",\"entities\":[{\"text\":\"four\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"text\":\"five\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:08.6402926Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:10.9202509Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "eb8cc651-22ca-4129-88b0-1a93ec4302a5", + "apim-request-id": "0b3dd9f1-8778-443c-9306-b8a502f53114", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:20 GMT", + "date": "Fri, 25 Jun 2021 20:03:12 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "232" + "x-envoy-upstream-service-time": "330" } } ], @@ -255,5 +236,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "2740e8408115a8f3595c19ee33caf0cc" + "hash": "599895c6273ae4ea4eeb3372f9907fd6" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.json index 6279682ff300..b7c48f11239d 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:59 GMT", + "date": "Fri, 25 Jun 2021 20:08:29 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,40 +20,40 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - EUS ProdSlices", - "x-ms-request-id": "d00521bc-1a92-477a-94fd-3790fb644f00" + "x-ms-ests-server": "2.1.11829.9 - WUS2 ProdSlices", + "x-ms-request-id": "8deef922-c309-4e27-9a10-4eeff4e65e00" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze", + "url": "https://endpoint//text/analytics/v3.1/analyze", "query": {}, - "requestBody": "{\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]},\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"6\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"7\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"8\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"9\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"10\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"11\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"12\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"13\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"14\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"15\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"16\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"17\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"18\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"19\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"20\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"21\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"22\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"23\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"24\",\"text\":\"Microsoft was founded by Bill Gates and Paul Allen\",\"language\":\"en\"}]}}", + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"6\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"7\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"8\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"9\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"10\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"11\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"12\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"13\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"14\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"15\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"16\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"17\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"18\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"19\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"20\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"21\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"22\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"23\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"24\",\"text\":\"Microsoft was founded by Bill Gates and Paul Allen\",\"language\":\"en\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", "status": 202, "response": "", "responseHeaders": { - "apim-request-id": "1f4633d1-1bc8-4c22-8419-0414d3fbd9d9", - "date": "Wed, 12 May 2021 19:22:59 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/ee8f3ae7-524a-4dfa-be8d-8462b270354a", + "apim-request-id": "d9aa5347-6f01-4d26-95e7-1b7c2e2917a7", + "date": "Fri, 25 Jun 2021 20:08:37 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "385" + "x-envoy-upstream-service-time": "8307" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/ee8f3ae7-524a-4dfa-be8d-8462b270354a", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"ee8f3ae7-524a-4dfa-be8d-8462b270354a\",\"lastUpdateDateTime\":\"2021-05-12T19:22:59Z\",\"createdDateTime\":\"2021-05-12T19:22:59Z\",\"expirationDateTime\":\"2021-05-13T19:22:59Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:59Z\"},\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:38Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", "responseHeaders": { - "apim-request-id": "d7fdb157-67c2-4130-b968-9d8a2a87334b", + "apim-request-id": "5aa775e5-c719-437f-a360-3655077fe7d9", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:59 GMT", + "date": "Fri, 25 Jun 2021 20:08:37 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -62,17 +62,17 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/ee8f3ae7-524a-4dfa-be8d-8462b270354a", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"ee8f3ae7-524a-4dfa-be8d-8462b270354a\",\"lastUpdateDateTime\":\"2021-05-12T19:22:59Z\",\"createdDateTime\":\"2021-05-12T19:22:59Z\",\"expirationDateTime\":\"2021-05-13T19:22:59Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:59Z\"},\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:38Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", "responseHeaders": { - "apim-request-id": "0203490a-b5ba-420b-9317-2e54ecf5b318", + "apim-request-id": "3fd727f4-aead-4f51-8a32-322873ba28c3", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:59 GMT", + "date": "Fri, 25 Jun 2021 20:08:37 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -81,175 +81,612 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/ee8f3ae7-524a-4dfa-be8d-8462b270354a", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"ee8f3ae7-524a-4dfa-be8d-8462b270354a\",\"lastUpdateDateTime\":\"2021-05-12T19:23:00Z\",\"createdDateTime\":\"2021-05-12T19:22:59Z\",\"expirationDateTime\":\"2021-05-13T19:22:59Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:23:00Z\"},\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:38Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", "responseHeaders": { - "apim-request-id": "6d6b0850-c346-4319-900d-1212b9813fdc", + "apim-request-id": "bbc38e63-1757-492d-9872-8f5faa9576d5", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:01 GMT", + "date": "Fri, 25 Jun 2021 20:08:39 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "7" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/ee8f3ae7-524a-4dfa-be8d-8462b270354a", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"ee8f3ae7-524a-4dfa-be8d-8462b270354a\",\"lastUpdateDateTime\":\"2021-05-12T19:23:00Z\",\"createdDateTime\":\"2021-05-12T19:22:59Z\",\"expirationDateTime\":\"2021-05-13T19:22:59Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:23:00Z\"},\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:38Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", "responseHeaders": { - "apim-request-id": "14a25791-e5e7-4eef-9a9f-38d7bf61600c", + "apim-request-id": "c6622895-58fa-4b54-8baf-849210e7606c", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:03 GMT", + "date": "Fri, 25 Jun 2021 20:08:42 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "13" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/ee8f3ae7-524a-4dfa-be8d-8462b270354a", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"ee8f3ae7-524a-4dfa-be8d-8462b270354a\",\"lastUpdateDateTime\":\"2021-05-12T19:23:00Z\",\"createdDateTime\":\"2021-05-12T19:22:59Z\",\"expirationDateTime\":\"2021-05-13T19:22:59Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:23:00Z\"},\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:38Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", "responseHeaders": { - "apim-request-id": "5af9663a-bf82-4aee-8845-9f49005c0131", + "apim-request-id": "50450766-3042-400f-9f41-4782113e0321", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:05 GMT", + "date": "Fri, 25 Jun 2021 20:08:44 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "19" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/ee8f3ae7-524a-4dfa-be8d-8462b270354a", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"ee8f3ae7-524a-4dfa-be8d-8462b270354a\",\"lastUpdateDateTime\":\"2021-05-12T19:23:00Z\",\"createdDateTime\":\"2021-05-12T19:22:59Z\",\"expirationDateTime\":\"2021-05-13T19:22:59Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:23:00Z\"},\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:46Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:46.4430201Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe?$skip=20&$top=5&showStats=False\"}", "responseHeaders": { - "apim-request-id": "c9dec991-4a98-482b-b1ce-06c83149d25d", + "apim-request-id": "594db33f-aa68-48a1-8e61-42835e7a9872", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:07 GMT", + "date": "Fri, 25 Jun 2021 20:08:46 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "206" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:46Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:46.4430201Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "c6d27e4c-2ba2-4d07-883a-02a14cc4bd11", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:08:49 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "210" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:46Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:46.4430201Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "f7a7b24a-58e4-43ae-b13d-5e70fa8dd9dc", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:08:51 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "227" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:46Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:46.4430201Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "1aa7f218-2379-4959-8d40-4d96cdb00b8a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:08:53 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "219" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:46Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:46.4430201Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "23f263a4-f773-4f0a-91a7-d0ba0dc1c9be", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:08:55 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "181" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:46Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:46.4430201Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "32bdb16f-8b00-4b0e-8391-ac7c0eed679a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:08:58 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "185" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:46Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:46.4430201Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "c3e0d426-725b-4b01-be36-042247baf167", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:09:00 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "214" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:46Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:46.4430201Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "e6320dbe-9af4-4d05-9cd5-65a4f90e0de3", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:09:02 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "206" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:46Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:46.4430201Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "ec9803be-60e5-4567-9fb5-456b086b8ad1", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:09:04 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "216" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:46Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:46.4430201Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "97717c86-ed29-4523-803c-a15ee11c0486", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:09:07 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "206" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:46Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:46.4430201Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "2e9c3a2c-c57f-4c59-8000-9d6b4df32be3", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:09:09 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "211" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:46Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:46.4430201Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "83e20003-f9c2-46a5-a0da-082ebcd1e04b", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:09:11 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "242" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:46Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:46.4430201Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "b22c328e-1d2b-4343-b0f1-482cc88bef06", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:09:13 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "209" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:46Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:46.4430201Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "4849aaf6-c639-4f58-9e91-82eea0ba9721", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:09:16 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "210" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/ee8f3ae7-524a-4dfa-be8d-8462b270354a", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"ee8f3ae7-524a-4dfa-be8d-8462b270354a\",\"lastUpdateDateTime\":\"2021-05-12T19:23:09Z\",\"createdDateTime\":\"2021-05-12T19:22:59Z\",\"expirationDateTime\":\"2021-05-13T19:22:59Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:23:09Z\"},\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:23:09.7886927Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"6\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"7\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"8\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"9\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"10\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"11\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"12\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"13\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"14\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"15\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"16\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"17\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"18\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"19\",\"keyPhrases\":[\"random text\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/ee8f3ae7-524a-4dfa-be8d-8462b270354a?$skip=20&$top=5&showStats=False\"}", + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:46Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:46.4430201Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe?$skip=20&$top=5&showStats=False\"}", "responseHeaders": { - "apim-request-id": "4bf71fcc-fcf4-4b04-9502-31a1a31ca015", + "apim-request-id": "69e040c5-1048-4dd1-8f01-a5c71201d751", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:09 GMT", + "date": "Fri, 25 Jun 2021 20:09:18 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "191" + "x-envoy-upstream-service-time": "254" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/ee8f3ae7-524a-4dfa-be8d-8462b270354a", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"ee8f3ae7-524a-4dfa-be8d-8462b270354a\",\"lastUpdateDateTime\":\"2021-05-12T19:23:11Z\",\"createdDateTime\":\"2021-05-12T19:22:59Z\",\"expirationDateTime\":\"2021-05-13T19:22:59Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:23:11Z\"},\"completed\":2,\"failed\":0,\"inProgress\":0,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:23:11.94705Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:23:09.7886927Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"6\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"7\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"8\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"9\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"10\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"11\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"12\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"13\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"14\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"15\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"16\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"17\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"18\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"19\",\"keyPhrases\":[\"random text\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/ee8f3ae7-524a-4dfa-be8d-8462b270354a?$skip=20&$top=5&showStats=False\"}", + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:46Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:46.4430201Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe?$skip=20&$top=5&showStats=False\"}", "responseHeaders": { - "apim-request-id": "5e1d9e43-73b3-4c76-bcfa-d2ea991835c1", + "apim-request-id": "606173f2-2c97-48a2-bc70-249ec370bc5a", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:12 GMT", + "date": "Fri, 25 Jun 2021 20:09:20 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "370" + "x-envoy-upstream-service-time": "240" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/ee8f3ae7-524a-4dfa-be8d-8462b270354a", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:46Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:46.4430201Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "b55083b3-d409-489c-bce6-cbf7649800de", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:09:22 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "274" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:46Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:46.4430201Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "0ec152ed-b631-4cc9-9b37-10945022f78b", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:09:26 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "204" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:46Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:46.4430201Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "bc657dd8-9ed1-4b57-9115-a4428f962d10", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:09:28 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "190" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:46Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:46.4430201Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "8af30f5f-d008-4e22-bc96-43041f8bbbb1", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:09:30 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "242" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:46Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:46.4430201Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "2ad61389-decd-4a6e-b0ed-d42de6b95f8a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:09:32 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "207" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:46Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:46.4430201Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "7d44dbaa-8d7d-48c0-b511-a8757f0a44f5", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:09:34 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "219" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:46Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:46.4430201Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "533ee6c4-79de-4a2c-b091-6959be83da1d", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:09:37 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "223" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:46Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:46.4430201Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "0b5b11ed-3210-4aef-aa76-db1f0fb68623", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:09:39 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "186" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:08:46Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:46.4430201Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "fd455c7a-da7c-422b-8d62-c1e060d1a0a8", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:09:41 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "214" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:09:44Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":0,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:46.4430201Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:09:44.1855571Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"6\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"7\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"8\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"9\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"10\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"11\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"12\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"13\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"14\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"15\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"16\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"17\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"18\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"19\",\"keyPhrases\":[\"random text\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "365214bf-fc88-41ec-899d-297147ad151f", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:09:44 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "513" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", "query": { "$top": "10" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"ee8f3ae7-524a-4dfa-be8d-8462b270354a\",\"lastUpdateDateTime\":\"2021-05-12T19:23:11Z\",\"createdDateTime\":\"2021-05-12T19:22:59Z\",\"expirationDateTime\":\"2021-05-13T19:22:59Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:23:11Z\"},\"completed\":2,\"failed\":0,\"inProgress\":0,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:23:11.94705Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:23:09.7886927Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"6\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"7\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"8\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"9\",\"keyPhrases\":[\"random text\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/ee8f3ae7-524a-4dfa-be8d-8462b270354a?$skip=10&$top=10&showStats=False\"}", + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:09:44Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":0,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:46.4430201Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:09:44.1855571Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"6\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"7\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"8\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"9\",\"keyPhrases\":[\"random text\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe?$skip=10&$top=10&showStats=False\"}", "responseHeaders": { - "apim-request-id": "cb9bc9c7-4681-4655-819c-b8acade3d8c1", + "apim-request-id": "23204495-262b-44fa-b984-b0cf1a095258", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:12 GMT", + "date": "Fri, 25 Jun 2021 20:09:44 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "221" + "x-envoy-upstream-service-time": "237" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/ee8f3ae7-524a-4dfa-be8d-8462b270354a", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", "query": { "$top": "10", "$skip": "10" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"ee8f3ae7-524a-4dfa-be8d-8462b270354a\",\"lastUpdateDateTime\":\"2021-05-12T19:23:11Z\",\"createdDateTime\":\"2021-05-12T19:22:59Z\",\"expirationDateTime\":\"2021-05-13T19:22:59Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:23:11Z\"},\"completed\":2,\"failed\":0,\"inProgress\":0,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:23:11.94705Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:23:09.7886927Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"10\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"11\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"12\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"13\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"14\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"15\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"16\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"17\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"18\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"19\",\"keyPhrases\":[\"random text\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/ee8f3ae7-524a-4dfa-be8d-8462b270354a?$skip=20&$top=5&showStats=False\"}", + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:09:44Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":0,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:46.4430201Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:09:44.1855571Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"10\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"11\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"12\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"13\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"14\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"15\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"16\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"17\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"18\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"19\",\"keyPhrases\":[\"random text\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe?$skip=20&$top=5&showStats=False\"}", "responseHeaders": { - "apim-request-id": "b763f519-7f63-4467-b1be-979ef1012526", + "apim-request-id": "89cdf2a8-d713-4053-9fb0-5c087dc5fd21", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:12 GMT", + "date": "Fri, 25 Jun 2021 20:09:44 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "242" + "x-envoy-upstream-service-time": "240" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/ee8f3ae7-524a-4dfa-be8d-8462b270354a", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e209bf8f-67a0-4afd-80e0-0d98985186fe", "query": { "$top": "5", "$skip": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"ee8f3ae7-524a-4dfa-be8d-8462b270354a\",\"lastUpdateDateTime\":\"2021-05-12T19:23:11Z\",\"createdDateTime\":\"2021-05-12T19:22:59Z\",\"expirationDateTime\":\"2021-05-13T19:22:59Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:23:11Z\"},\"completed\":2,\"failed\":0,\"inProgress\":0,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:23:11.94705Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"20\",\"entities\":[],\"warnings\":[]},{\"id\":\"21\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"23\",\"entities\":[],\"warnings\":[]},{\"id\":\"24\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":0.95},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":25,\"length\":10,\"confidenceScore\":0.99},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":40,\"length\":10,\"confidenceScore\":0.99}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:23:09.7886927Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"20\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"21\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"22\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"23\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"24\",\"keyPhrases\":[\"Bill Gates\",\"Paul Allen\",\"Microsoft\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"e209bf8f-67a0-4afd-80e0-0d98985186fe\",\"lastUpdateDateTime\":\"2021-06-25T20:09:44Z\",\"createdDateTime\":\"2021-06-25T20:08:30Z\",\"expirationDateTime\":\"2021-06-26T20:08:30Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":0,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:08:46.4430201Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"20\",\"entities\":[],\"warnings\":[]},{\"id\":\"21\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"23\",\"entities\":[],\"warnings\":[]},{\"id\":\"24\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":1.0},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":25,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":40,\"length\":10,\"confidenceScore\":1.0}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:09:44.1855571Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"20\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"21\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"22\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"23\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"24\",\"keyPhrases\":[\"Bill Gates\",\"Paul Allen\",\"Microsoft\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "3afb2b08-1027-49bb-b27c-a67902154cb3", + "apim-request-id": "89a82329-6bfb-453b-ae11-98c2c2016841", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:12 GMT", + "date": "Fri, 25 Jun 2021 20:09:45 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "137" + "x-envoy-upstream-service-time": "176" } } ], @@ -257,5 +694,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "a0912cc4cdeb5cb147f5d381f93fa563" + "hash": "62ca71ecf688e9feaf17203742a35f2b" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.json index 8eb8aefe7399..3ab210d21664 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:13 GMT", + "date": "Fri, 25 Jun 2021 20:09:45 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,59 +20,97 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - WUS2 ProdSlices", - "x-ms-request-id": "1f623800-874c-4277-b16b-879a72f7be00" + "x-ms-ests-server": "2.1.11829.9 - WUS2 ProdSlices", + "x-ms-request-id": "28812791-b9ec-449e-b425-0faaefdf5c00" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze", + "url": "https://endpoint//text/analytics/v3.1/analyze", "query": {}, - "requestBody": "{\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]},\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\"},{\"id\":\"2\",\"text\":\"Este es un document escrito en Español.\"},{\"id\":\"3\",\"text\":\"猫は幸せ\"}]}}", + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\"},{\"id\":\"2\",\"text\":\"Este es un document escrito en Español.\"},{\"id\":\"3\",\"text\":\"猫は幸せ\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", "status": 202, "response": "", "responseHeaders": { - "apim-request-id": "4fc634ed-c188-419f-a8a0-bec7a76c10a5", - "date": "Wed, 12 May 2021 19:23:13 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/30477340-2bcf-4600-b4cc-6084ac371b79", + "apim-request-id": "95fd1961-03a8-4363-ad10-68bed809be96", + "date": "Fri, 25 Jun 2021 20:09:45 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/e673b321-fe25-46f5-9d15-ea08b0b26dff", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "81" + "x-envoy-upstream-service-time": "168" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/30477340-2bcf-4600-b4cc-6084ac371b79", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e673b321-fe25-46f5-9d15-ea08b0b26dff", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"30477340-2bcf-4600-b4cc-6084ac371b79\",\"lastUpdateDateTime\":\"2021-05-12T19:23:13Z\",\"createdDateTime\":\"2021-05-12T19:23:13Z\",\"expirationDateTime\":\"2021-05-13T19:23:13Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:23:13Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"e673b321-fe25-46f5-9d15-ea08b0b26dff\",\"lastUpdateDateTime\":\"2021-06-25T20:09:46Z\",\"createdDateTime\":\"2021-06-25T20:09:46Z\",\"expirationDateTime\":\"2021-06-26T20:09:46Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "c1970c1b-bbde-44b0-b136-152746a99142", + "apim-request-id": "ae08a260-2aed-45f4-ba1a-ef681cf72adf", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:13 GMT", + "date": "Fri, 25 Jun 2021 20:09:45 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e673b321-fe25-46f5-9d15-ea08b0b26dff", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e673b321-fe25-46f5-9d15-ea08b0b26dff\",\"lastUpdateDateTime\":\"2021-06-25T20:09:46Z\",\"createdDateTime\":\"2021-06-25T20:09:46Z\",\"expirationDateTime\":\"2021-06-26T20:09:46Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "851ee0dc-8fcc-4090-aa8d-355042b62258", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:09:45 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "19" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e673b321-fe25-46f5-9d15-ea08b0b26dff", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e673b321-fe25-46f5-9d15-ea08b0b26dff\",\"lastUpdateDateTime\":\"2021-06-25T20:09:46Z\",\"createdDateTime\":\"2021-06-25T20:09:46Z\",\"expirationDateTime\":\"2021-06-26T20:09:46Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "30745edf-b5dc-4fcb-9a58-faa7cb5eb587", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:09:47 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/30477340-2bcf-4600-b4cc-6084ac371b79", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e673b321-fe25-46f5-9d15-ea08b0b26dff", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"30477340-2bcf-4600-b4cc-6084ac371b79\",\"lastUpdateDateTime\":\"2021-05-12T19:23:13Z\",\"createdDateTime\":\"2021-05-12T19:23:13Z\",\"expirationDateTime\":\"2021-05-13T19:23:13Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:23:13Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"e673b321-fe25-46f5-9d15-ea08b0b26dff\",\"lastUpdateDateTime\":\"2021-06-25T20:09:46Z\",\"createdDateTime\":\"2021-06-25T20:09:46Z\",\"expirationDateTime\":\"2021-06-26T20:09:46Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "4a21317f-6768-4d93-8ff0-3c5ac1841dde", + "apim-request-id": "8d590100-0aca-492f-9dbc-e6e7178d11ca", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:13 GMT", + "date": "Fri, 25 Jun 2021 20:09:49 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -81,36 +119,36 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/30477340-2bcf-4600-b4cc-6084ac371b79", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e673b321-fe25-46f5-9d15-ea08b0b26dff", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"30477340-2bcf-4600-b4cc-6084ac371b79\",\"lastUpdateDateTime\":\"2021-05-12T19:23:14Z\",\"createdDateTime\":\"2021-05-12T19:23:13Z\",\"expirationDateTime\":\"2021-05-13T19:23:13Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:23:14Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"e673b321-fe25-46f5-9d15-ea08b0b26dff\",\"lastUpdateDateTime\":\"2021-06-25T20:09:46Z\",\"createdDateTime\":\"2021-06-25T20:09:46Z\",\"expirationDateTime\":\"2021-06-26T20:09:46Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "112833c1-6c6b-4082-a2cb-977b16137ba6", + "apim-request-id": "becad3f5-ead8-4813-b21e-6e3008a76f03", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:15 GMT", + "date": "Fri, 25 Jun 2021 20:09:51 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "8" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/30477340-2bcf-4600-b4cc-6084ac371b79", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e673b321-fe25-46f5-9d15-ea08b0b26dff", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"30477340-2bcf-4600-b4cc-6084ac371b79\",\"lastUpdateDateTime\":\"2021-05-12T19:23:14Z\",\"createdDateTime\":\"2021-05-12T19:23:13Z\",\"expirationDateTime\":\"2021-05-13T19:23:13Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:23:14Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"e673b321-fe25-46f5-9d15-ea08b0b26dff\",\"lastUpdateDateTime\":\"2021-06-25T20:09:46Z\",\"createdDateTime\":\"2021-06-25T20:09:46Z\",\"expirationDateTime\":\"2021-06-26T20:09:46Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "02f2c3c7-9307-43e0-8b13-7c536cd20b79", + "apim-request-id": "f362a8cf-902f-43ad-8311-64fd534fc06c", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:17 GMT", + "date": "Fri, 25 Jun 2021 20:09:53 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -119,59 +157,59 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/30477340-2bcf-4600-b4cc-6084ac371b79", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e673b321-fe25-46f5-9d15-ea08b0b26dff", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"30477340-2bcf-4600-b4cc-6084ac371b79\",\"lastUpdateDateTime\":\"2021-05-12T19:23:14Z\",\"createdDateTime\":\"2021-05-12T19:23:13Z\",\"expirationDateTime\":\"2021-05-13T19:23:13Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:23:14Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"e673b321-fe25-46f5-9d15-ea08b0b26dff\",\"lastUpdateDateTime\":\"2021-06-25T20:09:46Z\",\"createdDateTime\":\"2021-06-25T20:09:46Z\",\"expirationDateTime\":\"2021-06-26T20:09:46Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "d24fec39-c55f-4da1-ba30-c987c21a2454", + "apim-request-id": "a59c5798-2b95-4bae-ba77-c3d7824b157c", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:19 GMT", + "date": "Fri, 25 Jun 2021 20:09:55 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/30477340-2bcf-4600-b4cc-6084ac371b79", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e673b321-fe25-46f5-9d15-ea08b0b26dff", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"30477340-2bcf-4600-b4cc-6084ac371b79\",\"lastUpdateDateTime\":\"2021-05-12T19:23:20Z\",\"createdDateTime\":\"2021-05-12T19:23:13Z\",\"expirationDateTime\":\"2021-05-13T19:23:13Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:23:20Z\"},\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:23:20.3106254Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "response": "{\"jobId\":\"e673b321-fe25-46f5-9d15-ea08b0b26dff\",\"lastUpdateDateTime\":\"2021-06-25T20:09:57Z\",\"createdDateTime\":\"2021-06-25T20:09:46Z\",\"expirationDateTime\":\"2021-06-26T20:09:46Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:09:57.9189478Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", "responseHeaders": { - "apim-request-id": "4d3d76e6-f312-408a-a644-4a24a7758758", + "apim-request-id": "1c1993d8-9483-4227-a827-d8457d0a9c2f", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:21 GMT", + "date": "Fri, 25 Jun 2021 20:09:57 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-envoy-upstream-service-time": "74" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/30477340-2bcf-4600-b4cc-6084ac371b79", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/e673b321-fe25-46f5-9d15-ea08b0b26dff", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"30477340-2bcf-4600-b4cc-6084ac371b79\",\"lastUpdateDateTime\":\"2021-05-12T19:23:20Z\",\"createdDateTime\":\"2021-05-12T19:23:13Z\",\"expirationDateTime\":\"2021-05-13T19:23:13Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:23:20Z\"},\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:23:20.3106254Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "response": "{\"jobId\":\"e673b321-fe25-46f5-9d15-ea08b0b26dff\",\"lastUpdateDateTime\":\"2021-06-25T20:09:57Z\",\"createdDateTime\":\"2021-06-25T20:09:46Z\",\"expirationDateTime\":\"2021-06-26T20:09:46Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:09:57.9189478Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", "responseHeaders": { - "apim-request-id": "1a0de003-61af-48a6-8561-3d264fed8125", + "apim-request-id": "e420a8c8-971c-40d3-a871-364270f37ccf", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:23:21 GMT", + "date": "Fri, 25 Jun 2021 20:09:59 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "48" + "x-envoy-upstream-service-time": "59" } } ], @@ -179,5 +217,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "1d31d8649275b0331088d41ec2653d75" + "hash": "096c12a7cccfec04b026e6b6a418de2b" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.json index ca34f34da3db..104803ecfe60 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:32 GMT", + "date": "Fri, 25 Jun 2021 20:00:12 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,120 +20,101 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - SCUS ProdSlices", - "x-ms-request-id": "c53ac30c-0f0c-44df-8647-6ebb86fc5800" + "x-ms-ests-server": "2.1.11829.9 - SCUS ProdSlices", + "x-ms-request-id": "0bf26b5d-85ea-49fb-99ba-727728507a00" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze", + "url": "https://endpoint//text/analytics/v3.1/analyze", "query": {}, - "requestBody": "{\"tasks\":{\"entityLinkingTasks\":[{\"parameters\":{\"stringIndexType\":\"Utf16CodeUnit\"}}]},\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"Microsoft moved its headquarters to Bellevue, Washington in January 1979.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Steve Ballmer stepped down as CEO of Microsoft and was succeeded by Satya Nadella.\",\"language\":\"en\"}]}}", + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"Microsoft moved its headquarters to Bellevue, Washington in January 1979.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Steve Ballmer stepped down as CEO of Microsoft and was succeeded by Satya Nadella.\",\"language\":\"en\"}]},\"tasks\":{\"entityLinkingTasks\":[{\"parameters\":{\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", "status": 202, "response": "", "responseHeaders": { - "apim-request-id": "711297ed-49fe-4d80-bbc0-3e8d0e19fcae", - "date": "Wed, 12 May 2021 19:19:32 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/db3acb7b-8675-42b2-ab76-bf79c2edfb9a", + "apim-request-id": "49eb4368-d732-4579-8b8f-e561275ffe28", + "date": "Fri, 25 Jun 2021 20:00:15 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/fc561b3d-77ad-48db-9068-706a18b96a51", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "93" + "x-envoy-upstream-service-time": "2801" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/db3acb7b-8675-42b2-ab76-bf79c2edfb9a", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/fc561b3d-77ad-48db-9068-706a18b96a51", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"db3acb7b-8675-42b2-ab76-bf79c2edfb9a\",\"lastUpdateDateTime\":\"2021-05-12T19:19:33Z\",\"createdDateTime\":\"2021-05-12T19:19:33Z\",\"expirationDateTime\":\"2021-05-13T19:19:33Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:33Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"fc561b3d-77ad-48db-9068-706a18b96a51\",\"lastUpdateDateTime\":\"2021-06-25T20:00:16Z\",\"createdDateTime\":\"2021-06-25T20:00:13Z\",\"expirationDateTime\":\"2021-06-26T20:00:13Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "87bb9397-7b29-48c5-8a4f-8c42589333f7", + "apim-request-id": "ef475682-c8e8-498c-a278-1302a4a14fe3", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:32 GMT", + "date": "Fri, 25 Jun 2021 20:00:15 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "103" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/db3acb7b-8675-42b2-ab76-bf79c2edfb9a", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/fc561b3d-77ad-48db-9068-706a18b96a51", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"db3acb7b-8675-42b2-ab76-bf79c2edfb9a\",\"lastUpdateDateTime\":\"2021-05-12T19:19:33Z\",\"createdDateTime\":\"2021-05-12T19:19:33Z\",\"expirationDateTime\":\"2021-05-13T19:19:33Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:33Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"fc561b3d-77ad-48db-9068-706a18b96a51\",\"lastUpdateDateTime\":\"2021-06-25T20:00:16Z\",\"createdDateTime\":\"2021-06-25T20:00:13Z\",\"expirationDateTime\":\"2021-06-26T20:00:13Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "725d70c2-2421-46e2-811a-8bf57910fc2e", + "apim-request-id": "1d45c546-9d2e-4075-8619-907b6f162da4", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:32 GMT", + "date": "Fri, 25 Jun 2021 20:00:15 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "25" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/db3acb7b-8675-42b2-ab76-bf79c2edfb9a", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/fc561b3d-77ad-48db-9068-706a18b96a51", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"db3acb7b-8675-42b2-ab76-bf79c2edfb9a\",\"lastUpdateDateTime\":\"2021-05-12T19:19:34Z\",\"createdDateTime\":\"2021-05-12T19:19:33Z\",\"expirationDateTime\":\"2021-05-13T19:19:33Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:34Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"fc561b3d-77ad-48db-9068-706a18b96a51\",\"lastUpdateDateTime\":\"2021-06-25T20:00:18Z\",\"createdDateTime\":\"2021-06-25T20:00:13Z\",\"expirationDateTime\":\"2021-06-26T20:00:13Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityLinkingTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:00:18.4177312Z\",\"taskName\":\"EntityLinking_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"name\":\"Bellevue, Washington\",\"matches\":[{\"text\":\"Bellevue, Washington\",\"offset\":36,\"length\":20,\"confidenceScore\":0.87}],\"language\":\"en\",\"id\":\"Bellevue, Washington\",\"url\":\"https://en.wikipedia.org/wiki/Bellevue,_Washington\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Microsoft\",\"matches\":[{\"text\":\"Microsoft\",\"offset\":0,\"length\":9,\"confidenceScore\":0.39}],\"language\":\"en\",\"id\":\"Microsoft\",\"url\":\"https://en.wikipedia.org/wiki/Microsoft\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Briann January\",\"matches\":[{\"text\":\"January\",\"offset\":60,\"length\":7,\"confidenceScore\":0.14}],\"language\":\"en\",\"id\":\"Briann January\",\"url\":\"https://en.wikipedia.org/wiki/Briann_January\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"name\":\"Steve Ballmer\",\"matches\":[{\"text\":\"Steve Ballmer\",\"offset\":0,\"length\":13,\"confidenceScore\":0.92}],\"language\":\"en\",\"id\":\"Steve Ballmer\",\"url\":\"https://en.wikipedia.org/wiki/Steve_Ballmer\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Satya Nadella\",\"matches\":[{\"text\":\"Satya Nadella\",\"offset\":68,\"length\":13,\"confidenceScore\":0.9}],\"language\":\"en\",\"id\":\"Satya Nadella\",\"url\":\"https://en.wikipedia.org/wiki/Satya_Nadella\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Microsoft\",\"matches\":[{\"text\":\"Microsoft\",\"offset\":37,\"length\":9,\"confidenceScore\":0.36}],\"language\":\"en\",\"id\":\"Microsoft\",\"url\":\"https://en.wikipedia.org/wiki/Microsoft\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Chief executive officer\",\"matches\":[{\"text\":\"CEO\",\"offset\":30,\"length\":3,\"confidenceScore\":0.25}],\"language\":\"en\",\"id\":\"Chief executive officer\",\"url\":\"https://en.wikipedia.org/wiki/Chief_executive_officer\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-02-01\"}}]}}", "responseHeaders": { - "apim-request-id": "663aecef-e970-4a58-b4ca-ae62ca572d09", + "apim-request-id": "bfc41968-0741-49ab-aad3-d3435e200bc2", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:34 GMT", + "date": "Fri, 25 Jun 2021 20:00:17 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "52" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/db3acb7b-8675-42b2-ab76-bf79c2edfb9a", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/fc561b3d-77ad-48db-9068-706a18b96a51", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"db3acb7b-8675-42b2-ab76-bf79c2edfb9a\",\"lastUpdateDateTime\":\"2021-05-12T19:19:36Z\",\"createdDateTime\":\"2021-05-12T19:19:33Z\",\"expirationDateTime\":\"2021-05-13T19:19:33Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:36Z\"},\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityLinkingTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:19:36.7027237Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"name\":\"Bellevue, Washington\",\"matches\":[{\"text\":\"Bellevue, Washington\",\"offset\":36,\"length\":20,\"confidenceScore\":0.87}],\"language\":\"en\",\"id\":\"Bellevue, Washington\",\"url\":\"https://en.wikipedia.org/wiki/Bellevue,_Washington\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Microsoft\",\"matches\":[{\"text\":\"Microsoft\",\"offset\":0,\"length\":9,\"confidenceScore\":0.39}],\"language\":\"en\",\"id\":\"Microsoft\",\"url\":\"https://en.wikipedia.org/wiki/Microsoft\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Briann January\",\"matches\":[{\"text\":\"January\",\"offset\":60,\"length\":7,\"confidenceScore\":0.14}],\"language\":\"en\",\"id\":\"Briann January\",\"url\":\"https://en.wikipedia.org/wiki/Briann_January\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"name\":\"Steve Ballmer\",\"matches\":[{\"text\":\"Steve Ballmer\",\"offset\":0,\"length\":13,\"confidenceScore\":0.92}],\"language\":\"en\",\"id\":\"Steve Ballmer\",\"url\":\"https://en.wikipedia.org/wiki/Steve_Ballmer\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Satya Nadella\",\"matches\":[{\"text\":\"Satya Nadella\",\"offset\":68,\"length\":13,\"confidenceScore\":0.9}],\"language\":\"en\",\"id\":\"Satya Nadella\",\"url\":\"https://en.wikipedia.org/wiki/Satya_Nadella\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Microsoft\",\"matches\":[{\"text\":\"Microsoft\",\"offset\":37,\"length\":9,\"confidenceScore\":0.36}],\"language\":\"en\",\"id\":\"Microsoft\",\"url\":\"https://en.wikipedia.org/wiki/Microsoft\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Chief executive officer\",\"matches\":[{\"text\":\"CEO\",\"offset\":30,\"length\":3,\"confidenceScore\":0.25}],\"language\":\"en\",\"id\":\"Chief executive officer\",\"url\":\"https://en.wikipedia.org/wiki/Chief_executive_officer\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-02-01\"}}]}}", + "response": "{\"jobId\":\"fc561b3d-77ad-48db-9068-706a18b96a51\",\"lastUpdateDateTime\":\"2021-06-25T20:00:18Z\",\"createdDateTime\":\"2021-06-25T20:00:13Z\",\"expirationDateTime\":\"2021-06-26T20:00:13Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityLinkingTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:00:18.4177312Z\",\"taskName\":\"EntityLinking_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"name\":\"Bellevue, Washington\",\"matches\":[{\"text\":\"Bellevue, Washington\",\"offset\":36,\"length\":20,\"confidenceScore\":0.87}],\"language\":\"en\",\"id\":\"Bellevue, Washington\",\"url\":\"https://en.wikipedia.org/wiki/Bellevue,_Washington\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Microsoft\",\"matches\":[{\"text\":\"Microsoft\",\"offset\":0,\"length\":9,\"confidenceScore\":0.39}],\"language\":\"en\",\"id\":\"Microsoft\",\"url\":\"https://en.wikipedia.org/wiki/Microsoft\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Briann January\",\"matches\":[{\"text\":\"January\",\"offset\":60,\"length\":7,\"confidenceScore\":0.14}],\"language\":\"en\",\"id\":\"Briann January\",\"url\":\"https://en.wikipedia.org/wiki/Briann_January\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"name\":\"Steve Ballmer\",\"matches\":[{\"text\":\"Steve Ballmer\",\"offset\":0,\"length\":13,\"confidenceScore\":0.92}],\"language\":\"en\",\"id\":\"Steve Ballmer\",\"url\":\"https://en.wikipedia.org/wiki/Steve_Ballmer\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Satya Nadella\",\"matches\":[{\"text\":\"Satya Nadella\",\"offset\":68,\"length\":13,\"confidenceScore\":0.9}],\"language\":\"en\",\"id\":\"Satya Nadella\",\"url\":\"https://en.wikipedia.org/wiki/Satya_Nadella\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Microsoft\",\"matches\":[{\"text\":\"Microsoft\",\"offset\":37,\"length\":9,\"confidenceScore\":0.36}],\"language\":\"en\",\"id\":\"Microsoft\",\"url\":\"https://en.wikipedia.org/wiki/Microsoft\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Chief executive officer\",\"matches\":[{\"text\":\"CEO\",\"offset\":30,\"length\":3,\"confidenceScore\":0.25}],\"language\":\"en\",\"id\":\"Chief executive officer\",\"url\":\"https://en.wikipedia.org/wiki/Chief_executive_officer\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-02-01\"}}]}}", "responseHeaders": { - "apim-request-id": "b0810fc3-c35a-4370-83b4-1285c4df3470", + "apim-request-id": "9f75ec81-52d0-4633-8e56-5611ef09dd54", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:37 GMT", + "date": "Fri, 25 Jun 2021 20:00:18 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "67" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/db3acb7b-8675-42b2-ab76-bf79c2edfb9a", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"db3acb7b-8675-42b2-ab76-bf79c2edfb9a\",\"lastUpdateDateTime\":\"2021-05-12T19:19:36Z\",\"createdDateTime\":\"2021-05-12T19:19:33Z\",\"expirationDateTime\":\"2021-05-13T19:19:33Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:36Z\"},\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityLinkingTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:19:36.7027237Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"name\":\"Bellevue, Washington\",\"matches\":[{\"text\":\"Bellevue, Washington\",\"offset\":36,\"length\":20,\"confidenceScore\":0.87}],\"language\":\"en\",\"id\":\"Bellevue, Washington\",\"url\":\"https://en.wikipedia.org/wiki/Bellevue,_Washington\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Microsoft\",\"matches\":[{\"text\":\"Microsoft\",\"offset\":0,\"length\":9,\"confidenceScore\":0.39}],\"language\":\"en\",\"id\":\"Microsoft\",\"url\":\"https://en.wikipedia.org/wiki/Microsoft\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Briann January\",\"matches\":[{\"text\":\"January\",\"offset\":60,\"length\":7,\"confidenceScore\":0.14}],\"language\":\"en\",\"id\":\"Briann January\",\"url\":\"https://en.wikipedia.org/wiki/Briann_January\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"name\":\"Steve Ballmer\",\"matches\":[{\"text\":\"Steve Ballmer\",\"offset\":0,\"length\":13,\"confidenceScore\":0.92}],\"language\":\"en\",\"id\":\"Steve Ballmer\",\"url\":\"https://en.wikipedia.org/wiki/Steve_Ballmer\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Satya Nadella\",\"matches\":[{\"text\":\"Satya Nadella\",\"offset\":68,\"length\":13,\"confidenceScore\":0.9}],\"language\":\"en\",\"id\":\"Satya Nadella\",\"url\":\"https://en.wikipedia.org/wiki/Satya_Nadella\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Microsoft\",\"matches\":[{\"text\":\"Microsoft\",\"offset\":37,\"length\":9,\"confidenceScore\":0.36}],\"language\":\"en\",\"id\":\"Microsoft\",\"url\":\"https://en.wikipedia.org/wiki/Microsoft\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Chief executive officer\",\"matches\":[{\"text\":\"CEO\",\"offset\":30,\"length\":3,\"confidenceScore\":0.25}],\"language\":\"en\",\"id\":\"Chief executive officer\",\"url\":\"https://en.wikipedia.org/wiki/Chief_executive_officer\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-02-01\"}}]}}", - "responseHeaders": { - "apim-request-id": "959e7bcc-1777-46f4-ba1f-ec7469dacd30", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:37 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "53" } } ], @@ -141,5 +122,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "459b686ba8aac3a9723d535ace93d169" + "hash": "d106d5b70ea37037fd91dd13fffd822e" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.json index ffb57184abb1..95ead66d7a56 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:21 GMT", + "date": "Fri, 25 Jun 2021 19:59:55 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,78 +20,116 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - EUS ProdSlices", - "x-ms-request-id": "743b3b92-2f52-481c-a716-8c78fd455200" + "x-ms-ests-server": "2.1.11829.9 - NCUS ProdSlices", + "x-ms-request-id": "f444c40d-3826-47ee-8fe8-20324c796100" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze", + "url": "https://endpoint//text/analytics/v3.1/analyze", "query": {}, - "requestBody": "{\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]},\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"Microsoft was founded by Bill Gates and Paul Allen on April 4, 1975.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Microsoft fue fundado por Bill Gates y Paul Allen el 4 de abril de 1975.\",\"language\":\"es\"},{\"id\":\"3\",\"text\":\"Microsoft wurde am 4. April 1975 von Bill Gates und Paul Allen gegründet.\",\"language\":\"de\"}]}}", + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"Microsoft was founded by Bill Gates and Paul Allen on April 4, 1975.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Microsoft fue fundado por Bill Gates y Paul Allen el 4 de abril de 1975.\",\"language\":\"es\"},{\"id\":\"3\",\"text\":\"Microsoft wurde am 4. April 1975 von Bill Gates und Paul Allen gegründet.\",\"language\":\"de\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", "status": 202, "response": "", "responseHeaders": { - "apim-request-id": "1da8f36f-e427-413a-a652-cebaab9b16d7", - "date": "Wed, 12 May 2021 19:19:21 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/ea206940-1124-480f-887b-80e856401eca", + "apim-request-id": "494e4e35-cd79-4c37-a04f-566d9528971e", + "date": "Fri, 25 Jun 2021 19:59:55 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/c5d52d7f-e052-424a-99bc-5fa3296ec23a", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "110" + "x-envoy-upstream-service-time": "165" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/ea206940-1124-480f-887b-80e856401eca", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c5d52d7f-e052-424a-99bc-5fa3296ec23a", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"ea206940-1124-480f-887b-80e856401eca\",\"lastUpdateDateTime\":\"2021-05-12T19:19:22Z\",\"createdDateTime\":\"2021-05-12T19:19:22Z\",\"expirationDateTime\":\"2021-05-13T19:19:22Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:22Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"c5d52d7f-e052-424a-99bc-5fa3296ec23a\",\"lastUpdateDateTime\":\"2021-06-25T19:59:56Z\",\"createdDateTime\":\"2021-06-25T19:59:56Z\",\"expirationDateTime\":\"2021-06-26T19:59:56Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "23b3bd79-dbcb-48d8-9a1d-9c975fd2596b", + "apim-request-id": "12c7d310-34dc-4a3f-8c61-e0921636beb6", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:21 GMT", + "date": "Fri, 25 Jun 2021 19:59:56 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": "12" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/ea206940-1124-480f-887b-80e856401eca", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c5d52d7f-e052-424a-99bc-5fa3296ec23a", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"ea206940-1124-480f-887b-80e856401eca\",\"lastUpdateDateTime\":\"2021-05-12T19:19:22Z\",\"createdDateTime\":\"2021-05-12T19:19:22Z\",\"expirationDateTime\":\"2021-05-13T19:19:22Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:22Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"c5d52d7f-e052-424a-99bc-5fa3296ec23a\",\"lastUpdateDateTime\":\"2021-06-25T19:59:56Z\",\"createdDateTime\":\"2021-06-25T19:59:56Z\",\"expirationDateTime\":\"2021-06-26T19:59:56Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "05261847-f5d5-40bd-ad8f-d851d6b20b00", + "apim-request-id": "090a0b82-fc67-4a9b-8cb0-8779006c0753", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:21 GMT", + "date": "Fri, 25 Jun 2021 19:59:56 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c5d52d7f-e052-424a-99bc-5fa3296ec23a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"c5d52d7f-e052-424a-99bc-5fa3296ec23a\",\"lastUpdateDateTime\":\"2021-06-25T19:59:56Z\",\"createdDateTime\":\"2021-06-25T19:59:56Z\",\"expirationDateTime\":\"2021-06-26T19:59:56Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "44fe7c4a-3915-465c-84ca-331880ae56ee", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 19:59:58 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c5d52d7f-e052-424a-99bc-5fa3296ec23a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"c5d52d7f-e052-424a-99bc-5fa3296ec23a\",\"lastUpdateDateTime\":\"2021-06-25T19:59:56Z\",\"createdDateTime\":\"2021-06-25T19:59:56Z\",\"expirationDateTime\":\"2021-06-26T19:59:56Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "7414c333-1986-4232-b672-502bc0e21a4a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:00:00 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/ea206940-1124-480f-887b-80e856401eca", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c5d52d7f-e052-424a-99bc-5fa3296ec23a", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"ea206940-1124-480f-887b-80e856401eca\",\"lastUpdateDateTime\":\"2021-05-12T19:19:22Z\",\"createdDateTime\":\"2021-05-12T19:19:22Z\",\"expirationDateTime\":\"2021-05-13T19:19:22Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:22Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"c5d52d7f-e052-424a-99bc-5fa3296ec23a\",\"lastUpdateDateTime\":\"2021-06-25T19:59:56Z\",\"createdDateTime\":\"2021-06-25T19:59:56Z\",\"expirationDateTime\":\"2021-06-26T19:59:56Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "9d8e05c9-7cc6-437e-95f6-4e7f8c6bb2c9", + "apim-request-id": "f64ddfbd-97bf-4eda-a1b9-79ed122b7df1", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:23 GMT", + "date": "Fri, 25 Jun 2021 20:00:02 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -100,17 +138,17 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/ea206940-1124-480f-887b-80e856401eca", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c5d52d7f-e052-424a-99bc-5fa3296ec23a", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"ea206940-1124-480f-887b-80e856401eca\",\"lastUpdateDateTime\":\"2021-05-12T19:19:24Z\",\"createdDateTime\":\"2021-05-12T19:19:22Z\",\"expirationDateTime\":\"2021-05-13T19:19:22Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:24Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"c5d52d7f-e052-424a-99bc-5fa3296ec23a\",\"lastUpdateDateTime\":\"2021-06-25T19:59:56Z\",\"createdDateTime\":\"2021-06-25T19:59:56Z\",\"expirationDateTime\":\"2021-06-26T19:59:56Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "0a512faa-5848-4d3f-8393-1de62d10b334", + "apim-request-id": "e397ae1e-04de-4041-bcaa-c12f0f7ae543", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:25 GMT", + "date": "Fri, 25 Jun 2021 20:00:04 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -119,17 +157,17 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/ea206940-1124-480f-887b-80e856401eca", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c5d52d7f-e052-424a-99bc-5fa3296ec23a", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"ea206940-1124-480f-887b-80e856401eca\",\"lastUpdateDateTime\":\"2021-05-12T19:19:24Z\",\"createdDateTime\":\"2021-05-12T19:19:22Z\",\"expirationDateTime\":\"2021-05-13T19:19:22Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:24Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"c5d52d7f-e052-424a-99bc-5fa3296ec23a\",\"lastUpdateDateTime\":\"2021-06-25T19:59:56Z\",\"createdDateTime\":\"2021-06-25T19:59:56Z\",\"expirationDateTime\":\"2021-06-26T19:59:56Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "e6205d93-da8e-47f7-9309-2347e5b479f5", + "apim-request-id": "541d89d9-2ae4-4639-b268-7e01140d894e", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:27 GMT", + "date": "Fri, 25 Jun 2021 20:00:06 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -138,59 +176,78 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/ea206940-1124-480f-887b-80e856401eca", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c5d52d7f-e052-424a-99bc-5fa3296ec23a", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"ea206940-1124-480f-887b-80e856401eca\",\"lastUpdateDateTime\":\"2021-05-12T19:19:24Z\",\"createdDateTime\":\"2021-05-12T19:19:22Z\",\"expirationDateTime\":\"2021-05-13T19:19:22Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:24Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"c5d52d7f-e052-424a-99bc-5fa3296ec23a\",\"lastUpdateDateTime\":\"2021-06-25T19:59:56Z\",\"createdDateTime\":\"2021-06-25T19:59:56Z\",\"expirationDateTime\":\"2021-06-26T19:59:56Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "74bfbfbb-ca84-4b04-bf9d-9db93fd47895", + "apim-request-id": "8709cd8f-00ef-4c4b-9ff7-da3c543cd1b9", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:29 GMT", + "date": "Fri, 25 Jun 2021 20:00:08 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "10" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c5d52d7f-e052-424a-99bc-5fa3296ec23a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"c5d52d7f-e052-424a-99bc-5fa3296ec23a\",\"lastUpdateDateTime\":\"2021-06-25T19:59:56Z\",\"createdDateTime\":\"2021-06-25T19:59:56Z\",\"expirationDateTime\":\"2021-06-26T19:59:56Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "de23762f-4b3c-4bf7-b668-060c5424cc35", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:00:10 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "11" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/ea206940-1124-480f-887b-80e856401eca", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c5d52d7f-e052-424a-99bc-5fa3296ec23a", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"ea206940-1124-480f-887b-80e856401eca\",\"lastUpdateDateTime\":\"2021-05-12T19:19:32Z\",\"createdDateTime\":\"2021-05-12T19:19:22Z\",\"expirationDateTime\":\"2021-05-13T19:19:22Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:32Z\"},\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:19:32.6143224Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":0.96},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":25,\"length\":10,\"confidenceScore\":0.99},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":40,\"length\":10,\"confidenceScore\":0.99},{\"text\":\"April 4, 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":54,\"length\":13,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":0.97},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":26,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":39,\"length\":10,\"confidenceScore\":0.99},{\"text\":\"4 de abril de 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":53,\"length\":18,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":0.97},{\"text\":\"4. April 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":19,\"length\":13,\"confidenceScore\":0.8},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":37,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":52,\"length\":10,\"confidenceScore\":0.99}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "response": "{\"jobId\":\"c5d52d7f-e052-424a-99bc-5fa3296ec23a\",\"lastUpdateDateTime\":\"2021-06-25T20:00:11Z\",\"createdDateTime\":\"2021-06-25T19:59:56Z\",\"expirationDateTime\":\"2021-06-26T19:59:56Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:00:11.6245915Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":1.0},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":25,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":40,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"April 4, 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":54,\"length\":13,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":1.0},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":26,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":39,\"length\":10,\"confidenceScore\":0.99},{\"text\":\"4 de abril de 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":53,\"length\":18,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":1.0},{\"text\":\"4. April 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":19,\"length\":13,\"confidenceScore\":0.8},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":37,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":52,\"length\":10,\"confidenceScore\":1.0}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "6c291cdc-10ad-4d3a-8345-cfb1ca94e47b", + "apim-request-id": "b20f139a-72df-4c88-a406-d255aed13b8d", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:31 GMT", + "date": "Fri, 25 Jun 2021 20:00:12 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "48" + "x-envoy-upstream-service-time": "69" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/ea206940-1124-480f-887b-80e856401eca", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c5d52d7f-e052-424a-99bc-5fa3296ec23a", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"ea206940-1124-480f-887b-80e856401eca\",\"lastUpdateDateTime\":\"2021-05-12T19:19:32Z\",\"createdDateTime\":\"2021-05-12T19:19:22Z\",\"expirationDateTime\":\"2021-05-13T19:19:22Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:32Z\"},\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:19:32.6143224Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":0.96},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":25,\"length\":10,\"confidenceScore\":0.99},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":40,\"length\":10,\"confidenceScore\":0.99},{\"text\":\"April 4, 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":54,\"length\":13,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":0.97},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":26,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":39,\"length\":10,\"confidenceScore\":0.99},{\"text\":\"4 de abril de 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":53,\"length\":18,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":0.97},{\"text\":\"4. April 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":19,\"length\":13,\"confidenceScore\":0.8},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":37,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":52,\"length\":10,\"confidenceScore\":0.99}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "response": "{\"jobId\":\"c5d52d7f-e052-424a-99bc-5fa3296ec23a\",\"lastUpdateDateTime\":\"2021-06-25T20:00:11Z\",\"createdDateTime\":\"2021-06-25T19:59:56Z\",\"expirationDateTime\":\"2021-06-26T19:59:56Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:00:11.6245915Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":1.0},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":25,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":40,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"April 4, 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":54,\"length\":13,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":1.0},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":26,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":39,\"length\":10,\"confidenceScore\":0.99},{\"text\":\"4 de abril de 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":53,\"length\":18,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":1.0},{\"text\":\"4. April 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":19,\"length\":13,\"confidenceScore\":0.8},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":37,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":52,\"length\":10,\"confidenceScore\":1.0}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "6f4b47db-161a-4bce-922e-a09ad9c5c585", + "apim-request-id": "e00e1caa-d053-4c2b-9b79-99a40f051659", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:32 GMT", + "date": "Fri, 25 Jun 2021 20:00:12 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "115" + "x-envoy-upstream-service-time": "68" } } ], @@ -198,5 +255,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "89c881ce70d81ae12eec4f2aaa57a0ef" + "hash": "cf115337615566d6c56926e571550fa1" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.json index b4271e4835d1..ba26e2bb3abd 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:20 GMT", + "date": "Fri, 25 Jun 2021 19:58:44 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,59 +20,59 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - NCUS ProdSlices", - "x-ms-request-id": "4e081bcf-0a12-4b10-9110-b01a7ed35600" + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "a8469818-98d5-4f27-9e2b-efa5eb0b7700" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze", + "url": "https://endpoint//text/analytics/v3.1/analyze", "query": {}, - "requestBody": "{\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]},\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"Microsoft was founded by Bill Gates and Paul Allen\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Microsoft fue fundado por Bill Gates y Paul Allen\",\"language\":\"es\"}]}}", + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"Microsoft was founded by Bill Gates and Paul Allen\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Microsoft fue fundado por Bill Gates y Paul Allen\",\"language\":\"es\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", "status": 202, "response": "", "responseHeaders": { - "apim-request-id": "60a0c7e5-d7e3-40d7-8ef8-cb4ed0db08fd", - "date": "Wed, 12 May 2021 19:18:20 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/d07136e4-34ef-4d7b-9ee3-a309209d65a6", + "apim-request-id": "5740032e-bf2c-473e-936a-ee79586bba93", + "date": "Fri, 25 Jun 2021 19:58:44 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/7d6e1748-6922-48f1-bc06-6b9a43c63a1a", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "93" + "x-envoy-upstream-service-time": "148" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/d07136e4-34ef-4d7b-9ee3-a309209d65a6", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7d6e1748-6922-48f1-bc06-6b9a43c63a1a", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"d07136e4-34ef-4d7b-9ee3-a309209d65a6\",\"lastUpdateDateTime\":\"2021-05-12T19:18:21Z\",\"createdDateTime\":\"2021-05-12T19:18:21Z\",\"expirationDateTime\":\"2021-05-13T19:18:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:18:21Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"7d6e1748-6922-48f1-bc06-6b9a43c63a1a\",\"lastUpdateDateTime\":\"2021-06-25T19:58:45Z\",\"createdDateTime\":\"2021-06-25T19:58:45Z\",\"expirationDateTime\":\"2021-06-26T19:58:45Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "accceb5f-4fbb-486a-a62c-1651e7e232ca", + "apim-request-id": "4f3141bc-13d4-4a8c-bcd3-7740a7d32e9e", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:21 GMT", + "date": "Fri, 25 Jun 2021 19:58:44 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "12" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/d07136e4-34ef-4d7b-9ee3-a309209d65a6", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7d6e1748-6922-48f1-bc06-6b9a43c63a1a", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"d07136e4-34ef-4d7b-9ee3-a309209d65a6\",\"lastUpdateDateTime\":\"2021-05-12T19:18:21Z\",\"createdDateTime\":\"2021-05-12T19:18:21Z\",\"expirationDateTime\":\"2021-05-13T19:18:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:18:21Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"7d6e1748-6922-48f1-bc06-6b9a43c63a1a\",\"lastUpdateDateTime\":\"2021-06-25T19:58:45Z\",\"createdDateTime\":\"2021-06-25T19:58:45Z\",\"expirationDateTime\":\"2021-06-26T19:58:45Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "1b11c414-e041-45a6-8992-86aa1fa04042", + "apim-request-id": "11ecb58d-17f7-4364-834e-b60098cdaa05", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:21 GMT", + "date": "Fri, 25 Jun 2021 19:58:45 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -81,36 +81,17 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/d07136e4-34ef-4d7b-9ee3-a309209d65a6", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d07136e4-34ef-4d7b-9ee3-a309209d65a6\",\"lastUpdateDateTime\":\"2021-05-12T19:18:21Z\",\"createdDateTime\":\"2021-05-12T19:18:21Z\",\"expirationDateTime\":\"2021-05-13T19:18:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:18:21Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "93198a4e-7d93-43b8-855d-12542298cfa9", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:23 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/d07136e4-34ef-4d7b-9ee3-a309209d65a6", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7d6e1748-6922-48f1-bc06-6b9a43c63a1a", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"d07136e4-34ef-4d7b-9ee3-a309209d65a6\",\"lastUpdateDateTime\":\"2021-05-12T19:18:24Z\",\"createdDateTime\":\"2021-05-12T19:18:21Z\",\"expirationDateTime\":\"2021-05-13T19:18:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:18:24Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"7d6e1748-6922-48f1-bc06-6b9a43c63a1a\",\"lastUpdateDateTime\":\"2021-06-25T19:58:45Z\",\"createdDateTime\":\"2021-06-25T19:58:45Z\",\"expirationDateTime\":\"2021-06-26T19:58:45Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "8241cae3-fe68-4b03-8644-58333f063748", + "apim-request-id": "439a3785-b359-4f01-af71-bdc9f317e9bc", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:25 GMT", + "date": "Fri, 25 Jun 2021 19:58:47 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -119,112 +100,74 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/d07136e4-34ef-4d7b-9ee3-a309209d65a6", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d07136e4-34ef-4d7b-9ee3-a309209d65a6\",\"lastUpdateDateTime\":\"2021-05-12T19:18:24Z\",\"createdDateTime\":\"2021-05-12T19:18:21Z\",\"expirationDateTime\":\"2021-05-13T19:18:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:18:24Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "a6270c3e-5079-42e9-8579-1818370ea543", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:27 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/d07136e4-34ef-4d7b-9ee3-a309209d65a6", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d07136e4-34ef-4d7b-9ee3-a309209d65a6\",\"lastUpdateDateTime\":\"2021-05-12T19:18:24Z\",\"createdDateTime\":\"2021-05-12T19:18:21Z\",\"expirationDateTime\":\"2021-05-13T19:18:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:18:24Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "e7c4a5fd-4c45-40a3-be9a-2fd2ffc05fd0", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:29 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/d07136e4-34ef-4d7b-9ee3-a309209d65a6", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7d6e1748-6922-48f1-bc06-6b9a43c63a1a", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"d07136e4-34ef-4d7b-9ee3-a309209d65a6\",\"lastUpdateDateTime\":\"2021-05-12T19:18:24Z\",\"createdDateTime\":\"2021-05-12T19:18:21Z\",\"expirationDateTime\":\"2021-05-13T19:18:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:18:24Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"7d6e1748-6922-48f1-bc06-6b9a43c63a1a\",\"lastUpdateDateTime\":\"2021-06-25T19:58:48Z\",\"createdDateTime\":\"2021-06-25T19:58:45Z\",\"expirationDateTime\":\"2021-06-26T19:58:45Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "de68c6ce-dc31-4079-b269-704c1d87a0b9", + "apim-request-id": "7aadb275-e3a6-4d49-b869-f929a67bc94c", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:32 GMT", + "date": "Fri, 25 Jun 2021 19:58:49 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/d07136e4-34ef-4d7b-9ee3-a309209d65a6", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7d6e1748-6922-48f1-bc06-6b9a43c63a1a", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"d07136e4-34ef-4d7b-9ee3-a309209d65a6\",\"lastUpdateDateTime\":\"2021-05-12T19:18:24Z\",\"createdDateTime\":\"2021-05-12T19:18:21Z\",\"expirationDateTime\":\"2021-05-13T19:18:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:18:24Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"7d6e1748-6922-48f1-bc06-6b9a43c63a1a\",\"lastUpdateDateTime\":\"2021-06-25T19:58:48Z\",\"createdDateTime\":\"2021-06-25T19:58:45Z\",\"expirationDateTime\":\"2021-06-26T19:58:45Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "aa312577-dfa3-4a33-af35-e78ea48e3051", + "apim-request-id": "c3c3c6ff-c9a7-41df-8771-a64cb5e3014c", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:34 GMT", + "date": "Fri, 25 Jun 2021 19:58:51 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "46" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/d07136e4-34ef-4d7b-9ee3-a309209d65a6", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7d6e1748-6922-48f1-bc06-6b9a43c63a1a", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"d07136e4-34ef-4d7b-9ee3-a309209d65a6\",\"lastUpdateDateTime\":\"2021-05-12T19:18:24Z\",\"createdDateTime\":\"2021-05-12T19:18:21Z\",\"expirationDateTime\":\"2021-05-13T19:18:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:18:24Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"7d6e1748-6922-48f1-bc06-6b9a43c63a1a\",\"lastUpdateDateTime\":\"2021-06-25T19:58:48Z\",\"createdDateTime\":\"2021-06-25T19:58:45Z\",\"expirationDateTime\":\"2021-06-26T19:58:45Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "0c38f106-dd4d-4dc2-bea4-cb71cbd1379e", + "apim-request-id": "19a1712a-3b9f-42f0-8363-e3f4cb44e226", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:36 GMT", + "date": "Fri, 25 Jun 2021 19:58:53 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "14" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/d07136e4-34ef-4d7b-9ee3-a309209d65a6", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7d6e1748-6922-48f1-bc06-6b9a43c63a1a", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"d07136e4-34ef-4d7b-9ee3-a309209d65a6\",\"lastUpdateDateTime\":\"2021-05-12T19:18:24Z\",\"createdDateTime\":\"2021-05-12T19:18:21Z\",\"expirationDateTime\":\"2021-05-13T19:18:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:18:24Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"7d6e1748-6922-48f1-bc06-6b9a43c63a1a\",\"lastUpdateDateTime\":\"2021-06-25T19:58:48Z\",\"createdDateTime\":\"2021-06-25T19:58:45Z\",\"expirationDateTime\":\"2021-06-26T19:58:45Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "712adf0f-6c0b-4adc-aa8b-12879eb54cfe", + "apim-request-id": "25e5d947-fd51-4300-b218-319b5e3d1ae6", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:38 GMT", + "date": "Fri, 25 Jun 2021 19:58:55 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -233,55 +176,17 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/d07136e4-34ef-4d7b-9ee3-a309209d65a6", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d07136e4-34ef-4d7b-9ee3-a309209d65a6\",\"lastUpdateDateTime\":\"2021-05-12T19:18:24Z\",\"createdDateTime\":\"2021-05-12T19:18:21Z\",\"expirationDateTime\":\"2021-05-13T19:18:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:18:24Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "8d46cf46-67a2-4551-b3d9-3edd156a49f6", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:40 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/d07136e4-34ef-4d7b-9ee3-a309209d65a6", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d07136e4-34ef-4d7b-9ee3-a309209d65a6\",\"lastUpdateDateTime\":\"2021-05-12T19:18:24Z\",\"createdDateTime\":\"2021-05-12T19:18:21Z\",\"expirationDateTime\":\"2021-05-13T19:18:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:18:24Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "a6319d2d-1e89-4eb1-9747-337c241929df", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:42 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/d07136e4-34ef-4d7b-9ee3-a309209d65a6", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7d6e1748-6922-48f1-bc06-6b9a43c63a1a", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"d07136e4-34ef-4d7b-9ee3-a309209d65a6\",\"lastUpdateDateTime\":\"2021-05-12T19:18:24Z\",\"createdDateTime\":\"2021-05-12T19:18:21Z\",\"expirationDateTime\":\"2021-05-13T19:18:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:18:24Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"7d6e1748-6922-48f1-bc06-6b9a43c63a1a\",\"lastUpdateDateTime\":\"2021-06-25T19:58:48Z\",\"createdDateTime\":\"2021-06-25T19:58:45Z\",\"expirationDateTime\":\"2021-06-26T19:58:45Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "b4c191ae-0b1f-4e5b-b671-8ed402e14de9", + "apim-request-id": "0d65348f-297f-4c8d-bb83-e43be146fd02", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:44 GMT", + "date": "Fri, 25 Jun 2021 19:58:57 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -290,36 +195,17 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/d07136e4-34ef-4d7b-9ee3-a309209d65a6", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"d07136e4-34ef-4d7b-9ee3-a309209d65a6\",\"lastUpdateDateTime\":\"2021-05-12T19:18:24Z\",\"createdDateTime\":\"2021-05-12T19:18:21Z\",\"expirationDateTime\":\"2021-05-13T19:18:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:18:24Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", - "responseHeaders": { - "apim-request-id": "7e339d44-59d1-441b-82b2-cbd31f85ac13", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:46 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/d07136e4-34ef-4d7b-9ee3-a309209d65a6", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7d6e1748-6922-48f1-bc06-6b9a43c63a1a", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"d07136e4-34ef-4d7b-9ee3-a309209d65a6\",\"lastUpdateDateTime\":\"2021-05-12T19:18:24Z\",\"createdDateTime\":\"2021-05-12T19:18:21Z\",\"expirationDateTime\":\"2021-05-13T19:18:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:18:24Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"7d6e1748-6922-48f1-bc06-6b9a43c63a1a\",\"lastUpdateDateTime\":\"2021-06-25T19:58:48Z\",\"createdDateTime\":\"2021-06-25T19:58:45Z\",\"expirationDateTime\":\"2021-06-26T19:58:45Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "6482081f-b41a-4dfe-86e3-73909a2761b5", + "apim-request-id": "c8610bf3-c798-46bc-b9a5-4ad2060a6814", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:48 GMT", + "date": "Fri, 25 Jun 2021 19:58:59 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -328,59 +214,59 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/d07136e4-34ef-4d7b-9ee3-a309209d65a6", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7d6e1748-6922-48f1-bc06-6b9a43c63a1a", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"d07136e4-34ef-4d7b-9ee3-a309209d65a6\",\"lastUpdateDateTime\":\"2021-05-12T19:18:24Z\",\"createdDateTime\":\"2021-05-12T19:18:21Z\",\"expirationDateTime\":\"2021-05-13T19:18:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:18:24Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"7d6e1748-6922-48f1-bc06-6b9a43c63a1a\",\"lastUpdateDateTime\":\"2021-06-25T19:58:48Z\",\"createdDateTime\":\"2021-06-25T19:58:45Z\",\"expirationDateTime\":\"2021-06-26T19:58:45Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "0de3d91d-bdb3-4779-8023-65e8db280baf", + "apim-request-id": "cae64a49-7a6a-457e-ac50-5f4dd7e83dc0", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:50 GMT", + "date": "Fri, 25 Jun 2021 19:59:01 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/d07136e4-34ef-4d7b-9ee3-a309209d65a6", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7d6e1748-6922-48f1-bc06-6b9a43c63a1a", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"d07136e4-34ef-4d7b-9ee3-a309209d65a6\",\"lastUpdateDateTime\":\"2021-05-12T19:18:52Z\",\"createdDateTime\":\"2021-05-12T19:18:21Z\",\"expirationDateTime\":\"2021-05-13T19:18:21Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:18:52Z\"},\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:18:52.4181288Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":0.95},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":25,\"length\":10,\"confidenceScore\":0.99},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":40,\"length\":10,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":0.96},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":26,\"length\":10,\"confidenceScore\":0.99},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":39,\"length\":10,\"confidenceScore\":0.99}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "response": "{\"jobId\":\"7d6e1748-6922-48f1-bc06-6b9a43c63a1a\",\"lastUpdateDateTime\":\"2021-06-25T19:59:12Z\",\"createdDateTime\":\"2021-06-25T19:58:45Z\",\"expirationDateTime\":\"2021-06-26T19:58:45Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T19:59:12.2824197Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":1.0},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":25,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":40,\"length\":10,\"confidenceScore\":1.0}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":1.0},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":26,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":39,\"length\":10,\"confidenceScore\":0.99}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "d695b1f8-dce0-4ab5-a75b-4d1856e4ee94", + "apim-request-id": "7874fd1c-12fb-4712-bf78-13de546a8461", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:52 GMT", + "date": "Fri, 25 Jun 2021 19:59:24 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-envoy-upstream-service-time": "64" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/d07136e4-34ef-4d7b-9ee3-a309209d65a6", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7d6e1748-6922-48f1-bc06-6b9a43c63a1a", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"d07136e4-34ef-4d7b-9ee3-a309209d65a6\",\"lastUpdateDateTime\":\"2021-05-12T19:18:52Z\",\"createdDateTime\":\"2021-05-12T19:18:21Z\",\"expirationDateTime\":\"2021-05-13T19:18:21Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:18:52Z\"},\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:18:52.4181288Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":0.95},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":25,\"length\":10,\"confidenceScore\":0.99},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":40,\"length\":10,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":0.96},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":26,\"length\":10,\"confidenceScore\":0.99},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":39,\"length\":10,\"confidenceScore\":0.99}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "response": "{\"jobId\":\"7d6e1748-6922-48f1-bc06-6b9a43c63a1a\",\"lastUpdateDateTime\":\"2021-06-25T19:59:12Z\",\"createdDateTime\":\"2021-06-25T19:58:45Z\",\"expirationDateTime\":\"2021-06-26T19:58:45Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T19:59:12.2824197Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":1.0},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":25,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":40,\"length\":10,\"confidenceScore\":1.0}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":1.0},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":26,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":39,\"length\":10,\"confidenceScore\":0.99}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "a32756b3-c082-4834-85df-8494588de6ce", + "apim-request-id": "14a6719f-76b5-40c8-9425-2163afb72ccd", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:52 GMT", + "date": "Fri, 25 Jun 2021 19:59:24 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "48" + "x-envoy-upstream-service-time": "128" } } ], @@ -388,5 +274,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "5a4d44b02b1e1542bb0ed0fc25e9bad0" + "hash": "881e291f78d9d9466840e6f0072b0c70" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.json index 576950d00425..87a4da5219db 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:52 GMT", + "date": "Fri, 25 Jun 2021 19:59:24 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,97 +20,97 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - NCUS ProdSlices", - "x-ms-request-id": "c1e705ec-3912-4743-ac25-e105c3194e00" + "x-ms-ests-server": "2.1.11829.9 - SCUS ProdSlices", + "x-ms-request-id": "b10314ef-1e76-4785-9505-f544ddd87000" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze", + "url": "https://endpoint//text/analytics/v3.1/analyze", "query": {}, - "requestBody": "{\"tasks\":{\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]},\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"Microsoft was founded by Bill Gates and Paul Allen\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Microsoft fue fundado por Bill Gates y Paul Allen\",\"language\":\"es\"}]}}", + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"Microsoft was founded by Bill Gates and Paul Allen\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Microsoft fue fundado por Bill Gates y Paul Allen\",\"language\":\"es\"}]},\"tasks\":{\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", "status": 202, "response": "", "responseHeaders": { - "apim-request-id": "901ab7e6-59e4-41ae-9942-2cc682626f7e", - "date": "Wed, 12 May 2021 19:18:52 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/681c318e-b917-41f7-8b8e-00b10d3197ed", + "apim-request-id": "5849a8a1-bcf5-489f-9097-1c285832be80", + "date": "Fri, 25 Jun 2021 19:59:25 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/88bb5b91-e8ea-478b-b2ac-4a0923552b86", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "71" + "x-envoy-upstream-service-time": "201" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/681c318e-b917-41f7-8b8e-00b10d3197ed", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/88bb5b91-e8ea-478b-b2ac-4a0923552b86", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"681c318e-b917-41f7-8b8e-00b10d3197ed\",\"lastUpdateDateTime\":\"2021-05-12T19:18:53Z\",\"createdDateTime\":\"2021-05-12T19:18:52Z\",\"expirationDateTime\":\"2021-05-13T19:18:52Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:18:53Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"88bb5b91-e8ea-478b-b2ac-4a0923552b86\",\"lastUpdateDateTime\":\"2021-06-25T19:59:25Z\",\"createdDateTime\":\"2021-06-25T19:59:25Z\",\"expirationDateTime\":\"2021-06-26T19:59:25Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "b8ed5a00-7815-452e-b144-7460db1e4b62", + "apim-request-id": "ea0abb64-75b0-4635-9aac-f44677cfedb0", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:52 GMT", + "date": "Fri, 25 Jun 2021 19:59:25 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "9" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/681c318e-b917-41f7-8b8e-00b10d3197ed", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/88bb5b91-e8ea-478b-b2ac-4a0923552b86", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"681c318e-b917-41f7-8b8e-00b10d3197ed\",\"lastUpdateDateTime\":\"2021-05-12T19:18:53Z\",\"createdDateTime\":\"2021-05-12T19:18:52Z\",\"expirationDateTime\":\"2021-05-13T19:18:52Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:18:53Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"88bb5b91-e8ea-478b-b2ac-4a0923552b86\",\"lastUpdateDateTime\":\"2021-06-25T19:59:25Z\",\"createdDateTime\":\"2021-06-25T19:59:25Z\",\"expirationDateTime\":\"2021-06-26T19:59:25Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "80c09679-fbf8-4f14-b94a-b2b945c5e122", + "apim-request-id": "461f5ebc-a731-4e3f-9339-f57ba4fa6196", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:52 GMT", + "date": "Fri, 25 Jun 2021 19:59:25 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "11" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/681c318e-b917-41f7-8b8e-00b10d3197ed", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/88bb5b91-e8ea-478b-b2ac-4a0923552b86", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"681c318e-b917-41f7-8b8e-00b10d3197ed\",\"lastUpdateDateTime\":\"2021-05-12T19:18:53Z\",\"createdDateTime\":\"2021-05-12T19:18:52Z\",\"expirationDateTime\":\"2021-05-13T19:18:52Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:18:53Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"88bb5b91-e8ea-478b-b2ac-4a0923552b86\",\"lastUpdateDateTime\":\"2021-06-25T19:59:26Z\",\"createdDateTime\":\"2021-06-25T19:59:25Z\",\"expirationDateTime\":\"2021-06-26T19:59:25Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "791f6134-b6eb-4bcb-a93c-e07e3fa07d37", + "apim-request-id": "cf59e7b1-5faf-4e3a-9971-e6fddc45a01d", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:54 GMT", + "date": "Fri, 25 Jun 2021 19:59:27 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "8" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/681c318e-b917-41f7-8b8e-00b10d3197ed", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/88bb5b91-e8ea-478b-b2ac-4a0923552b86", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"681c318e-b917-41f7-8b8e-00b10d3197ed\",\"lastUpdateDateTime\":\"2021-05-12T19:18:53Z\",\"createdDateTime\":\"2021-05-12T19:18:52Z\",\"expirationDateTime\":\"2021-05-13T19:18:52Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:18:53Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"88bb5b91-e8ea-478b-b2ac-4a0923552b86\",\"lastUpdateDateTime\":\"2021-06-25T19:59:26Z\",\"createdDateTime\":\"2021-06-25T19:59:25Z\",\"expirationDateTime\":\"2021-06-26T19:59:25Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "0e39a42e-035f-4d9a-b36b-c309057b5ceb", + "apim-request-id": "12b62d3d-d16a-482e-933c-358c5bc16cf6", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:56 GMT", + "date": "Fri, 25 Jun 2021 19:59:29 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -119,249 +119,249 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/681c318e-b917-41f7-8b8e-00b10d3197ed", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/88bb5b91-e8ea-478b-b2ac-4a0923552b86", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"681c318e-b917-41f7-8b8e-00b10d3197ed\",\"lastUpdateDateTime\":\"2021-05-12T19:18:53Z\",\"createdDateTime\":\"2021-05-12T19:18:52Z\",\"expirationDateTime\":\"2021-05-13T19:18:52Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:18:53Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"88bb5b91-e8ea-478b-b2ac-4a0923552b86\",\"lastUpdateDateTime\":\"2021-06-25T19:59:26Z\",\"createdDateTime\":\"2021-06-25T19:59:25Z\",\"expirationDateTime\":\"2021-06-26T19:59:25Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "f5954576-7ec0-402f-a6d3-4546ea388062", + "apim-request-id": "beb6a391-34a6-43a7-a8f4-7b213f3e38be", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:58 GMT", + "date": "Fri, 25 Jun 2021 19:59:31 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "8" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/681c318e-b917-41f7-8b8e-00b10d3197ed", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/88bb5b91-e8ea-478b-b2ac-4a0923552b86", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"681c318e-b917-41f7-8b8e-00b10d3197ed\",\"lastUpdateDateTime\":\"2021-05-12T19:19:00Z\",\"createdDateTime\":\"2021-05-12T19:18:52Z\",\"expirationDateTime\":\"2021-05-13T19:18:52Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:00Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"88bb5b91-e8ea-478b-b2ac-4a0923552b86\",\"lastUpdateDateTime\":\"2021-06-25T19:59:26Z\",\"createdDateTime\":\"2021-06-25T19:59:25Z\",\"expirationDateTime\":\"2021-06-26T19:59:25Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "0ae52d50-ae90-4e7a-80dc-bea7292b15e8", + "apim-request-id": "37a1d52a-edc9-423e-b7e0-a73ed282597c", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:00 GMT", + "date": "Fri, 25 Jun 2021 19:59:33 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "6" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/681c318e-b917-41f7-8b8e-00b10d3197ed", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/88bb5b91-e8ea-478b-b2ac-4a0923552b86", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"681c318e-b917-41f7-8b8e-00b10d3197ed\",\"lastUpdateDateTime\":\"2021-05-12T19:19:00Z\",\"createdDateTime\":\"2021-05-12T19:18:52Z\",\"expirationDateTime\":\"2021-05-13T19:18:52Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:00Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"88bb5b91-e8ea-478b-b2ac-4a0923552b86\",\"lastUpdateDateTime\":\"2021-06-25T19:59:26Z\",\"createdDateTime\":\"2021-06-25T19:59:25Z\",\"expirationDateTime\":\"2021-06-26T19:59:25Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "46753dbc-d6ad-4eff-ae96-bbc175d14f8f", + "apim-request-id": "3745acad-2027-4ad0-a2bd-b407cfc9956f", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:02 GMT", + "date": "Fri, 25 Jun 2021 19:59:36 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "8" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/681c318e-b917-41f7-8b8e-00b10d3197ed", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/88bb5b91-e8ea-478b-b2ac-4a0923552b86", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"681c318e-b917-41f7-8b8e-00b10d3197ed\",\"lastUpdateDateTime\":\"2021-05-12T19:19:00Z\",\"createdDateTime\":\"2021-05-12T19:18:52Z\",\"expirationDateTime\":\"2021-05-13T19:18:52Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:00Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"88bb5b91-e8ea-478b-b2ac-4a0923552b86\",\"lastUpdateDateTime\":\"2021-06-25T19:59:26Z\",\"createdDateTime\":\"2021-06-25T19:59:25Z\",\"expirationDateTime\":\"2021-06-26T19:59:25Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "b69a236f-9b56-4d26-bd35-f9936353a7f7", + "apim-request-id": "2c64b6a1-d869-4ff1-bdde-ac65e28b60c5", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:04 GMT", + "date": "Fri, 25 Jun 2021 19:59:38 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "13" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/681c318e-b917-41f7-8b8e-00b10d3197ed", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/88bb5b91-e8ea-478b-b2ac-4a0923552b86", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"681c318e-b917-41f7-8b8e-00b10d3197ed\",\"lastUpdateDateTime\":\"2021-05-12T19:19:00Z\",\"createdDateTime\":\"2021-05-12T19:18:52Z\",\"expirationDateTime\":\"2021-05-13T19:18:52Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:00Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"88bb5b91-e8ea-478b-b2ac-4a0923552b86\",\"lastUpdateDateTime\":\"2021-06-25T19:59:26Z\",\"createdDateTime\":\"2021-06-25T19:59:25Z\",\"expirationDateTime\":\"2021-06-26T19:59:25Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "9d1c5a93-48e5-45cc-95c4-248b8b62f710", + "apim-request-id": "dc165bd5-aa91-4c11-9b23-5f489024fe12", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:07 GMT", + "date": "Fri, 25 Jun 2021 19:59:40 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "8" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/681c318e-b917-41f7-8b8e-00b10d3197ed", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/88bb5b91-e8ea-478b-b2ac-4a0923552b86", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"681c318e-b917-41f7-8b8e-00b10d3197ed\",\"lastUpdateDateTime\":\"2021-05-12T19:19:00Z\",\"createdDateTime\":\"2021-05-12T19:18:52Z\",\"expirationDateTime\":\"2021-05-13T19:18:52Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:00Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"88bb5b91-e8ea-478b-b2ac-4a0923552b86\",\"lastUpdateDateTime\":\"2021-06-25T19:59:26Z\",\"createdDateTime\":\"2021-06-25T19:59:25Z\",\"expirationDateTime\":\"2021-06-26T19:59:25Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "64499335-f151-49ff-af6a-f81553dfb06d", + "apim-request-id": "513e008c-22c0-4dd9-b422-a804d3fd4bd8", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:09 GMT", + "date": "Fri, 25 Jun 2021 19:59:42 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "10" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/681c318e-b917-41f7-8b8e-00b10d3197ed", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/88bb5b91-e8ea-478b-b2ac-4a0923552b86", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"681c318e-b917-41f7-8b8e-00b10d3197ed\",\"lastUpdateDateTime\":\"2021-05-12T19:19:00Z\",\"createdDateTime\":\"2021-05-12T19:18:52Z\",\"expirationDateTime\":\"2021-05-13T19:18:52Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:00Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"88bb5b91-e8ea-478b-b2ac-4a0923552b86\",\"lastUpdateDateTime\":\"2021-06-25T19:59:26Z\",\"createdDateTime\":\"2021-06-25T19:59:25Z\",\"expirationDateTime\":\"2021-06-26T19:59:25Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "3ee1e45f-5506-42b1-a0e9-a2813fc41783", + "apim-request-id": "622587ae-ec61-41e3-a1ab-493fad5160e3", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:11 GMT", + "date": "Fri, 25 Jun 2021 19:59:44 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "14" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/681c318e-b917-41f7-8b8e-00b10d3197ed", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/88bb5b91-e8ea-478b-b2ac-4a0923552b86", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"681c318e-b917-41f7-8b8e-00b10d3197ed\",\"lastUpdateDateTime\":\"2021-05-12T19:19:00Z\",\"createdDateTime\":\"2021-05-12T19:18:52Z\",\"expirationDateTime\":\"2021-05-13T19:18:52Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:00Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"88bb5b91-e8ea-478b-b2ac-4a0923552b86\",\"lastUpdateDateTime\":\"2021-06-25T19:59:26Z\",\"createdDateTime\":\"2021-06-25T19:59:25Z\",\"expirationDateTime\":\"2021-06-26T19:59:25Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "2836e592-e817-4def-bc06-879a680661c4", + "apim-request-id": "4bff8375-98ac-4617-b588-d3e91e30a9a7", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:13 GMT", + "date": "Fri, 25 Jun 2021 19:59:47 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "12" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/681c318e-b917-41f7-8b8e-00b10d3197ed", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/88bb5b91-e8ea-478b-b2ac-4a0923552b86", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"681c318e-b917-41f7-8b8e-00b10d3197ed\",\"lastUpdateDateTime\":\"2021-05-12T19:19:00Z\",\"createdDateTime\":\"2021-05-12T19:18:52Z\",\"expirationDateTime\":\"2021-05-13T19:18:52Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:00Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"88bb5b91-e8ea-478b-b2ac-4a0923552b86\",\"lastUpdateDateTime\":\"2021-06-25T19:59:26Z\",\"createdDateTime\":\"2021-06-25T19:59:25Z\",\"expirationDateTime\":\"2021-06-26T19:59:25Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "ca293a11-03e8-472b-ab1c-bb27cc3841d1", + "apim-request-id": "0f48ea34-8b1a-495b-b5f1-bad63b1a3e7d", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:15 GMT", + "date": "Fri, 25 Jun 2021 19:59:49 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "12" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/681c318e-b917-41f7-8b8e-00b10d3197ed", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/88bb5b91-e8ea-478b-b2ac-4a0923552b86", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"681c318e-b917-41f7-8b8e-00b10d3197ed\",\"lastUpdateDateTime\":\"2021-05-12T19:19:00Z\",\"createdDateTime\":\"2021-05-12T19:18:52Z\",\"expirationDateTime\":\"2021-05-13T19:18:52Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:00Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"88bb5b91-e8ea-478b-b2ac-4a0923552b86\",\"lastUpdateDateTime\":\"2021-06-25T19:59:26Z\",\"createdDateTime\":\"2021-06-25T19:59:25Z\",\"expirationDateTime\":\"2021-06-26T19:59:25Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "05550324-3f17-4e87-a875-fa979d7dfede", + "apim-request-id": "01215b47-923d-441a-8639-533a6e5dc094", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:17 GMT", + "date": "Fri, 25 Jun 2021 19:59:51 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/681c318e-b917-41f7-8b8e-00b10d3197ed", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/88bb5b91-e8ea-478b-b2ac-4a0923552b86", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"681c318e-b917-41f7-8b8e-00b10d3197ed\",\"lastUpdateDateTime\":\"2021-05-12T19:19:00Z\",\"createdDateTime\":\"2021-05-12T19:18:52Z\",\"expirationDateTime\":\"2021-05-13T19:18:52Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:00Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"88bb5b91-e8ea-478b-b2ac-4a0923552b86\",\"lastUpdateDateTime\":\"2021-06-25T19:59:26Z\",\"createdDateTime\":\"2021-06-25T19:59:25Z\",\"expirationDateTime\":\"2021-06-26T19:59:25Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "aa9b7853-1d29-4add-af61-abf9da2a3ff8", + "apim-request-id": "447828f5-7453-4826-8def-002dbb0e8de2", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:19 GMT", + "date": "Fri, 25 Jun 2021 19:59:53 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "8" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/681c318e-b917-41f7-8b8e-00b10d3197ed", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/88bb5b91-e8ea-478b-b2ac-4a0923552b86", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"681c318e-b917-41f7-8b8e-00b10d3197ed\",\"lastUpdateDateTime\":\"2021-05-12T19:19:21Z\",\"createdDateTime\":\"2021-05-12T19:18:52Z\",\"expirationDateTime\":\"2021-05-13T19:18:52Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:21Z\"},\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:19:21.0111403Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"Bill Gates\",\"Paul Allen\",\"Microsoft\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"Bill Gates\",\"Paul Allen\",\"Microsoft\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"88bb5b91-e8ea-478b-b2ac-4a0923552b86\",\"lastUpdateDateTime\":\"2021-06-25T19:59:55Z\",\"createdDateTime\":\"2021-06-25T19:59:25Z\",\"expirationDateTime\":\"2021-06-26T19:59:25Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T19:59:55.6132325Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"Bill Gates\",\"Paul Allen\",\"Microsoft\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"Bill Gates\",\"Paul Allen\",\"Microsoft\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "780cacbc-0d9b-4538-a712-32e01f18d2a7", + "apim-request-id": "0c509668-9cad-43f2-9f5d-905d1c222e16", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:21 GMT", + "date": "Fri, 25 Jun 2021 19:59:55 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "52" + "x-envoy-upstream-service-time": "54" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/681c318e-b917-41f7-8b8e-00b10d3197ed", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/88bb5b91-e8ea-478b-b2ac-4a0923552b86", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"681c318e-b917-41f7-8b8e-00b10d3197ed\",\"lastUpdateDateTime\":\"2021-05-12T19:19:21Z\",\"createdDateTime\":\"2021-05-12T19:18:52Z\",\"expirationDateTime\":\"2021-05-13T19:18:52Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:21Z\"},\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:19:21.0111403Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"Bill Gates\",\"Paul Allen\",\"Microsoft\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"Bill Gates\",\"Paul Allen\",\"Microsoft\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"88bb5b91-e8ea-478b-b2ac-4a0923552b86\",\"lastUpdateDateTime\":\"2021-06-25T19:59:55Z\",\"createdDateTime\":\"2021-06-25T19:59:25Z\",\"expirationDateTime\":\"2021-06-26T19:59:25Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T19:59:55.6132325Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"Bill Gates\",\"Paul Allen\",\"Microsoft\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"Bill Gates\",\"Paul Allen\",\"Microsoft\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "9d3064cd-9373-4253-93be-920fe4531723", + "apim-request-id": "5f22973f-397d-4dff-9950-a9f408e324e5", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:21 GMT", + "date": "Fri, 25 Jun 2021 19:59:55 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "41" + "x-envoy-upstream-service-time": "80" } } ], @@ -369,5 +369,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "0c99bc0302e3bbe004a8daba1717ad0a" + "hash": "710f01b115bc7c24cb2619f59823b881" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.json index 895d81e110fc..7b2eab639aed 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:37 GMT", + "date": "Fri, 25 Jun 2021 20:00:18 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,40 +20,40 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - NCUS ProdSlices", - "x-ms-request-id": "5c46cd0a-304b-4f9b-a5f1-199cd9725100" + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "84bdf8e2-d00d-4332-9ea9-2d5e195b7900" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze", + "url": "https://endpoint//text/analytics/v3.1/analyze", "query": {}, - "requestBody": "{\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]},\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"My SSN is 859-98-0987.\"},{\"id\":\"2\",\"text\":\"Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.\"},{\"id\":\"3\",\"text\":\"Is 998.214.865-68 your Brazilian CPF number?\"}]}}", + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"My SSN is 859-98-0987.\"},{\"id\":\"2\",\"text\":\"Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.\"},{\"id\":\"3\",\"text\":\"Is 998.214.865-68 your Brazilian CPF number?\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", "status": 202, "response": "", "responseHeaders": { - "apim-request-id": "7eef319d-bafa-4da9-89d9-8e2f19cd0627", - "date": "Wed, 12 May 2021 19:19:37 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/d9ec43d0-1649-45f6-895e-bda214ca823a", + "apim-request-id": "70f50549-7007-4e44-b984-87e418d4e6ad", + "date": "Fri, 25 Jun 2021 20:00:18 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/04d9b006-9a58-4bd7-a3e4-0837f2af977f", "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": "164" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/d9ec43d0-1649-45f6-895e-bda214ca823a", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/04d9b006-9a58-4bd7-a3e4-0837f2af977f", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"d9ec43d0-1649-45f6-895e-bda214ca823a\",\"lastUpdateDateTime\":\"2021-05-12T19:19:37Z\",\"createdDateTime\":\"2021-05-12T19:19:37Z\",\"expirationDateTime\":\"2021-05-13T19:19:37Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:37Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"04d9b006-9a58-4bd7-a3e4-0837f2af977f\",\"lastUpdateDateTime\":\"2021-06-25T20:00:19Z\",\"createdDateTime\":\"2021-06-25T20:00:19Z\",\"expirationDateTime\":\"2021-06-26T20:00:19Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "cd76e94c-baf9-46a1-a985-a0fca5570397", + "apim-request-id": "b6966900-a5be-48d8-a0dd-a8e70ff4f587", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:37 GMT", + "date": "Fri, 25 Jun 2021 20:00:18 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -62,17 +62,36 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/d9ec43d0-1649-45f6-895e-bda214ca823a", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/04d9b006-9a58-4bd7-a3e4-0837f2af977f", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"d9ec43d0-1649-45f6-895e-bda214ca823a\",\"lastUpdateDateTime\":\"2021-05-12T19:19:37Z\",\"createdDateTime\":\"2021-05-12T19:19:37Z\",\"expirationDateTime\":\"2021-05-13T19:19:37Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:37Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"04d9b006-9a58-4bd7-a3e4-0837f2af977f\",\"lastUpdateDateTime\":\"2021-06-25T20:00:19Z\",\"createdDateTime\":\"2021-06-25T20:00:19Z\",\"expirationDateTime\":\"2021-06-26T20:00:19Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "c61dda81-e278-42c6-9604-eaf539104468", + "apim-request-id": "12752a8c-d04b-46af-af2e-d4ee19b643bc", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:37 GMT", + "date": "Fri, 25 Jun 2021 20:00:18 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/04d9b006-9a58-4bd7-a3e4-0837f2af977f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"04d9b006-9a58-4bd7-a3e4-0837f2af977f\",\"lastUpdateDateTime\":\"2021-06-25T20:00:21Z\",\"createdDateTime\":\"2021-06-25T20:00:19Z\",\"expirationDateTime\":\"2021-06-26T20:00:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "31d056f3-94a5-4bc2-b1c2-c1cb58b7bfe0", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:00:21 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -81,36 +100,36 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/d9ec43d0-1649-45f6-895e-bda214ca823a", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/04d9b006-9a58-4bd7-a3e4-0837f2af977f", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"d9ec43d0-1649-45f6-895e-bda214ca823a\",\"lastUpdateDateTime\":\"2021-05-12T19:19:39Z\",\"createdDateTime\":\"2021-05-12T19:19:37Z\",\"expirationDateTime\":\"2021-05-13T19:19:37Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:39Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"04d9b006-9a58-4bd7-a3e4-0837f2af977f\",\"lastUpdateDateTime\":\"2021-06-25T20:00:21Z\",\"createdDateTime\":\"2021-06-25T20:00:19Z\",\"expirationDateTime\":\"2021-06-26T20:00:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "ef8f708e-5783-4e98-95ae-3750b043dcab", + "apim-request-id": "d9c9b249-79fa-4285-a0b7-b7ca9479453e", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:39 GMT", + "date": "Fri, 25 Jun 2021 20:00:23 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-envoy-upstream-service-time": "6" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/d9ec43d0-1649-45f6-895e-bda214ca823a", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/04d9b006-9a58-4bd7-a3e4-0837f2af977f", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"d9ec43d0-1649-45f6-895e-bda214ca823a\",\"lastUpdateDateTime\":\"2021-05-12T19:19:39Z\",\"createdDateTime\":\"2021-05-12T19:19:37Z\",\"expirationDateTime\":\"2021-05-13T19:19:37Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:39Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"04d9b006-9a58-4bd7-a3e4-0837f2af977f\",\"lastUpdateDateTime\":\"2021-06-25T20:00:21Z\",\"createdDateTime\":\"2021-06-25T20:00:19Z\",\"expirationDateTime\":\"2021-06-26T20:00:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "df267b4b-db27-4726-8381-8a44c8551726", + "apim-request-id": "b166d55d-733d-4cb4-b506-11375eac2793", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:41 GMT", + "date": "Fri, 25 Jun 2021 20:00:25 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -119,17 +138,131 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/d9ec43d0-1649-45f6-895e-bda214ca823a", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/04d9b006-9a58-4bd7-a3e4-0837f2af977f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"04d9b006-9a58-4bd7-a3e4-0837f2af977f\",\"lastUpdateDateTime\":\"2021-06-25T20:00:21Z\",\"createdDateTime\":\"2021-06-25T20:00:19Z\",\"expirationDateTime\":\"2021-06-26T20:00:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "7609ee6a-6d40-4f65-9be9-16f9b4b84c8d", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:00:27 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/04d9b006-9a58-4bd7-a3e4-0837f2af977f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"04d9b006-9a58-4bd7-a3e4-0837f2af977f\",\"lastUpdateDateTime\":\"2021-06-25T20:00:21Z\",\"createdDateTime\":\"2021-06-25T20:00:19Z\",\"expirationDateTime\":\"2021-06-26T20:00:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "df0eb7fc-edd1-4fa3-bbe5-a83a94b1c174", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:00:29 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/04d9b006-9a58-4bd7-a3e4-0837f2af977f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"04d9b006-9a58-4bd7-a3e4-0837f2af977f\",\"lastUpdateDateTime\":\"2021-06-25T20:00:21Z\",\"createdDateTime\":\"2021-06-25T20:00:19Z\",\"expirationDateTime\":\"2021-06-26T20:00:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "d67ac6b6-2718-42b0-8539-e93635cb7882", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:00:34 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/04d9b006-9a58-4bd7-a3e4-0837f2af977f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"04d9b006-9a58-4bd7-a3e4-0837f2af977f\",\"lastUpdateDateTime\":\"2021-06-25T20:00:21Z\",\"createdDateTime\":\"2021-06-25T20:00:19Z\",\"expirationDateTime\":\"2021-06-26T20:00:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "7e43be00-4bd4-4a86-abe5-e56349beee3f", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:00:36 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/04d9b006-9a58-4bd7-a3e4-0837f2af977f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"04d9b006-9a58-4bd7-a3e4-0837f2af977f\",\"lastUpdateDateTime\":\"2021-06-25T20:00:21Z\",\"createdDateTime\":\"2021-06-25T20:00:19Z\",\"expirationDateTime\":\"2021-06-26T20:00:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "d64cbbca-e134-4809-88c3-8ce6e8a6e8b2", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:00:38 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "12" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/04d9b006-9a58-4bd7-a3e4-0837f2af977f", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"d9ec43d0-1649-45f6-895e-bda214ca823a\",\"lastUpdateDateTime\":\"2021-05-12T19:19:39Z\",\"createdDateTime\":\"2021-05-12T19:19:37Z\",\"expirationDateTime\":\"2021-05-13T19:19:37Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:39Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"04d9b006-9a58-4bd7-a3e4-0837f2af977f\",\"lastUpdateDateTime\":\"2021-06-25T20:00:21Z\",\"createdDateTime\":\"2021-06-25T20:00:19Z\",\"expirationDateTime\":\"2021-06-26T20:00:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "0fe3e88d-5b6a-4670-a19e-97ee45126e7b", + "apim-request-id": "5e7cc3e7-4d15-4395-a333-aeebb5ce8ee9", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:43 GMT", + "date": "Fri, 25 Jun 2021 20:00:40 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/04d9b006-9a58-4bd7-a3e4-0837f2af977f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"04d9b006-9a58-4bd7-a3e4-0837f2af977f\",\"lastUpdateDateTime\":\"2021-06-25T20:00:21Z\",\"createdDateTime\":\"2021-06-25T20:00:19Z\",\"expirationDateTime\":\"2021-06-26T20:00:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "f0a88dc8-4215-432f-9200-87650dcb3030", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:00:42 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -138,40 +271,59 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/d9ec43d0-1649-45f6-895e-bda214ca823a", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/04d9b006-9a58-4bd7-a3e4-0837f2af977f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"04d9b006-9a58-4bd7-a3e4-0837f2af977f\",\"lastUpdateDateTime\":\"2021-06-25T20:00:21Z\",\"createdDateTime\":\"2021-06-25T20:00:19Z\",\"expirationDateTime\":\"2021-06-26T20:00:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "c1d97bbc-e1e6-4868-b280-82e2accdc651", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:00:44 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/04d9b006-9a58-4bd7-a3e4-0837f2af977f", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"d9ec43d0-1649-45f6-895e-bda214ca823a\",\"lastUpdateDateTime\":\"2021-05-12T19:19:45Z\",\"createdDateTime\":\"2021-05-12T19:19:37Z\",\"expirationDateTime\":\"2021-05-13T19:19:37Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:45Z\"},\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:19:45.0654858Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"My SSN is ***********.\",\"id\":\"1\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":10,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]},{\"redactedText\":\"Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.\",\"id\":\"2\",\"entities\":[{\"text\":\"111000025\",\"category\":\"PhoneNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.8},{\"text\":\"111000025\",\"category\":\"ABARoutingNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.75},{\"text\":\"111000025\",\"category\":\"NZSocialWelfareNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.65}],\"warnings\":[]},{\"redactedText\":\"Is 998.214.865-68 your Brazilian CPF number?\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "response": "{\"jobId\":\"04d9b006-9a58-4bd7-a3e4-0837f2af977f\",\"lastUpdateDateTime\":\"2021-06-25T20:00:46Z\",\"createdDateTime\":\"2021-06-25T20:00:19Z\",\"expirationDateTime\":\"2021-06-26T20:00:19Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:00:46.0150371Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"My SSN is ***********.\",\"id\":\"1\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":10,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]},{\"redactedText\":\"Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.\",\"id\":\"2\",\"entities\":[{\"text\":\"111000025\",\"category\":\"PhoneNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.8},{\"text\":\"111000025\",\"category\":\"ABARoutingNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.75},{\"text\":\"111000025\",\"category\":\"NZSocialWelfareNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.65}],\"warnings\":[]},{\"redactedText\":\"Is 998.214.865-68 your Brazilian CPF number?\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", "responseHeaders": { - "apim-request-id": "c69d3429-5306-4020-a5eb-7b936ab8db14", + "apim-request-id": "7c173383-020c-43e8-8a31-ae8934d7cdc9", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:45 GMT", + "date": "Fri, 25 Jun 2021 20:00:46 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "59" + "x-envoy-upstream-service-time": "76" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/d9ec43d0-1649-45f6-895e-bda214ca823a", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/04d9b006-9a58-4bd7-a3e4-0837f2af977f", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"d9ec43d0-1649-45f6-895e-bda214ca823a\",\"lastUpdateDateTime\":\"2021-05-12T19:19:45Z\",\"createdDateTime\":\"2021-05-12T19:19:37Z\",\"expirationDateTime\":\"2021-05-13T19:19:37Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:45Z\"},\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:19:45.0654858Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"My SSN is ***********.\",\"id\":\"1\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":10,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]},{\"redactedText\":\"Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.\",\"id\":\"2\",\"entities\":[{\"text\":\"111000025\",\"category\":\"PhoneNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.8},{\"text\":\"111000025\",\"category\":\"ABARoutingNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.75},{\"text\":\"111000025\",\"category\":\"NZSocialWelfareNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.65}],\"warnings\":[]},{\"redactedText\":\"Is 998.214.865-68 your Brazilian CPF number?\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "response": "{\"jobId\":\"04d9b006-9a58-4bd7-a3e4-0837f2af977f\",\"lastUpdateDateTime\":\"2021-06-25T20:00:46Z\",\"createdDateTime\":\"2021-06-25T20:00:19Z\",\"expirationDateTime\":\"2021-06-26T20:00:19Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:00:46.0150371Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"My SSN is ***********.\",\"id\":\"1\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":10,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]},{\"redactedText\":\"Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.\",\"id\":\"2\",\"entities\":[{\"text\":\"111000025\",\"category\":\"PhoneNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.8},{\"text\":\"111000025\",\"category\":\"ABARoutingNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.75},{\"text\":\"111000025\",\"category\":\"NZSocialWelfareNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.65}],\"warnings\":[]},{\"redactedText\":\"Is 998.214.865-68 your Brazilian CPF number?\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", "responseHeaders": { - "apim-request-id": "61af6d39-b446-458f-9353-2fb8fa107955", + "apim-request-id": "7c3edcf1-3f32-4bd0-b720-199187158a0c", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:45 GMT", + "date": "Fri, 25 Jun 2021 20:00:46 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-envoy-upstream-service-time": "81" } } ], @@ -179,5 +331,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "91e4fe7bfdc826a68caee870a6a3c562" + "hash": "b91a2978099d3831c48eacb4b56d7914" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.json index acbc9757da49..df93459110bb 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:45 GMT", + "date": "Fri, 25 Jun 2021 20:00:46 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,59 +20,135 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - NCUS ProdSlices", - "x-ms-request-id": "77684d85-de6c-4446-8bd8-8026bc5f5600" + "x-ms-ests-server": "2.1.11829.9 - WUS2 ProdSlices", + "x-ms-request-id": "57418012-2503-4660-964d-7a7eb7406400" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze", + "url": "https://endpoint//text/analytics/v3.1/analyze", "query": {}, - "requestBody": "{\"tasks\":{\"sentimentAnalysisTasks\":[{\"parameters\":{\"opinionMining\":true,\"stringIndexType\":\"Utf16CodeUnit\"}}]},\"analysisInput\":{\"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\"}]}}", + "requestBody": "{\"analysisInput\":{\"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\"}]},\"tasks\":{\"sentimentAnalysisTasks\":[{\"parameters\":{\"opinionMining\":true,\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", "status": 202, "response": "", "responseHeaders": { - "apim-request-id": "bf594a5b-6557-4e4e-96ad-3ea987168eb3", - "date": "Wed, 12 May 2021 19:19:46 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/379883bc-c909-4616-9da7-f2fadc75164e", + "apim-request-id": "2f5a7bb1-63dc-49d9-938c-aee802693707", + "date": "Fri, 25 Jun 2021 20:00:46 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/7761fef3-03a3-4f92-a96c-beada17e7c27", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "179" + "x-envoy-upstream-service-time": "268" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/379883bc-c909-4616-9da7-f2fadc75164e", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7761fef3-03a3-4f92-a96c-beada17e7c27", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"379883bc-c909-4616-9da7-f2fadc75164e\",\"lastUpdateDateTime\":\"2021-05-12T19:19:46Z\",\"createdDateTime\":\"2021-05-12T19:19:46Z\",\"expirationDateTime\":\"2021-05-13T19:19:46Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:46Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"7761fef3-03a3-4f92-a96c-beada17e7c27\",\"lastUpdateDateTime\":\"2021-06-25T20:00:47Z\",\"createdDateTime\":\"2021-06-25T20:00:47Z\",\"expirationDateTime\":\"2021-06-26T20:00:47Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "6f8c71b9-c88e-4a64-928b-860c67355804", + "apim-request-id": "63c4f58e-189f-49a9-80ad-f33f3f8ce609", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:46 GMT", + "date": "Fri, 25 Jun 2021 20:00:46 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "13" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/379883bc-c909-4616-9da7-f2fadc75164e", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7761fef3-03a3-4f92-a96c-beada17e7c27", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"379883bc-c909-4616-9da7-f2fadc75164e\",\"lastUpdateDateTime\":\"2021-05-12T19:19:46Z\",\"createdDateTime\":\"2021-05-12T19:19:46Z\",\"expirationDateTime\":\"2021-05-13T19:19:46Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:46Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"7761fef3-03a3-4f92-a96c-beada17e7c27\",\"lastUpdateDateTime\":\"2021-06-25T20:00:47Z\",\"createdDateTime\":\"2021-06-25T20:00:47Z\",\"expirationDateTime\":\"2021-06-26T20:00:47Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "febc90c3-d977-4c3f-affe-8ef596e6596d", + "apim-request-id": "b4f672f9-0885-4e6f-8120-6c9c847162d4", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:46 GMT", + "date": "Fri, 25 Jun 2021 20:00:47 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7761fef3-03a3-4f92-a96c-beada17e7c27", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"7761fef3-03a3-4f92-a96c-beada17e7c27\",\"lastUpdateDateTime\":\"2021-06-25T20:00:47Z\",\"createdDateTime\":\"2021-06-25T20:00:47Z\",\"expirationDateTime\":\"2021-06-26T20:00:47Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "193dd588-7aaf-43d6-a01e-755057bc3dfa", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:00:49 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7761fef3-03a3-4f92-a96c-beada17e7c27", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"7761fef3-03a3-4f92-a96c-beada17e7c27\",\"lastUpdateDateTime\":\"2021-06-25T20:00:47Z\",\"createdDateTime\":\"2021-06-25T20:00:47Z\",\"expirationDateTime\":\"2021-06-26T20:00:47Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "a4957c84-d5cf-4a4f-8e49-175c21362c1e", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:00:52 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7761fef3-03a3-4f92-a96c-beada17e7c27", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"7761fef3-03a3-4f92-a96c-beada17e7c27\",\"lastUpdateDateTime\":\"2021-06-25T20:00:47Z\",\"createdDateTime\":\"2021-06-25T20:00:47Z\",\"expirationDateTime\":\"2021-06-26T20:00:47Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "480f68b2-036b-40f8-8808-41780fee703f", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:00:54 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7761fef3-03a3-4f92-a96c-beada17e7c27", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"7761fef3-03a3-4f92-a96c-beada17e7c27\",\"lastUpdateDateTime\":\"2021-06-25T20:00:47Z\",\"createdDateTime\":\"2021-06-25T20:00:47Z\",\"expirationDateTime\":\"2021-06-26T20:00:47Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "da7040d9-205d-417c-a7a6-5e914d78ce31", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:00:56 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -81,17 +157,17 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/379883bc-c909-4616-9da7-f2fadc75164e", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7761fef3-03a3-4f92-a96c-beada17e7c27", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"379883bc-c909-4616-9da7-f2fadc75164e\",\"lastUpdateDateTime\":\"2021-05-12T19:19:47Z\",\"createdDateTime\":\"2021-05-12T19:19:46Z\",\"expirationDateTime\":\"2021-05-13T19:19:46Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:47Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"7761fef3-03a3-4f92-a96c-beada17e7c27\",\"lastUpdateDateTime\":\"2021-06-25T20:00:47Z\",\"createdDateTime\":\"2021-06-25T20:00:47Z\",\"expirationDateTime\":\"2021-06-26T20:00:47Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "a021425b-4ab7-495a-a973-8161dbb154d2", + "apim-request-id": "92df70da-5fbc-45cf-b4bb-715d99046bce", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:48 GMT", + "date": "Fri, 25 Jun 2021 20:00:58 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -100,17 +176,17 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/379883bc-c909-4616-9da7-f2fadc75164e", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7761fef3-03a3-4f92-a96c-beada17e7c27", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"379883bc-c909-4616-9da7-f2fadc75164e\",\"lastUpdateDateTime\":\"2021-05-12T19:19:47Z\",\"createdDateTime\":\"2021-05-12T19:19:46Z\",\"expirationDateTime\":\"2021-05-13T19:19:46Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:47Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"7761fef3-03a3-4f92-a96c-beada17e7c27\",\"lastUpdateDateTime\":\"2021-06-25T20:00:47Z\",\"createdDateTime\":\"2021-06-25T20:00:47Z\",\"expirationDateTime\":\"2021-06-26T20:00:47Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "e1ceec39-2794-4b9c-abfe-969d3e155023", + "apim-request-id": "70e82c5a-a27d-4894-819c-a313d0e514c0", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:50 GMT", + "date": "Fri, 25 Jun 2021 20:01:00 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -119,17 +195,17 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/379883bc-c909-4616-9da7-f2fadc75164e", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7761fef3-03a3-4f92-a96c-beada17e7c27", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"379883bc-c909-4616-9da7-f2fadc75164e\",\"lastUpdateDateTime\":\"2021-05-12T19:19:47Z\",\"createdDateTime\":\"2021-05-12T19:19:46Z\",\"expirationDateTime\":\"2021-05-13T19:19:46Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:47Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"7761fef3-03a3-4f92-a96c-beada17e7c27\",\"lastUpdateDateTime\":\"2021-06-25T20:00:47Z\",\"createdDateTime\":\"2021-06-25T20:00:47Z\",\"expirationDateTime\":\"2021-06-26T20:00:47Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "2ccdcbbc-2507-406d-bd0f-9cc6264ab6c8", + "apim-request-id": "391827b5-baaf-42c9-acbf-5026d7eb6f10", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:52 GMT", + "date": "Fri, 25 Jun 2021 20:01:02 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -138,17 +214,17 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/379883bc-c909-4616-9da7-f2fadc75164e", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7761fef3-03a3-4f92-a96c-beada17e7c27", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"379883bc-c909-4616-9da7-f2fadc75164e\",\"lastUpdateDateTime\":\"2021-05-12T19:19:47Z\",\"createdDateTime\":\"2021-05-12T19:19:46Z\",\"expirationDateTime\":\"2021-05-13T19:19:46Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:47Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"7761fef3-03a3-4f92-a96c-beada17e7c27\",\"lastUpdateDateTime\":\"2021-06-25T20:00:47Z\",\"createdDateTime\":\"2021-06-25T20:00:47Z\",\"expirationDateTime\":\"2021-06-26T20:00:47Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "322fc611-ecb2-4455-8833-0e922377f2f9", + "apim-request-id": "18ef22ec-de8b-4d00-942f-56f4a7f1a62e", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:54 GMT", + "date": "Fri, 25 Jun 2021 20:01:04 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -157,36 +233,36 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/379883bc-c909-4616-9da7-f2fadc75164e", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7761fef3-03a3-4f92-a96c-beada17e7c27", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"379883bc-c909-4616-9da7-f2fadc75164e\",\"lastUpdateDateTime\":\"2021-05-12T19:19:47Z\",\"createdDateTime\":\"2021-05-12T19:19:46Z\",\"expirationDateTime\":\"2021-05-13T19:19:46Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:47Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"7761fef3-03a3-4f92-a96c-beada17e7c27\",\"lastUpdateDateTime\":\"2021-06-25T20:00:47Z\",\"createdDateTime\":\"2021-06-25T20:00:47Z\",\"expirationDateTime\":\"2021-06-26T20:00:47Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "e7ac2820-e7cc-442a-9ec1-ec59b55e4b7c", + "apim-request-id": "d39328f1-3da9-4646-a866-e27b7baa307b", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:56 GMT", + "date": "Fri, 25 Jun 2021 20:01:06 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "11" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/379883bc-c909-4616-9da7-f2fadc75164e", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7761fef3-03a3-4f92-a96c-beada17e7c27", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"379883bc-c909-4616-9da7-f2fadc75164e\",\"lastUpdateDateTime\":\"2021-05-12T19:19:47Z\",\"createdDateTime\":\"2021-05-12T19:19:46Z\",\"expirationDateTime\":\"2021-05-13T19:19:46Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:47Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"7761fef3-03a3-4f92-a96c-beada17e7c27\",\"lastUpdateDateTime\":\"2021-06-25T20:00:47Z\",\"createdDateTime\":\"2021-06-25T20:00:47Z\",\"expirationDateTime\":\"2021-06-26T20:00:47Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "f200d55d-7ef9-47d1-bdff-eeec6dc412e6", + "apim-request-id": "43afc4c7-9347-4ba1-a95d-eff1584f5789", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:19:58 GMT", + "date": "Fri, 25 Jun 2021 20:01:08 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -195,17 +271,17 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/379883bc-c909-4616-9da7-f2fadc75164e", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7761fef3-03a3-4f92-a96c-beada17e7c27", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"379883bc-c909-4616-9da7-f2fadc75164e\",\"lastUpdateDateTime\":\"2021-05-12T19:19:47Z\",\"createdDateTime\":\"2021-05-12T19:19:46Z\",\"expirationDateTime\":\"2021-05-13T19:19:46Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:47Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"7761fef3-03a3-4f92-a96c-beada17e7c27\",\"lastUpdateDateTime\":\"2021-06-25T20:00:47Z\",\"createdDateTime\":\"2021-06-25T20:00:47Z\",\"expirationDateTime\":\"2021-06-26T20:00:47Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "04704216-98e3-47dc-8024-6376048e3357", + "apim-request-id": "9207c87a-f48f-4f01-b803-39a13b553ece", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:00 GMT", + "date": "Fri, 25 Jun 2021 20:01:10 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -214,97 +290,97 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/379883bc-c909-4616-9da7-f2fadc75164e", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7761fef3-03a3-4f92-a96c-beada17e7c27", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"379883bc-c909-4616-9da7-f2fadc75164e\",\"lastUpdateDateTime\":\"2021-05-12T19:19:47Z\",\"createdDateTime\":\"2021-05-12T19:19:46Z\",\"expirationDateTime\":\"2021-05-13T19:19:46Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:47Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"7761fef3-03a3-4f92-a96c-beada17e7c27\",\"lastUpdateDateTime\":\"2021-06-25T20:00:47Z\",\"createdDateTime\":\"2021-06-25T20:00:47Z\",\"expirationDateTime\":\"2021-06-26T20:00:47Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "31ef14c1-6228-4187-b8c5-9b9606bc21dc", + "apim-request-id": "fbabc348-213d-425f-9ccc-b5f0594d0411", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:02 GMT", + "date": "Fri, 25 Jun 2021 20:01:12 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "8" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/379883bc-c909-4616-9da7-f2fadc75164e", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7761fef3-03a3-4f92-a96c-beada17e7c27", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"379883bc-c909-4616-9da7-f2fadc75164e\",\"lastUpdateDateTime\":\"2021-05-12T19:19:47Z\",\"createdDateTime\":\"2021-05-12T19:19:46Z\",\"expirationDateTime\":\"2021-05-13T19:19:46Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:47Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"7761fef3-03a3-4f92-a96c-beada17e7c27\",\"lastUpdateDateTime\":\"2021-06-25T20:00:47Z\",\"createdDateTime\":\"2021-06-25T20:00:47Z\",\"expirationDateTime\":\"2021-06-26T20:00:47Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "83528e2d-f176-4d7f-baa1-9adb54b77b42", + "apim-request-id": "300b206d-c1a1-4c8f-948a-85c5fa69cabc", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:04 GMT", + "date": "Fri, 25 Jun 2021 20:01:14 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "9" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/379883bc-c909-4616-9da7-f2fadc75164e", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7761fef3-03a3-4f92-a96c-beada17e7c27", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"379883bc-c909-4616-9da7-f2fadc75164e\",\"lastUpdateDateTime\":\"2021-05-12T19:19:47Z\",\"createdDateTime\":\"2021-05-12T19:19:46Z\",\"expirationDateTime\":\"2021-05-13T19:19:46Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:19:47Z\"},\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "response": "{\"jobId\":\"7761fef3-03a3-4f92-a96c-beada17e7c27\",\"lastUpdateDateTime\":\"2021-06-25T20:00:47Z\",\"createdDateTime\":\"2021-06-25T20:00:47Z\",\"expirationDateTime\":\"2021-06-26T20:00:47Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", "responseHeaders": { - "apim-request-id": "ad85edd1-9f4f-4e9d-b96a-2a7bccff6470", + "apim-request-id": "7455a6b7-7729-4951-9c04-76a93637dffd", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:06 GMT", + "date": "Fri, 25 Jun 2021 20:01:16 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": "6" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/379883bc-c909-4616-9da7-f2fadc75164e", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7761fef3-03a3-4f92-a96c-beada17e7c27", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"379883bc-c909-4616-9da7-f2fadc75164e\",\"lastUpdateDateTime\":\"2021-05-12T19:20:08Z\",\"createdDateTime\":\"2021-05-12T19:19:46Z\",\"expirationDateTime\":\"2021-05-13T19:19:46Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:08Z\"},\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"sentimentAnalysisTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:08.1572698Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"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\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":4,\"length\":4,\"text\":\"food\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/0/assessments/0\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":30,\"length\":2,\"text\":\"AC\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/1/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/1/assessments/1\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/2/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":32,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/2/sentences/0/assessments/1\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":11,\"length\":5,\"text\":\"hotel\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/0\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":24,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/1\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":41,\"length\":15,\"text\":\"shuttle service\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/2\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":65,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/1\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/3\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/2\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.97,\"negative\":0.03},\"offset\":27,\"length\":4,\"text\":\"view\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/4/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/4/sentences/0/assessments/1\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":5,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":15,\"length\":9,\"text\":\"bathrooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/1\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":42,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/2\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":4,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/0/assessments/0\"}]}],\"assessments\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":11,\"length\":7,\"text\":\"smelled\",\"isNegated\":false}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}}]}}", + "response": "{\"jobId\":\"7761fef3-03a3-4f92-a96c-beada17e7c27\",\"lastUpdateDateTime\":\"2021-06-25T20:01:18Z\",\"createdDateTime\":\"2021-06-25T20:00:47Z\",\"expirationDateTime\":\"2021-06-26T20:00:47Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"sentimentAnalysisTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:18.3985284Z\",\"taskName\":\"SentimentAnalysis_latest\",\"state\":\"succeeded\",\"results\":{\"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\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":4,\"length\":4,\"text\":\"food\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/0/assessments/0\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":30,\"length\":2,\"text\":\"AC\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/1/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/1/assessments/1\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/2/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":32,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/2/sentences/0/assessments/1\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":11,\"length\":5,\"text\":\"hotel\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/0\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":24,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/1\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":41,\"length\":15,\"text\":\"shuttle service\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/2\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":65,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/1\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/3\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/2\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.97,\"negative\":0.03},\"offset\":27,\"length\":4,\"text\":\"view\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/4/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/4/sentences/0/assessments/1\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":5,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":15,\"length\":9,\"text\":\"bathrooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/1\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":42,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/2\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":4,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/0/assessments/0\"}]}],\"assessments\":[{\"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": "8fdf7563-9ba8-47ea-8190-13649134040e", + "apim-request-id": "943a2024-7b05-4301-bef4-a1eed1b0f2e3", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:10 GMT", + "date": "Fri, 25 Jun 2021 20:01:18 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "106" + "x-envoy-upstream-service-time": "139" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/379883bc-c909-4616-9da7-f2fadc75164e", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7761fef3-03a3-4f92-a96c-beada17e7c27", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"379883bc-c909-4616-9da7-f2fadc75164e\",\"lastUpdateDateTime\":\"2021-05-12T19:20:08Z\",\"createdDateTime\":\"2021-05-12T19:19:46Z\",\"expirationDateTime\":\"2021-05-13T19:19:46Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:08Z\"},\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"sentimentAnalysisTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:08.1572698Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"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\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":4,\"length\":4,\"text\":\"food\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/0/assessments/0\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":30,\"length\":2,\"text\":\"AC\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/1/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/1/assessments/1\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/2/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":32,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/2/sentences/0/assessments/1\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":11,\"length\":5,\"text\":\"hotel\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/0\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":24,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/1\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":41,\"length\":15,\"text\":\"shuttle service\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/2\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":65,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/1\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/3\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/2\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.97,\"negative\":0.03},\"offset\":27,\"length\":4,\"text\":\"view\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/4/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/4/sentences/0/assessments/1\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":5,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":15,\"length\":9,\"text\":\"bathrooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/1\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":42,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/2\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":4,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/0/assessments/0\"}]}],\"assessments\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":11,\"length\":7,\"text\":\"smelled\",\"isNegated\":false}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}}]}}", + "response": "{\"jobId\":\"7761fef3-03a3-4f92-a96c-beada17e7c27\",\"lastUpdateDateTime\":\"2021-06-25T20:01:18Z\",\"createdDateTime\":\"2021-06-25T20:00:47Z\",\"expirationDateTime\":\"2021-06-26T20:00:47Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"sentimentAnalysisTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:18.3985284Z\",\"taskName\":\"SentimentAnalysis_latest\",\"state\":\"succeeded\",\"results\":{\"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\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":4,\"length\":4,\"text\":\"food\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/0/assessments/0\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":30,\"length\":2,\"text\":\"AC\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/1/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/1/assessments/1\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/2/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":32,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/2/sentences/0/assessments/1\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":11,\"length\":5,\"text\":\"hotel\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/0\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":24,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/1\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":41,\"length\":15,\"text\":\"shuttle service\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/2\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":65,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/1\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/3\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/2\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.97,\"negative\":0.03},\"offset\":27,\"length\":4,\"text\":\"view\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/4/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/4/sentences/0/assessments/1\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":5,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":15,\"length\":9,\"text\":\"bathrooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/1\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":42,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/2\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":4,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/0/assessments/0\"}]}],\"assessments\":[{\"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": "60942a22-0df1-44d3-8ddd-e5d8968ac359", + "apim-request-id": "919378ca-6790-402f-aba0-353bd466340b", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:10 GMT", + "date": "Fri, 25 Jun 2021 20:01:18 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "92" + "x-envoy-upstream-service-time": "110" } } ], @@ -312,5 +388,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "85c49ddeafbba1b6be811db169f2bc62" + "hash": "3a7f3ca2530dc07b8daf84a4a93dba9e" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.json index e22ca265bffa..aff6a82b7631 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:10 GMT", + "date": "Fri, 25 Jun 2021 20:01:19 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,59 +20,40 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - EUS ProdSlices", - "x-ms-request-id": "1abc1a8a-2ae7-4c0a-9aec-0f3019875600" + "x-ms-ests-server": "2.1.11829.9 - NCUS ProdSlices", + "x-ms-request-id": "f444c40d-3826-47ee-8fe8-203261866100" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze", + "url": "https://endpoint//text/analytics/v3.1/analyze", "query": {}, - "requestBody": "{\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]},\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"\",\"language\":\"\"},{\"id\":\"2\",\"text\":\"I did not like the hotel we stayed at. It was too expensive.\",\"language\":\"english\"},{\"id\":\"3\",\"text\":\"The restaurant had really good food. I recommend you try it.\",\"language\":\"en\"}]}}", + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"\",\"language\":\"\"},{\"id\":\"2\",\"text\":\"I did not like the hotel we stayed at. It was too expensive.\",\"language\":\"english\"},{\"id\":\"3\",\"text\":\"The restaurant had really good food. I recommend you try it.\",\"language\":\"en\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", "status": 202, "response": "", "responseHeaders": { - "apim-request-id": "3d1cd1a1-56a9-4d11-9976-09a012368bcc", - "date": "Wed, 12 May 2021 19:20:10 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/2571da6d-4c63-4316-b84a-8b7bf15a8e5d", + "apim-request-id": "9d55004b-c449-42d3-8df7-a7d8c796cea7", + "date": "Fri, 25 Jun 2021 20:01:19 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/0e63694a-178f-40b6-90a7-6425eab413ba", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "133" + "x-envoy-upstream-service-time": "272" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/2571da6d-4c63-4316-b84a-8b7bf15a8e5d", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/0e63694a-178f-40b6-90a7-6425eab413ba", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"2571da6d-4c63-4316-b84a-8b7bf15a8e5d\",\"lastUpdateDateTime\":\"2021-05-12T19:20:11Z\",\"createdDateTime\":\"2021-05-12T19:20:10Z\",\"expirationDateTime\":\"2021-05-13T19:20:10Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:11Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"0e63694a-178f-40b6-90a7-6425eab413ba\",\"lastUpdateDateTime\":\"2021-06-25T20:01:20Z\",\"createdDateTime\":\"2021-06-25T20:01:19Z\",\"expirationDateTime\":\"2021-06-26T20:01:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "aeafb939-4b1c-4785-a154-0d2a6e787790", + "apim-request-id": "83a7c0a3-04d4-42d1-a262-15c94c4a32dd", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:11 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/2571da6d-4c63-4316-b84a-8b7bf15a8e5d", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2571da6d-4c63-4316-b84a-8b7bf15a8e5d\",\"lastUpdateDateTime\":\"2021-05-12T19:20:11Z\",\"createdDateTime\":\"2021-05-12T19:20:10Z\",\"expirationDateTime\":\"2021-05-13T19:20:10Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:11Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "bf80774a-52de-4096-8993-34a41b13d3c3", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:11 GMT", + "date": "Fri, 25 Jun 2021 20:01:19 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -81,74 +62,17 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/2571da6d-4c63-4316-b84a-8b7bf15a8e5d", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2571da6d-4c63-4316-b84a-8b7bf15a8e5d\",\"lastUpdateDateTime\":\"2021-05-12T19:20:13Z\",\"createdDateTime\":\"2021-05-12T19:20:10Z\",\"expirationDateTime\":\"2021-05-13T19:20:10Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:13Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "561c49c2-7060-4f06-b8a0-6283fdb88684", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:13 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/2571da6d-4c63-4316-b84a-8b7bf15a8e5d", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2571da6d-4c63-4316-b84a-8b7bf15a8e5d\",\"lastUpdateDateTime\":\"2021-05-12T19:20:14Z\",\"createdDateTime\":\"2021-05-12T19:20:10Z\",\"expirationDateTime\":\"2021-05-13T19:20:10Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:14Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "f529ad66-fc50-4f6f-bd42-97cdd58351eb", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:15 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/2571da6d-4c63-4316-b84a-8b7bf15a8e5d", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2571da6d-4c63-4316-b84a-8b7bf15a8e5d\",\"lastUpdateDateTime\":\"2021-05-12T19:20:14Z\",\"createdDateTime\":\"2021-05-12T19:20:10Z\",\"expirationDateTime\":\"2021-05-13T19:20:10Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:14Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", - "responseHeaders": { - "apim-request-id": "8df76884-2429-4c9b-ad0d-cf28997e94c5", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:17 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "13" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/2571da6d-4c63-4316-b84a-8b7bf15a8e5d", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/0e63694a-178f-40b6-90a7-6425eab413ba", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"2571da6d-4c63-4316-b84a-8b7bf15a8e5d\",\"lastUpdateDateTime\":\"2021-05-12T19:20:14Z\",\"createdDateTime\":\"2021-05-12T19:20:10Z\",\"expirationDateTime\":\"2021-05-13T19:20:10Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:14Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"0e63694a-178f-40b6-90a7-6425eab413ba\",\"lastUpdateDateTime\":\"2021-06-25T20:01:20Z\",\"createdDateTime\":\"2021-06-25T20:01:19Z\",\"expirationDateTime\":\"2021-06-26T20:01:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "1767255e-6882-4c32-bc6e-517368ebf9e7", + "apim-request-id": "4de19793-de11-45ef-8e2c-9075c0029f3f", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:19 GMT", + "date": "Fri, 25 Jun 2021 20:01:19 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -157,211 +81,192 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/2571da6d-4c63-4316-b84a-8b7bf15a8e5d", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/0e63694a-178f-40b6-90a7-6425eab413ba", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"2571da6d-4c63-4316-b84a-8b7bf15a8e5d\",\"lastUpdateDateTime\":\"2021-05-12T19:20:20Z\",\"createdDateTime\":\"2021-05-12T19:20:10Z\",\"expirationDateTime\":\"2021-05-13T19:20:10Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:20Z\"},\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:20.0961381Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "response": "{\"jobId\":\"0e63694a-178f-40b6-90a7-6425eab413ba\",\"lastUpdateDateTime\":\"2021-06-25T20:01:21Z\",\"createdDateTime\":\"2021-06-25T20:01:19Z\",\"expirationDateTime\":\"2021-06-26T20:01:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "61c525a1-ec6d-4840-8895-c0f14d97d225", + "apim-request-id": "21b4d81a-0b19-489b-b74f-43614e72e4b0", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:21 GMT", + "date": "Fri, 25 Jun 2021 20:01:21 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "91" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/2571da6d-4c63-4316-b84a-8b7bf15a8e5d", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2571da6d-4c63-4316-b84a-8b7bf15a8e5d\",\"lastUpdateDateTime\":\"2021-05-12T19:20:20Z\",\"createdDateTime\":\"2021-05-12T19:20:10Z\",\"expirationDateTime\":\"2021-05-13T19:20:10Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:20Z\"},\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:20.0961381Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", - "responseHeaders": { - "apim-request-id": "d6f7ba5d-9312-43df-a98f-e58d258cde35", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:23 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-envoy-upstream-service-time": "7" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/2571da6d-4c63-4316-b84a-8b7bf15a8e5d", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/0e63694a-178f-40b6-90a7-6425eab413ba", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"2571da6d-4c63-4316-b84a-8b7bf15a8e5d\",\"lastUpdateDateTime\":\"2021-05-12T19:20:20Z\",\"createdDateTime\":\"2021-05-12T19:20:10Z\",\"expirationDateTime\":\"2021-05-13T19:20:10Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:20Z\"},\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:20.0961381Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "response": "{\"jobId\":\"0e63694a-178f-40b6-90a7-6425eab413ba\",\"lastUpdateDateTime\":\"2021-06-25T20:01:21Z\",\"createdDateTime\":\"2021-06-25T20:01:19Z\",\"expirationDateTime\":\"2021-06-26T20:01:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "c5d0b165-98cf-407e-8b33-6f1dbd3bcd8e", + "apim-request-id": "eb604c1f-7e9e-43cc-9d5e-996999f91ce0", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:25 GMT", + "date": "Fri, 25 Jun 2021 20:01:23 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "7" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/2571da6d-4c63-4316-b84a-8b7bf15a8e5d", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/0e63694a-178f-40b6-90a7-6425eab413ba", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"2571da6d-4c63-4316-b84a-8b7bf15a8e5d\",\"lastUpdateDateTime\":\"2021-05-12T19:20:20Z\",\"createdDateTime\":\"2021-05-12T19:20:10Z\",\"expirationDateTime\":\"2021-05-13T19:20:10Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:20Z\"},\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:20.0961381Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "response": "{\"jobId\":\"0e63694a-178f-40b6-90a7-6425eab413ba\",\"lastUpdateDateTime\":\"2021-06-25T20:01:26Z\",\"createdDateTime\":\"2021-06-25T20:01:19Z\",\"expirationDateTime\":\"2021-06-26T20:01:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "b499a050-a728-4d72-807f-cea48a360527", + "apim-request-id": "447e218d-ae0e-4af2-be61-bac689b8fddc", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:27 GMT", + "date": "Fri, 25 Jun 2021 20:01:25 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "84" + "x-envoy-upstream-service-time": "6" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/2571da6d-4c63-4316-b84a-8b7bf15a8e5d", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/0e63694a-178f-40b6-90a7-6425eab413ba", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"2571da6d-4c63-4316-b84a-8b7bf15a8e5d\",\"lastUpdateDateTime\":\"2021-05-12T19:20:20Z\",\"createdDateTime\":\"2021-05-12T19:20:10Z\",\"expirationDateTime\":\"2021-05-13T19:20:10Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:20Z\"},\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:20.0961381Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "response": "{\"jobId\":\"0e63694a-178f-40b6-90a7-6425eab413ba\",\"lastUpdateDateTime\":\"2021-06-25T20:01:26Z\",\"createdDateTime\":\"2021-06-25T20:01:19Z\",\"expirationDateTime\":\"2021-06-26T20:01:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "c27779ca-aa1f-4f83-8af2-005ba0416c77", + "apim-request-id": "dc884608-d9b6-4d42-9ca4-d8de21bcd7c0", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:29 GMT", + "date": "Fri, 25 Jun 2021 20:01:27 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "239" + "x-envoy-upstream-service-time": "7" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/2571da6d-4c63-4316-b84a-8b7bf15a8e5d", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/0e63694a-178f-40b6-90a7-6425eab413ba", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"2571da6d-4c63-4316-b84a-8b7bf15a8e5d\",\"lastUpdateDateTime\":\"2021-05-12T19:20:20Z\",\"createdDateTime\":\"2021-05-12T19:20:10Z\",\"expirationDateTime\":\"2021-05-13T19:20:10Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:20Z\"},\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:20.0961381Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "response": "{\"jobId\":\"0e63694a-178f-40b6-90a7-6425eab413ba\",\"lastUpdateDateTime\":\"2021-06-25T20:01:26Z\",\"createdDateTime\":\"2021-06-25T20:01:19Z\",\"expirationDateTime\":\"2021-06-26T20:01:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "41d21d9f-94e2-47ca-a9ed-c5df3da6931d", + "apim-request-id": "9dc57ac8-ae1a-4a76-9a19-41f96bce6c93", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:31 GMT", + "date": "Fri, 25 Jun 2021 20:01:29 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": "20" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/2571da6d-4c63-4316-b84a-8b7bf15a8e5d", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/0e63694a-178f-40b6-90a7-6425eab413ba", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"2571da6d-4c63-4316-b84a-8b7bf15a8e5d\",\"lastUpdateDateTime\":\"2021-05-12T19:20:20Z\",\"createdDateTime\":\"2021-05-12T19:20:10Z\",\"expirationDateTime\":\"2021-05-13T19:20:10Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:20Z\"},\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:20.0961381Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "response": "{\"jobId\":\"0e63694a-178f-40b6-90a7-6425eab413ba\",\"lastUpdateDateTime\":\"2021-06-25T20:01:26Z\",\"createdDateTime\":\"2021-06-25T20:01:19Z\",\"expirationDateTime\":\"2021-06-26T20:01:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "222d1a22-a941-4bea-9b53-ecfbac65173d", + "apim-request-id": "c6256f69-c3c2-401b-a0be-7c86b26c5562", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:33 GMT", + "date": "Fri, 25 Jun 2021 20:01:32 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "73" + "x-envoy-upstream-service-time": "8" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/2571da6d-4c63-4316-b84a-8b7bf15a8e5d", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/0e63694a-178f-40b6-90a7-6425eab413ba", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"2571da6d-4c63-4316-b84a-8b7bf15a8e5d\",\"lastUpdateDateTime\":\"2021-05-12T19:20:35Z\",\"createdDateTime\":\"2021-05-12T19:20:10Z\",\"expirationDateTime\":\"2021-05-13T19:20:10Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:35Z\"},\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:35.653887Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.87}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:20.0961381Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "response": "{\"jobId\":\"0e63694a-178f-40b6-90a7-6425eab413ba\",\"lastUpdateDateTime\":\"2021-06-25T20:01:26Z\",\"createdDateTime\":\"2021-06-25T20:01:19Z\",\"expirationDateTime\":\"2021-06-26T20:01:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "7d0770b0-72f6-4be5-bc60-41a0dbd1e6bc", + "apim-request-id": "578f1fbf-22e6-4798-a0af-2a5ff6225189", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:35 GMT", + "date": "Fri, 25 Jun 2021 20:01:34 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": "9" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/2571da6d-4c63-4316-b84a-8b7bf15a8e5d", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/0e63694a-178f-40b6-90a7-6425eab413ba", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"2571da6d-4c63-4316-b84a-8b7bf15a8e5d\",\"lastUpdateDateTime\":\"2021-05-12T19:20:35Z\",\"createdDateTime\":\"2021-05-12T19:20:10Z\",\"expirationDateTime\":\"2021-05-13T19:20:10Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:35Z\"},\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:35.653887Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.87}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:20.0961381Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "response": "{\"jobId\":\"0e63694a-178f-40b6-90a7-6425eab413ba\",\"lastUpdateDateTime\":\"2021-06-25T20:01:35Z\",\"createdDateTime\":\"2021-06-25T20:01:19Z\",\"expirationDateTime\":\"2021-06-26T20:01:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:35.1330185Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:35.0058806Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", "responseHeaders": { - "apim-request-id": "9f084f26-2099-4806-8f1b-299a8a2b72e3", + "apim-request-id": "fde3345c-d758-4786-949f-7d2bf2b6f79a", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:38 GMT", + "date": "Fri, 25 Jun 2021 20:01:37 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "93" + "x-envoy-upstream-service-time": "116" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/2571da6d-4c63-4316-b84a-8b7bf15a8e5d", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/0e63694a-178f-40b6-90a7-6425eab413ba", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"2571da6d-4c63-4316-b84a-8b7bf15a8e5d\",\"lastUpdateDateTime\":\"2021-05-12T19:20:40Z\",\"createdDateTime\":\"2021-05-12T19:20:10Z\",\"expirationDateTime\":\"2021-05-13T19:20:10Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:40Z\"},\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:35.653887Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.87}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:20.0961381Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:40.045219Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"keyPhrases\":[\"restaurant\",\"good food\"],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"0e63694a-178f-40b6-90a7-6425eab413ba\",\"lastUpdateDateTime\":\"2021-06-25T20:01:37Z\",\"createdDateTime\":\"2021-06-25T20:01:19Z\",\"expirationDateTime\":\"2021-06-26T20:01:19Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:35.1330185Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:35.0058806Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:37.2147965Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"keyPhrases\":[\"good food\",\"restaurant\"],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "1b850d3f-481b-47a5-aef5-78f5944ccbac", + "apim-request-id": "b196569b-ea83-4579-b4be-7aebb3058282", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:41 GMT", + "date": "Fri, 25 Jun 2021 20:01:39 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "177" + "x-envoy-upstream-service-time": "216" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/2571da6d-4c63-4316-b84a-8b7bf15a8e5d", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/0e63694a-178f-40b6-90a7-6425eab413ba", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"2571da6d-4c63-4316-b84a-8b7bf15a8e5d\",\"lastUpdateDateTime\":\"2021-05-12T19:20:40Z\",\"createdDateTime\":\"2021-05-12T19:20:10Z\",\"expirationDateTime\":\"2021-05-13T19:20:10Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:20:40Z\"},\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:35.653887Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.87}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:20.0961381Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:20:40.045219Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"keyPhrases\":[\"restaurant\",\"good food\"],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"0e63694a-178f-40b6-90a7-6425eab413ba\",\"lastUpdateDateTime\":\"2021-06-25T20:01:37Z\",\"createdDateTime\":\"2021-06-25T20:01:19Z\",\"expirationDateTime\":\"2021-06-26T20:01:19Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:35.1330185Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:35.0058806Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:01:37.2147965Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"keyPhrases\":[\"good food\",\"restaurant\"],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "75dadfde-2220-44f1-9dd6-e2682fa95256", + "apim-request-id": "83173753-4858-4534-836d-3c9c8d0b6e36", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:20:41 GMT", + "date": "Fri, 25 Jun 2021 20:01:39 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "123" + "x-envoy-upstream-service-time": "162" } } ], @@ -369,5 +274,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "ba950f781e307c4904822ebae2630066" + "hash": "10b0e4554231ab60fcfbc8922809b3ac" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.json index ce829b99a0be..c40efaa0884b 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:22 GMT", + "date": "Fri, 25 Jun 2021 20:06:20 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,40 +20,496 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - EUS ProdSlices", - "x-ms-request-id": "d00521bc-1a92-477a-94fd-379053604f00" + "x-ms-ests-server": "2.1.11829.9 - SCUS ProdSlices", + "x-ms-request-id": "b10314ef-1e76-4785-9505-f54451317100" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze", + "url": "https://endpoint//text/analytics/v3.1/analyze", "query": {}, - "requestBody": "{\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]},\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\"},{\"id\":\"2\",\"text\":\"Este es un document escrito en Español.\"},{\"id\":\"3\",\"text\":\"猫は幸せ\"}]}}", + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\"},{\"id\":\"2\",\"text\":\"Este es un document escrito en Español.\"},{\"id\":\"3\",\"text\":\"猫は幸せ\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", "status": 202, "response": "", "responseHeaders": { - "apim-request-id": "4aefdb16-1293-41ab-9b92-edbf0f744209", - "date": "Wed, 12 May 2021 19:22:21 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/5f4e843e-eded-4ae3-b6fe-77985ac82529", + "apim-request-id": "52748187-930a-4162-9bfc-d68b768987a0", + "date": "Fri, 25 Jun 2021 20:06:21 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "139" + "x-envoy-upstream-service-time": "1031" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/5f4e843e-eded-4ae3-b6fe-77985ac82529", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"5f4e843e-eded-4ae3-b6fe-77985ac82529\",\"lastUpdateDateTime\":\"2021-05-12T19:22:22Z\",\"createdDateTime\":\"2021-05-12T19:22:22Z\",\"expirationDateTime\":\"2021-05-13T19:22:22Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:22Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "1292389d-b288-4728-bacf-841930d0e050", + "apim-request-id": "2ecd176e-8971-42ed-b184-5ddef64a9cbe", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:21 GMT", + "date": "Fri, 25 Jun 2021 20:06:21 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "48" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "dcb0b032-8684-41dd-95c8-13439f5db67d", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:06:21 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "8c0e9cfa-0fc9-4fa8-829a-619becdee28e", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:06:23 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "40fd4944-c9a5-440e-befe-d0c08073e7a5", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:06:26 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "58d36e93-9c3d-40cf-8d9a-499a15d946ae", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:06:28 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "e38f08e4-5ba2-4489-a53b-d9958c36ebb0", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:06:30 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "2a5109df-50f2-4f7c-8421-b359744d1f0a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:06:33 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "68df49d6-4617-4407-b3e5-3413a42b0fea", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:06:35 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "19318b30-948f-4dbc-bdcb-0117173af32c", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:06:37 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "d43aaa12-2d19-4430-ac10-8b8eca2ec6bf", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:06:39 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "8b68e34b-2e8b-4540-8532-b687408d798a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:06:41 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "ab5fe006-211c-485f-82a2-5f1624371329", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:06:43 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "34bc76fe-96af-4618-8e45-4945786ba66b", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:06:45 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "4175adf3-a9d9-40de-ae05-dfbcc2236948", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:06:48 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "7140650a-e54f-4912-a87a-4c203b1d18eb", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:06:50 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "53d58885-7521-46db-a2bc-020e117aee97", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:06:52 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "5ef3d309-8a4e-482c-af86-369dbe7ba688", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:06:54 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "f098da15-489e-4c4f-8431-cfb33ce4d533", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:06:56 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "aaecdddc-3621-405a-9da6-38eef289c1f4", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:06:58 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "55f5f1e9-ae28-4c89-a66d-b2b3c48e2378", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:07:00 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "b6a570e3-8d98-41a0-aa23-449d4b8cf832", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:07:02 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "89f4c3f9-6a2e-45a3-b073-4352d9702868", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:07:04 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "bc3ed90f-ef19-4e2f-a6e0-cb7f925b452a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:07:06 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "3752d654-3cb3-42cf-bf87-13e41261635d", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:07:08 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "99aa5394-b851-4381-a82b-828405f0c798", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:07:10 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -62,36 +518,150 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/5f4e843e-eded-4ae3-b6fe-77985ac82529", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "848027e7-40be-49d3-b7ec-d15f2a21278a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:07:12 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "2a2aa92f-afea-4d1f-8ca9-6f4379b2fb5a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:07:15 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "12" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "040f52f6-fd7c-44e4-9294-76e4646de9da", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:07:17 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "ec4201e2-f436-494b-9270-41cec8a13340", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:07:19 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:06:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "e6e5ea46-b22d-4922-bf41-721d63c50142", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:07:21 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"5f4e843e-eded-4ae3-b6fe-77985ac82529\",\"lastUpdateDateTime\":\"2021-05-12T19:22:22Z\",\"createdDateTime\":\"2021-05-12T19:22:22Z\",\"expirationDateTime\":\"2021-05-13T19:22:22Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:22Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:07:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "193c6e2b-12ae-4de4-b13e-075154aa04d7", + "apim-request-id": "095e89c2-cdc1-46c3-bc36-d44400b0bc51", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:21 GMT", + "date": "Fri, 25 Jun 2021 20:07:23 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:07:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "13efcbcc-9667-4673-8036-8433e146c1e1", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:07:25 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/5f4e843e-eded-4ae3-b6fe-77985ac82529", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"5f4e843e-eded-4ae3-b6fe-77985ac82529\",\"lastUpdateDateTime\":\"2021-05-12T19:22:23Z\",\"createdDateTime\":\"2021-05-12T19:22:22Z\",\"expirationDateTime\":\"2021-05-13T19:22:22Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:23Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:07:22Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "a29f80ae-aa81-48b4-834f-55e86d662cea", + "apim-request-id": "115f0eda-086c-4044-b0f1-8b19b74867e2", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:23 GMT", + "date": "Fri, 25 Jun 2021 20:07:27 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -100,17 +670,17 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/5f4e843e-eded-4ae3-b6fe-77985ac82529", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"5f4e843e-eded-4ae3-b6fe-77985ac82529\",\"lastUpdateDateTime\":\"2021-05-12T19:22:23Z\",\"createdDateTime\":\"2021-05-12T19:22:22Z\",\"expirationDateTime\":\"2021-05-13T19:22:22Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:23Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:07:30Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "fe716e35-998f-4e01-bda9-a51d4c3b6c90", + "apim-request-id": "77fe13ff-ed59-4b0e-a6ac-e597f7e539b9", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:25 GMT", + "date": "Fri, 25 Jun 2021 20:07:29 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -119,116 +689,287 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/5f4e843e-eded-4ae3-b6fe-77985ac82529", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:07:30Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "b522d470-3564-484a-a17e-26c0ed8d6c18", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:07:31 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:07:30Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "c06b9cdc-6fb9-4fb2-ac7d-13c965e29fb9", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:07:33 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "102" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:07:30Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "a7990a3e-dadd-4e86-bd00-fd56a318a067", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:07:36 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "12" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:07:30Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "f662147a-0ba5-478d-8825-8800dd709779", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:07:38 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:07:40Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:07:40.2660973Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Español\",\"category\":\"Skill\",\"offset\":31,\"length\":7,\"confidenceScore\":0.92}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "5a2cc915-0720-47b4-b81f-e17ca80aae18", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:07:40 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "77" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:07:42Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:07:40.2660973Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Español\",\"category\":\"Skill\",\"offset\":31,\"length\":7,\"confidenceScore\":0.92}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:07:42.8498376Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "f885fa7a-b88b-4ae3-a9fa-02c107edbca0", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:07:42 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "120" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:07:42Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:07:40.2660973Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Español\",\"category\":\"Skill\",\"offset\":31,\"length\":7,\"confidenceScore\":0.92}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:07:42.8498376Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "eecdf252-b75c-43a3-9238-38c7b1972db9", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:07:44 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "117" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:07:42Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:07:40.2660973Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Español\",\"category\":\"Skill\",\"offset\":31,\"length\":7,\"confidenceScore\":0.92}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:07:42.8498376Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "de625942-a949-46b9-b88e-3c71ee32f358", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:07:46 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "108" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:07:42Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:07:40.2660973Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Español\",\"category\":\"Skill\",\"offset\":31,\"length\":7,\"confidenceScore\":0.92}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:07:42.8498376Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "0234bc63-d69a-4453-9f16-ab723eef219f", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:07:49 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "145" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"5f4e843e-eded-4ae3-b6fe-77985ac82529\",\"lastUpdateDateTime\":\"2021-05-12T19:22:23Z\",\"createdDateTime\":\"2021-05-12T19:22:22Z\",\"expirationDateTime\":\"2021-05-13T19:22:22Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:23Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:07:42Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:07:40.2660973Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Español\",\"category\":\"Skill\",\"offset\":31,\"length\":7,\"confidenceScore\":0.92}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:07:42.8498376Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", "responseHeaders": { - "apim-request-id": "bba2c397-99e2-46ba-8d3f-a6827f0ecf35", + "apim-request-id": "fd9010a8-9047-4cb4-8f77-885e09f16e63", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:27 GMT", + "date": "Fri, 25 Jun 2021 20:07:51 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": "137" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/5f4e843e-eded-4ae3-b6fe-77985ac82529", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"5f4e843e-eded-4ae3-b6fe-77985ac82529\",\"lastUpdateDateTime\":\"2021-05-12T19:22:30Z\",\"createdDateTime\":\"2021-05-12T19:22:22Z\",\"expirationDateTime\":\"2021-05-13T19:22:22Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:30Z\"},\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:30.0050342Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.95}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:28.6298558Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"park\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"Este es\",\"document escrito en Español\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"猫は幸せ\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:07:42Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:07:40.2660973Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Español\",\"category\":\"Skill\",\"offset\":31,\"length\":7,\"confidenceScore\":0.92}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:07:42.8498376Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", "responseHeaders": { - "apim-request-id": "330e7baa-4975-4c02-9fea-9fefeb3c3ee4", + "apim-request-id": "5df2f468-d1fa-4c03-bd22-17c149a6c084", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:29 GMT", + "date": "Fri, 25 Jun 2021 20:07:53 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "104" + "x-envoy-upstream-service-time": "245" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/5f4e843e-eded-4ae3-b6fe-77985ac82529", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"5f4e843e-eded-4ae3-b6fe-77985ac82529\",\"lastUpdateDateTime\":\"2021-05-12T19:22:30Z\",\"createdDateTime\":\"2021-05-12T19:22:22Z\",\"expirationDateTime\":\"2021-05-13T19:22:22Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:30Z\"},\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:30.0050342Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.95}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:28.6298558Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"park\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"Este es\",\"document escrito en Español\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"猫は幸せ\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:07:42Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:07:40.2660973Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Español\",\"category\":\"Skill\",\"offset\":31,\"length\":7,\"confidenceScore\":0.92}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:07:42.8498376Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", "responseHeaders": { - "apim-request-id": "1484f0da-0c4f-4507-b6f8-26b565a87647", + "apim-request-id": "713b3f02-df9a-4af8-8fd4-4feb1f7a3472", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:32 GMT", + "date": "Fri, 25 Jun 2021 20:07:55 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "362" + "x-envoy-upstream-service-time": "111" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/5f4e843e-eded-4ae3-b6fe-77985ac82529", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"5f4e843e-eded-4ae3-b6fe-77985ac82529\",\"lastUpdateDateTime\":\"2021-05-12T19:22:30Z\",\"createdDateTime\":\"2021-05-12T19:22:22Z\",\"expirationDateTime\":\"2021-05-13T19:22:22Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:30Z\"},\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:30.0050342Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.95}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:28.6298558Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"park\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"Este es\",\"document escrito en Español\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"猫は幸せ\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:07:42Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:07:40.2660973Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Español\",\"category\":\"Skill\",\"offset\":31,\"length\":7,\"confidenceScore\":0.92}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:07:42.8498376Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", "responseHeaders": { - "apim-request-id": "2eaefa8c-7566-4801-8f76-a4469a7671cf", + "apim-request-id": "8cfdf65b-51fd-449c-9e4d-6ba95a71ed99", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:34 GMT", + "date": "Fri, 25 Jun 2021 20:07:57 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "165" + "x-envoy-upstream-service-time": "131" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/5f4e843e-eded-4ae3-b6fe-77985ac82529", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"5f4e843e-eded-4ae3-b6fe-77985ac82529\",\"lastUpdateDateTime\":\"2021-05-12T19:22:35Z\",\"createdDateTime\":\"2021-05-12T19:22:22Z\",\"expirationDateTime\":\"2021-05-13T19:22:22Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:35Z\"},\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:30.0050342Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.95}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:35.2687289Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:28.6298558Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"park\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"Este es\",\"document escrito en Español\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"猫は幸せ\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:07:58Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:07:40.2660973Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Español\",\"category\":\"Skill\",\"offset\":31,\"length\":7,\"confidenceScore\":0.92}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:07:42.8498376Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:07:58.9345116Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"park\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"Español\",\"document\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"せ\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "34158d03-28d4-4135-a3cb-4b50f487e3ed", + "apim-request-id": "212b4f37-8aeb-4026-9f6f-8f190a8c6e74", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:36 GMT", + "date": "Fri, 25 Jun 2021 20:08:00 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "139" + "x-envoy-upstream-service-time": "167" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/5f4e843e-eded-4ae3-b6fe-77985ac82529", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/686cf3b5-d3a5-49e6-baa0-20bdca3df827", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"5f4e843e-eded-4ae3-b6fe-77985ac82529\",\"lastUpdateDateTime\":\"2021-05-12T19:22:35Z\",\"createdDateTime\":\"2021-05-12T19:22:22Z\",\"expirationDateTime\":\"2021-05-13T19:22:22Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:35Z\"},\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:30.0050342Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.95}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:35.2687289Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:28.6298558Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"park\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"Este es\",\"document escrito en Español\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"猫は幸せ\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"686cf3b5-d3a5-49e6-baa0-20bdca3df827\",\"lastUpdateDateTime\":\"2021-06-25T20:07:58Z\",\"createdDateTime\":\"2021-06-25T20:06:21Z\",\"expirationDateTime\":\"2021-06-26T20:06:21Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:07:40.2660973Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Español\",\"category\":\"Skill\",\"offset\":31,\"length\":7,\"confidenceScore\":0.92}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:07:42.8498376Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:07:58.9345116Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"park\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"Español\",\"document\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"せ\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "b58b5eeb-837f-477b-bea6-faa6001b6b91", + "apim-request-id": "ed2769a6-b4f3-4a12-b4bc-4415e9d1ebc2", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:36 GMT", + "date": "Fri, 25 Jun 2021 20:08:00 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "151" + "x-envoy-upstream-service-time": "159" } } ], @@ -236,5 +977,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "7962fcffc70aa58d13b173bc640c9d38" + "hash": "8f314fa816eb3a9379d509dd8840d64e" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.json index 16ed9805e220..a7d9aba0a718 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:36 GMT", + "date": "Fri, 25 Jun 2021 20:03:28 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,40 +20,40 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - SCUS ProdSlices", - "x-ms-request-id": "d8b4f1c7-068a-49ca-8be3-b9fbda8a5800" + "x-ms-ests-server": "2.1.11829.9 - WUS2 ProdSlices", + "x-ms-request-id": "28812791-b9ec-449e-b425-0faaf5a45c00" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze", + "url": "https://endpoint//text/analytics/v3.1/analyze", "query": {}, - "requestBody": "{\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]},\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"This was the best day of my life.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"I did not like the hotel we stayed at. It was too expensive.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"The restaurant was not as good as I hoped.\",\"language\":\"en\"}]}}", + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"This was the best day of my life.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"I did not like the hotel we stayed at. It was too expensive.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"The restaurant was not as good as I hoped.\",\"language\":\"en\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", "status": 202, "response": "", "responseHeaders": { - "apim-request-id": "9e3c601c-46f8-4e0a-84fe-8f4d55e2f8df", - "date": "Wed, 12 May 2021 19:21:37 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/082b3d6b-1a09-4c39-bc01-281a1e24ef30", + "apim-request-id": "1fb538bb-d3c8-46d8-93ce-c9f55d08fefc", + "date": "Fri, 25 Jun 2021 20:03:29 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "152" + "x-envoy-upstream-service-time": "257" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/082b3d6b-1a09-4c39-bc01-281a1e24ef30", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"082b3d6b-1a09-4c39-bc01-281a1e24ef30\",\"lastUpdateDateTime\":\"2021-05-12T19:21:37Z\",\"createdDateTime\":\"2021-05-12T19:21:37Z\",\"expirationDateTime\":\"2021-05-13T19:21:37Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:37Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:03:29Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "c8a6258f-ab96-40cb-9608-18f40c56b574", + "apim-request-id": "c03697d7-6634-440f-8e95-73657333f25a", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:37 GMT", + "date": "Fri, 25 Jun 2021 20:03:29 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -62,55 +62,55 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/082b3d6b-1a09-4c39-bc01-281a1e24ef30", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"082b3d6b-1a09-4c39-bc01-281a1e24ef30\",\"lastUpdateDateTime\":\"2021-05-12T19:21:37Z\",\"createdDateTime\":\"2021-05-12T19:21:37Z\",\"expirationDateTime\":\"2021-05-13T19:21:37Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:37Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:03:29Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "36011641-fe56-4be3-9840-c8eccd6429bf", + "apim-request-id": "008a3549-5ebb-4fb2-8edf-84dfdc588f01", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:37 GMT", + "date": "Fri, 25 Jun 2021 20:03:29 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "8" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/082b3d6b-1a09-4c39-bc01-281a1e24ef30", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"082b3d6b-1a09-4c39-bc01-281a1e24ef30\",\"lastUpdateDateTime\":\"2021-05-12T19:21:39Z\",\"createdDateTime\":\"2021-05-12T19:21:37Z\",\"expirationDateTime\":\"2021-05-13T19:21:37Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:39Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:03:30Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "9b98d2ed-6331-4c22-bf03-39489b215c5f", + "apim-request-id": "731c54d8-537d-4e09-b932-ec72f508e2e5", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:39 GMT", + "date": "Fri, 25 Jun 2021 20:03:31 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/082b3d6b-1a09-4c39-bc01-281a1e24ef30", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"082b3d6b-1a09-4c39-bc01-281a1e24ef30\",\"lastUpdateDateTime\":\"2021-05-12T19:21:39Z\",\"createdDateTime\":\"2021-05-12T19:21:37Z\",\"expirationDateTime\":\"2021-05-13T19:21:37Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:39Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:03:30Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "34c837c3-abe8-4bba-9ccb-2791f0856e9e", + "apim-request-id": "0e3b4243-7ae3-4d8e-8c76-22824fb43781", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:41 GMT", + "date": "Fri, 25 Jun 2021 20:03:33 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -119,116 +119,572 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/082b3d6b-1a09-4c39-bc01-281a1e24ef30", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:03:30Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "f2d6b89c-1a14-4437-99f1-57eba02b8170", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:03:35 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:03:36Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:36.758334Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "b70c1fd0-25ea-4c2b-9b4f-b4873a7c99f3", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:03:37 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "67" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:03:36Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:36.758334Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "b421077b-99fb-4a51-b1c1-db37a15e6c56", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:03:39 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "60" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:03:36Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:36.758334Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "147e9d06-16ff-4623-9169-84d9e9b6fbe2", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:03:41 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "70" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:03:42Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:42.5128531Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:36.758334Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "6d1890d6-0893-420c-a216-0e49f598131e", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:03:44 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "141" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:03:42Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:42.5128531Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:36.758334Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "b351be20-c522-4b15-b5a2-d6aa789edfe2", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:03:46 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "145" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:03:42Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:42.5128531Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:36.758334Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "5a2467f0-64e7-4fca-a432-a9295e7dbf1a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:03:48 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "134" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:03:42Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:42.5128531Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:36.758334Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "90bea5dc-2b38-4b26-baa7-29c5143eb7e1", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:03:50 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "122" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:03:42Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:42.5128531Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:36.758334Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "ae167c12-e9ab-4874-8722-83800a356d51", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:03:53 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "132" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:03:42Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:42.5128531Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:36.758334Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "a2cb6041-9397-40c1-a552-e79cbb2793b7", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:03:55 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "111" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:03:42Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:42.5128531Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:36.758334Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "032b0750-cc1e-4f53-8551-79cb1b6032b1", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:03:58 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "122" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:03:42Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:42.5128531Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:36.758334Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "2c238d1e-bf3c-4447-8d7d-7c3cf15da332", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:04:00 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "410" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:03:42Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:42.5128531Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:36.758334Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "802dacc9-2640-472a-8b0b-a087a6c52bbe", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:04:02 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "110" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:03:42Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:42.5128531Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:36.758334Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "1701ea70-5618-4d12-be1b-b0ef5a831512", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:04:04 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "110" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:03:42Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:42.5128531Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:36.758334Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "9bc2a6da-1827-4590-9183-3e2374e4b33c", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:04:06 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "129" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:03:42Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:42.5128531Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:36.758334Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "c25367bd-bd9b-44ac-a067-2438bf9a2e13", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:04:09 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "123" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:03:42Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:42.5128531Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:36.758334Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "2ae37887-cd27-4bb5-a535-66022408f646", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:04:11 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "124" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:03:42Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:42.5128531Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:36.758334Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "713d7973-986d-424c-b329-80b1367dec75", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:04:13 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "106" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:03:42Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:42.5128531Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:36.758334Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "246533e1-d477-4d10-af8b-fecfd48e92c1", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:04:15 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "117" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:03:42Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:42.5128531Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:36.758334Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "3b7e9bdb-b06e-4e09-83f3-aec3ba3cbdf0", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:04:17 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "167" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:03:42Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:42.5128531Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:36.758334Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "8e24b5b3-8789-49ca-9a3f-4d807a9849d5", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:04:19 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "109" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:03:42Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:42.5128531Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:36.758334Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "12c86f32-b821-4867-af5a-13e760b758dd", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:04:21 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "152" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:03:42Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:42.5128531Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:36.758334Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "9572a774-5c73-48ea-a1ab-b3a0cf3f439c", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:04:24 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "156" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:03:42Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:42.5128531Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:36.758334Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "0460da6c-4a08-44e5-8cdc-49ea143e0070", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:04:26 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "119" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"082b3d6b-1a09-4c39-bc01-281a1e24ef30\",\"lastUpdateDateTime\":\"2021-05-12T19:21:43Z\",\"createdDateTime\":\"2021-05-12T19:21:37Z\",\"expirationDateTime\":\"2021-05-13T19:21:37Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:43Z\"},\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:43.5506586Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:03:42Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:42.5128531Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:36.758334Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "4a058e7b-64b9-40c0-ab9a-8ca1f9bb6760", + "apim-request-id": "dd04702f-0532-4c6d-b5c4-75e68549f571", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:43 GMT", + "date": "Fri, 25 Jun 2021 20:04:28 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "55" + "x-envoy-upstream-service-time": "131" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/082b3d6b-1a09-4c39-bc01-281a1e24ef30", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"082b3d6b-1a09-4c39-bc01-281a1e24ef30\",\"lastUpdateDateTime\":\"2021-05-12T19:21:43Z\",\"createdDateTime\":\"2021-05-12T19:21:37Z\",\"expirationDateTime\":\"2021-05-13T19:21:37Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:43Z\"},\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:43.5506586Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:04:29Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:42.5128531Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:36.758334Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "c9109f0c-b285-497e-9a17-879af0d77ca3", + "apim-request-id": "c7373801-cf7d-4cd5-89c1-301aa7eba9ff", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:45 GMT", + "date": "Fri, 25 Jun 2021 20:04:30 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-envoy-upstream-service-time": "129" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/082b3d6b-1a09-4c39-bc01-281a1e24ef30", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"082b3d6b-1a09-4c39-bc01-281a1e24ef30\",\"lastUpdateDateTime\":\"2021-05-12T19:21:43Z\",\"createdDateTime\":\"2021-05-12T19:21:37Z\",\"expirationDateTime\":\"2021-05-13T19:21:37Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:43Z\"},\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:43.5506586Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:04:29Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:42.5128531Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:36.758334Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "c626dd54-7ba5-4cf6-b7f9-9548945e1242", + "apim-request-id": "639efdee-4952-4b8f-9a81-aa73242d7cc1", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:47 GMT", + "date": "Fri, 25 Jun 2021 20:04:33 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "48" + "x-envoy-upstream-service-time": "119" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/082b3d6b-1a09-4c39-bc01-281a1e24ef30", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"082b3d6b-1a09-4c39-bc01-281a1e24ef30\",\"lastUpdateDateTime\":\"2021-05-12T19:21:50Z\",\"createdDateTime\":\"2021-05-12T19:21:37Z\",\"expirationDateTime\":\"2021-05-13T19:21:37Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:50Z\"},\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:50.2370669Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:43.5506586Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:04:29Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:42.5128531Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:36.758334Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "b961f8ca-a158-4c65-833f-8006ff0b5198", + "apim-request-id": "f577ce17-031a-48c7-9bbe-b1a7e2927811", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:49 GMT", + "date": "Fri, 25 Jun 2021 20:04:35 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "105" + "x-envoy-upstream-service-time": "131" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/082b3d6b-1a09-4c39-bc01-281a1e24ef30", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"082b3d6b-1a09-4c39-bc01-281a1e24ef30\",\"lastUpdateDateTime\":\"2021-05-12T19:21:52Z\",\"createdDateTime\":\"2021-05-12T19:21:37Z\",\"expirationDateTime\":\"2021-05-13T19:21:37Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:52Z\"},\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:52.7056341Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.89}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.87}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:50.2370669Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:43.5506586Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:04:36Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:04:36.921718Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:42.5128531Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:36.758334Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "74a5e603-c32c-49c1-906e-dd9fd08a0078", + "apim-request-id": "9c09390b-b2b0-4593-b6c6-d4295eabf920", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:51 GMT", + "date": "Fri, 25 Jun 2021 20:04:38 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "151" + "x-envoy-upstream-service-time": "209" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/082b3d6b-1a09-4c39-bc01-281a1e24ef30", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/f37abbde-8955-4ea7-841b-24a69237adc2", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"082b3d6b-1a09-4c39-bc01-281a1e24ef30\",\"lastUpdateDateTime\":\"2021-05-12T19:21:52Z\",\"createdDateTime\":\"2021-05-12T19:21:37Z\",\"expirationDateTime\":\"2021-05-13T19:21:37Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:52Z\"},\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:52.7056341Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.89}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.87}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:50.2370669Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:43.5506586Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"f37abbde-8955-4ea7-841b-24a69237adc2\",\"lastUpdateDateTime\":\"2021-06-25T20:04:36Z\",\"createdDateTime\":\"2021-06-25T20:03:29Z\",\"expirationDateTime\":\"2021-06-26T20:03:29Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:04:36.921718Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:42.5128531Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:03:36.758334Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "2571d4af-a69b-40bf-919f-2d9b52593827", + "apim-request-id": "f5f2fd03-2bd5-4582-b223-d6ba41f1d052", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:52 GMT", + "date": "Fri, 25 Jun 2021 20:04:38 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "118" + "x-envoy-upstream-service-time": "195" } } ], @@ -236,5 +692,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "9b5d2b06f2bb788a6c27807b8e29ac2a" + "hash": "2456069a85819d9a9195cf97a63ecf43" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.json index f46e6a163c3c..e49587ffe2d6 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:52 GMT", + "date": "Fri, 25 Jun 2021 20:04:37 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,97 +20,97 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - SCUS ProdSlices", - "x-ms-request-id": "c53ac30c-0f0c-44df-8647-6ebb3f125900" + "x-ms-ests-server": "2.1.11829.9 - WUS2 ProdSlices", + "x-ms-request-id": "57418012-2503-4660-964d-7a7e50666400" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze", + "url": "https://endpoint//text/analytics/v3.1/analyze", "query": {}, - "requestBody": "{\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]},\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"This was the best day of my life.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"I did not like the hotel we stayed at. It was too expensive.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"The restaurant was not as good as I hoped.\",\"language\":\"en\"}]}}", + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"This was the best day of my life.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"I did not like the hotel we stayed at. It was too expensive.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"The restaurant was not as good as I hoped.\",\"language\":\"en\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", "status": 202, "response": "", "responseHeaders": { - "apim-request-id": "2f1e8696-7569-4e8f-8507-e0b131e79307", - "date": "Wed, 12 May 2021 19:21:52 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/acb13988-8c5e-4919-af79-647f616a9e10", + "apim-request-id": "1206a21d-b0e1-44a4-9d1b-b2c0b25066c9", + "date": "Fri, 25 Jun 2021 20:04:38 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/6c38b1d8-6c1f-4211-8b66-467d617e2fd6", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "174" + "x-envoy-upstream-service-time": "267" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/acb13988-8c5e-4919-af79-647f616a9e10", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/6c38b1d8-6c1f-4211-8b66-467d617e2fd6", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"acb13988-8c5e-4919-af79-647f616a9e10\",\"lastUpdateDateTime\":\"2021-05-12T19:21:53Z\",\"createdDateTime\":\"2021-05-12T19:21:53Z\",\"expirationDateTime\":\"2021-05-13T19:21:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:53Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"6c38b1d8-6c1f-4211-8b66-467d617e2fd6\",\"lastUpdateDateTime\":\"2021-06-25T20:04:39Z\",\"createdDateTime\":\"2021-06-25T20:04:38Z\",\"expirationDateTime\":\"2021-06-26T20:04:38Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "62d57083-fd55-4889-8132-e522105415b3", + "apim-request-id": "94e91981-ed1f-49e5-97c3-28e02df24707", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:52 GMT", + "date": "Fri, 25 Jun 2021 20:04:38 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "19" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/acb13988-8c5e-4919-af79-647f616a9e10", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/6c38b1d8-6c1f-4211-8b66-467d617e2fd6", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"acb13988-8c5e-4919-af79-647f616a9e10\",\"lastUpdateDateTime\":\"2021-05-12T19:21:53Z\",\"createdDateTime\":\"2021-05-12T19:21:53Z\",\"expirationDateTime\":\"2021-05-13T19:21:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:53Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"6c38b1d8-6c1f-4211-8b66-467d617e2fd6\",\"lastUpdateDateTime\":\"2021-06-25T20:04:39Z\",\"createdDateTime\":\"2021-06-25T20:04:38Z\",\"expirationDateTime\":\"2021-06-26T20:04:38Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "eec73b31-ac12-435a-95d9-575c45eb2ad7", + "apim-request-id": "642cd961-1820-4359-89d8-b6ba2dded7d1", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:52 GMT", + "date": "Fri, 25 Jun 2021 20:04:39 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "6" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/acb13988-8c5e-4919-af79-647f616a9e10", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/6c38b1d8-6c1f-4211-8b66-467d617e2fd6", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"acb13988-8c5e-4919-af79-647f616a9e10\",\"lastUpdateDateTime\":\"2021-05-12T19:21:54Z\",\"createdDateTime\":\"2021-05-12T19:21:53Z\",\"expirationDateTime\":\"2021-05-13T19:21:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:54Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"6c38b1d8-6c1f-4211-8b66-467d617e2fd6\",\"lastUpdateDateTime\":\"2021-06-25T20:04:39Z\",\"createdDateTime\":\"2021-06-25T20:04:38Z\",\"expirationDateTime\":\"2021-06-26T20:04:38Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "5d2012c6-21c3-4f57-a67d-65b0fe4a33a6", + "apim-request-id": "f16a9d24-88f8-43f6-983c-50d40a51fbf9", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:54 GMT", + "date": "Fri, 25 Jun 2021 20:04:41 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "63" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/acb13988-8c5e-4919-af79-647f616a9e10", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/6c38b1d8-6c1f-4211-8b66-467d617e2fd6", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"acb13988-8c5e-4919-af79-647f616a9e10\",\"lastUpdateDateTime\":\"2021-05-12T19:21:54Z\",\"createdDateTime\":\"2021-05-12T19:21:53Z\",\"expirationDateTime\":\"2021-05-13T19:21:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:54Z\"},\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "response": "{\"jobId\":\"6c38b1d8-6c1f-4211-8b66-467d617e2fd6\",\"lastUpdateDateTime\":\"2021-06-25T20:04:39Z\",\"createdDateTime\":\"2021-06-25T20:04:38Z\",\"expirationDateTime\":\"2021-06-26T20:04:38Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", "responseHeaders": { - "apim-request-id": "3a7a0d19-5da3-4cd5-a6ae-869ead9b0ef0", + "apim-request-id": "3d2ea5cd-23ef-4115-980a-35154ed17c23", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:56 GMT", + "date": "Fri, 25 Jun 2021 20:04:43 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -119,97 +119,173 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/acb13988-8c5e-4919-af79-647f616a9e10", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/6c38b1d8-6c1f-4211-8b66-467d617e2fd6", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"6c38b1d8-6c1f-4211-8b66-467d617e2fd6\",\"lastUpdateDateTime\":\"2021-06-25T20:04:39Z\",\"createdDateTime\":\"2021-06-25T20:04:38Z\",\"expirationDateTime\":\"2021-06-26T20:04:38Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "1ab3fd7a-3de7-483d-b083-835acd4d18a6", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:04:45 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/6c38b1d8-6c1f-4211-8b66-467d617e2fd6", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"6c38b1d8-6c1f-4211-8b66-467d617e2fd6\",\"lastUpdateDateTime\":\"2021-06-25T20:04:47Z\",\"createdDateTime\":\"2021-06-25T20:04:38Z\",\"expirationDateTime\":\"2021-06-26T20:04:38Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:04:47.1287609Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:04:45.8358115Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "b9f912ce-1120-4a58-9834-8853ea76dbe8", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:04:47 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "133" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/6c38b1d8-6c1f-4211-8b66-467d617e2fd6", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"6c38b1d8-6c1f-4211-8b66-467d617e2fd6\",\"lastUpdateDateTime\":\"2021-06-25T20:04:47Z\",\"createdDateTime\":\"2021-06-25T20:04:38Z\",\"expirationDateTime\":\"2021-06-26T20:04:38Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:04:47.1287609Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:04:45.8358115Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "edb0a144-29f1-4a55-9a7b-e5d6b4f40b8e", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:04:49 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "123" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/6c38b1d8-6c1f-4211-8b66-467d617e2fd6", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"6c38b1d8-6c1f-4211-8b66-467d617e2fd6\",\"lastUpdateDateTime\":\"2021-06-25T20:04:47Z\",\"createdDateTime\":\"2021-06-25T20:04:38Z\",\"expirationDateTime\":\"2021-06-26T20:04:38Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:04:47.1287609Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:04:45.8358115Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "7dc7f0b5-a5f9-4d0e-8d14-090d0c1eba50", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:04:51 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "114" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/6c38b1d8-6c1f-4211-8b66-467d617e2fd6", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"acb13988-8c5e-4919-af79-647f616a9e10\",\"lastUpdateDateTime\":\"2021-05-12T19:21:58Z\",\"createdDateTime\":\"2021-05-12T19:21:53Z\",\"expirationDateTime\":\"2021-05-13T19:21:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:21:58Z\"},\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:58.7240179Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"6c38b1d8-6c1f-4211-8b66-467d617e2fd6\",\"lastUpdateDateTime\":\"2021-06-25T20:04:47Z\",\"createdDateTime\":\"2021-06-25T20:04:38Z\",\"expirationDateTime\":\"2021-06-26T20:04:38Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:04:47.1287609Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:04:45.8358115Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "628aac9d-df3e-4489-8533-479568d9ccce", + "apim-request-id": "721342fd-22b8-4633-ba31-bd16949b6373", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:21:59 GMT", + "date": "Fri, 25 Jun 2021 20:04:53 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": "161" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/acb13988-8c5e-4919-af79-647f616a9e10", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/6c38b1d8-6c1f-4211-8b66-467d617e2fd6", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"acb13988-8c5e-4919-af79-647f616a9e10\",\"lastUpdateDateTime\":\"2021-05-12T19:22:00Z\",\"createdDateTime\":\"2021-05-12T19:21:53Z\",\"expirationDateTime\":\"2021-05-13T19:21:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:00Z\"},\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:00.2032323Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.89}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.87}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:58.7240179Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"6c38b1d8-6c1f-4211-8b66-467d617e2fd6\",\"lastUpdateDateTime\":\"2021-06-25T20:04:47Z\",\"createdDateTime\":\"2021-06-25T20:04:38Z\",\"expirationDateTime\":\"2021-06-26T20:04:38Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:04:47.1287609Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:04:45.8358115Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "b1f8126e-21d8-4e8c-ab96-6d2f175f009d", + "apim-request-id": "1b0add17-c8ab-429b-aacc-3eb29b8b0ecc", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:01 GMT", + "date": "Fri, 25 Jun 2021 20:04:56 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": "115" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/acb13988-8c5e-4919-af79-647f616a9e10", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/6c38b1d8-6c1f-4211-8b66-467d617e2fd6", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"acb13988-8c5e-4919-af79-647f616a9e10\",\"lastUpdateDateTime\":\"2021-05-12T19:22:00Z\",\"createdDateTime\":\"2021-05-12T19:21:53Z\",\"expirationDateTime\":\"2021-05-13T19:21:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:00Z\"},\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:00.2032323Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.89}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.87}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:58.7240179Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"6c38b1d8-6c1f-4211-8b66-467d617e2fd6\",\"lastUpdateDateTime\":\"2021-06-25T20:04:47Z\",\"createdDateTime\":\"2021-06-25T20:04:38Z\",\"expirationDateTime\":\"2021-06-26T20:04:38Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:04:47.1287609Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:04:45.8358115Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "2364b3cf-25bb-48ac-b26d-e4f49ab7b5cc", + "apim-request-id": "f8f61d11-be6c-406d-83b6-a009efe2994b", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:03 GMT", + "date": "Fri, 25 Jun 2021 20:04:58 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": "125" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/acb13988-8c5e-4919-af79-647f616a9e10", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/6c38b1d8-6c1f-4211-8b66-467d617e2fd6", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"acb13988-8c5e-4919-af79-647f616a9e10\",\"lastUpdateDateTime\":\"2021-05-12T19:22:05Z\",\"createdDateTime\":\"2021-05-12T19:21:53Z\",\"expirationDateTime\":\"2021-05-13T19:21:53Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:05Z\"},\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:00.2032323Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.89}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.87}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:05.7602372Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:58.7240179Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"6c38b1d8-6c1f-4211-8b66-467d617e2fd6\",\"lastUpdateDateTime\":\"2021-06-25T20:05:00Z\",\"createdDateTime\":\"2021-06-25T20:04:38Z\",\"expirationDateTime\":\"2021-06-26T20:04:38Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:00.1109326Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:04:47.1287609Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:04:45.8358115Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "dcc54014-d74e-45cd-8c13-532ba417a155", + "apim-request-id": "736e26a8-03c5-4dec-b224-88641b5191e8", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:06 GMT", + "date": "Fri, 25 Jun 2021 20:05:00 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "137" + "x-envoy-upstream-service-time": "272" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/analyze/jobs/acb13988-8c5e-4919-af79-647f616a9e10", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/6c38b1d8-6c1f-4211-8b66-467d617e2fd6", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"acb13988-8c5e-4919-af79-647f616a9e10\",\"lastUpdateDateTime\":\"2021-05-12T19:22:05Z\",\"createdDateTime\":\"2021-05-12T19:21:53Z\",\"expirationDateTime\":\"2021-05-13T19:21:53Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"details\":{\"name\":\"NA\",\"lastUpdateDateTime\":\"2021-05-12T19:22:05Z\"},\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:00.2032323Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.89}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.87}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:22:05.7602372Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-05-12T19:21:58.7240179Z\",\"name\":\"NA\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}}]}}", + "response": "{\"jobId\":\"6c38b1d8-6c1f-4211-8b66-467d617e2fd6\",\"lastUpdateDateTime\":\"2021-06-25T20:05:00Z\",\"createdDateTime\":\"2021-06-25T20:04:38Z\",\"expirationDateTime\":\"2021-06-26T20:04:38Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:05:00.1109326Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:04:47.1287609Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:04:45.8358115Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", "responseHeaders": { - "apim-request-id": "c402d287-8808-45cd-a7b1-09e708d1d763", + "apim-request-id": "6759e701-2eb2-4896-b5f7-23105859a15e", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:22:06 GMT", + "date": "Fri, 25 Jun 2021 20:05:00 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "159" + "x-envoy-upstream-service-time": "214" } } ], @@ -217,5 +293,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "1175a77f9e1f87c2624b2001137c7dbf" + "hash": "f9c18b0e6c6100b2a2b49820e7d212e4" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_all_documents_have_errors.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_all_documents_have_errors.json new file mode 100644 index 000000000000..1c4f14828c85 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_all_documents_have_errors.json @@ -0,0 +1,147 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1331", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:41 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11829.9 - SCUS ProdSlices", + "x-ms-request-id": "8e39ec98-09f7-43aa-b65f-9f3770457700" + } + }, + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"\"},{\"id\":\"2\",\"text\":\"I did not like the hotel we stayed at.\",\"language\":\"english\"},{\"id\":\"3\",\"text\":\"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "66ba78f2-4538-4939-9026-ab8423fbf961", + "date": "Fri, 25 Jun 2021 20:12:42 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/c8bfcc67-d387-4d7a-8de1-f68144bcbbfc", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "172" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/c8bfcc67-d387-4d7a-8de1-f68144bcbbfc", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"c8bfcc67-d387-4d7a-8de1-f68144bcbbfc\",\"lastUpdateDateTime\":\"2021-06-25T20:12:42Z\",\"createdDateTime\":\"2021-06-25T20:12:42Z\",\"expirationDateTime\":\"2021-06-26T20:12:42Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "907b63f9-1674-4119-9faa-1db02c345f30", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:42 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/c8bfcc67-d387-4d7a-8de1-f68144bcbbfc", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"c8bfcc67-d387-4d7a-8de1-f68144bcbbfc\",\"lastUpdateDateTime\":\"2021-06-25T20:12:42Z\",\"createdDateTime\":\"2021-06-25T20:12:42Z\",\"expirationDateTime\":\"2021-06-26T20:12:42Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "53481a80-1267-44ef-afa8-0e07d3161e37", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:42 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/c8bfcc67-d387-4d7a-8de1-f68144bcbbfc", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"c8bfcc67-d387-4d7a-8de1-f68144bcbbfc\",\"lastUpdateDateTime\":\"2021-06-25T20:12:42Z\",\"createdDateTime\":\"2021-06-25T20:12:42Z\",\"expirationDateTime\":\"2021-06-26T20:12:42Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "46a78a7a-3ada-4e79-b2e7-11f68a562a1c", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:44 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "13" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/c8bfcc67-d387-4d7a-8de1-f68144bcbbfc", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"c8bfcc67-d387-4d7a-8de1-f68144bcbbfc\",\"lastUpdateDateTime\":\"2021-06-25T20:12:45Z\",\"createdDateTime\":\"2021-06-25T20:12:42Z\",\"expirationDateTime\":\"2021-06-26T20:12:42Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"A document within the request was too large to be processed. Limit document size to: 5120 text elements. For additional details on the data limitations see https://aka.ms/text-analytics-data-limits\"}}}],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "5b04f8d2-c3ff-4477-bf3c-e15ca0f5566d", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:46 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "51" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/c8bfcc67-d387-4d7a-8de1-f68144bcbbfc", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"c8bfcc67-d387-4d7a-8de1-f68144bcbbfc\",\"lastUpdateDateTime\":\"2021-06-25T20:12:45Z\",\"createdDateTime\":\"2021-06-25T20:12:42Z\",\"expirationDateTime\":\"2021-06-26T20:12:42Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"A document within the request was too large to be processed. Limit document size to: 5120 text elements. For additional details on the data limitations see https://aka.ms/text-analytics-data-limits\"}}}],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "2afb6e5f-b793-4672-a260-31519331c1a4", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:46 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "79" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "01881f729b552f93505ee1dc6d622559" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_all_inputs_with_errors.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_all_inputs_with_errors.json new file mode 100644 index 000000000000..937ef5b54af7 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_all_inputs_with_errors.json @@ -0,0 +1,128 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1331", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:25 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11829.9 - WUS2 ProdSlices", + "x-ms-request-id": "9c2a0045-784c-4338-a06a-1020e2ee6100" + } + }, + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Patient does not suffer from high blood pressure.\",\"language\":\"english\"},{\"id\":\"3\",\"text\":\"\",\"language\":\"en\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "aad279ba-97b7-48a8-b270-8dace0704513", + "date": "Fri, 25 Jun 2021 20:11:26 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/4dce5b7b-d46c-41c7-9c55-a3b081bb823a", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "252" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/4dce5b7b-d46c-41c7-9c55-a3b081bb823a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4dce5b7b-d46c-41c7-9c55-a3b081bb823a\",\"lastUpdateDateTime\":\"2021-06-25T20:11:26Z\",\"createdDateTime\":\"2021-06-25T20:11:26Z\",\"expirationDateTime\":\"2021-06-26T20:11:26Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "a815e01f-7e09-45f0-986e-4e39ddd674aa", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:26 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/4dce5b7b-d46c-41c7-9c55-a3b081bb823a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4dce5b7b-d46c-41c7-9c55-a3b081bb823a\",\"lastUpdateDateTime\":\"2021-06-25T20:11:26Z\",\"createdDateTime\":\"2021-06-25T20:11:26Z\",\"expirationDateTime\":\"2021-06-26T20:11:26Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "22c47569-95ac-4216-ac66-62e4a620521e", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:26 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/4dce5b7b-d46c-41c7-9c55-a3b081bb823a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4dce5b7b-d46c-41c7-9c55-a3b081bb823a\",\"lastUpdateDateTime\":\"2021-06-25T20:11:27Z\",\"createdDateTime\":\"2021-06-25T20:11:26Z\",\"expirationDateTime\":\"2021-06-26T20:11:26Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "f10664c2-7a04-4377-a379-5b4482cd8d9f", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:28 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "78" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/4dce5b7b-d46c-41c7-9c55-a3b081bb823a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4dce5b7b-d46c-41c7-9c55-a3b081bb823a\",\"lastUpdateDateTime\":\"2021-06-25T20:11:27Z\",\"createdDateTime\":\"2021-06-25T20:11:26Z\",\"expirationDateTime\":\"2021-06-26T20:11:26Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "baba50cf-9632-4f75-9015-aaa7155dc417", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:28 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "77" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "422fa2aae090de9b8ef49ad07a6940c1" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_cancelled.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_cancelled.json new file mode 100644 index 000000000000..7b48dfe2ee69 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_cancelled.json @@ -0,0 +1,88 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1331", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:46 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11829.9 - SCUS ProdSlices", + "x-ms-request-id": "8e39ec98-09f7-43aa-b65f-9f378c467700" + } + }, + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"Patient does not suffer from high blood pressure.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Prescribed 100mg ibuprofen, taken twice daily.\",\"language\":\"en\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "513c09b7-7200-4013-a701-8046a982ae72", + "date": "Fri, 25 Jun 2021 20:12:47 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/72b19f4c-f75f-4bde-895d-f8bd36710c21", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "182" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/72b19f4c-f75f-4bde-895d-f8bd36710c21", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"72b19f4c-f75f-4bde-895d-f8bd36710c21\",\"lastUpdateDateTime\":\"2021-06-25T20:12:47Z\",\"createdDateTime\":\"2021-06-25T20:12:47Z\",\"expirationDateTime\":\"2021-06-26T20:12:47Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "843bae46-d839-4d13-ad9d-31106f8799dd", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:47 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "DELETE", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/72b19f4c-f75f-4bde-895d-f8bd36710c21", + "query": {}, + "requestBody": null, + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "5410f02d-179f-4392-bb4c-1bd236507b87", + "date": "Fri, 25 Jun 2021 20:12:47 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/72b19f4c-f75f-4bde-895d-f8bd36710c21", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "17" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "01dfa9d01856d50a1807094a8dc25695" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_document_warnings.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_document_warnings.json new file mode 100644 index 000000000000..92dae4c63772 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_document_warnings.json @@ -0,0 +1,128 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1331", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:30 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11829.9 - WUS2 ProdSlices", + "x-ms-request-id": "8deef922-c309-4e27-9a10-4eef54025f00" + } + }, + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"This won't actually create a warning :'(\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "c112cf6b-2607-4c25-bd34-a22564c49f22", + "date": "Fri, 25 Jun 2021 20:11:31 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/00858e97-2dc0-4019-a25e-47501a415184", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "249" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/00858e97-2dc0-4019-a25e-47501a415184", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"00858e97-2dc0-4019-a25e-47501a415184\",\"lastUpdateDateTime\":\"2021-06-25T20:11:32Z\",\"createdDateTime\":\"2021-06-25T20:11:31Z\",\"expirationDateTime\":\"2021-06-26T20:11:31Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "024cd9a2-0094-4719-a515-5468a7ea5762", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:31 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "24" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/00858e97-2dc0-4019-a25e-47501a415184", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"00858e97-2dc0-4019-a25e-47501a415184\",\"lastUpdateDateTime\":\"2021-06-25T20:11:32Z\",\"createdDateTime\":\"2021-06-25T20:11:31Z\",\"expirationDateTime\":\"2021-06-26T20:11:31Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "5aed14c3-8e46-44d1-af70-123eabd7d65c", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:32 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/00858e97-2dc0-4019-a25e-47501a415184", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"00858e97-2dc0-4019-a25e-47501a415184\",\"lastUpdateDateTime\":\"2021-06-25T20:11:32Z\",\"createdDateTime\":\"2021-06-25T20:11:31Z\",\"expirationDateTime\":\"2021-06-26T20:11:31Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "988c14d0-35d0-49ad-96f3-00f06a733847", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:34 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "55" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/00858e97-2dc0-4019-a25e-47501a415184", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"00858e97-2dc0-4019-a25e-47501a415184\",\"lastUpdateDateTime\":\"2021-06-25T20:11:32Z\",\"createdDateTime\":\"2021-06-25T20:11:31Z\",\"expirationDateTime\":\"2021-06-26T20:11:31Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "32349545-7844-448f-b18b-a761b426b366", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:34 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "51" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "87bec8b74fdd02cc761c1d3668adde6a" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.json similarity index 58% rename from sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_emoji.json rename to sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.json index 7a35742690fa..985b3e26b9f7 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_emoji.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:18 GMT", + "date": "Fri, 25 Jun 2021 20:12:46 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,28 +20,27 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - EUS ProdSlices", - "x-ms-request-id": "d00521bc-1a92-477a-94fd-3790e13e4f00" + "x-ms-ests-server": "2.1.11829.9 - NCUS ProdSlices", + "x-ms-request-id": "e203d3d3-71f9-4148-a9f4-cf16474a6100" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", "query": { - "stringIndexType": "TextElements_v8" + "stringIndexType": "Utf16CodeUnit" }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"👩 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":7,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"hello world\"},{\"id\":\"1\",\"text\":\"I did not like the hotel we stayed at.\"}]}", + "status": 400, + "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Request contains duplicated Ids. Make sure each document has a unique Id.\"}}}", "responseHeaders": { - "apim-request-id": "145c345e-bc35-4e5a-b9bc-4dc800c07a86", + "apim-request-id": "8683cce4-681d-4a70-bbd4-d10d51e9d6ae", "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:18:18 GMT", + "date": "Fri, 25 Jun 2021 20:12:46 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "66" + "x-envoy-upstream-service-time": "4" } } ], @@ -49,5 +48,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "c8956780117524513abded060ea9b6d0" + "hash": "5a1a51d510e78fbb9637596af3eed13e" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_entity_assertions.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_entity_assertions.json new file mode 100644 index 000000000000..bb547634a7e3 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_entity_assertions.json @@ -0,0 +1,375 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1331", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:10:49 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11829.9 - NCUS ProdSlices", + "x-ms-request-id": "ce29a862-fba0-489c-90cf-00cced2f5f00" + } + }, + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"Baby not likely to have Meningitis. in case of fever in the mother, consider Penicillin for the baby too.\",\"language\":\"en\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "fde099d9-1170-4969-b4c4-d895438b9632", + "date": "Fri, 25 Jun 2021 20:10:49 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/e4b9f519-d7e5-48ef-b2cf-420a781cafd7", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "171" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/e4b9f519-d7e5-48ef-b2cf-420a781cafd7", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e4b9f519-d7e5-48ef-b2cf-420a781cafd7\",\"lastUpdateDateTime\":\"2021-06-25T20:10:50Z\",\"createdDateTime\":\"2021-06-25T20:10:50Z\",\"expirationDateTime\":\"2021-06-26T20:10:50Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "63d942fe-b54d-4c96-97cf-a39aeef24375", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:10:49 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/e4b9f519-d7e5-48ef-b2cf-420a781cafd7", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e4b9f519-d7e5-48ef-b2cf-420a781cafd7\",\"lastUpdateDateTime\":\"2021-06-25T20:10:50Z\",\"createdDateTime\":\"2021-06-25T20:10:50Z\",\"expirationDateTime\":\"2021-06-26T20:10:50Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "0ace8ed1-7a45-47a3-861b-dd4aa9c57a72", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:10:50 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "11" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/e4b9f519-d7e5-48ef-b2cf-420a781cafd7", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e4b9f519-d7e5-48ef-b2cf-420a781cafd7\",\"lastUpdateDateTime\":\"2021-06-25T20:10:50Z\",\"createdDateTime\":\"2021-06-25T20:10:50Z\",\"expirationDateTime\":\"2021-06-26T20:10:50Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "0af264f7-081c-49cc-9909-ed53fe46b7aa", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:10:52 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/e4b9f519-d7e5-48ef-b2cf-420a781cafd7", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e4b9f519-d7e5-48ef-b2cf-420a781cafd7\",\"lastUpdateDateTime\":\"2021-06-25T20:10:50Z\",\"createdDateTime\":\"2021-06-25T20:10:50Z\",\"expirationDateTime\":\"2021-06-26T20:10:50Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "d9b904de-92af-438b-a8e1-ec3b13658aaf", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:10:54 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/e4b9f519-d7e5-48ef-b2cf-420a781cafd7", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e4b9f519-d7e5-48ef-b2cf-420a781cafd7\",\"lastUpdateDateTime\":\"2021-06-25T20:10:50Z\",\"createdDateTime\":\"2021-06-25T20:10:50Z\",\"expirationDateTime\":\"2021-06-26T20:10:50Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "716fc521-5744-4b56-b127-4689bcd4a1cc", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:10:56 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/e4b9f519-d7e5-48ef-b2cf-420a781cafd7", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e4b9f519-d7e5-48ef-b2cf-420a781cafd7\",\"lastUpdateDateTime\":\"2021-06-25T20:10:50Z\",\"createdDateTime\":\"2021-06-25T20:10:50Z\",\"expirationDateTime\":\"2021-06-26T20:10:50Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "76b6a95e-2540-4153-a775-e7c35a38df75", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:10:58 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/e4b9f519-d7e5-48ef-b2cf-420a781cafd7", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e4b9f519-d7e5-48ef-b2cf-420a781cafd7\",\"lastUpdateDateTime\":\"2021-06-25T20:10:59Z\",\"createdDateTime\":\"2021-06-25T20:10:50Z\",\"expirationDateTime\":\"2021-06-26T20:10:50Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "be54c614-b8b8-48af-a883-fb09d9927253", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:00 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/e4b9f519-d7e5-48ef-b2cf-420a781cafd7", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e4b9f519-d7e5-48ef-b2cf-420a781cafd7\",\"lastUpdateDateTime\":\"2021-06-25T20:10:59Z\",\"createdDateTime\":\"2021-06-25T20:10:50Z\",\"expirationDateTime\":\"2021-06-26T20:10:50Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "fa52ef91-b026-4d87-8d7c-3c8adf3dabfa", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:02 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/e4b9f519-d7e5-48ef-b2cf-420a781cafd7", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e4b9f519-d7e5-48ef-b2cf-420a781cafd7\",\"lastUpdateDateTime\":\"2021-06-25T20:10:59Z\",\"createdDateTime\":\"2021-06-25T20:10:50Z\",\"expirationDateTime\":\"2021-06-26T20:10:50Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "01791b27-ebd0-4b87-a8b0-636a7644ed93", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:04 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/e4b9f519-d7e5-48ef-b2cf-420a781cafd7", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e4b9f519-d7e5-48ef-b2cf-420a781cafd7\",\"lastUpdateDateTime\":\"2021-06-25T20:10:59Z\",\"createdDateTime\":\"2021-06-25T20:10:50Z\",\"expirationDateTime\":\"2021-06-26T20:10:50Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "9685334d-fc20-4156-b14e-d3b5856dc7cf", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:06 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/e4b9f519-d7e5-48ef-b2cf-420a781cafd7", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e4b9f519-d7e5-48ef-b2cf-420a781cafd7\",\"lastUpdateDateTime\":\"2021-06-25T20:10:59Z\",\"createdDateTime\":\"2021-06-25T20:10:50Z\",\"expirationDateTime\":\"2021-06-26T20:10:50Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "65d36053-3862-41fa-98ac-c3ac003e6eb7", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:08 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/e4b9f519-d7e5-48ef-b2cf-420a781cafd7", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e4b9f519-d7e5-48ef-b2cf-420a781cafd7\",\"lastUpdateDateTime\":\"2021-06-25T20:10:59Z\",\"createdDateTime\":\"2021-06-25T20:10:50Z\",\"expirationDateTime\":\"2021-06-26T20:10:50Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "4ad015ba-5f9e-4c38-9a5d-ec2045334767", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:10 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/e4b9f519-d7e5-48ef-b2cf-420a781cafd7", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e4b9f519-d7e5-48ef-b2cf-420a781cafd7\",\"lastUpdateDateTime\":\"2021-06-25T20:10:59Z\",\"createdDateTime\":\"2021-06-25T20:10:50Z\",\"expirationDateTime\":\"2021-06-26T20:10:50Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "2b53c832-f63e-4ce2-af1d-74c5cc6af232", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:12 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/e4b9f519-d7e5-48ef-b2cf-420a781cafd7", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e4b9f519-d7e5-48ef-b2cf-420a781cafd7\",\"lastUpdateDateTime\":\"2021-06-25T20:10:59Z\",\"createdDateTime\":\"2021-06-25T20:10:50Z\",\"expirationDateTime\":\"2021-06-26T20:10:50Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "f80af860-5e92-4937-a83d-18f58219baaa", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:14 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "5" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/e4b9f519-d7e5-48ef-b2cf-420a781cafd7", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e4b9f519-d7e5-48ef-b2cf-420a781cafd7\",\"lastUpdateDateTime\":\"2021-06-25T20:10:59Z\",\"createdDateTime\":\"2021-06-25T20:10:50Z\",\"expirationDateTime\":\"2021-06-26T20:10:50Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "9c97cf88-24d8-4cda-aa2a-a8f2f92e6788", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:16 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/e4b9f519-d7e5-48ef-b2cf-420a781cafd7", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e4b9f519-d7e5-48ef-b2cf-420a781cafd7\",\"lastUpdateDateTime\":\"2021-06-25T20:11:17Z\",\"createdDateTime\":\"2021-06-25T20:10:50Z\",\"expirationDateTime\":\"2021-06-26T20:10:50Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":0,\"length\":4,\"text\":\"Baby\",\"category\":\"Age\",\"confidenceScore\":0.94,\"name\":\"Infant\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0021270\"},{\"dataSource\":\"AOD\",\"id\":\"0000005273\"},{\"dataSource\":\"CCPSS\",\"id\":\"0030805\"},{\"dataSource\":\"CHV\",\"id\":\"0000006675\"},{\"dataSource\":\"DXP\",\"id\":\"U002089\"},{\"dataSource\":\"LCH\",\"id\":\"U002421\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85066022\"},{\"dataSource\":\"LNC\",\"id\":\"LA19747-7\"},{\"dataSource\":\"MDR\",\"id\":\"10021731\"},{\"dataSource\":\"MSH\",\"id\":\"D007223\"},{\"dataSource\":\"NCI\",\"id\":\"C27956\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"C27956\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C27956\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"133931009\"}]},{\"offset\":24,\"length\":10,\"text\":\"Meningitis\",\"category\":\"Diagnosis\",\"confidenceScore\":1.0,\"assertion\":{\"certainty\":\"negativePossible\"},\"name\":\"Meningitis\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0025289\"},{\"dataSource\":\"AOD\",\"id\":\"0000006185\"},{\"dataSource\":\"BI\",\"id\":\"BI00546\"},{\"dataSource\":\"CCPSS\",\"id\":\"1018016\"},{\"dataSource\":\"CCSR_10\",\"id\":\"NVS001\"},{\"dataSource\":\"CHV\",\"id\":\"0000007932\"},{\"dataSource\":\"COSTAR\",\"id\":\"478\"},{\"dataSource\":\"CSP\",\"id\":\"2042-5301\"},{\"dataSource\":\"CST\",\"id\":\"MENINGITIS\"},{\"dataSource\":\"DXP\",\"id\":\"U002543\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0001287\"},{\"dataSource\":\"ICD10\",\"id\":\"G03.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"G03.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"G03.9\"},{\"dataSource\":\"ICD9CM\",\"id\":\"322.9\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU048434\"},{\"dataSource\":\"ICPC2P\",\"id\":\"N71002\"},{\"dataSource\":\"LCH\",\"id\":\"U002901\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85083562\"},{\"dataSource\":\"LNC\",\"id\":\"LP20756-0\"},{\"dataSource\":\"MDR\",\"id\":\"10027199\"},{\"dataSource\":\"MEDCIN\",\"id\":\"31192\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"324\"},{\"dataSource\":\"MSH\",\"id\":\"D008581\"},{\"dataSource\":\"NANDA-I\",\"id\":\"02899\"},{\"dataSource\":\"NCI\",\"id\":\"C26828\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C26828\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E11458\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"2389\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000471780\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C26828\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU005994\"},{\"dataSource\":\"PSY\",\"id\":\"30660\"},{\"dataSource\":\"RCD\",\"id\":\"X000H\"},{\"dataSource\":\"SNM\",\"id\":\"M-40000\"},{\"dataSource\":\"SNMI\",\"id\":\"DA-10010\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"7180009\"},{\"dataSource\":\"WHO\",\"id\":\"0955\"}]},{\"offset\":47,\"length\":5,\"text\":\"fever\",\"category\":\"SymptomOrSign\",\"confidenceScore\":1.0,\"name\":\"Fever\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0015967\"},{\"dataSource\":\"AIR\",\"id\":\"FEVER\"},{\"dataSource\":\"AOD\",\"id\":\"0000004396\"},{\"dataSource\":\"BI\",\"id\":\"BI00751\"},{\"dataSource\":\"CCC\",\"id\":\"K25.2\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017166\"},{\"dataSource\":\"CCSR_10\",\"id\":\"SYM002\"},{\"dataSource\":\"CHV\",\"id\":\"0000005010\"},{\"dataSource\":\"COSTAR\",\"id\":\"300\"},{\"dataSource\":\"CPM\",\"id\":\"65287\"},{\"dataSource\":\"CSP\",\"id\":\"2871-4310\"},{\"dataSource\":\"CST\",\"id\":\"FEVER\"},{\"dataSource\":\"DXP\",\"id\":\"U001483\"},{\"dataSource\":\"GO\",\"id\":\"GO:0001660\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0001945\"},{\"dataSource\":\"ICD10\",\"id\":\"R50.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"R50.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"R50.9\"},{\"dataSource\":\"ICD9CM\",\"id\":\"780.60\"},{\"dataSource\":\"ICNP\",\"id\":\"10041539\"},{\"dataSource\":\"ICPC\",\"id\":\"A03\"},{\"dataSource\":\"ICPC2EENG\",\"id\":\"A03\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU041751\"},{\"dataSource\":\"ICPC2P\",\"id\":\"A03002\"},{\"dataSource\":\"LCH\",\"id\":\"U001776\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85047994\"},{\"dataSource\":\"LNC\",\"id\":\"MTHU013518\"},{\"dataSource\":\"MDR\",\"id\":\"10005911\"},{\"dataSource\":\"MEDCIN\",\"id\":\"6005\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"511\"},{\"dataSource\":\"MSH\",\"id\":\"D005334\"},{\"dataSource\":\"MTHICD9\",\"id\":\"780.60\"},{\"dataSource\":\"NANDA-I\",\"id\":\"01128\"},{\"dataSource\":\"NCI\",\"id\":\"C3038\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E11102\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1858\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000450108\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3038\"},{\"dataSource\":\"NOC\",\"id\":\"070307\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU005439\"},{\"dataSource\":\"OMS\",\"id\":\"50.03\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11020.02\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000775882\"},{\"dataSource\":\"PSY\",\"id\":\"23840\"},{\"dataSource\":\"QMR\",\"id\":\"Q0200115\"},{\"dataSource\":\"RCD\",\"id\":\"X76EI\"},{\"dataSource\":\"SNM\",\"id\":\"F-03003\"},{\"dataSource\":\"SNMI\",\"id\":\"F-03003\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"386661006\"},{\"dataSource\":\"WHO\",\"id\":\"0725\"}]},{\"offset\":60,\"length\":6,\"text\":\"mother\",\"category\":\"FamilyRelation\",\"confidenceScore\":0.99,\"name\":\"Mother (person)\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0026591\"},{\"dataSource\":\"AOD\",\"id\":\"0000027173\"},{\"dataSource\":\"CCPSS\",\"id\":\"U000286\"},{\"dataSource\":\"CHV\",\"id\":\"0000008266\"},{\"dataSource\":\"CSP\",\"id\":\"1124-5492\"},{\"dataSource\":\"HL7V3.0\",\"id\":\"MTH\"},{\"dataSource\":\"LCH\",\"id\":\"U003028\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85087526\"},{\"dataSource\":\"LNC\",\"id\":\"LA10417-6\"},{\"dataSource\":\"MSH\",\"id\":\"D009035\"},{\"dataSource\":\"NCI\",\"id\":\"C25189\"},{\"dataSource\":\"NCI_CDISC\",\"id\":\"C25189\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C25189\"},{\"dataSource\":\"PSY\",\"id\":\"32140\"},{\"dataSource\":\"RCD\",\"id\":\"X78ym\"},{\"dataSource\":\"SNMI\",\"id\":\"S-10120\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"72705000\"}]},{\"offset\":77,\"length\":10,\"text\":\"Penicillin\",\"category\":\"MedicationName\",\"confidenceScore\":0.9,\"assertion\":{\"certainty\":\"neutralPossible\"},\"name\":\"penicillins\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0030842\"},{\"dataSource\":\"AOD\",\"id\":\"0000019206\"},{\"dataSource\":\"ATC\",\"id\":\"J01C\"},{\"dataSource\":\"CCPSS\",\"id\":\"0014106\"},{\"dataSource\":\"CHV\",\"id\":\"0000009423\"},{\"dataSource\":\"CSP\",\"id\":\"0199-8025\"},{\"dataSource\":\"GS\",\"id\":\"4011\"},{\"dataSource\":\"LCH\",\"id\":\"U003521\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85099402\"},{\"dataSource\":\"LNC\",\"id\":\"LP14319-5\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40319\"},{\"dataSource\":\"MMSL\",\"id\":\"d00116\"},{\"dataSource\":\"MSH\",\"id\":\"D010406\"},{\"dataSource\":\"NCI\",\"id\":\"C1500\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0402815\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000045296\"},{\"dataSource\":\"NDDF\",\"id\":\"016121\"},{\"dataSource\":\"PSY\",\"id\":\"37190\"},{\"dataSource\":\"RCD\",\"id\":\"x009C\"},{\"dataSource\":\"SNM\",\"id\":\"E-7260\"},{\"dataSource\":\"SNMI\",\"id\":\"C-54000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"764146007\"},{\"dataSource\":\"VANDF\",\"id\":\"4019880\"}]},{\"offset\":96,\"length\":4,\"text\":\"baby\",\"category\":\"FamilyRelation\",\"confidenceScore\":1.0,\"name\":\"Infant\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0021270\"},{\"dataSource\":\"AOD\",\"id\":\"0000005273\"},{\"dataSource\":\"CCPSS\",\"id\":\"0030805\"},{\"dataSource\":\"CHV\",\"id\":\"0000006675\"},{\"dataSource\":\"DXP\",\"id\":\"U002089\"},{\"dataSource\":\"LCH\",\"id\":\"U002421\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85066022\"},{\"dataSource\":\"LNC\",\"id\":\"LA19747-7\"},{\"dataSource\":\"MDR\",\"id\":\"10021731\"},{\"dataSource\":\"MSH\",\"id\":\"D007223\"},{\"dataSource\":\"NCI\",\"id\":\"C27956\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"C27956\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C27956\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"133931009\"}]}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "3e0d998e-d8e4-429a-91ac-d726ffd8f79e", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:18 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "49" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/e4b9f519-d7e5-48ef-b2cf-420a781cafd7", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e4b9f519-d7e5-48ef-b2cf-420a781cafd7\",\"lastUpdateDateTime\":\"2021-06-25T20:11:17Z\",\"createdDateTime\":\"2021-06-25T20:10:50Z\",\"expirationDateTime\":\"2021-06-26T20:10:50Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":0,\"length\":4,\"text\":\"Baby\",\"category\":\"Age\",\"confidenceScore\":0.94,\"name\":\"Infant\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0021270\"},{\"dataSource\":\"AOD\",\"id\":\"0000005273\"},{\"dataSource\":\"CCPSS\",\"id\":\"0030805\"},{\"dataSource\":\"CHV\",\"id\":\"0000006675\"},{\"dataSource\":\"DXP\",\"id\":\"U002089\"},{\"dataSource\":\"LCH\",\"id\":\"U002421\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85066022\"},{\"dataSource\":\"LNC\",\"id\":\"LA19747-7\"},{\"dataSource\":\"MDR\",\"id\":\"10021731\"},{\"dataSource\":\"MSH\",\"id\":\"D007223\"},{\"dataSource\":\"NCI\",\"id\":\"C27956\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"C27956\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C27956\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"133931009\"}]},{\"offset\":24,\"length\":10,\"text\":\"Meningitis\",\"category\":\"Diagnosis\",\"confidenceScore\":1.0,\"assertion\":{\"certainty\":\"negativePossible\"},\"name\":\"Meningitis\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0025289\"},{\"dataSource\":\"AOD\",\"id\":\"0000006185\"},{\"dataSource\":\"BI\",\"id\":\"BI00546\"},{\"dataSource\":\"CCPSS\",\"id\":\"1018016\"},{\"dataSource\":\"CCSR_10\",\"id\":\"NVS001\"},{\"dataSource\":\"CHV\",\"id\":\"0000007932\"},{\"dataSource\":\"COSTAR\",\"id\":\"478\"},{\"dataSource\":\"CSP\",\"id\":\"2042-5301\"},{\"dataSource\":\"CST\",\"id\":\"MENINGITIS\"},{\"dataSource\":\"DXP\",\"id\":\"U002543\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0001287\"},{\"dataSource\":\"ICD10\",\"id\":\"G03.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"G03.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"G03.9\"},{\"dataSource\":\"ICD9CM\",\"id\":\"322.9\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU048434\"},{\"dataSource\":\"ICPC2P\",\"id\":\"N71002\"},{\"dataSource\":\"LCH\",\"id\":\"U002901\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85083562\"},{\"dataSource\":\"LNC\",\"id\":\"LP20756-0\"},{\"dataSource\":\"MDR\",\"id\":\"10027199\"},{\"dataSource\":\"MEDCIN\",\"id\":\"31192\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"324\"},{\"dataSource\":\"MSH\",\"id\":\"D008581\"},{\"dataSource\":\"NANDA-I\",\"id\":\"02899\"},{\"dataSource\":\"NCI\",\"id\":\"C26828\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C26828\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E11458\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"2389\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000471780\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C26828\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU005994\"},{\"dataSource\":\"PSY\",\"id\":\"30660\"},{\"dataSource\":\"RCD\",\"id\":\"X000H\"},{\"dataSource\":\"SNM\",\"id\":\"M-40000\"},{\"dataSource\":\"SNMI\",\"id\":\"DA-10010\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"7180009\"},{\"dataSource\":\"WHO\",\"id\":\"0955\"}]},{\"offset\":47,\"length\":5,\"text\":\"fever\",\"category\":\"SymptomOrSign\",\"confidenceScore\":1.0,\"name\":\"Fever\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0015967\"},{\"dataSource\":\"AIR\",\"id\":\"FEVER\"},{\"dataSource\":\"AOD\",\"id\":\"0000004396\"},{\"dataSource\":\"BI\",\"id\":\"BI00751\"},{\"dataSource\":\"CCC\",\"id\":\"K25.2\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017166\"},{\"dataSource\":\"CCSR_10\",\"id\":\"SYM002\"},{\"dataSource\":\"CHV\",\"id\":\"0000005010\"},{\"dataSource\":\"COSTAR\",\"id\":\"300\"},{\"dataSource\":\"CPM\",\"id\":\"65287\"},{\"dataSource\":\"CSP\",\"id\":\"2871-4310\"},{\"dataSource\":\"CST\",\"id\":\"FEVER\"},{\"dataSource\":\"DXP\",\"id\":\"U001483\"},{\"dataSource\":\"GO\",\"id\":\"GO:0001660\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0001945\"},{\"dataSource\":\"ICD10\",\"id\":\"R50.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"R50.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"R50.9\"},{\"dataSource\":\"ICD9CM\",\"id\":\"780.60\"},{\"dataSource\":\"ICNP\",\"id\":\"10041539\"},{\"dataSource\":\"ICPC\",\"id\":\"A03\"},{\"dataSource\":\"ICPC2EENG\",\"id\":\"A03\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU041751\"},{\"dataSource\":\"ICPC2P\",\"id\":\"A03002\"},{\"dataSource\":\"LCH\",\"id\":\"U001776\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85047994\"},{\"dataSource\":\"LNC\",\"id\":\"MTHU013518\"},{\"dataSource\":\"MDR\",\"id\":\"10005911\"},{\"dataSource\":\"MEDCIN\",\"id\":\"6005\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"511\"},{\"dataSource\":\"MSH\",\"id\":\"D005334\"},{\"dataSource\":\"MTHICD9\",\"id\":\"780.60\"},{\"dataSource\":\"NANDA-I\",\"id\":\"01128\"},{\"dataSource\":\"NCI\",\"id\":\"C3038\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E11102\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1858\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000450108\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3038\"},{\"dataSource\":\"NOC\",\"id\":\"070307\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU005439\"},{\"dataSource\":\"OMS\",\"id\":\"50.03\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11020.02\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000775882\"},{\"dataSource\":\"PSY\",\"id\":\"23840\"},{\"dataSource\":\"QMR\",\"id\":\"Q0200115\"},{\"dataSource\":\"RCD\",\"id\":\"X76EI\"},{\"dataSource\":\"SNM\",\"id\":\"F-03003\"},{\"dataSource\":\"SNMI\",\"id\":\"F-03003\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"386661006\"},{\"dataSource\":\"WHO\",\"id\":\"0725\"}]},{\"offset\":60,\"length\":6,\"text\":\"mother\",\"category\":\"FamilyRelation\",\"confidenceScore\":0.99,\"name\":\"Mother (person)\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0026591\"},{\"dataSource\":\"AOD\",\"id\":\"0000027173\"},{\"dataSource\":\"CCPSS\",\"id\":\"U000286\"},{\"dataSource\":\"CHV\",\"id\":\"0000008266\"},{\"dataSource\":\"CSP\",\"id\":\"1124-5492\"},{\"dataSource\":\"HL7V3.0\",\"id\":\"MTH\"},{\"dataSource\":\"LCH\",\"id\":\"U003028\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85087526\"},{\"dataSource\":\"LNC\",\"id\":\"LA10417-6\"},{\"dataSource\":\"MSH\",\"id\":\"D009035\"},{\"dataSource\":\"NCI\",\"id\":\"C25189\"},{\"dataSource\":\"NCI_CDISC\",\"id\":\"C25189\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C25189\"},{\"dataSource\":\"PSY\",\"id\":\"32140\"},{\"dataSource\":\"RCD\",\"id\":\"X78ym\"},{\"dataSource\":\"SNMI\",\"id\":\"S-10120\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"72705000\"}]},{\"offset\":77,\"length\":10,\"text\":\"Penicillin\",\"category\":\"MedicationName\",\"confidenceScore\":0.9,\"assertion\":{\"certainty\":\"neutralPossible\"},\"name\":\"penicillins\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0030842\"},{\"dataSource\":\"AOD\",\"id\":\"0000019206\"},{\"dataSource\":\"ATC\",\"id\":\"J01C\"},{\"dataSource\":\"CCPSS\",\"id\":\"0014106\"},{\"dataSource\":\"CHV\",\"id\":\"0000009423\"},{\"dataSource\":\"CSP\",\"id\":\"0199-8025\"},{\"dataSource\":\"GS\",\"id\":\"4011\"},{\"dataSource\":\"LCH\",\"id\":\"U003521\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85099402\"},{\"dataSource\":\"LNC\",\"id\":\"LP14319-5\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40319\"},{\"dataSource\":\"MMSL\",\"id\":\"d00116\"},{\"dataSource\":\"MSH\",\"id\":\"D010406\"},{\"dataSource\":\"NCI\",\"id\":\"C1500\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0402815\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000045296\"},{\"dataSource\":\"NDDF\",\"id\":\"016121\"},{\"dataSource\":\"PSY\",\"id\":\"37190\"},{\"dataSource\":\"RCD\",\"id\":\"x009C\"},{\"dataSource\":\"SNM\",\"id\":\"E-7260\"},{\"dataSource\":\"SNMI\",\"id\":\"C-54000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"764146007\"},{\"dataSource\":\"VANDF\",\"id\":\"4019880\"}]},{\"offset\":96,\"length\":4,\"text\":\"baby\",\"category\":\"FamilyRelation\",\"confidenceScore\":1.0,\"name\":\"Infant\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0021270\"},{\"dataSource\":\"AOD\",\"id\":\"0000005273\"},{\"dataSource\":\"CCPSS\",\"id\":\"0030805\"},{\"dataSource\":\"CHV\",\"id\":\"0000006675\"},{\"dataSource\":\"DXP\",\"id\":\"U002089\"},{\"dataSource\":\"LCH\",\"id\":\"U002421\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85066022\"},{\"dataSource\":\"LNC\",\"id\":\"LA19747-7\"},{\"dataSource\":\"MDR\",\"id\":\"10021731\"},{\"dataSource\":\"MSH\",\"id\":\"D007223\"},{\"dataSource\":\"NCI\",\"id\":\"C27956\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"C27956\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C27956\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"133931009\"}]}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "0922fb28-e1b2-4bc5-bf51-4a9fa3596bea", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:19 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "58" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "cc4d87871f3923d074a5e1b6cb77e07e" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.json new file mode 100644 index 000000000000..650e9047f9c7 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.json @@ -0,0 +1,128 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1331", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:58 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11829.9 - SCUS ProdSlices", + "x-ms-request-id": "b10314ef-1e76-4785-9505-f54469827100" + } + }, + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "UnicodeCodePoint" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 ibuprofen\",\"language\":\"en\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "33d69fe1-a539-4beb-8269-b8c9efc4266a", + "date": "Fri, 25 Jun 2021 20:12:58 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/d7c98265-5d70-4299-bc10-ccc181deaf5f", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "127" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/d7c98265-5d70-4299-bc10-ccc181deaf5f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"d7c98265-5d70-4299-bc10-ccc181deaf5f\",\"lastUpdateDateTime\":\"2021-06-25T20:12:59Z\",\"createdDateTime\":\"2021-06-25T20:12:59Z\",\"expirationDateTime\":\"2021-06-26T20:12:59Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "c545d912-aaab-4d22-94e1-ed05bd6b686a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:58 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/d7c98265-5d70-4299-bc10-ccc181deaf5f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"d7c98265-5d70-4299-bc10-ccc181deaf5f\",\"lastUpdateDateTime\":\"2021-06-25T20:12:59Z\",\"createdDateTime\":\"2021-06-25T20:12:59Z\",\"expirationDateTime\":\"2021-06-26T20:12:59Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "dd892fee-025e-48b7-a80f-b76044ade37b", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:58 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/d7c98265-5d70-4299-bc10-ccc181deaf5f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"d7c98265-5d70-4299-bc10-ccc181deaf5f\",\"lastUpdateDateTime\":\"2021-06-25T20:13:00Z\",\"createdDateTime\":\"2021-06-25T20:12:59Z\",\"expirationDateTime\":\"2021-06-26T20:12:59Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":12,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":0.99,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "b96b49f6-8cfc-4fa0-9c12-dd62e66322bb", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:13:00 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "53" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/d7c98265-5d70-4299-bc10-ccc181deaf5f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"d7c98265-5d70-4299-bc10-ccc181deaf5f\",\"lastUpdateDateTime\":\"2021-06-25T20:13:00Z\",\"createdDateTime\":\"2021-06-25T20:12:59Z\",\"expirationDateTime\":\"2021-06-26T20:12:59Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":12,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":0.99,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "cdb66d85-3570-4a4b-b02b-4c825afc3af9", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:13:00 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "51" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "3a4d4b61449c4b62316d886bdd39c2af" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.json new file mode 100644 index 000000000000..5eaa6ecb0131 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.json @@ -0,0 +1,128 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1331", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:55 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11829.9 - SCUS ProdSlices", + "x-ms-request-id": "4962380e-a85b-42c0-84ff-725ecf907600" + } + }, + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 ibuprofen\",\"language\":\"en\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "7f4ea90e-4369-4b32-b9e2-8c22c5ea55a8", + "date": "Fri, 25 Jun 2021 20:12:55 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/9fbf3654-9871-4c43-ac47-e53461518d93", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "165" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/9fbf3654-9871-4c43-ac47-e53461518d93", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"9fbf3654-9871-4c43-ac47-e53461518d93\",\"lastUpdateDateTime\":\"2021-06-25T20:12:56Z\",\"createdDateTime\":\"2021-06-25T20:12:56Z\",\"expirationDateTime\":\"2021-06-26T20:12:56Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "6a93e489-c436-472d-908c-5b7675ddb18f", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:55 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/9fbf3654-9871-4c43-ac47-e53461518d93", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"9fbf3654-9871-4c43-ac47-e53461518d93\",\"lastUpdateDateTime\":\"2021-06-25T20:12:56Z\",\"createdDateTime\":\"2021-06-25T20:12:56Z\",\"expirationDateTime\":\"2021-06-26T20:12:56Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "36c6e90d-6c97-475e-9cbe-890aae468058", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:55 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/9fbf3654-9871-4c43-ac47-e53461518d93", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"9fbf3654-9871-4c43-ac47-e53461518d93\",\"lastUpdateDateTime\":\"2021-06-25T20:12:57Z\",\"createdDateTime\":\"2021-06-25T20:12:56Z\",\"expirationDateTime\":\"2021-06-26T20:12:56Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":20,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":0.99,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "8974b9a4-fdb3-4f1c-a8a6-1cdf76e6b322", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:58 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "65" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/9fbf3654-9871-4c43-ac47-e53461518d93", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"9fbf3654-9871-4c43-ac47-e53461518d93\",\"lastUpdateDateTime\":\"2021-06-25T20:12:57Z\",\"createdDateTime\":\"2021-06-25T20:12:56Z\",\"expirationDateTime\":\"2021-06-26T20:12:56Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":20,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":0.99,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "6f42f8e7-ba50-4054-b37f-a5ea84822ff5", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:58 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "55" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "d47462d4e9b472ba12db5c090d1db876" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_input_documents.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_input_documents.json new file mode 100644 index 000000000000..f20ad9434830 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_input_documents.json @@ -0,0 +1,128 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1331", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:19 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11829.9 - SCUS ProdSlices", + "x-ms-request-id": "8e39ec98-09f7-43aa-b65f-9f37fc327700" + } + }, + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"Patient does not suffer from high blood pressure.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Prescribed 100mg ibuprofen, taken twice daily.\",\"language\":\"en\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "d980772c-182c-414d-a451-b9888b733cb0", + "date": "Fri, 25 Jun 2021 20:11:19 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/0c3a479b-cfa4-4bd5-aa4b-f4bba525d84d", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "248" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/0c3a479b-cfa4-4bd5-aa4b-f4bba525d84d", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"0c3a479b-cfa4-4bd5-aa4b-f4bba525d84d\",\"lastUpdateDateTime\":\"2021-06-25T20:11:20Z\",\"createdDateTime\":\"2021-06-25T20:11:20Z\",\"expirationDateTime\":\"2021-06-26T20:11:20Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "b370b80f-4975-4bf0-9a33-029879187d5b", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:19 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/0c3a479b-cfa4-4bd5-aa4b-f4bba525d84d", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"0c3a479b-cfa4-4bd5-aa4b-f4bba525d84d\",\"lastUpdateDateTime\":\"2021-06-25T20:11:20Z\",\"createdDateTime\":\"2021-06-25T20:11:20Z\",\"expirationDateTime\":\"2021-06-26T20:11:20Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "ea64ab8b-ef9a-41c6-a3ba-5d04dbf58a20", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:19 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "13" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/0c3a479b-cfa4-4bd5-aa4b-f4bba525d84d", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"0c3a479b-cfa4-4bd5-aa4b-f4bba525d84d\",\"lastUpdateDateTime\":\"2021-06-25T20:11:22Z\",\"createdDateTime\":\"2021-06-25T20:11:20Z\",\"expirationDateTime\":\"2021-06-26T20:11:20Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"offset\":29,\"length\":19,\"text\":\"high blood pressure\",\"category\":\"SymptomOrSign\",\"confidenceScore\":1.0,\"assertion\":{\"certainty\":\"negative\"},\"name\":\"Hypertensive disease\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020538\"},{\"dataSource\":\"AOD\",\"id\":\"0000023317\"},{\"dataSource\":\"BI\",\"id\":\"BI00001\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017493\"},{\"dataSource\":\"CCS\",\"id\":\"7.1\"},{\"dataSource\":\"CHV\",\"id\":\"0000015800\"},{\"dataSource\":\"COSTAR\",\"id\":\"397\"},{\"dataSource\":\"CSP\",\"id\":\"0571-5243\"},{\"dataSource\":\"CST\",\"id\":\"HYPERTENS\"},{\"dataSource\":\"DXP\",\"id\":\"U002034\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0000822\"},{\"dataSource\":\"ICD10\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"I10\"},{\"dataSource\":\"ICD9CM\",\"id\":\"997.91\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU035456\"},{\"dataSource\":\"ICPC2P\",\"id\":\"K85004\"},{\"dataSource\":\"LCH\",\"id\":\"U002317\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85063723\"},{\"dataSource\":\"LNC\",\"id\":\"LA14293-7\"},{\"dataSource\":\"MDR\",\"id\":\"10020772\"},{\"dataSource\":\"MEDCIN\",\"id\":\"33288\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"34\"},{\"dataSource\":\"MSH\",\"id\":\"D006973\"},{\"dataSource\":\"MTH\",\"id\":\"005\"},{\"dataSource\":\"MTHICD9\",\"id\":\"997.91\"},{\"dataSource\":\"NANDA-I\",\"id\":\"00905\"},{\"dataSource\":\"NCI\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E13785\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1908\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000458091\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3117\"},{\"dataSource\":\"NOC\",\"id\":\"060808\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU002068\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11000.06\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000686951\"},{\"dataSource\":\"PSY\",\"id\":\"23830\"},{\"dataSource\":\"RCD\",\"id\":\"XE0Ub\"},{\"dataSource\":\"SNM\",\"id\":\"F-70700\"},{\"dataSource\":\"SNMI\",\"id\":\"D3-02000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"38341003\"},{\"dataSource\":\"WHO\",\"id\":\"0210\"}]}],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/1/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "b523abe5-a0cd-4ab1-bf25-0f5e2e1cb2d4", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:21 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "136" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/0c3a479b-cfa4-4bd5-aa4b-f4bba525d84d", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"0c3a479b-cfa4-4bd5-aa4b-f4bba525d84d\",\"lastUpdateDateTime\":\"2021-06-25T20:11:22Z\",\"createdDateTime\":\"2021-06-25T20:11:20Z\",\"expirationDateTime\":\"2021-06-26T20:11:20Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"offset\":29,\"length\":19,\"text\":\"high blood pressure\",\"category\":\"SymptomOrSign\",\"confidenceScore\":1.0,\"assertion\":{\"certainty\":\"negative\"},\"name\":\"Hypertensive disease\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020538\"},{\"dataSource\":\"AOD\",\"id\":\"0000023317\"},{\"dataSource\":\"BI\",\"id\":\"BI00001\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017493\"},{\"dataSource\":\"CCS\",\"id\":\"7.1\"},{\"dataSource\":\"CHV\",\"id\":\"0000015800\"},{\"dataSource\":\"COSTAR\",\"id\":\"397\"},{\"dataSource\":\"CSP\",\"id\":\"0571-5243\"},{\"dataSource\":\"CST\",\"id\":\"HYPERTENS\"},{\"dataSource\":\"DXP\",\"id\":\"U002034\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0000822\"},{\"dataSource\":\"ICD10\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"I10\"},{\"dataSource\":\"ICD9CM\",\"id\":\"997.91\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU035456\"},{\"dataSource\":\"ICPC2P\",\"id\":\"K85004\"},{\"dataSource\":\"LCH\",\"id\":\"U002317\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85063723\"},{\"dataSource\":\"LNC\",\"id\":\"LA14293-7\"},{\"dataSource\":\"MDR\",\"id\":\"10020772\"},{\"dataSource\":\"MEDCIN\",\"id\":\"33288\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"34\"},{\"dataSource\":\"MSH\",\"id\":\"D006973\"},{\"dataSource\":\"MTH\",\"id\":\"005\"},{\"dataSource\":\"MTHICD9\",\"id\":\"997.91\"},{\"dataSource\":\"NANDA-I\",\"id\":\"00905\"},{\"dataSource\":\"NCI\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E13785\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1908\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000458091\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3117\"},{\"dataSource\":\"NOC\",\"id\":\"060808\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU002068\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11000.06\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000686951\"},{\"dataSource\":\"PSY\",\"id\":\"23830\"},{\"dataSource\":\"RCD\",\"id\":\"XE0Ub\"},{\"dataSource\":\"SNM\",\"id\":\"F-70700\"},{\"dataSource\":\"SNMI\",\"id\":\"D3-02000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"38341003\"},{\"dataSource\":\"WHO\",\"id\":\"0210\"}]}],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/1/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "6e9c2bbe-beed-4c95-96bb-97fdce02e0c7", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:23 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "54" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "6552401251c2054ad876d83d9f36d259" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_input_strings.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_input_strings.json new file mode 100644 index 000000000000..c7503eeb3036 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_input_strings.json @@ -0,0 +1,337 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1331", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:10:23 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "a7490fb9-b183-45a5-a7bb-68e66d4a7b00" + } + }, + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"Patient does not suffer from high blood pressure.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Prescribed 100mg ibuprofen, taken twice daily.\",\"language\":\"en\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "b8dd3f77-f06e-484e-a736-a67e12668ff0", + "date": "Fri, 25 Jun 2021 20:10:23 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/289a18ae-402e-4914-a0a0-99bd28f4957b", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "156" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/289a18ae-402e-4914-a0a0-99bd28f4957b", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"289a18ae-402e-4914-a0a0-99bd28f4957b\",\"lastUpdateDateTime\":\"2021-06-25T20:10:24Z\",\"createdDateTime\":\"2021-06-25T20:10:24Z\",\"expirationDateTime\":\"2021-06-26T20:10:24Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "31d9cd6a-9bc6-4ff7-9556-98bd8b700a36", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:10:24 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "11" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/289a18ae-402e-4914-a0a0-99bd28f4957b", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"289a18ae-402e-4914-a0a0-99bd28f4957b\",\"lastUpdateDateTime\":\"2021-06-25T20:10:24Z\",\"createdDateTime\":\"2021-06-25T20:10:24Z\",\"expirationDateTime\":\"2021-06-26T20:10:24Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "3c43e39d-8040-4760-80a2-752d80f4439b", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:10:24 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/289a18ae-402e-4914-a0a0-99bd28f4957b", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"289a18ae-402e-4914-a0a0-99bd28f4957b\",\"lastUpdateDateTime\":\"2021-06-25T20:10:24Z\",\"createdDateTime\":\"2021-06-25T20:10:24Z\",\"expirationDateTime\":\"2021-06-26T20:10:24Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "d06bd24f-d326-4bc0-bf05-7f37a1bc036b", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:10:26 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/289a18ae-402e-4914-a0a0-99bd28f4957b", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"289a18ae-402e-4914-a0a0-99bd28f4957b\",\"lastUpdateDateTime\":\"2021-06-25T20:10:24Z\",\"createdDateTime\":\"2021-06-25T20:10:24Z\",\"expirationDateTime\":\"2021-06-26T20:10:24Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "93fd072d-c4c2-43f0-bd32-705639987343", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:10:28 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/289a18ae-402e-4914-a0a0-99bd28f4957b", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"289a18ae-402e-4914-a0a0-99bd28f4957b\",\"lastUpdateDateTime\":\"2021-06-25T20:10:24Z\",\"createdDateTime\":\"2021-06-25T20:10:24Z\",\"expirationDateTime\":\"2021-06-26T20:10:24Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "14394cbd-8547-4ab0-a682-7b9f7379e363", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:10:30 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/289a18ae-402e-4914-a0a0-99bd28f4957b", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"289a18ae-402e-4914-a0a0-99bd28f4957b\",\"lastUpdateDateTime\":\"2021-06-25T20:10:24Z\",\"createdDateTime\":\"2021-06-25T20:10:24Z\",\"expirationDateTime\":\"2021-06-26T20:10:24Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "be6ede91-51b6-469d-a02b-c6698883fc8c", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:10:32 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/289a18ae-402e-4914-a0a0-99bd28f4957b", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"289a18ae-402e-4914-a0a0-99bd28f4957b\",\"lastUpdateDateTime\":\"2021-06-25T20:10:24Z\",\"createdDateTime\":\"2021-06-25T20:10:24Z\",\"expirationDateTime\":\"2021-06-26T20:10:24Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "e1ee9366-7749-43ec-94e7-0ad1a0cdaeca", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:10:34 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/289a18ae-402e-4914-a0a0-99bd28f4957b", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"289a18ae-402e-4914-a0a0-99bd28f4957b\",\"lastUpdateDateTime\":\"2021-06-25T20:10:24Z\",\"createdDateTime\":\"2021-06-25T20:10:24Z\",\"expirationDateTime\":\"2021-06-26T20:10:24Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "274af99d-d022-45bd-9eb2-7e26b4e80e0c", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:10:37 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/289a18ae-402e-4914-a0a0-99bd28f4957b", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"289a18ae-402e-4914-a0a0-99bd28f4957b\",\"lastUpdateDateTime\":\"2021-06-25T20:10:37Z\",\"createdDateTime\":\"2021-06-25T20:10:24Z\",\"expirationDateTime\":\"2021-06-26T20:10:24Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "3fa455bb-f23b-4091-9b02-d7b416b0b598", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:10:39 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/289a18ae-402e-4914-a0a0-99bd28f4957b", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"289a18ae-402e-4914-a0a0-99bd28f4957b\",\"lastUpdateDateTime\":\"2021-06-25T20:10:37Z\",\"createdDateTime\":\"2021-06-25T20:10:24Z\",\"expirationDateTime\":\"2021-06-26T20:10:24Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "a6edb9a0-9ef6-41ba-ab16-fb766f8ff6d8", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:10:41 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/289a18ae-402e-4914-a0a0-99bd28f4957b", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"289a18ae-402e-4914-a0a0-99bd28f4957b\",\"lastUpdateDateTime\":\"2021-06-25T20:10:37Z\",\"createdDateTime\":\"2021-06-25T20:10:24Z\",\"expirationDateTime\":\"2021-06-26T20:10:24Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "b01e9714-8c58-4c65-b855-e86d8e58a243", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:10:43 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/289a18ae-402e-4914-a0a0-99bd28f4957b", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"289a18ae-402e-4914-a0a0-99bd28f4957b\",\"lastUpdateDateTime\":\"2021-06-25T20:10:37Z\",\"createdDateTime\":\"2021-06-25T20:10:24Z\",\"expirationDateTime\":\"2021-06-26T20:10:24Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "e13f73a5-e492-4814-90b4-7ebcebaa9710", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:10:45 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/289a18ae-402e-4914-a0a0-99bd28f4957b", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"289a18ae-402e-4914-a0a0-99bd28f4957b\",\"lastUpdateDateTime\":\"2021-06-25T20:10:37Z\",\"createdDateTime\":\"2021-06-25T20:10:24Z\",\"expirationDateTime\":\"2021-06-26T20:10:24Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "88680c82-dc0e-4ae6-97d4-399c6d012bea", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:10:47 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/289a18ae-402e-4914-a0a0-99bd28f4957b", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"289a18ae-402e-4914-a0a0-99bd28f4957b\",\"lastUpdateDateTime\":\"2021-06-25T20:10:48Z\",\"createdDateTime\":\"2021-06-25T20:10:24Z\",\"expirationDateTime\":\"2021-06-26T20:10:24Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":29,\"length\":19,\"text\":\"high blood pressure\",\"category\":\"SymptomOrSign\",\"confidenceScore\":1.0,\"assertion\":{\"certainty\":\"negative\"},\"name\":\"Hypertensive disease\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020538\"},{\"dataSource\":\"AOD\",\"id\":\"0000023317\"},{\"dataSource\":\"BI\",\"id\":\"BI00001\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017493\"},{\"dataSource\":\"CCS\",\"id\":\"7.1\"},{\"dataSource\":\"CHV\",\"id\":\"0000015800\"},{\"dataSource\":\"COSTAR\",\"id\":\"397\"},{\"dataSource\":\"CSP\",\"id\":\"0571-5243\"},{\"dataSource\":\"CST\",\"id\":\"HYPERTENS\"},{\"dataSource\":\"DXP\",\"id\":\"U002034\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0000822\"},{\"dataSource\":\"ICD10\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"I10\"},{\"dataSource\":\"ICD9CM\",\"id\":\"997.91\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU035456\"},{\"dataSource\":\"ICPC2P\",\"id\":\"K85004\"},{\"dataSource\":\"LCH\",\"id\":\"U002317\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85063723\"},{\"dataSource\":\"LNC\",\"id\":\"LA14293-7\"},{\"dataSource\":\"MDR\",\"id\":\"10020772\"},{\"dataSource\":\"MEDCIN\",\"id\":\"33288\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"34\"},{\"dataSource\":\"MSH\",\"id\":\"D006973\"},{\"dataSource\":\"MTH\",\"id\":\"005\"},{\"dataSource\":\"MTHICD9\",\"id\":\"997.91\"},{\"dataSource\":\"NANDA-I\",\"id\":\"00905\"},{\"dataSource\":\"NCI\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E13785\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1908\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000458091\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3117\"},{\"dataSource\":\"NOC\",\"id\":\"060808\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU002068\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11000.06\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000686951\"},{\"dataSource\":\"PSY\",\"id\":\"23830\"},{\"dataSource\":\"RCD\",\"id\":\"XE0Ub\"},{\"dataSource\":\"SNM\",\"id\":\"F-70700\"},{\"dataSource\":\"SNMI\",\"id\":\"D3-02000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"38341003\"},{\"dataSource\":\"WHO\",\"id\":\"0210\"}]}],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/1/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "dcab61b5-3965-4df0-84ba-e6c5468f8dbf", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:10:49 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "64" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/289a18ae-402e-4914-a0a0-99bd28f4957b", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"289a18ae-402e-4914-a0a0-99bd28f4957b\",\"lastUpdateDateTime\":\"2021-06-25T20:10:48Z\",\"createdDateTime\":\"2021-06-25T20:10:24Z\",\"expirationDateTime\":\"2021-06-26T20:10:24Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":29,\"length\":19,\"text\":\"high blood pressure\",\"category\":\"SymptomOrSign\",\"confidenceScore\":1.0,\"assertion\":{\"certainty\":\"negative\"},\"name\":\"Hypertensive disease\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020538\"},{\"dataSource\":\"AOD\",\"id\":\"0000023317\"},{\"dataSource\":\"BI\",\"id\":\"BI00001\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017493\"},{\"dataSource\":\"CCS\",\"id\":\"7.1\"},{\"dataSource\":\"CHV\",\"id\":\"0000015800\"},{\"dataSource\":\"COSTAR\",\"id\":\"397\"},{\"dataSource\":\"CSP\",\"id\":\"0571-5243\"},{\"dataSource\":\"CST\",\"id\":\"HYPERTENS\"},{\"dataSource\":\"DXP\",\"id\":\"U002034\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0000822\"},{\"dataSource\":\"ICD10\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"I10\"},{\"dataSource\":\"ICD9CM\",\"id\":\"997.91\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU035456\"},{\"dataSource\":\"ICPC2P\",\"id\":\"K85004\"},{\"dataSource\":\"LCH\",\"id\":\"U002317\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85063723\"},{\"dataSource\":\"LNC\",\"id\":\"LA14293-7\"},{\"dataSource\":\"MDR\",\"id\":\"10020772\"},{\"dataSource\":\"MEDCIN\",\"id\":\"33288\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"34\"},{\"dataSource\":\"MSH\",\"id\":\"D006973\"},{\"dataSource\":\"MTH\",\"id\":\"005\"},{\"dataSource\":\"MTHICD9\",\"id\":\"997.91\"},{\"dataSource\":\"NANDA-I\",\"id\":\"00905\"},{\"dataSource\":\"NCI\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E13785\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1908\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000458091\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3117\"},{\"dataSource\":\"NOC\",\"id\":\"060808\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU002068\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11000.06\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000686951\"},{\"dataSource\":\"PSY\",\"id\":\"23830\"},{\"dataSource\":\"RCD\",\"id\":\"XE0Ub\"},{\"dataSource\":\"SNM\",\"id\":\"F-70700\"},{\"dataSource\":\"SNMI\",\"id\":\"D3-02000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"38341003\"},{\"dataSource\":\"WHO\",\"id\":\"0210\"}]}],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/1/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "6b7c3e21-6f2f-4045-81ea-3146ab77f029", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:10:49 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "71" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "3539cc6e492731ad933d3d63d2719d0e" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_invalid_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_invalid_language_hint.json new file mode 100644 index 000000000000..e378e01d5317 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_invalid_language_hint.json @@ -0,0 +1,147 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1331", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:31 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "84bdf8e2-d00d-4332-9ea9-2d5ef5f47900" + } + }, + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"This should fail because we're passing in an invalid language hint\",\"language\":\"notalanguage\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "7bb2a2b2-ffd9-47cd-800c-9fae4fc0d1e2", + "date": "Fri, 25 Jun 2021 20:12:32 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/49953352-2c9c-47a8-aee7-83e953bd4d6c", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "148" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/49953352-2c9c-47a8-aee7-83e953bd4d6c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"49953352-2c9c-47a8-aee7-83e953bd4d6c\",\"lastUpdateDateTime\":\"2021-06-25T20:12:32Z\",\"createdDateTime\":\"2021-06-25T20:12:32Z\",\"expirationDateTime\":\"2021-06-26T20:12:32Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "9ab459d0-bd35-4b54-b949-702bdf57cbde", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:32 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/49953352-2c9c-47a8-aee7-83e953bd4d6c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"49953352-2c9c-47a8-aee7-83e953bd4d6c\",\"lastUpdateDateTime\":\"2021-06-25T20:12:32Z\",\"createdDateTime\":\"2021-06-25T20:12:32Z\",\"expirationDateTime\":\"2021-06-26T20:12:32Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "2492cd19-8375-4071-9204-b79ae3c1812c", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:32 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "11" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/49953352-2c9c-47a8-aee7-83e953bd4d6c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"49953352-2c9c-47a8-aee7-83e953bd4d6c\",\"lastUpdateDateTime\":\"2021-06-25T20:12:35Z\",\"createdDateTime\":\"2021-06-25T20:12:32Z\",\"expirationDateTime\":\"2021-06-26T20:12:32Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "701d059b-4230-4ea3-b464-ab31917b1fbc", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:34 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "11" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/49953352-2c9c-47a8-aee7-83e953bd4d6c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"49953352-2c9c-47a8-aee7-83e953bd4d6c\",\"lastUpdateDateTime\":\"2021-06-25T20:12:35Z\",\"createdDateTime\":\"2021-06-25T20:12:32Z\",\"expirationDateTime\":\"2021-06-26T20:12:32Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}}],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "00e4348e-2759-43e9-b910-3406d6fb0f8f", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:36 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "46" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/49953352-2c9c-47a8-aee7-83e953bd4d6c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"49953352-2c9c-47a8-aee7-83e953bd4d6c\",\"lastUpdateDateTime\":\"2021-06-25T20:12:35Z\",\"createdDateTime\":\"2021-06-25T20:12:32Z\",\"expirationDateTime\":\"2021-06-26T20:12:32Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}}],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "80f52014-32d6-4ed8-aa8b-55e75e692654", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:37 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "46" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "7fe28fb1cf9568039be008ba4f6aae88" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.json new file mode 100644 index 000000000000..85bbbae09210 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.json @@ -0,0 +1,147 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1331", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:36 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11829.9 - SCUS ProdSlices", + "x-ms-request-id": "8e39ec98-09f7-43aa-b65f-9f375f447700" + } + }, + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"This should fail because we're passing in an invalid language hint\",\"language\":\"notalanguage\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "7b14f24d-0ef8-4c8f-8853-0c9c0f79d57f", + "date": "Fri, 25 Jun 2021 20:12:37 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/6339e371-486e-45e8-9cad-24d0d263521f", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "110" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/6339e371-486e-45e8-9cad-24d0d263521f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"6339e371-486e-45e8-9cad-24d0d263521f\",\"lastUpdateDateTime\":\"2021-06-25T20:12:37Z\",\"createdDateTime\":\"2021-06-25T20:12:37Z\",\"expirationDateTime\":\"2021-06-26T20:12:37Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "6f2c2aec-c282-4dd2-9209-66a55dc754e9", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:37 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/6339e371-486e-45e8-9cad-24d0d263521f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"6339e371-486e-45e8-9cad-24d0d263521f\",\"lastUpdateDateTime\":\"2021-06-25T20:12:37Z\",\"createdDateTime\":\"2021-06-25T20:12:37Z\",\"expirationDateTime\":\"2021-06-26T20:12:37Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "8396a620-af64-44db-b848-690dc6d70aa6", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:37 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/6339e371-486e-45e8-9cad-24d0d263521f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"6339e371-486e-45e8-9cad-24d0d263521f\",\"lastUpdateDateTime\":\"2021-06-25T20:12:37Z\",\"createdDateTime\":\"2021-06-25T20:12:37Z\",\"expirationDateTime\":\"2021-06-26T20:12:37Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "588c2095-73f5-4dd4-b80c-b7a8db6b1ac8", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:39 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/6339e371-486e-45e8-9cad-24d0d263521f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"6339e371-486e-45e8-9cad-24d0d263521f\",\"lastUpdateDateTime\":\"2021-06-25T20:12:40Z\",\"createdDateTime\":\"2021-06-25T20:12:37Z\",\"expirationDateTime\":\"2021-06-26T20:12:37Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}}],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "92c45c65-bd7b-4964-b4c6-3e320b745ef9", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:41 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "46" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/6339e371-486e-45e8-9cad-24d0d263521f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"6339e371-486e-45e8-9cad-24d0d263521f\",\"lastUpdateDateTime\":\"2021-06-25T20:12:40Z\",\"createdDateTime\":\"2021-06-25T20:12:37Z\",\"expirationDateTime\":\"2021-06-26T20:12:37Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}}],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "edf713ae-387f-4303-9999-b793df1c8814", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:41 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "50" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "340cd4ff03c6dde812d00ee817fd5d2d" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_operation_metadata.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_operation_metadata.json new file mode 100644 index 000000000000..c0322c636e13 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_operation_metadata.json @@ -0,0 +1,109 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1331", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:47 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11829.9 - NCUS ProdSlices", + "x-ms-request-id": "995fb27d-f6fa-4b35-ab9d-b271ab785f00" + } + }, + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"Patient does not suffer from high blood pressure.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Prescribed 100mg ibuprofen, taken twice daily.\",\"language\":\"en\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "0b56fc57-44cd-4ee9-97ba-12cc81f79864", + "date": "Fri, 25 Jun 2021 20:12:52 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/1973f686-1b03-461b-8e12-9d56b10db45e", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "5420" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/1973f686-1b03-461b-8e12-9d56b10db45e", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"1973f686-1b03-461b-8e12-9d56b10db45e\",\"lastUpdateDateTime\":\"2021-06-25T20:12:53Z\",\"createdDateTime\":\"2021-06-25T20:12:48Z\",\"expirationDateTime\":\"2021-06-26T20:12:48Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "7b697bfe-d540-4935-8080-3f218077465d", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:53 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/1973f686-1b03-461b-8e12-9d56b10db45e", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"1973f686-1b03-461b-8e12-9d56b10db45e\",\"lastUpdateDateTime\":\"2021-06-25T20:12:53Z\",\"createdDateTime\":\"2021-06-25T20:12:48Z\",\"expirationDateTime\":\"2021-06-26T20:12:48Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "fabe82ad-4dc7-43bc-a5c8-10aeed24ba1a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:53 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/1973f686-1b03-461b-8e12-9d56b10db45e", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"1973f686-1b03-461b-8e12-9d56b10db45e\",\"lastUpdateDateTime\":\"2021-06-25T20:12:55Z\",\"createdDateTime\":\"2021-06-25T20:12:48Z\",\"expirationDateTime\":\"2021-06-26T20:12:48Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"offset\":29,\"length\":19,\"text\":\"high blood pressure\",\"category\":\"SymptomOrSign\",\"confidenceScore\":1.0,\"assertion\":{\"certainty\":\"negative\"},\"name\":\"Hypertensive disease\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020538\"},{\"dataSource\":\"AOD\",\"id\":\"0000023317\"},{\"dataSource\":\"BI\",\"id\":\"BI00001\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017493\"},{\"dataSource\":\"CCS\",\"id\":\"7.1\"},{\"dataSource\":\"CHV\",\"id\":\"0000015800\"},{\"dataSource\":\"COSTAR\",\"id\":\"397\"},{\"dataSource\":\"CSP\",\"id\":\"0571-5243\"},{\"dataSource\":\"CST\",\"id\":\"HYPERTENS\"},{\"dataSource\":\"DXP\",\"id\":\"U002034\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0000822\"},{\"dataSource\":\"ICD10\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"I10\"},{\"dataSource\":\"ICD9CM\",\"id\":\"997.91\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU035456\"},{\"dataSource\":\"ICPC2P\",\"id\":\"K85004\"},{\"dataSource\":\"LCH\",\"id\":\"U002317\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85063723\"},{\"dataSource\":\"LNC\",\"id\":\"LA14293-7\"},{\"dataSource\":\"MDR\",\"id\":\"10020772\"},{\"dataSource\":\"MEDCIN\",\"id\":\"33288\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"34\"},{\"dataSource\":\"MSH\",\"id\":\"D006973\"},{\"dataSource\":\"MTH\",\"id\":\"005\"},{\"dataSource\":\"MTHICD9\",\"id\":\"997.91\"},{\"dataSource\":\"NANDA-I\",\"id\":\"00905\"},{\"dataSource\":\"NCI\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E13785\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1908\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000458091\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3117\"},{\"dataSource\":\"NOC\",\"id\":\"060808\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU002068\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11000.06\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000686951\"},{\"dataSource\":\"PSY\",\"id\":\"23830\"},{\"dataSource\":\"RCD\",\"id\":\"XE0Ub\"},{\"dataSource\":\"SNM\",\"id\":\"F-70700\"},{\"dataSource\":\"SNMI\",\"id\":\"D3-02000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"38341003\"},{\"dataSource\":\"WHO\",\"id\":\"0210\"}]}],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/1/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "fdf0623c-0d25-4eb8-adc9-c2fcd84f6ffa", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:55 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "70" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "e91e7a3ec01d0a9dd6b8e5f9fd5ddc80" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.json new file mode 100644 index 000000000000..a31cab8aed22 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.json @@ -0,0 +1,128 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1331", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:33 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11829.9 - WUS2 ProdSlices", + "x-ms-request-id": "c2b0df5e-9884-4424-956b-f1459e756100" + } + }, + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"one\"},{\"id\":\"2\",\"text\":\"two\"},{\"id\":\"3\",\"text\":\"three\"},{\"id\":\"4\",\"text\":\"four\"},{\"id\":\"5\",\"text\":\"five\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "77772fce-dd9a-498b-832e-3b450b5b55ed", + "date": "Fri, 25 Jun 2021 20:11:34 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/bd229182-d818-4366-b1e4-ea715a3b42d4", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "249" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/bd229182-d818-4366-b1e4-ea715a3b42d4", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"bd229182-d818-4366-b1e4-ea715a3b42d4\",\"lastUpdateDateTime\":\"2021-06-25T20:11:34Z\",\"createdDateTime\":\"2021-06-25T20:11:34Z\",\"expirationDateTime\":\"2021-06-26T20:11:34Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "6fdd4af2-0f55-4346-aacd-ad058f7e179d", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:34 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/bd229182-d818-4366-b1e4-ea715a3b42d4", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"bd229182-d818-4366-b1e4-ea715a3b42d4\",\"lastUpdateDateTime\":\"2021-06-25T20:11:34Z\",\"createdDateTime\":\"2021-06-25T20:11:34Z\",\"expirationDateTime\":\"2021-06-26T20:11:34Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "78f701fd-19af-490f-958d-2e221fad3686", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:34 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "30" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/bd229182-d818-4366-b1e4-ea715a3b42d4", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"bd229182-d818-4366-b1e4-ea715a3b42d4\",\"lastUpdateDateTime\":\"2021-06-25T20:11:35Z\",\"createdDateTime\":\"2021-06-25T20:11:34Z\",\"expirationDateTime\":\"2021-06-26T20:11:34Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"offset\":0,\"length\":4,\"text\":\"five\",\"category\":\"Dosage\",\"confidenceScore\":0.58}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "b1bcd52f-9ea3-47af-9d60-c9c8d1ab59e1", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:37 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "89" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/bd229182-d818-4366-b1e4-ea715a3b42d4", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"bd229182-d818-4366-b1e4-ea715a3b42d4\",\"lastUpdateDateTime\":\"2021-06-25T20:11:35Z\",\"createdDateTime\":\"2021-06-25T20:11:34Z\",\"expirationDateTime\":\"2021-06-26T20:11:34Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"offset\":0,\"length\":4,\"text\":\"five\",\"category\":\"Dosage\",\"confidenceScore\":0.58}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "78d2023d-7cc9-487f-b851-2566865914ea", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:37 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "82" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "4612eff1b1a5db435331459355dbeb93" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.json new file mode 100644 index 000000000000..26b55b571333 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.json @@ -0,0 +1,128 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1331", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:36 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11829.9 - SCUS ProdSlices", + "x-ms-request-id": "e0b3e3aa-321c-4078-9fcf-b762b9667100" + } + }, + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"56\",\"text\":\":)\"},{\"id\":\"0\",\"text\":\":(\"},{\"id\":\"22\",\"text\":\"\"},{\"id\":\"19\",\"text\":\":P\"},{\"id\":\"1\",\"text\":\":D\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "c7fe6f8e-bc34-44f3-bf6d-e4fcdf69eee6", + "date": "Fri, 25 Jun 2021 20:11:37 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/298ee70d-9db0-4d45-94bc-37dc61544d46", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "227" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/298ee70d-9db0-4d45-94bc-37dc61544d46", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"298ee70d-9db0-4d45-94bc-37dc61544d46\",\"lastUpdateDateTime\":\"2021-06-25T20:11:37Z\",\"createdDateTime\":\"2021-06-25T20:11:37Z\",\"expirationDateTime\":\"2021-06-26T20:11:37Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "6f63e46d-f80d-45cd-8243-2bc5601db20e", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:37 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/298ee70d-9db0-4d45-94bc-37dc61544d46", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"298ee70d-9db0-4d45-94bc-37dc61544d46\",\"lastUpdateDateTime\":\"2021-06-25T20:11:37Z\",\"createdDateTime\":\"2021-06-25T20:11:37Z\",\"expirationDateTime\":\"2021-06-26T20:11:37Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "1322987a-63e2-4978-9001-7786b7664a81", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:38 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "684" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/298ee70d-9db0-4d45-94bc-37dc61544d46", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"298ee70d-9db0-4d45-94bc-37dc61544d46\",\"lastUpdateDateTime\":\"2021-06-25T20:11:40Z\",\"createdDateTime\":\"2021-06-25T20:11:37Z\",\"expirationDateTime\":\"2021-06-26T20:11:37Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"22\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "e78d49b5-49a3-47e1-80c9-9024f002469f", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:40 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "83" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/298ee70d-9db0-4d45-94bc-37dc61544d46", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"298ee70d-9db0-4d45-94bc-37dc61544d46\",\"lastUpdateDateTime\":\"2021-06-25T20:11:40Z\",\"createdDateTime\":\"2021-06-25T20:11:37Z\",\"expirationDateTime\":\"2021-06-26T20:11:37Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"22\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "8a1dd00f-890f-4e46-a031-f9cecb42785d", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:40 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "89" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "e7248b98353def73af890958a958ef0d" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_payload_too_large.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_payload_too_large.json new file mode 100644 index 000000000000..9a1f6397a9fe --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_payload_too_large.json @@ -0,0 +1,52 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1331", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:28 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11829.9 - WUS2 ProdSlices", + "x-ms-request-id": "9c2a0045-784c-4338-a06a-102062ef6100" + } + }, + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"6\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"7\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"8\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"9\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"10\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"11\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"12\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"13\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"14\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"15\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"16\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"17\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"18\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"19\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"20\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"21\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"22\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"23\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"24\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"25\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"26\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"27\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"28\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"29\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"30\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"31\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"32\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"33\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"34\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"35\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"36\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"37\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"38\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"39\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"40\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"41\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"42\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"43\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"44\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"45\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"46\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"47\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"48\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"49\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"50\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"51\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"52\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"53\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"54\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"55\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"56\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"57\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"58\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"59\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"60\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"61\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"62\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"63\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"64\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"65\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"66\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"67\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"68\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"69\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"70\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"71\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"72\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"73\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"74\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"75\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"76\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"77\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"78\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"79\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"80\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"81\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"82\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"83\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"84\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"85\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"86\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"87\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"88\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"89\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"90\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"91\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"92\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"93\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"94\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"95\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"96\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"97\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"98\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"99\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"100\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"101\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"102\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"103\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"104\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"105\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"106\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"107\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"108\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"109\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"110\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"111\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"112\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"113\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"114\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"115\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"116\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"117\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"118\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"119\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"120\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"121\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"122\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"123\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"124\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"125\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"126\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"127\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"128\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"129\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"130\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"131\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"132\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"133\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"134\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"135\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"136\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"137\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"138\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"139\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"140\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"141\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"142\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"143\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"144\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"145\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"146\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"147\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"148\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"149\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"150\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"151\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"152\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"153\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"154\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"155\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"156\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"157\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"158\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"159\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"160\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"161\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"162\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"163\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"164\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"165\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"166\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"167\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"168\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"169\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"170\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"171\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"172\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"173\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"174\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"175\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"176\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"177\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"178\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"179\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"180\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"181\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"182\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"183\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"184\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"185\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"186\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"187\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"188\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"189\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"190\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"191\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"192\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"193\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"194\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"195\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"196\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"197\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"198\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"199\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"200\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"201\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"202\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"203\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"204\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"205\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"206\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"207\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"208\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"209\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"210\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"211\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"212\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"213\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"214\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"215\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"216\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"217\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"218\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"219\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"220\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"221\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"222\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"223\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"224\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"225\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"226\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"227\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"228\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"229\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"230\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"231\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"232\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"233\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"234\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"235\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"236\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"237\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"238\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"239\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"240\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"241\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"242\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"243\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"244\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"245\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"246\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"247\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"248\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"249\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"250\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"251\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"252\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"253\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"254\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"255\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"256\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"257\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"258\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"259\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"260\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"261\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"262\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"263\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"264\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"265\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"266\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"267\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"268\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"269\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"270\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"271\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"272\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"273\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"274\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"275\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"276\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"277\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"278\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"279\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"280\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"281\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"282\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"283\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"284\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"285\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"286\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"287\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"288\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"289\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"290\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"291\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"292\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"293\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"294\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"295\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"296\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"297\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"298\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"299\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"300\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"301\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"302\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"303\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"304\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"305\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"306\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"307\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"308\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"309\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"310\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"311\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"312\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"313\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"314\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"315\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"316\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"317\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"318\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"319\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"320\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"321\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"322\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"323\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"324\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"325\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"326\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"327\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"328\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"329\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"330\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"331\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"332\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"333\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"334\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"335\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"336\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"337\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"338\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"339\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"340\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"341\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"342\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"343\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"344\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"345\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"346\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"347\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"348\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"349\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"350\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"351\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"352\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"353\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"354\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"355\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"356\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"357\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"358\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"359\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"360\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"361\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"362\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"363\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"364\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"365\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"366\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"367\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"368\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"369\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"370\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"371\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"372\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"373\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"374\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"375\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"376\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"377\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"378\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"379\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"380\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"381\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"382\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"383\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"384\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"385\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"386\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"387\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"388\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"389\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"390\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"391\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"392\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"393\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"394\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"395\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"396\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"397\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"398\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"399\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"400\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"401\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"402\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"403\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"404\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"405\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"406\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"407\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"408\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"409\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"410\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"411\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"412\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"413\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"414\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"415\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"416\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"417\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"418\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"419\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"420\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"421\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"422\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"423\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"424\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"425\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"426\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"427\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"428\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"429\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"430\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"431\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"432\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"433\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"434\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"435\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"436\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"437\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"438\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"439\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"440\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"441\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"442\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"443\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"444\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"445\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"446\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"447\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"448\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"449\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"450\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"451\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"452\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"453\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"454\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"455\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"456\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"457\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"458\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"459\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"460\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"461\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"462\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"463\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"464\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"465\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"466\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"467\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"468\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"469\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"470\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"471\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"472\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"473\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"474\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"475\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"476\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"477\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"478\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"479\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"480\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"481\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"482\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"483\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"484\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"485\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"486\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"487\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"488\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"489\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"490\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"491\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"492\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"493\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"494\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"495\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"496\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"497\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"498\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"499\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"}]}", + "status": 413, + "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocumentBatch\",\"message\":\"Request Payload sent is too large to be processed. Limit request size to: 524288\"}}}", + "responseHeaders": { + "apim-request-id": "83932675-7e42-4ad4-834a-ba24bf4d9fa8", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:31 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "20" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "fabb23fcf348878da5328d2e1b041a32" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_show_stats_and_model_version.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_show_stats_and_model_version.json new file mode 100644 index 000000000000..45d6f5018b35 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_show_stats_and_model_version.json @@ -0,0 +1,113 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1331", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:40 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "04923b22-c5b5-4349-b2d4-c55033017e00" + } + }, + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"56\",\"text\":\":)\"},{\"id\":\"0\",\"text\":\":(\"},{\"id\":\"22\",\"text\":\"\"},{\"id\":\"19\",\"text\":\":P\"},{\"id\":\"1\",\"text\":\":D\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "e1f1d51c-5834-4413-92ad-d455b0edebca", + "date": "Fri, 25 Jun 2021 20:11:41 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/8b96dec5-6391-4368-a001-a7e6b00d038f", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "207" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/8b96dec5-6391-4368-a001-a7e6b00d038f", + "query": { + "showStats": "true", + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8b96dec5-6391-4368-a001-a7e6b00d038f\",\"lastUpdateDateTime\":\"2021-06-25T20:11:41Z\",\"createdDateTime\":\"2021-06-25T20:11:41Z\",\"expirationDateTime\":\"2021-06-26T20:11:41Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "d0e58121-e150-44dd-8891-8281e821cd44", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:41 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/8b96dec5-6391-4368-a001-a7e6b00d038f", + "query": { + "showStats": "true", + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8b96dec5-6391-4368-a001-a7e6b00d038f\",\"lastUpdateDateTime\":\"2021-06-25T20:11:41Z\",\"createdDateTime\":\"2021-06-25T20:11:41Z\",\"expirationDateTime\":\"2021-06-26T20:11:41Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "472056e0-c8e7-4264-91a1-496704beb6bb", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:41 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/8b96dec5-6391-4368-a001-a7e6b00d038f", + "query": { + "showStats": "true", + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8b96dec5-6391-4368-a001-a7e6b00d038f\",\"lastUpdateDateTime\":\"2021-06-25T20:11:42Z\",\"createdDateTime\":\"2021-06-25T20:11:41Z\",\"expirationDateTime\":\"2021-06-26T20:11:41Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"statistics\":{\"documentsCount\":5,\"validDocumentsCount\":4,\"erroneousDocumentsCount\":1,\"transactionsCount\":4},\"documents\":[{\"id\":\"56\",\"statistics\":{\"charactersCount\":2,\"transactionsCount\":1},\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"0\",\"statistics\":{\"charactersCount\":2,\"transactionsCount\":1},\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"19\",\"statistics\":{\"charactersCount\":2,\"transactionsCount\":1},\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"statistics\":{\"charactersCount\":2,\"transactionsCount\":1},\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"22\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "ad85092c-18a9-478a-ab91-ffa4d608197c", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:43 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "71" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "b7886f5b0094498f9a0939c3cb1bca51" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_some_inputs_with_errors.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_some_inputs_with_errors.json new file mode 100644 index 000000000000..f0432c3863ad --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_some_inputs_with_errors.json @@ -0,0 +1,128 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1331", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:22 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "84bdf8e2-d00d-4332-9ea9-2d5e23e87900" + } + }, + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Patient does not suffer from high blood pressure.\",\"language\":\"english\"},{\"id\":\"3\",\"text\":\"Prescribed 100mg ibuprofen, taken twice daily.\",\"language\":\"en\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "7045000f-b7d7-417a-896f-41e9f05099d1", + "date": "Fri, 25 Jun 2021 20:11:23 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/91ddf0e1-8a62-4648-841e-e8d5373d507b", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "159" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/91ddf0e1-8a62-4648-841e-e8d5373d507b", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"91ddf0e1-8a62-4648-841e-e8d5373d507b\",\"lastUpdateDateTime\":\"2021-06-25T20:11:23Z\",\"createdDateTime\":\"2021-06-25T20:11:23Z\",\"expirationDateTime\":\"2021-06-26T20:11:23Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "97126026-d90a-4d69-ac16-ee6c5bc8db63", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:23 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/91ddf0e1-8a62-4648-841e-e8d5373d507b", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"91ddf0e1-8a62-4648-841e-e8d5373d507b\",\"lastUpdateDateTime\":\"2021-06-25T20:11:23Z\",\"createdDateTime\":\"2021-06-25T20:11:23Z\",\"expirationDateTime\":\"2021-06-26T20:11:23Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "76220e98-4543-4c52-a9c5-44dfa602d377", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:23 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/91ddf0e1-8a62-4648-841e-e8d5373d507b", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"91ddf0e1-8a62-4648-841e-e8d5373d507b\",\"lastUpdateDateTime\":\"2021-06-25T20:11:25Z\",\"createdDateTime\":\"2021-06-25T20:11:23Z\",\"expirationDateTime\":\"2021-06-26T20:11:23Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/0/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/0/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/0/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/0/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}}],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "f90cd5f1-acf7-4b1f-86ce-7819e657b7b1", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:25 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "75" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/91ddf0e1-8a62-4648-841e-e8d5373d507b", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"91ddf0e1-8a62-4648-841e-e8d5373d507b\",\"lastUpdateDateTime\":\"2021-06-25T20:11:25Z\",\"createdDateTime\":\"2021-06-25T20:11:23Z\",\"expirationDateTime\":\"2021-06-26T20:11:23Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/0/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/0/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/0/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/0/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}}],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "20138da9-4a73-4dad-a41a-3c541cbfb6bf", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:25 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "95" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "8f137e103df6a68f682870f77ddba5fa" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_too_many_documents.json similarity index 50% rename from sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_emoji_with_skin_tone_modifier.json rename to sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_too_many_documents.json index 536d60185a58..ad284bb0f41a 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_emoji_with_skin_tone_modifier.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_too_many_documents.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1331", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:18:19 GMT", + "date": "Fri, 25 Jun 2021 20:11:28 GMT", "expires": "-1", "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", @@ -20,28 +20,27 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.11722.21 - NCUS ProdSlices", - "x-ms-request-id": "4e081bcf-0a12-4b10-9110-b01a36d35600" + "x-ms-ests-server": "2.1.11829.9 - SCUS ProdSlices", + "x-ms-request-id": "e0b3e3aa-321c-4078-9fcf-b762c8647100" } }, { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", "query": { - "stringIndexType": "TextElements_v8" + "stringIndexType": "Utf16CodeUnit" }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩🏻 SSN: 859-98-0987\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"👩🏻 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"6\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"7\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"8\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"9\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"10\",\"text\":\"random text\",\"language\":\"en\"}]}", + "status": 400, + "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocumentBatch\",\"message\":\"Batch request contains too many records. Max 10 records are permitted.\"}}}", "responseHeaders": { - "apim-request-id": "7ec0677d-74f2-4550-8c3c-f55cbdb92a49", + "apim-request-id": "d0c01343-f3fc-4d12-9e92-5f321cf625b6", "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:18:19 GMT", + "date": "Fri, 25 Jun 2021 20:11:29 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": "5" } } ], @@ -49,5 +48,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "a226712bc42ebd367f25bbebba76d4df" + "hash": "f4e1a2c36c41c301fea32887bbea5a55" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.json new file mode 100644 index 000000000000..0835ef165a06 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.json @@ -0,0 +1,147 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1331", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:06 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11829.9 - WUS2 ProdSlices", + "x-ms-request-id": "8deef922-c309-4e27-9a10-4eefae075f00" + } + }, + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"This was the best day of my life.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"I did not like the hotel we stayed at. It was too expensive.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"The restaurant was not as good as I hoped.\",\"language\":\"en\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "bdb7e804-c021-42d2-8377-5e4845f6ed21", + "date": "Fri, 25 Jun 2021 20:12:07 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/65d9e2bc-b0af-419d-bee4-3c72fd7bca0e", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "190" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/65d9e2bc-b0af-419d-bee4-3c72fd7bca0e", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"65d9e2bc-b0af-419d-bee4-3c72fd7bca0e\",\"lastUpdateDateTime\":\"2021-06-25T20:12:08Z\",\"createdDateTime\":\"2021-06-25T20:12:07Z\",\"expirationDateTime\":\"2021-06-26T20:12:07Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "2333f0eb-4abf-4060-9109-4e2d56ed6bd1", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:07 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/65d9e2bc-b0af-419d-bee4-3c72fd7bca0e", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"65d9e2bc-b0af-419d-bee4-3c72fd7bca0e\",\"lastUpdateDateTime\":\"2021-06-25T20:12:08Z\",\"createdDateTime\":\"2021-06-25T20:12:07Z\",\"expirationDateTime\":\"2021-06-26T20:12:07Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "8d44bff1-dbaa-4590-b5fc-cf7199632a35", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:07 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/65d9e2bc-b0af-419d-bee4-3c72fd7bca0e", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"65d9e2bc-b0af-419d-bee4-3c72fd7bca0e\",\"lastUpdateDateTime\":\"2021-06-25T20:12:10Z\",\"createdDateTime\":\"2021-06-25T20:12:07Z\",\"expirationDateTime\":\"2021-06-26T20:12:07Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "7f71b1c5-78e9-4786-9511-f8d321489fa9", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:09 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/65d9e2bc-b0af-419d-bee4-3c72fd7bca0e", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"65d9e2bc-b0af-419d-bee4-3c72fd7bca0e\",\"lastUpdateDateTime\":\"2021-06-25T20:12:10Z\",\"createdDateTime\":\"2021-06-25T20:12:07Z\",\"expirationDateTime\":\"2021-06-26T20:12:07Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "29fdabc7-e5ea-42d3-badb-64e41da9ce06", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:11 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "72" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/65d9e2bc-b0af-419d-bee4-3c72fd7bca0e", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"65d9e2bc-b0af-419d-bee4-3c72fd7bca0e\",\"lastUpdateDateTime\":\"2021-06-25T20:12:10Z\",\"createdDateTime\":\"2021-06-25T20:12:07Z\",\"expirationDateTime\":\"2021-06-26T20:12:07Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "684aee41-c8ef-4cef-95ec-0a67a3358293", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:12 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "61" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "244cc773590bf1739b9bee615d0136fa" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.json new file mode 100644 index 000000000000..2403047095d7 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.json @@ -0,0 +1,147 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1331", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:11 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "ee464cb8-b764-4cf5-b11c-68d500767700" + } + }, + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\",\"language\":\"\"},{\"id\":\"2\",\"text\":\"I did not like the hotel we stayed at.\",\"language\":\"\"},{\"id\":\"3\",\"text\":\"The restaurant had really good food.\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "469e787e-8e15-41b2-9612-b86d4356ab93", + "date": "Fri, 25 Jun 2021 20:12:12 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/e9282c8e-9326-4c0f-b293-afc0a5069fe9", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "170" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/e9282c8e-9326-4c0f-b293-afc0a5069fe9", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e9282c8e-9326-4c0f-b293-afc0a5069fe9\",\"lastUpdateDateTime\":\"2021-06-25T20:12:13Z\",\"createdDateTime\":\"2021-06-25T20:12:12Z\",\"expirationDateTime\":\"2021-06-26T20:12:12Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "ffdac019-3a98-4b28-9533-9f027058f503", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:12 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/e9282c8e-9326-4c0f-b293-afc0a5069fe9", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e9282c8e-9326-4c0f-b293-afc0a5069fe9\",\"lastUpdateDateTime\":\"2021-06-25T20:12:13Z\",\"createdDateTime\":\"2021-06-25T20:12:12Z\",\"expirationDateTime\":\"2021-06-26T20:12:12Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "a05a488c-a8ae-4c0d-902a-9b4083e6eae6", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:12 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/e9282c8e-9326-4c0f-b293-afc0a5069fe9", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e9282c8e-9326-4c0f-b293-afc0a5069fe9\",\"lastUpdateDateTime\":\"2021-06-25T20:12:15Z\",\"createdDateTime\":\"2021-06-25T20:12:12Z\",\"expirationDateTime\":\"2021-06-26T20:12:12Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "cbda440f-01cd-4efc-b159-a0914f976b74", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:14 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "12" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/e9282c8e-9326-4c0f-b293-afc0a5069fe9", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e9282c8e-9326-4c0f-b293-afc0a5069fe9\",\"lastUpdateDateTime\":\"2021-06-25T20:12:15Z\",\"createdDateTime\":\"2021-06-25T20:12:12Z\",\"expirationDateTime\":\"2021-06-26T20:12:12Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "a31de48b-5e2a-4704-8dfd-e1c7163fb5c3", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:16 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "68" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/e9282c8e-9326-4c0f-b293-afc0a5069fe9", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"e9282c8e-9326-4c0f-b293-afc0a5069fe9\",\"lastUpdateDateTime\":\"2021-06-25T20:12:15Z\",\"createdDateTime\":\"2021-06-25T20:12:12Z\",\"expirationDateTime\":\"2021-06-26T20:12:12Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "4cbd6b4a-e329-4de1-ad57-1ea3027216de", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:17 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "67" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "9a24b1f99cf69c19826f3e7864953d2e" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_language_hint.json new file mode 100644 index 000000000000..a82bf6a3b6c0 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_language_hint.json @@ -0,0 +1,318 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1331", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:43 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "ee464cb8-b764-4cf5-b11c-68d5456f7700" + } + }, + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"This was the best day of my life.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"I did not like the hotel we stayed at. It was too expensive.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"The restaurant was not as good as I hoped.\",\"language\":\"en\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "5a55ac92-3471-4d7d-96f8-fe0b2ef35d6c", + "date": "Fri, 25 Jun 2021 20:11:43 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/74f459f2-da56-4939-8c3a-c3964686395f", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "231" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/74f459f2-da56-4939-8c3a-c3964686395f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"74f459f2-da56-4939-8c3a-c3964686395f\",\"lastUpdateDateTime\":\"2021-06-25T20:11:44Z\",\"createdDateTime\":\"2021-06-25T20:11:44Z\",\"expirationDateTime\":\"2021-06-26T20:11:44Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "74a98f06-02ea-4d12-b1a4-a58d3454a8ab", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:43 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/74f459f2-da56-4939-8c3a-c3964686395f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"74f459f2-da56-4939-8c3a-c3964686395f\",\"lastUpdateDateTime\":\"2021-06-25T20:11:44Z\",\"createdDateTime\":\"2021-06-25T20:11:44Z\",\"expirationDateTime\":\"2021-06-26T20:11:44Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "191ea985-b8e9-49f8-9a69-098b42989ec9", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:44 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/74f459f2-da56-4939-8c3a-c3964686395f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"74f459f2-da56-4939-8c3a-c3964686395f\",\"lastUpdateDateTime\":\"2021-06-25T20:11:44Z\",\"createdDateTime\":\"2021-06-25T20:11:44Z\",\"expirationDateTime\":\"2021-06-26T20:11:44Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "d3349f9a-7c7e-4601-a0eb-d18270a431fe", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:46 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/74f459f2-da56-4939-8c3a-c3964686395f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"74f459f2-da56-4939-8c3a-c3964686395f\",\"lastUpdateDateTime\":\"2021-06-25T20:11:44Z\",\"createdDateTime\":\"2021-06-25T20:11:44Z\",\"expirationDateTime\":\"2021-06-26T20:11:44Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "6afaf3e1-fca4-4614-8f62-4937705ff66e", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:48 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "15" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/74f459f2-da56-4939-8c3a-c3964686395f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"74f459f2-da56-4939-8c3a-c3964686395f\",\"lastUpdateDateTime\":\"2021-06-25T20:11:44Z\",\"createdDateTime\":\"2021-06-25T20:11:44Z\",\"expirationDateTime\":\"2021-06-26T20:11:44Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "e6071dbd-e4ed-4f43-b6f7-0b369038c1a0", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:50 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/74f459f2-da56-4939-8c3a-c3964686395f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"74f459f2-da56-4939-8c3a-c3964686395f\",\"lastUpdateDateTime\":\"2021-06-25T20:11:44Z\",\"createdDateTime\":\"2021-06-25T20:11:44Z\",\"expirationDateTime\":\"2021-06-26T20:11:44Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "29c6c38f-33c6-4f10-a593-621fa68bfd19", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:51 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/74f459f2-da56-4939-8c3a-c3964686395f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"74f459f2-da56-4939-8c3a-c3964686395f\",\"lastUpdateDateTime\":\"2021-06-25T20:11:44Z\",\"createdDateTime\":\"2021-06-25T20:11:44Z\",\"expirationDateTime\":\"2021-06-26T20:11:44Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "e46fe2de-b7c5-4cfb-aede-e534bb929f3c", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:53 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/74f459f2-da56-4939-8c3a-c3964686395f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"74f459f2-da56-4939-8c3a-c3964686395f\",\"lastUpdateDateTime\":\"2021-06-25T20:11:55Z\",\"createdDateTime\":\"2021-06-25T20:11:44Z\",\"expirationDateTime\":\"2021-06-26T20:11:44Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "4855b420-9205-4e4f-a308-52ecfd38cf5a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:56 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "11" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/74f459f2-da56-4939-8c3a-c3964686395f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"74f459f2-da56-4939-8c3a-c3964686395f\",\"lastUpdateDateTime\":\"2021-06-25T20:11:55Z\",\"createdDateTime\":\"2021-06-25T20:11:44Z\",\"expirationDateTime\":\"2021-06-26T20:11:44Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "de5fea2c-8949-4780-94f7-b97d89dd430a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:11:58 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/74f459f2-da56-4939-8c3a-c3964686395f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"74f459f2-da56-4939-8c3a-c3964686395f\",\"lastUpdateDateTime\":\"2021-06-25T20:11:55Z\",\"createdDateTime\":\"2021-06-25T20:11:44Z\",\"expirationDateTime\":\"2021-06-26T20:11:44Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "e3630184-a8ec-4630-82ef-5f2b06f9c876", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:00 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/74f459f2-da56-4939-8c3a-c3964686395f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"74f459f2-da56-4939-8c3a-c3964686395f\",\"lastUpdateDateTime\":\"2021-06-25T20:11:55Z\",\"createdDateTime\":\"2021-06-25T20:11:44Z\",\"expirationDateTime\":\"2021-06-26T20:11:44Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "45e5a558-0587-46d3-bf7b-cd7ea67993ce", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:03 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/74f459f2-da56-4939-8c3a-c3964686395f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"74f459f2-da56-4939-8c3a-c3964686395f\",\"lastUpdateDateTime\":\"2021-06-25T20:11:55Z\",\"createdDateTime\":\"2021-06-25T20:11:44Z\",\"expirationDateTime\":\"2021-06-26T20:11:44Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "3cbc8620-b395-44ab-8808-644378b22aa2", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:04 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/74f459f2-da56-4939-8c3a-c3964686395f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"74f459f2-da56-4939-8c3a-c3964686395f\",\"lastUpdateDateTime\":\"2021-06-25T20:12:05Z\",\"createdDateTime\":\"2021-06-25T20:11:44Z\",\"expirationDateTime\":\"2021-06-26T20:11:44Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "345656c8-1178-4b90-a90d-6e2f5723a36f", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:07 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "63" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/74f459f2-da56-4939-8c3a-c3964686395f", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"74f459f2-da56-4939-8c3a-c3964686395f\",\"lastUpdateDateTime\":\"2021-06-25T20:12:05Z\",\"createdDateTime\":\"2021-06-25T20:11:44Z\",\"expirationDateTime\":\"2021-06-26T20:11:44Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "f8fb71b8-2378-42c6-b4ae-e56cdba61a05", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:07 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "79" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "33965f5fc7bffb3476452949579b99ba" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.json new file mode 100644 index 000000000000..cd4ddb2ff7e8 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/aad_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.json @@ -0,0 +1,147 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/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%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1331", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:16 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+san\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.11829.9 - EUS ProdSlices", + "x-ms-request-id": "04923b22-c5b5-4349-b2d4-c55047097e00" + } + }, + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I should take my cat to the veterinarian.\"},{\"id\":\"2\",\"text\":\"Este es un document escrito en Español.\"},{\"id\":\"3\",\"text\":\"猫は幸せ\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "296a0362-7182-494b-9a89-79fe05d06a26", + "date": "Fri, 25 Jun 2021 20:12:17 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/b649dbfb-4faf-4d9b-a843-5232ac913bc2", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "173" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/b649dbfb-4faf-4d9b-a843-5232ac913bc2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"b649dbfb-4faf-4d9b-a843-5232ac913bc2\",\"lastUpdateDateTime\":\"2021-06-25T20:12:17Z\",\"createdDateTime\":\"2021-06-25T20:12:17Z\",\"expirationDateTime\":\"2021-06-26T20:12:17Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "8f82bd62-c4d6-4d2a-809e-91bd9193a1f7", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:17 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "11" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/b649dbfb-4faf-4d9b-a843-5232ac913bc2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"b649dbfb-4faf-4d9b-a843-5232ac913bc2\",\"lastUpdateDateTime\":\"2021-06-25T20:12:17Z\",\"createdDateTime\":\"2021-06-25T20:12:17Z\",\"expirationDateTime\":\"2021-06-26T20:12:17Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "4e2c4db6-98e1-4463-ba4a-2ef9f17687de", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:17 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/b649dbfb-4faf-4d9b-a843-5232ac913bc2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"b649dbfb-4faf-4d9b-a843-5232ac913bc2\",\"lastUpdateDateTime\":\"2021-06-25T20:12:20Z\",\"createdDateTime\":\"2021-06-25T20:12:17Z\",\"expirationDateTime\":\"2021-06-26T20:12:17Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "fd42df8b-6a1a-4f53-98c9-e4218651e3e9", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:19 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "5" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/b649dbfb-4faf-4d9b-a843-5232ac913bc2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"b649dbfb-4faf-4d9b-a843-5232ac913bc2\",\"lastUpdateDateTime\":\"2021-06-25T20:12:20Z\",\"createdDateTime\":\"2021-06-25T20:12:17Z\",\"expirationDateTime\":\"2021-06-26T20:12:17Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"offset\":28,\"length\":12,\"text\":\"veterinarian\",\"category\":\"HealthcareProfession\",\"confidenceScore\":0.98}],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "31590d49-46c0-4318-82d3-44d2cc199415", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:32 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10109" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/b649dbfb-4faf-4d9b-a843-5232ac913bc2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"b649dbfb-4faf-4d9b-a843-5232ac913bc2\",\"lastUpdateDateTime\":\"2021-06-25T20:12:20Z\",\"createdDateTime\":\"2021-06-25T20:12:17Z\",\"expirationDateTime\":\"2021-06-26T20:12:17Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"offset\":28,\"length\":12,\"text\":\"veterinarian\",\"category\":\"HealthcareProfession\",\"confidenceScore\":0.98}],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "853beccd-a689-4d04-b8db-9325cee24f56", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:12:32 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "96" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "7bec52ba89e96a0ba2f2013638873cb4" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_fast_tests/recording_extractkeyphrases.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_fast_tests/recording_extractkeyphrases.json deleted file mode 100644 index 4af721472c85..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_fast_tests/recording_extractkeyphrases.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "recordings": [ - { - "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/keyPhrases", - "query": {}, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last weekend\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"wonderful trip\",\"Seattle\",\"weekend\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-07-01\"}", - "responseHeaders": { - "apim-request-id": "03e0f541-7e1e-48b7-aa64-19320000e4a7", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:15:39 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "cf1d81ad6df4fa9e5213015af7f3ea71" -} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_fast_tests/recording_recognizeentities.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_fast_tests/recording_recognizeentities.json deleted file mode 100644 index 63ff0fab9a06..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_fast_tests/recording_recognizeentities.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "recordings": [ - { - "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/general", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last weekend.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"id\":\"0\",\"entities\":[{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":26,\"length\":7,\"confidenceScore\":0.99},{\"text\":\"last weekend\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":12,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "03d4723d-ddab-478c-962d-a28b20958d45", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:15:44 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5031" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "8dbb3276cbe3785c382703aa44e8eebf" -} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_fast_tests/recording_recognizelinkedentities.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_fast_tests/recording_recognizelinkedentities.json deleted file mode 100644 index ad6e0b135f38..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_fast_tests/recording_recognizelinkedentities.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "recordings": [ - { - "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/linking", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"the Roman god Mars\",\"language\":\"en\"}]}", - "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": "c2d8a0e5-aff9-4787-a50b-3a58b6049dab", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:15:53 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9347" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "f144458b092c2704d4594b72054e94ce" -} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_fast_tests/recording_recognizepiientities.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_fast_tests/recording_recognizepiientities.json deleted file mode 100644 index eb252ae68de9..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_fast_tests/recording_recognizepiientities.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "recordings": [ - { - "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/recognition/pii", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"Your social-security number is 078-05-1120.\",\"language\":\"en\"}]}", - "status": 200, - "response": "{\"documents\":[{\"redactedText\":\"Your social-security number is 078-05-1120.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", - "responseHeaders": { - "apim-request-id": "5c0461d9-c2eb-443f-b5b7-95fe78b4aa05", - "content-type": "application/json; charset=utf-8", - "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:15:53 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "53" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "c6ded2f2a6e780274f62876dc34f5f1b" -} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_cancelled.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_cancelled.json deleted file mode 100644 index 79948910357d..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_cancelled.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "recordings": [ - { - "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"Patient does not suffer from high blood pressure.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Prescribed 100mg ibuprofen, taken twice daily.\",\"language\":\"en\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "48558744-84fd-4e28-952c-993c1605c674", - "date": "Wed, 12 May 2021 19:16:55 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/3cf8828f-2b29-4480-82b2-416984cc703b", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "89" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/3cf8828f-2b29-4480-82b2-416984cc703b", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"3cf8828f-2b29-4480-82b2-416984cc703b\",\"lastUpdateDateTime\":\"2021-05-12T19:16:56Z\",\"createdDateTime\":\"2021-05-12T19:16:56Z\",\"expirationDateTime\":\"2021-05-13T19:16:56Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "7b524289-390c-4da3-b3a4-a9ea08ab9748", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:55 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "DELETE", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/3cf8828f-2b29-4480-82b2-416984cc703b", - "query": {}, - "requestBody": null, - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "9c7be85b-9685-4c8e-9eb0-5458bda91c9d", - "date": "Wed, 12 May 2021 19:16:55 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/3cf8828f-2b29-4480-82b2-416984cc703b", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "14" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "fe6d1378127716637c4cee0bce52971e" -} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_document_warnings.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_document_warnings.json deleted file mode 100644 index af4ad9baa67a..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_document_warnings.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "recordings": [ - { - "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"This won't actually create a warning :'(\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "f94c4e92-a724-4051-b2ae-f2a71d922cc4", - "date": "Wed, 12 May 2021 19:16:24 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/08b603dc-778c-4164-a26f-2df866b79876", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "66" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/08b603dc-778c-4164-a26f-2df866b79876", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"08b603dc-778c-4164-a26f-2df866b79876\",\"lastUpdateDateTime\":\"2021-05-12T19:16:24Z\",\"createdDateTime\":\"2021-05-12T19:16:24Z\",\"expirationDateTime\":\"2021-05-13T19:16:24Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "8a645615-6ec3-4a1a-9292-fae6cc538d71", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:24 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/08b603dc-778c-4164-a26f-2df866b79876", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"08b603dc-778c-4164-a26f-2df866b79876\",\"lastUpdateDateTime\":\"2021-05-12T19:16:24Z\",\"createdDateTime\":\"2021-05-12T19:16:24Z\",\"expirationDateTime\":\"2021-05-13T19:16:24Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "cfaed01c-7bf8-4691-99b9-afc9657153ff", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:24 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/08b603dc-778c-4164-a26f-2df866b79876", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"08b603dc-778c-4164-a26f-2df866b79876\",\"lastUpdateDateTime\":\"2021-05-12T19:16:24Z\",\"createdDateTime\":\"2021-05-12T19:16:24Z\",\"expirationDateTime\":\"2021-05-13T19:16:24Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "ad7f85ce-f176-4918-afbf-4435c79cad68", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:26 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/08b603dc-778c-4164-a26f-2df866b79876", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"08b603dc-778c-4164-a26f-2df866b79876\",\"lastUpdateDateTime\":\"2021-05-12T19:16:27Z\",\"createdDateTime\":\"2021-05-12T19:16:24Z\",\"expirationDateTime\":\"2021-05-13T19:16:24Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-03-01\"}}", - "responseHeaders": { - "apim-request-id": "49b8f236-875b-42ed-9d38-10c36154a13b", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:28 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "46" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/08b603dc-778c-4164-a26f-2df866b79876", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"08b603dc-778c-4164-a26f-2df866b79876\",\"lastUpdateDateTime\":\"2021-05-12T19:16:27Z\",\"createdDateTime\":\"2021-05-12T19:16:24Z\",\"expirationDateTime\":\"2021-05-13T19:16:24Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-03-01\"}}", - "responseHeaders": { - "apim-request-id": "04d7b2b7-284e-4627-8d70-ebff66e684e0", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:28 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "33" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "d2655048c15e49a910a86dd1406d8fcb" -} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_input_documents.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_input_documents.json deleted file mode 100644 index e632cf6c2f09..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_input_documents.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "recordings": [ - { - "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"Patient does not suffer from high blood pressure.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Prescribed 100mg ibuprofen, taken twice daily.\",\"language\":\"en\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "65972d38-8cb4-48a9-97b2-4a9264556349", - "date": "Wed, 12 May 2021 19:16:10 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/2db5d8e9-e939-4810-9ac7-af4e42b79eb3", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "101" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/2db5d8e9-e939-4810-9ac7-af4e42b79eb3", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2db5d8e9-e939-4810-9ac7-af4e42b79eb3\",\"lastUpdateDateTime\":\"2021-05-12T19:16:10Z\",\"createdDateTime\":\"2021-05-12T19:16:10Z\",\"expirationDateTime\":\"2021-05-13T19:16:10Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "b6bb7bc3-5eb1-4c33-91e3-619af825f333", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:10 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/2db5d8e9-e939-4810-9ac7-af4e42b79eb3", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2db5d8e9-e939-4810-9ac7-af4e42b79eb3\",\"lastUpdateDateTime\":\"2021-05-12T19:16:10Z\",\"createdDateTime\":\"2021-05-12T19:16:10Z\",\"expirationDateTime\":\"2021-05-13T19:16:10Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "57290be7-9940-4238-b196-6dae2b9220e0", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:10 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/2db5d8e9-e939-4810-9ac7-af4e42b79eb3", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2db5d8e9-e939-4810-9ac7-af4e42b79eb3\",\"lastUpdateDateTime\":\"2021-05-12T19:16:10Z\",\"createdDateTime\":\"2021-05-12T19:16:10Z\",\"expirationDateTime\":\"2021-05-13T19:16:10Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "adb43c51-87b1-4cd7-9e7b-37189e1c613d", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:12 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/2db5d8e9-e939-4810-9ac7-af4e42b79eb3", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2db5d8e9-e939-4810-9ac7-af4e42b79eb3\",\"lastUpdateDateTime\":\"2021-05-12T19:16:12Z\",\"createdDateTime\":\"2021-05-12T19:16:10Z\",\"expirationDateTime\":\"2021-05-13T19:16:10Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"offset\":29,\"length\":19,\"text\":\"high blood pressure\",\"category\":\"SymptomOrSign\",\"confidenceScore\":0.96,\"assertion\":{\"certainty\":\"negative\"},\"name\":\"Hypertensive disease\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020538\"},{\"dataSource\":\"AOD\",\"id\":\"0000023317\"},{\"dataSource\":\"BI\",\"id\":\"BI00001\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017493\"},{\"dataSource\":\"CCS\",\"id\":\"7.1\"},{\"dataSource\":\"CHV\",\"id\":\"0000015800\"},{\"dataSource\":\"COSTAR\",\"id\":\"397\"},{\"dataSource\":\"CSP\",\"id\":\"0571-5243\"},{\"dataSource\":\"CST\",\"id\":\"HYPERTENS\"},{\"dataSource\":\"DXP\",\"id\":\"U002034\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0000822\"},{\"dataSource\":\"ICD10\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"I10\"},{\"dataSource\":\"ICD9CM\",\"id\":\"997.91\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU035456\"},{\"dataSource\":\"ICPC2P\",\"id\":\"K85004\"},{\"dataSource\":\"LCH\",\"id\":\"U002317\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85063723\"},{\"dataSource\":\"LNC\",\"id\":\"LA14293-7\"},{\"dataSource\":\"MDR\",\"id\":\"10020772\"},{\"dataSource\":\"MEDCIN\",\"id\":\"33288\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"34\"},{\"dataSource\":\"MSH\",\"id\":\"D006973\"},{\"dataSource\":\"MTH\",\"id\":\"005\"},{\"dataSource\":\"MTHICD9\",\"id\":\"997.91\"},{\"dataSource\":\"NANDA-I\",\"id\":\"00905\"},{\"dataSource\":\"NCI\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E13785\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1908\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000458091\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3117\"},{\"dataSource\":\"NOC\",\"id\":\"060808\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU002068\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11000.06\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000686951\"},{\"dataSource\":\"PSY\",\"id\":\"23830\"},{\"dataSource\":\"RCD\",\"id\":\"XE0Ub\"},{\"dataSource\":\"SNM\",\"id\":\"F-70700\"},{\"dataSource\":\"SNMI\",\"id\":\"D3-02000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"38341003\"},{\"dataSource\":\"WHO\",\"id\":\"0210\"}]}],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/1/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-03-01\"}}", - "responseHeaders": { - "apim-request-id": "15eaa67c-68e7-428e-b2c7-521b1c6b39ce", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:14 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "50" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/2db5d8e9-e939-4810-9ac7-af4e42b79eb3", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"2db5d8e9-e939-4810-9ac7-af4e42b79eb3\",\"lastUpdateDateTime\":\"2021-05-12T19:16:12Z\",\"createdDateTime\":\"2021-05-12T19:16:10Z\",\"expirationDateTime\":\"2021-05-13T19:16:10Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"offset\":29,\"length\":19,\"text\":\"high blood pressure\",\"category\":\"SymptomOrSign\",\"confidenceScore\":0.96,\"assertion\":{\"certainty\":\"negative\"},\"name\":\"Hypertensive disease\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020538\"},{\"dataSource\":\"AOD\",\"id\":\"0000023317\"},{\"dataSource\":\"BI\",\"id\":\"BI00001\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017493\"},{\"dataSource\":\"CCS\",\"id\":\"7.1\"},{\"dataSource\":\"CHV\",\"id\":\"0000015800\"},{\"dataSource\":\"COSTAR\",\"id\":\"397\"},{\"dataSource\":\"CSP\",\"id\":\"0571-5243\"},{\"dataSource\":\"CST\",\"id\":\"HYPERTENS\"},{\"dataSource\":\"DXP\",\"id\":\"U002034\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0000822\"},{\"dataSource\":\"ICD10\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"I10\"},{\"dataSource\":\"ICD9CM\",\"id\":\"997.91\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU035456\"},{\"dataSource\":\"ICPC2P\",\"id\":\"K85004\"},{\"dataSource\":\"LCH\",\"id\":\"U002317\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85063723\"},{\"dataSource\":\"LNC\",\"id\":\"LA14293-7\"},{\"dataSource\":\"MDR\",\"id\":\"10020772\"},{\"dataSource\":\"MEDCIN\",\"id\":\"33288\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"34\"},{\"dataSource\":\"MSH\",\"id\":\"D006973\"},{\"dataSource\":\"MTH\",\"id\":\"005\"},{\"dataSource\":\"MTHICD9\",\"id\":\"997.91\"},{\"dataSource\":\"NANDA-I\",\"id\":\"00905\"},{\"dataSource\":\"NCI\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E13785\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1908\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000458091\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3117\"},{\"dataSource\":\"NOC\",\"id\":\"060808\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU002068\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11000.06\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000686951\"},{\"dataSource\":\"PSY\",\"id\":\"23830\"},{\"dataSource\":\"RCD\",\"id\":\"XE0Ub\"},{\"dataSource\":\"SNM\",\"id\":\"F-70700\"},{\"dataSource\":\"SNMI\",\"id\":\"D3-02000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"38341003\"},{\"dataSource\":\"WHO\",\"id\":\"0210\"}]}],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/1/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-03-01\"}}", - "responseHeaders": { - "apim-request-id": "ab207edb-1ef8-4e82-9e78-cf3dee61218e", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:14 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "45" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "f130cafd14df774327badf36e64f6f35" -} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_input_strings.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_input_strings.json deleted file mode 100644 index d996f29f3a9d..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_input_strings.json +++ /dev/null @@ -1,161 +0,0 @@ -{ - "recordings": [ - { - "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"Patient does not suffer from high blood pressure.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Prescribed 100mg ibuprofen, taken twice daily.\",\"language\":\"en\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "76c6bab3-9673-4ec5-9a29-442916b16767", - "date": "Wed, 12 May 2021 19:15:53 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/daa311d4-03b4-4961-92df-e6e56d689353", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "95" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/daa311d4-03b4-4961-92df-e6e56d689353", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"daa311d4-03b4-4961-92df-e6e56d689353\",\"lastUpdateDateTime\":\"2021-05-12T19:15:54Z\",\"createdDateTime\":\"2021-05-12T19:15:54Z\",\"expirationDateTime\":\"2021-05-13T19:15:54Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "06e90580-c1e9-4b85-976f-fe85130aea38", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:15:54 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "16" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/daa311d4-03b4-4961-92df-e6e56d689353", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"daa311d4-03b4-4961-92df-e6e56d689353\",\"lastUpdateDateTime\":\"2021-05-12T19:15:54Z\",\"createdDateTime\":\"2021-05-12T19:15:54Z\",\"expirationDateTime\":\"2021-05-13T19:15:54Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "e1f15826-d827-4327-864d-d418d542aea7", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:15:54 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/daa311d4-03b4-4961-92df-e6e56d689353", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"daa311d4-03b4-4961-92df-e6e56d689353\",\"lastUpdateDateTime\":\"2021-05-12T19:15:54Z\",\"createdDateTime\":\"2021-05-12T19:15:54Z\",\"expirationDateTime\":\"2021-05-13T19:15:54Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "0ddee316-082e-4a42-8a9d-5b23aefe4d43", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:15:56 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/daa311d4-03b4-4961-92df-e6e56d689353", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"daa311d4-03b4-4961-92df-e6e56d689353\",\"lastUpdateDateTime\":\"2021-05-12T19:15:54Z\",\"createdDateTime\":\"2021-05-12T19:15:54Z\",\"expirationDateTime\":\"2021-05-13T19:15:54Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "239b66c3-5f46-42a9-83f2-aced43a7b231", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:15:59 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/daa311d4-03b4-4961-92df-e6e56d689353", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"daa311d4-03b4-4961-92df-e6e56d689353\",\"lastUpdateDateTime\":\"2021-05-12T19:15:54Z\",\"createdDateTime\":\"2021-05-12T19:15:54Z\",\"expirationDateTime\":\"2021-05-13T19:15:54Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "e4ce4dd7-111e-4c71-94b4-d857611792c7", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:01 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "17" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/daa311d4-03b4-4961-92df-e6e56d689353", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"daa311d4-03b4-4961-92df-e6e56d689353\",\"lastUpdateDateTime\":\"2021-05-12T19:16:03Z\",\"createdDateTime\":\"2021-05-12T19:15:54Z\",\"expirationDateTime\":\"2021-05-13T19:15:54Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":29,\"length\":19,\"text\":\"high blood pressure\",\"category\":\"SymptomOrSign\",\"confidenceScore\":0.96,\"assertion\":{\"certainty\":\"negative\"},\"name\":\"Hypertensive disease\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020538\"},{\"dataSource\":\"AOD\",\"id\":\"0000023317\"},{\"dataSource\":\"BI\",\"id\":\"BI00001\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017493\"},{\"dataSource\":\"CCS\",\"id\":\"7.1\"},{\"dataSource\":\"CHV\",\"id\":\"0000015800\"},{\"dataSource\":\"COSTAR\",\"id\":\"397\"},{\"dataSource\":\"CSP\",\"id\":\"0571-5243\"},{\"dataSource\":\"CST\",\"id\":\"HYPERTENS\"},{\"dataSource\":\"DXP\",\"id\":\"U002034\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0000822\"},{\"dataSource\":\"ICD10\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"I10\"},{\"dataSource\":\"ICD9CM\",\"id\":\"997.91\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU035456\"},{\"dataSource\":\"ICPC2P\",\"id\":\"K85004\"},{\"dataSource\":\"LCH\",\"id\":\"U002317\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85063723\"},{\"dataSource\":\"LNC\",\"id\":\"LA14293-7\"},{\"dataSource\":\"MDR\",\"id\":\"10020772\"},{\"dataSource\":\"MEDCIN\",\"id\":\"33288\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"34\"},{\"dataSource\":\"MSH\",\"id\":\"D006973\"},{\"dataSource\":\"MTH\",\"id\":\"005\"},{\"dataSource\":\"MTHICD9\",\"id\":\"997.91\"},{\"dataSource\":\"NANDA-I\",\"id\":\"00905\"},{\"dataSource\":\"NCI\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E13785\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1908\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000458091\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3117\"},{\"dataSource\":\"NOC\",\"id\":\"060808\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU002068\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11000.06\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000686951\"},{\"dataSource\":\"PSY\",\"id\":\"23830\"},{\"dataSource\":\"RCD\",\"id\":\"XE0Ub\"},{\"dataSource\":\"SNM\",\"id\":\"F-70700\"},{\"dataSource\":\"SNMI\",\"id\":\"D3-02000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"38341003\"},{\"dataSource\":\"WHO\",\"id\":\"0210\"}]}],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/1/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-03-01\"}}", - "responseHeaders": { - "apim-request-id": "b2271d25-cb3e-401f-8a3d-5e5b3cc61403", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:03 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "49" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/daa311d4-03b4-4961-92df-e6e56d689353", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"daa311d4-03b4-4961-92df-e6e56d689353\",\"lastUpdateDateTime\":\"2021-05-12T19:16:03Z\",\"createdDateTime\":\"2021-05-12T19:15:54Z\",\"expirationDateTime\":\"2021-05-13T19:15:54Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":29,\"length\":19,\"text\":\"high blood pressure\",\"category\":\"SymptomOrSign\",\"confidenceScore\":0.96,\"assertion\":{\"certainty\":\"negative\"},\"name\":\"Hypertensive disease\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020538\"},{\"dataSource\":\"AOD\",\"id\":\"0000023317\"},{\"dataSource\":\"BI\",\"id\":\"BI00001\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017493\"},{\"dataSource\":\"CCS\",\"id\":\"7.1\"},{\"dataSource\":\"CHV\",\"id\":\"0000015800\"},{\"dataSource\":\"COSTAR\",\"id\":\"397\"},{\"dataSource\":\"CSP\",\"id\":\"0571-5243\"},{\"dataSource\":\"CST\",\"id\":\"HYPERTENS\"},{\"dataSource\":\"DXP\",\"id\":\"U002034\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0000822\"},{\"dataSource\":\"ICD10\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"I10\"},{\"dataSource\":\"ICD9CM\",\"id\":\"997.91\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU035456\"},{\"dataSource\":\"ICPC2P\",\"id\":\"K85004\"},{\"dataSource\":\"LCH\",\"id\":\"U002317\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85063723\"},{\"dataSource\":\"LNC\",\"id\":\"LA14293-7\"},{\"dataSource\":\"MDR\",\"id\":\"10020772\"},{\"dataSource\":\"MEDCIN\",\"id\":\"33288\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"34\"},{\"dataSource\":\"MSH\",\"id\":\"D006973\"},{\"dataSource\":\"MTH\",\"id\":\"005\"},{\"dataSource\":\"MTHICD9\",\"id\":\"997.91\"},{\"dataSource\":\"NANDA-I\",\"id\":\"00905\"},{\"dataSource\":\"NCI\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E13785\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1908\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000458091\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3117\"},{\"dataSource\":\"NOC\",\"id\":\"060808\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU002068\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11000.06\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000686951\"},{\"dataSource\":\"PSY\",\"id\":\"23830\"},{\"dataSource\":\"RCD\",\"id\":\"XE0Ub\"},{\"dataSource\":\"SNM\",\"id\":\"F-70700\"},{\"dataSource\":\"SNMI\",\"id\":\"D3-02000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"38341003\"},{\"dataSource\":\"WHO\",\"id\":\"0210\"}]}],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/1/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-03-01\"}}", - "responseHeaders": { - "apim-request-id": "2d6ad25f-4895-4aa2-9d28-29ff19f0497b", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:03 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "53" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "795ec52148631ba9241a964c44998e59" -} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_operation_metadata.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_operation_metadata.json deleted file mode 100644 index 550436d5c7b9..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_operation_metadata.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "recordings": [ - { - "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"Patient does not suffer from high blood pressure.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Prescribed 100mg ibuprofen, taken twice daily.\",\"language\":\"en\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "f80ffcac-3324-4f74-97ad-7ff326bab656", - "date": "Wed, 12 May 2021 19:16:55 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/caf47aa5-0f22-4d24-8ff4-62ca8e9b1292", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "109" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/caf47aa5-0f22-4d24-8ff4-62ca8e9b1292", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"caf47aa5-0f22-4d24-8ff4-62ca8e9b1292\",\"lastUpdateDateTime\":\"2021-05-12T19:16:56Z\",\"createdDateTime\":\"2021-05-12T19:16:56Z\",\"expirationDateTime\":\"2021-05-13T19:16:56Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "03e29a61-e1e8-44b8-8fe7-72bc296cc785", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:56 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/caf47aa5-0f22-4d24-8ff4-62ca8e9b1292", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"caf47aa5-0f22-4d24-8ff4-62ca8e9b1292\",\"lastUpdateDateTime\":\"2021-05-12T19:16:56Z\",\"createdDateTime\":\"2021-05-12T19:16:56Z\",\"expirationDateTime\":\"2021-05-13T19:16:56Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "b355c104-3e44-4c8e-95c1-707cc159ab88", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:56 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/caf47aa5-0f22-4d24-8ff4-62ca8e9b1292", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"caf47aa5-0f22-4d24-8ff4-62ca8e9b1292\",\"lastUpdateDateTime\":\"2021-05-12T19:16:57Z\",\"createdDateTime\":\"2021-05-12T19:16:56Z\",\"expirationDateTime\":\"2021-05-13T19:16:56Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"offset\":29,\"length\":19,\"text\":\"high blood pressure\",\"category\":\"SymptomOrSign\",\"confidenceScore\":0.96,\"assertion\":{\"certainty\":\"negative\"},\"name\":\"Hypertensive disease\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020538\"},{\"dataSource\":\"AOD\",\"id\":\"0000023317\"},{\"dataSource\":\"BI\",\"id\":\"BI00001\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017493\"},{\"dataSource\":\"CCS\",\"id\":\"7.1\"},{\"dataSource\":\"CHV\",\"id\":\"0000015800\"},{\"dataSource\":\"COSTAR\",\"id\":\"397\"},{\"dataSource\":\"CSP\",\"id\":\"0571-5243\"},{\"dataSource\":\"CST\",\"id\":\"HYPERTENS\"},{\"dataSource\":\"DXP\",\"id\":\"U002034\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0000822\"},{\"dataSource\":\"ICD10\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"I10\"},{\"dataSource\":\"ICD9CM\",\"id\":\"997.91\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU035456\"},{\"dataSource\":\"ICPC2P\",\"id\":\"K85004\"},{\"dataSource\":\"LCH\",\"id\":\"U002317\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85063723\"},{\"dataSource\":\"LNC\",\"id\":\"LA14293-7\"},{\"dataSource\":\"MDR\",\"id\":\"10020772\"},{\"dataSource\":\"MEDCIN\",\"id\":\"33288\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"34\"},{\"dataSource\":\"MSH\",\"id\":\"D006973\"},{\"dataSource\":\"MTH\",\"id\":\"005\"},{\"dataSource\":\"MTHICD9\",\"id\":\"997.91\"},{\"dataSource\":\"NANDA-I\",\"id\":\"00905\"},{\"dataSource\":\"NCI\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E13785\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1908\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000458091\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3117\"},{\"dataSource\":\"NOC\",\"id\":\"060808\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU002068\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11000.06\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000686951\"},{\"dataSource\":\"PSY\",\"id\":\"23830\"},{\"dataSource\":\"RCD\",\"id\":\"XE0Ub\"},{\"dataSource\":\"SNM\",\"id\":\"F-70700\"},{\"dataSource\":\"SNMI\",\"id\":\"D3-02000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"38341003\"},{\"dataSource\":\"WHO\",\"id\":\"0210\"}]}],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/1/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-03-01\"}}", - "responseHeaders": { - "apim-request-id": "50f0ca40-c482-4f13-995e-0208c6ac233d", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:58 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "47" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "fc32f513c2114144a5189b7b8bac8cc4" -} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.json deleted file mode 100644 index ea6bc6649ce6..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "recordings": [ - { - "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"one\"},{\"id\":\"2\",\"text\":\"two\"},{\"id\":\"3\",\"text\":\"three\"},{\"id\":\"4\",\"text\":\"four\"},{\"id\":\"5\",\"text\":\"five\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "cf44339f-bf29-4385-9a9d-7bb556b12d59", - "date": "Wed, 12 May 2021 19:16:28 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/c6c4fc65-aa76-4ae5-9f3a-2d8a4c5a927f", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "104" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/c6c4fc65-aa76-4ae5-9f3a-2d8a4c5a927f", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"c6c4fc65-aa76-4ae5-9f3a-2d8a4c5a927f\",\"lastUpdateDateTime\":\"2021-05-12T19:16:29Z\",\"createdDateTime\":\"2021-05-12T19:16:29Z\",\"expirationDateTime\":\"2021-05-13T19:16:29Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "0018475c-8cc1-4021-9930-5a0d7664e14c", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:28 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/c6c4fc65-aa76-4ae5-9f3a-2d8a4c5a927f", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"c6c4fc65-aa76-4ae5-9f3a-2d8a4c5a927f\",\"lastUpdateDateTime\":\"2021-05-12T19:16:29Z\",\"createdDateTime\":\"2021-05-12T19:16:29Z\",\"expirationDateTime\":\"2021-05-13T19:16:29Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "4030f5da-7d99-48f1-a30d-1aeaddefd6d7", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:28 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/c6c4fc65-aa76-4ae5-9f3a-2d8a4c5a927f", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"c6c4fc65-aa76-4ae5-9f3a-2d8a4c5a927f\",\"lastUpdateDateTime\":\"2021-05-12T19:16:29Z\",\"createdDateTime\":\"2021-05-12T19:16:29Z\",\"expirationDateTime\":\"2021-05-13T19:16:29Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "34c3fe80-84ee-4954-a816-3a4d8e1255e2", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:30 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/c6c4fc65-aa76-4ae5-9f3a-2d8a4c5a927f", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"c6c4fc65-aa76-4ae5-9f3a-2d8a4c5a927f\",\"lastUpdateDateTime\":\"2021-05-12T19:16:32Z\",\"createdDateTime\":\"2021-05-12T19:16:29Z\",\"expirationDateTime\":\"2021-05-13T19:16:29Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-03-01\"}}", - "responseHeaders": { - "apim-request-id": "d5f1164b-f99a-4b2c-97d6-4491eb9564db", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:32 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "69" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/c6c4fc65-aa76-4ae5-9f3a-2d8a4c5a927f", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"c6c4fc65-aa76-4ae5-9f3a-2d8a4c5a927f\",\"lastUpdateDateTime\":\"2021-05-12T19:16:32Z\",\"createdDateTime\":\"2021-05-12T19:16:29Z\",\"expirationDateTime\":\"2021-05-13T19:16:29Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-03-01\"}}", - "responseHeaders": { - "apim-request-id": "20cc2f9d-5035-47ba-b08e-f63874f4ee1b", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:32 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "72" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "c7a438e27d1ed9df355c51c3723255c8" -} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_payload_too_large.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_payload_too_large.json deleted file mode 100644 index ffd919044be8..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_payload_too_large.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "recordings": [ - { - "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"6\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"7\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"8\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"9\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"10\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"11\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"12\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"13\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"14\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"15\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"16\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"17\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"18\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"19\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"20\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"21\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"22\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"23\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"24\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"25\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"26\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"27\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"28\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"29\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"30\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"31\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"32\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"33\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"34\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"35\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"36\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"37\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"38\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"39\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"40\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"41\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"42\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"43\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"44\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"45\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"46\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"47\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"48\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"49\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"50\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"51\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"52\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"53\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"54\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"55\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"56\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"57\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"58\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"59\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"60\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"61\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"62\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"63\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"64\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"65\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"66\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"67\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"68\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"69\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"70\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"71\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"72\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"73\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"74\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"75\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"76\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"77\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"78\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"79\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"80\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"81\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"82\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"83\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"84\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"85\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"86\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"87\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"88\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"89\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"90\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"91\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"92\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"93\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"94\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"95\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"96\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"97\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"98\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"99\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"100\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"101\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"102\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"103\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"104\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"105\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"106\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"107\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"108\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"109\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"110\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"111\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"112\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"113\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"114\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"115\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"116\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"117\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"118\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"119\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"120\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"121\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"122\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"123\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"124\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"125\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"126\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"127\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"128\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"129\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"130\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"131\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"132\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"133\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"134\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"135\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"136\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"137\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"138\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"139\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"140\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"141\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"142\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"143\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"144\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"145\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"146\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"147\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"148\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"149\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"150\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"151\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"152\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"153\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"154\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"155\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"156\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"157\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"158\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"159\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"160\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"161\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"162\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"163\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"164\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"165\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"166\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"167\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"168\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"169\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"170\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"171\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"172\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"173\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"174\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"175\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"176\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"177\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"178\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"179\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"180\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"181\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"182\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"183\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"184\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"185\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"186\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"187\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"188\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"189\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"190\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"191\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"192\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"193\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"194\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"195\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"196\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"197\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"198\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"199\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"200\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"201\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"202\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"203\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"204\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"205\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"206\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"207\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"208\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"209\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"210\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"211\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"212\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"213\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"214\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"215\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"216\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"217\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"218\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"219\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"220\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"221\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"222\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"223\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"224\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"225\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"226\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"227\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"228\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"229\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"230\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"231\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"232\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"233\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"234\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"235\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"236\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"237\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"238\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"239\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"240\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"241\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"242\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"243\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"244\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"245\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"246\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"247\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"248\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"249\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"250\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"251\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"252\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"253\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"254\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"255\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"256\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"257\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"258\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"259\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"260\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"261\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"262\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"263\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"264\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"265\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"266\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"267\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"268\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"269\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"270\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"271\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"272\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"273\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"274\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"275\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"276\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"277\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"278\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"279\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"280\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"281\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"282\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"283\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"284\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"285\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"286\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"287\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"288\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"289\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"290\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"291\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"292\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"293\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"294\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"295\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"296\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"297\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"298\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"299\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"300\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"301\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"302\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"303\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"304\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"305\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"306\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"307\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"308\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"309\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"310\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"311\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"312\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"313\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"314\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"315\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"316\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"317\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"318\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"319\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"320\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"321\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"322\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"323\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"324\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"325\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"326\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"327\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"328\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"329\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"330\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"331\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"332\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"333\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"334\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"335\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"336\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"337\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"338\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"339\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"340\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"341\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"342\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"343\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"344\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"345\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"346\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"347\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"348\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"349\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"350\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"351\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"352\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"353\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"354\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"355\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"356\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"357\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"358\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"359\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"360\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"361\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"362\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"363\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"364\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"365\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"366\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"367\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"368\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"369\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"370\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"371\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"372\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"373\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"374\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"375\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"376\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"377\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"378\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"379\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"380\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"381\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"382\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"383\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"384\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"385\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"386\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"387\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"388\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"389\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"390\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"391\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"392\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"393\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"394\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"395\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"396\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"397\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"398\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"399\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"400\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"401\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"402\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"403\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"404\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"405\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"406\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"407\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"408\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"409\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"410\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"411\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"412\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"413\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"414\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"415\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"416\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"417\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"418\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"419\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"420\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"421\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"422\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"423\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"424\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"425\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"426\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"427\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"428\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"429\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"430\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"431\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"432\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"433\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"434\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"435\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"436\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"437\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"438\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"439\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"440\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"441\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"442\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"443\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"444\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"445\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"446\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"447\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"448\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"449\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"450\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"451\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"452\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"453\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"454\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"455\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"456\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"457\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"458\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"459\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"460\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"461\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"462\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"463\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"464\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"465\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"466\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"467\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"468\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"469\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"470\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"471\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"472\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"473\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"474\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"475\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"476\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"477\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"478\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"479\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"480\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"481\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"482\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"483\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"484\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"485\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"486\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"487\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"488\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"489\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"490\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"491\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"492\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"493\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"494\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"495\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"496\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"497\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"498\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"499\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"}]}", - "status": 413, - "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocumentBatch\",\"message\":\"Request Payload sent is too large to be processed. Limit request size to: 524288\"}}}", - "responseHeaders": { - "apim-request-id": "b02e78a4-a8cf-4b3f-9943-1b3fa5b4ff29", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:24 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "50" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "071e2e4eb52be5c9ce6530b59569c4c5" -} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_show_stats_and_model_version.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_show_stats_and_model_version.json deleted file mode 100644 index 37c55cabda57..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_show_stats_and_model_version.json +++ /dev/null @@ -1,89 +0,0 @@ -{ - "recordings": [ - { - "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs", - "query": { - "model-version": "latest", - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"56\",\"text\":\":)\"},{\"id\":\"0\",\"text\":\":(\"},{\"id\":\"22\",\"text\":\"\"},{\"id\":\"19\",\"text\":\":P\"},{\"id\":\"1\",\"text\":\":D\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "7c6cb13b-0ca1-44a4-a00f-a12f73b559b5", - "date": "Wed, 12 May 2021 19:16:35 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/f905aa99-fb5a-4ac5-a0b4-7aa086d6bcaa", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "129" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/f905aa99-fb5a-4ac5-a0b4-7aa086d6bcaa", - "query": { - "showStats": "true", - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f905aa99-fb5a-4ac5-a0b4-7aa086d6bcaa\",\"lastUpdateDateTime\":\"2021-05-12T19:16:36Z\",\"createdDateTime\":\"2021-05-12T19:16:36Z\",\"expirationDateTime\":\"2021-05-13T19:16:36Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "019d64d6-d2e9-4c28-a1f5-9a4f05c916cc", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:35 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/f905aa99-fb5a-4ac5-a0b4-7aa086d6bcaa", - "query": { - "showStats": "true", - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f905aa99-fb5a-4ac5-a0b4-7aa086d6bcaa\",\"lastUpdateDateTime\":\"2021-05-12T19:16:36Z\",\"createdDateTime\":\"2021-05-12T19:16:36Z\",\"expirationDateTime\":\"2021-05-13T19:16:36Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "1984c9bd-90ea-4529-aeb4-8fd09f4cedb4", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:35 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/f905aa99-fb5a-4ac5-a0b4-7aa086d6bcaa", - "query": { - "showStats": "true", - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"f905aa99-fb5a-4ac5-a0b4-7aa086d6bcaa\",\"lastUpdateDateTime\":\"2021-05-12T19:16:37Z\",\"createdDateTime\":\"2021-05-12T19:16:36Z\",\"expirationDateTime\":\"2021-05-13T19:16:36Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"statistics\":{\"documentsCount\":5,\"validDocumentsCount\":4,\"erroneousDocumentsCount\":1,\"transactionsCount\":4},\"documents\":[{\"id\":\"56\",\"statistics\":{\"charactersCount\":2,\"transactionsCount\":1},\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"0\",\"statistics\":{\"charactersCount\":2,\"transactionsCount\":1},\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"19\",\"statistics\":{\"charactersCount\":2,\"transactionsCount\":1},\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"statistics\":{\"charactersCount\":2,\"transactionsCount\":1},\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"22\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-03-01\"}}", - "responseHeaders": { - "apim-request-id": "a6b9981a-d921-4a2c-94d1-c190eecbfde8", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:37 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "93" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "fd3b240b6ec403bb0873a3781b8808b5" -} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.json deleted file mode 100644 index d903b61262e1..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.json +++ /dev/null @@ -1,104 +0,0 @@ -{ - "recordings": [ - { - "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"This was the best day of my life.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"I did not like the hotel we stayed at. It was too expensive.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"The restaurant was not as good as I hoped.\",\"language\":\"en\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "ee0033ae-1b1c-42b1-b87f-bec988905ee3", - "date": "Wed, 12 May 2021 19:16:41 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/9017c99d-0885-4d7e-a57c-32dee54a4eb8", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "191" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/9017c99d-0885-4d7e-a57c-32dee54a4eb8", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9017c99d-0885-4d7e-a57c-32dee54a4eb8\",\"lastUpdateDateTime\":\"2021-05-12T19:16:41Z\",\"createdDateTime\":\"2021-05-12T19:16:41Z\",\"expirationDateTime\":\"2021-05-13T19:16:41Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "18bb775e-3824-4606-9681-e0e1da8c997b", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:41 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/9017c99d-0885-4d7e-a57c-32dee54a4eb8", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9017c99d-0885-4d7e-a57c-32dee54a4eb8\",\"lastUpdateDateTime\":\"2021-05-12T19:16:41Z\",\"createdDateTime\":\"2021-05-12T19:16:41Z\",\"expirationDateTime\":\"2021-05-13T19:16:41Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "91125425-7687-49ff-8785-741ff1dae35f", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:41 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/9017c99d-0885-4d7e-a57c-32dee54a4eb8", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9017c99d-0885-4d7e-a57c-32dee54a4eb8\",\"lastUpdateDateTime\":\"2021-05-12T19:16:42Z\",\"createdDateTime\":\"2021-05-12T19:16:41Z\",\"expirationDateTime\":\"2021-05-13T19:16:41Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-03-01\"}}", - "responseHeaders": { - "apim-request-id": "474bef0c-68e0-4751-bc72-70332fc0d1aa", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:43 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "53" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/9017c99d-0885-4d7e-a57c-32dee54a4eb8", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"9017c99d-0885-4d7e-a57c-32dee54a4eb8\",\"lastUpdateDateTime\":\"2021-05-12T19:16:42Z\",\"createdDateTime\":\"2021-05-12T19:16:41Z\",\"expirationDateTime\":\"2021-05-13T19:16:41Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-03-01\"}}", - "responseHeaders": { - "apim-request-id": "5c918ed0-1606-4bc5-992c-69bba432ad7f", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:43 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "46" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "8a055b6afd03acae04d79108936866ce" -} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.json deleted file mode 100644 index cd76aa611c90..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.json +++ /dev/null @@ -1,104 +0,0 @@ -{ - "recordings": [ - { - "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\",\"language\":\"\"},{\"id\":\"2\",\"text\":\"I did not like the hotel we stayed at.\",\"language\":\"\"},{\"id\":\"3\",\"text\":\"The restaurant had really good food.\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "76f2139c-7203-49f6-adb4-8e3df1a02b73", - "date": "Wed, 12 May 2021 19:16:43 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/88671d5b-cfb8-4f2d-ab44-ef4e439179a3", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "88" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/88671d5b-cfb8-4f2d-ab44-ef4e439179a3", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"88671d5b-cfb8-4f2d-ab44-ef4e439179a3\",\"lastUpdateDateTime\":\"2021-05-12T19:16:43Z\",\"createdDateTime\":\"2021-05-12T19:16:43Z\",\"expirationDateTime\":\"2021-05-13T19:16:43Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "8bac17f0-873c-4a7e-ae2d-21754ba127f4", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:43 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/88671d5b-cfb8-4f2d-ab44-ef4e439179a3", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"88671d5b-cfb8-4f2d-ab44-ef4e439179a3\",\"lastUpdateDateTime\":\"2021-05-12T19:16:43Z\",\"createdDateTime\":\"2021-05-12T19:16:43Z\",\"expirationDateTime\":\"2021-05-13T19:16:43Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "99be8a38-f535-4adb-8063-db043bc2953c", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:44 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/88671d5b-cfb8-4f2d-ab44-ef4e439179a3", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"88671d5b-cfb8-4f2d-ab44-ef4e439179a3\",\"lastUpdateDateTime\":\"2021-05-12T19:16:44Z\",\"createdDateTime\":\"2021-05-12T19:16:43Z\",\"expirationDateTime\":\"2021-05-13T19:16:43Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-03-01\"}}", - "responseHeaders": { - "apim-request-id": "85f13951-fcca-44d0-a3f9-460007a51179", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:46 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "52" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/88671d5b-cfb8-4f2d-ab44-ef4e439179a3", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"88671d5b-cfb8-4f2d-ab44-ef4e439179a3\",\"lastUpdateDateTime\":\"2021-05-12T19:16:44Z\",\"createdDateTime\":\"2021-05-12T19:16:43Z\",\"expirationDateTime\":\"2021-05-13T19:16:43Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-03-01\"}}", - "responseHeaders": { - "apim-request-id": "cce19349-00ec-4ad9-897d-db9bf6c7c815", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:46 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "59" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "4adc882e0d55167440d4dcf91de2f375" -} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.json deleted file mode 100644 index 0f51454f214c..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.json +++ /dev/null @@ -1,104 +0,0 @@ -{ - "recordings": [ - { - "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs", - "query": { - "stringIndexType": "Utf16CodeUnit" - }, - "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I should take my cat to the veterinarian.\"},{\"id\":\"2\",\"text\":\"Este es un document escrito en Español.\"},{\"id\":\"3\",\"text\":\"猫は幸せ\"}]}", - "status": 202, - "response": "", - "responseHeaders": { - "apim-request-id": "b3828db8-1b29-4cdb-8710-b5d40ce87f4b", - "date": "Wed, 12 May 2021 19:16:46 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/6806da9e-b234-424e-8153-367c0a149545", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "118" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/6806da9e-b234-424e-8153-367c0a149545", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"6806da9e-b234-424e-8153-367c0a149545\",\"lastUpdateDateTime\":\"2021-05-12T19:16:46Z\",\"createdDateTime\":\"2021-05-12T19:16:46Z\",\"expirationDateTime\":\"2021-05-13T19:16:46Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "a7b9ba0e-edf8-4558-ba80-325955c0b0d3", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:46 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/6806da9e-b234-424e-8153-367c0a149545", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"6806da9e-b234-424e-8153-367c0a149545\",\"lastUpdateDateTime\":\"2021-05-12T19:16:46Z\",\"createdDateTime\":\"2021-05-12T19:16:46Z\",\"expirationDateTime\":\"2021-05-13T19:16:46Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "b691075b-9780-4eb2-b7fd-250759bb9606", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:46 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/6806da9e-b234-424e-8153-367c0a149545", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"6806da9e-b234-424e-8153-367c0a149545\",\"lastUpdateDateTime\":\"2021-05-12T19:16:48Z\",\"createdDateTime\":\"2021-05-12T19:16:46Z\",\"expirationDateTime\":\"2021-05-13T19:16:46Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"offset\":28,\"length\":12,\"text\":\"veterinarian\",\"category\":\"HealthcareProfession\",\"confidenceScore\":0.96}],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-03-01\"}}", - "responseHeaders": { - "apim-request-id": "569559cd-3735-4f6d-877e-90d94b060ff5", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:48 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "47" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/6806da9e-b234-424e-8153-367c0a149545", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"6806da9e-b234-424e-8153-367c0a149545\",\"lastUpdateDateTime\":\"2021-05-12T19:16:48Z\",\"createdDateTime\":\"2021-05-12T19:16:46Z\",\"expirationDateTime\":\"2021-05-13T19:16:46Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"offset\":28,\"length\":12,\"text\":\"veterinarian\",\"category\":\"HealthcareProfession\",\"confidenceScore\":0.96}],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-03-01\"}}", - "responseHeaders": { - "apim-request-id": "eb837b14-574a-4e38-b85a-97188b0ba7f8", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:48 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "51" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "1e7b9cd21676e1b8f6bf112b4e2d4b34" -} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_fast_tests/recording_analyzesentiment.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.json similarity index 91% rename from sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_fast_tests/recording_analyzesentiment.json rename to sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.json index ca654f764d66..8a699682c8b3 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_fast_tests/recording_analyzesentiment.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.json @@ -2,7 +2,7 @@ "recordings": [ { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/sentiment", + "url": "https://endpoint//text/analytics/v3.1/sentiment", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -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": "93d08cba-f5f0-4beb-9d91-fb55fb5c067f", + "apim-request-id": "3e9d2cad-b182-4c70-9af9-c13b466027b1", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", - "date": "Wed, 12 May 2021 19:15:34 GMT", + "date": "Fri, 25 Jun 2021 20:13:01 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "133" + "x-envoy-upstream-service-time": "95" } } ], @@ -25,5 +25,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "2d3ddb7d1b05de7103111726c9c7766e" + "hash": "8b01993817087370bb908d9a38a4c2e3" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.json new file mode 100644 index 000000000000..9fea88df3332 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/sentiment", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", + "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": "f3121fed-b145-4cfb-81b7-d02ac60033b9", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "date": "Fri, 25 Jun 2021 20:13:01 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "94" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "4b8d21704d9ca84d28e03111e415243b" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.json new file mode 100644 index 000000000000..e79409c21954 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/sentiment", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"language\":\"es\"},{\"id\":\"6\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"language\":\"es\"}]}", + "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": "a223876d-946a-43b4-a65b-83a7dd988474", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", + "date": "Fri, 25 Jun 2021 20:13:06 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "124" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "00180065469789c0a8b259a0b5727975" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.json new file mode 100644 index 000000000000..6dfe8514ae3c --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.json @@ -0,0 +1,30 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/sentiment", + "query": { + "stringIndexType": "Utf16CodeUnit", + "opinionMining": "true" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"The food and service is not good\",\"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\":32,\"text\":\"The food and service is not good\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":4,\"length\":4,\"text\":\"food\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":13,\"length\":7,\"text\":\"service\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"}]}],\"assessments\":[{\"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": "a475bc2c-d758-4c6e-a13d-7c9601561ecc", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Fri, 25 Jun 2021 20:13:07 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "122" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "a8f83bf62f937724c49fbdc52c92cd01" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.json new file mode 100644 index 000000000000..18eeca9aa7df --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.json @@ -0,0 +1,30 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/sentiment", + "query": { + "stringIndexType": "Utf16CodeUnit", + "opinionMining": "true" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"today is a hot day\",\"language\":\"en\"}]}", + "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\",\"targets\":[],\"assessments\":[]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-04-01\"}", + "responseHeaders": { + "apim-request-id": "a76a8d51-549c-417b-8f75-bb7f1e4acb9e", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Fri, 25 Jun 2021 20:13:13 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "5094" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "4a32b51201e582791f5a784bb39eb256" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.json new file mode 100644 index 000000000000..6fad396d4a49 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.json @@ -0,0 +1,30 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/sentiment", + "query": { + "stringIndexType": "Utf16CodeUnit", + "opinionMining": "true" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"It has a sleek premium aluminum design that makes it beautiful to look at.\",\"language\":\"en\"}]}", + "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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":32,\"length\":6,\"text\":\"design\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/1\"}]}],\"assessments\":[{\"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": "8082cc76-1e53-400d-92c8-827aea989b5c", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Fri, 25 Jun 2021 20:13:07 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "125" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "aec5e48e164c2a8b36c1b91efb4e6a75" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.json new file mode 100644 index 000000000000..bba3bd417dfe --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.json @@ -0,0 +1,8 @@ +{ + "recordings": [], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "cabbc96937b89ec2ffef29ca710c8540" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.json new file mode 100644 index 000000000000..7fe363166e93 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.json @@ -0,0 +1,30 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/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\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":4,\"length\":4,\"text\":\"food\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/0/assessments/0\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":30,\"length\":2,\"text\":\"AC\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/1/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/1/assessments/1\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/2/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":32,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/2/sentences/0/assessments/1\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":11,\"length\":5,\"text\":\"hotel\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/0\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":24,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/1\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":41,\"length\":15,\"text\":\"shuttle service\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/2\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":65,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/1\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/3\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/2\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.97,\"negative\":0.03},\"offset\":27,\"length\":4,\"text\":\"view\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/4/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/4/sentences/0/assessments/1\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":5,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/5/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":15,\"length\":9,\"text\":\"bathrooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/5/sentences/0/assessments/1\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":42,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/5/sentences/0/assessments/2\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":4,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/6/sentences/0/assessments/0\"}]}],\"assessments\":[{\"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": "a5cb2826-af77-40e2-b5f6-cca2dd20c15d", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=7,CognitiveServices.TextAnalytics.TextRecords=7", + "date": "Fri, 25 Jun 2021 20:13:06 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "5100" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "40f144d24f3fb5c645999a2c78b3953e" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.json new file mode 100644 index 000000000000..6630c0f6fcfe --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/sentiment", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", + "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": "1536e805-5336-415d-96bf-d2b60847fd29", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "date": "Fri, 25 Jun 2021 20:13:06 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "91" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "e151e8485409be49c4aed9e1e27f646b" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.json new file mode 100644 index 000000000000..fe1f7a4b70e9 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.json @@ -0,0 +1,28 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/sentiment", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"Hello world!\",\"language\":\"notalanguage\"}]}", + "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,hi,it,ja,ko,nl,no,pt-BR,pt-PT,tr,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=sentiment-analysis\"}}}],\"modelVersion\":\"2020-04-01\"}", + "responseHeaders": { + "apim-request-id": "77de83cb-5d0f-4761-a81f-2b70353b05f5", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:13:01 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "2" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "95dc0a75a7e111778cfbf0de50a24cb0" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_fast_tests/recording_detectlanguage.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.json similarity index 75% rename from sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_fast_tests/recording_detectlanguage.json rename to sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.json index 13974fe04ba2..cef4619473c4 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_fast_tests/recording_detectlanguage.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.json @@ -2,20 +2,20 @@ "recordings": [ { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/languages", + "url": "https://endpoint//text/analytics/v3.1/languages", "query": {}, "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"impossible\",\"countryHint\":\"fr\"}]}", "status": 200, "response": "{\"documents\":[{\"id\":\"0\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":0.58},\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-05\"}", "responseHeaders": { - "apim-request-id": "5880a476-f4ea-4db4-b554-e7a9fc05a1b6", + "apim-request-id": "5289d52c-52df-4e64-8a6a-71df1dcad9a9", "content-type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", - "date": "Wed, 12 May 2021 19:15:39 GMT", + "date": "Fri, 25 Jun 2021 20:13:13 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5019" + "x-envoy-upstream-service-time": "7" } } ], @@ -23,5 +23,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "0010d529ddf2649324285dbec228befe" + "hash": "1c00e733f3426ca4c2ad539a5e61d689" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.json new file mode 100644 index 000000000000..1aef7cfe091e --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.json @@ -0,0 +1,27 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/languages", + "query": {}, + "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\"},{\"id\":\"4\",\"text\":\"I didn't like the last book I read at all.\"},{\"id\":\"5\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"countryHint\":\"mx\"},{\"id\":\"6\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"countryHint\":\"mx\"}]}", + "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\":0.99},\"warnings\":[]},{\"id\":\"6\",\"detectedLanguage\":{\"name\":\"Spanish\",\"iso6391Name\":\"es\",\"confidenceScore\":1.0},\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-05\"}", + "responseHeaders": { + "apim-request-id": "5bb7bde7-2975-4259-9513-1911defe536a", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", + "date": "Fri, 25 Jun 2021 20:13:13 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "fe64a916306e48562569c99a6f167f98" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.json new file mode 100644 index 000000000000..617dbbc0eaac --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.json @@ -0,0 +1,27 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/languages", + "query": {}, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"countryHint\":\"us\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"countryHint\":\"us\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"countryHint\":\"us\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"countryHint\":\"us\"}]}", + "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\":\"2021-01-05\"}", + "responseHeaders": { + "apim-request-id": "53883c64-9f89-49b1-8665-45576830b9c5", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "date": "Fri, 25 Jun 2021 20:13:13 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "cf45d28b6431c9dcf6e5585c883eeed6" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.json new file mode 100644 index 000000000000..c803186a0dc5 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.json @@ -0,0 +1,27 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/languages", + "query": {}, + "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"countryHint\":\"\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"countryHint\":\"\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"countryHint\":\"\"},{\"id\":\"4\",\"text\":\"I didn't like the last book I read at all.\",\"countryHint\":\"\"},{\"id\":\"5\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"countryHint\":\"\"},{\"id\":\"6\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"countryHint\":\"\"}]}", + "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\":0.99},\"warnings\":[]},{\"id\":\"6\",\"detectedLanguage\":{\"name\":\"Spanish\",\"iso6391Name\":\"es\",\"confidenceScore\":1.0},\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-05\"}", + "responseHeaders": { + "apim-request-id": "98588c70-1f66-4c01-b0ff-56dbcb3c2a47", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", + "date": "Fri, 25 Jun 2021 20:13:13 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "11" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "07a89b99a0d5d9f650d0b29b95719c66" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.json new file mode 100644 index 000000000000..778a5a956182 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.json @@ -0,0 +1,27 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/languages", + "query": {}, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I use Azure Functions to develop my service.\",\"countryHint\":\"\"}]}", + "status": 200, + "response": "{\"documents\":[{\"id\":\"0\",\"detectedLanguage\":{\"name\":\"English\",\"iso6391Name\":\"en\",\"confidenceScore\":0.95},\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-05\"}", + "responseHeaders": { + "apim-request-id": "62bbf161-c272-400c-91fb-2e0f78eb1c7d", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Fri, 25 Jun 2021 20:13:13 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "1e4ad2fbcfb9705b49f259dce5dd663f" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.json new file mode 100644 index 000000000000..f837cfbc7c5b --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.json @@ -0,0 +1,8 @@ +{ + "recordings": [], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "7a76e1e1e89f55f4e595e2fbaeab47ee" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.json new file mode 100644 index 000000000000..846cf98a30ff --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.json @@ -0,0 +1,26 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/languages", + "query": {}, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"hello\",\"countryHint\":\"invalidcountry\"}]}", + "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\":\"2021-01-05\"}", + "responseHeaders": { + "apim-request-id": "00000504-9014-4808-9b33-a072d7aea5d4", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:13:13 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "2" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "47fb39e4d90d4d4f6b254f5b853c7a94" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.json new file mode 100644 index 000000000000..12c9fe88c7f1 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.json @@ -0,0 +1,27 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/keyPhrases", + "query": {}, + "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"language\":\"es\"},{\"id\":\"6\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"language\":\"es\"}]}", + "status": 200, + "response": "{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"wonderful trip\",\"Space Needle\",\"Seattle\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"entire trip\",\"Seattle\",\"Space\",\"Needle\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"movie\",\"Saturday\"],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[\"last book\"],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[\"Los\",\"caminos\",\"Monte\",\"Rainier\"],\"warnings\":[]},{\"id\":\"6\",\"keyPhrases\":[\"mucho tráfico\",\"carretera\",\"ayer\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", + "responseHeaders": { + "apim-request-id": "588bacdc-26e1-4085-a06e-e12be71d0325", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6", + "date": "Fri, 25 Jun 2021 20:13:34 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "35" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "b1fef77e495c77fd0f24ac797998e7cd" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.json new file mode 100644 index 000000000000..d0f5b435229e --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.json @@ -0,0 +1,27 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/keyPhrases", + "query": {}, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"wonderful trip\",\"Space Needle\",\"Seattle\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"entire trip\",\"Seattle\",\"Space\",\"Needle\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"movie\",\"Saturday\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"last book\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", + "responseHeaders": { + "apim-request-id": "e8f570f9-5f69-4d0f-a21a-8d3ddb332697", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "date": "Fri, 25 Jun 2021 20:13:34 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "21" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "87d3297b8831a7187e4fc0b3fbb0c461" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.json new file mode 100644 index 000000000000..dd96fa6cce37 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.json @@ -0,0 +1,27 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/keyPhrases", + "query": {}, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"wonderful trip\",\"Space Needle\",\"Seattle\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"entire trip\",\"Seattle\",\"Space\",\"Needle\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"movie\",\"Saturday\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"last book\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", + "responseHeaders": { + "apim-request-id": "ebcefd6c-38c8-46a8-b421-21c8704ebe91", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "date": "Fri, 25 Jun 2021 20:13:33 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "22" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "0615d3d4c4fd132428e37ddec4e40fdd" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.json new file mode 100644 index 000000000000..0936c6c18e4e --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.json @@ -0,0 +1,8 @@ +{ + "recordings": [], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "e3619dd2bea2cc5858c29bf862efe4bd" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.json new file mode 100644 index 000000000000..25c4ec582d40 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.json @@ -0,0 +1,26 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/keyPhrases", + "query": {}, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"This is some text, but it doesn't matter.\",\"language\":\"notalanguage\"}]}", + "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,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2021-06-01\"}", + "responseHeaders": { + "apim-request-id": "6eed092c-e438-4ac4-a02b-cab2a2d5e18c", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:13:34 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "2" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "7a23f594562b7234b10430b3185b9a05" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.json new file mode 100644 index 000000000000..0acc08a2df49 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/general", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"language\":\"es\"},{\"id\":\"5\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"language\":\"es\"}]}", + "status": 200, + "response": "{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"trip\",\"category\":\"Event\",\"offset\":18,\"length\":4,\"confidenceScore\":0.65},{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":26,\"length\":7,\"confidenceScore\":1.0},{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8},{\"text\":\"Space Needle\",\"category\":\"Location\",\"offset\":65,\"length\":12,\"confidenceScore\":0.95},{\"text\":\"2\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":78,\"length\":1,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"trip\",\"category\":\"Event\",\"offset\":42,\"length\":4,\"confidenceScore\":0.79},{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":50,\"length\":7,\"confidenceScore\":1.0},{\"text\":\"Space Needle\",\"category\":\"Location\",\"offset\":90,\"length\":12,\"confidenceScore\":0.94}],\"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.74}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"text\":\"carretera\",\"category\":\"Location\",\"offset\":3,\"length\":9,\"confidenceScore\":0.84},{\"text\":\"ayer\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":60,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", + "responseHeaders": { + "apim-request-id": "556c06e9-81f6-448a-bbaa-dbd410483b84", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", + "date": "Fri, 25 Jun 2021 20:13:33 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "5077" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "7c7eca1ef4566913e8eabad160d2de95" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.json new file mode 100644 index 000000000000..6724e9231c57 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/general", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"id\":\"0\",\"entities\":[{\"text\":\"trip\",\"category\":\"Event\",\"offset\":18,\"length\":4,\"confidenceScore\":0.65},{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":26,\"length\":7,\"confidenceScore\":1.0},{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8},{\"text\":\"Space Needle\",\"category\":\"Location\",\"offset\":65,\"length\":12,\"confidenceScore\":0.95},{\"text\":\"2\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":78,\"length\":1,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"trip\",\"category\":\"Event\",\"offset\":42,\"length\":4,\"confidenceScore\":0.79},{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":50,\"length\":7,\"confidenceScore\":1.0},{\"text\":\"Space Needle\",\"category\":\"Location\",\"offset\":90,\"length\":12,\"confidenceScore\":0.94}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Saturday\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":25,\"length\":8,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"book\",\"category\":\"Product\",\"offset\":23,\"length\":4,\"confidenceScore\":0.93}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", + "responseHeaders": { + "apim-request-id": "8bb0cfcc-344b-471f-a3e7-7c508234e1cd", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "date": "Fri, 25 Jun 2021 20:13:28 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7573" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "483ba314d4233192906e80e6e7456301" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.json new file mode 100644 index 000000000000..004826bf591c --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/general", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"id\":\"0\",\"entities\":[{\"text\":\"trip\",\"category\":\"Event\",\"offset\":18,\"length\":4,\"confidenceScore\":0.65},{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":26,\"length\":7,\"confidenceScore\":1.0},{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8},{\"text\":\"Space Needle\",\"category\":\"Location\",\"offset\":65,\"length\":12,\"confidenceScore\":0.95},{\"text\":\"2\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":78,\"length\":1,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"trip\",\"category\":\"Event\",\"offset\":42,\"length\":4,\"confidenceScore\":0.79},{\"text\":\"Seattle\",\"category\":\"Location\",\"subcategory\":\"GPE\",\"offset\":50,\"length\":7,\"confidenceScore\":1.0},{\"text\":\"Space Needle\",\"category\":\"Location\",\"offset\":90,\"length\":12,\"confidenceScore\":0.94}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Saturday\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":25,\"length\":8,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"book\",\"category\":\"Product\",\"offset\":23,\"length\":4,\"confidenceScore\":0.93}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}", + "responseHeaders": { + "apim-request-id": "e82c97a9-03fa-4ec0-a683-35c027bd4712", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "date": "Fri, 25 Jun 2021 20:13:20 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "5041" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "ba84ff7f5448122a1514c4eb618c81eb" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.json new file mode 100644 index 000000000000..5da388ecadb8 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.json @@ -0,0 +1,28 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/general", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"language\":\"es\"},{\"id\":\"6\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"language\":\"es\"}]}", + "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": "ae1a0d69-7ebc-44fb-b8d9-b690a1b3aa46", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:13:33 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "5" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "7de71703965569a57d9c84d5ae95763a" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.json new file mode 100644 index 000000000000..678b6ed2704e --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.json @@ -0,0 +1,8 @@ +{ + "recordings": [], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "aa30e0a7c5dbe20f0e0c7ccd6c0fb095" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.json new file mode 100644 index 000000000000..431346c5b5cd --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.json @@ -0,0 +1,28 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/general", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"This is some text, but it doesn't matter.\",\"language\":\"notalanguage\"}]}", + "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. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}", + "responseHeaders": { + "apim-request-id": "906df1a7-4f01-4bd8-bcd8-5bbf5713c549", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:13:28 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "2" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "93d3c5553b3c71f204cb6844585dc315" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.json new file mode 100644 index 000000000000..4df068be12e3 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/linking", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"language\":\"es\"},{\"id\":\"5\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"language\":\"es\"}]}", + "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\":\"2021-06-01\"}", + "responseHeaders": { + "apim-request-id": "48af1f8f-6b51-47d3-9997-3adbd2976e41", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", + "date": "Fri, 25 Jun 2021 20:13:43 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "195" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "e409ba5d8d13f9e12d9f5e0ea02b9921" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.json new file mode 100644 index 000000000000..a2c9dc003d3d --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/linking", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", + "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\":\"2021-06-01\"}", + "responseHeaders": { + "apim-request-id": "6a661565-8a7f-43af-a26b-640f7a8d8cb5", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "date": "Fri, 25 Jun 2021 20:13:42 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "16" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "4f0d5d390bc38c36eaf5bdaaa4349e83" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.json new file mode 100644 index 000000000000..89bc505d4e4d --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/linking", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", + "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\":\"2021-06-01\"}", + "responseHeaders": { + "apim-request-id": "e174c575-5389-4d3f-988b-b0da44814969", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "date": "Fri, 25 Jun 2021 20:13:42 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "18" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "30c29afb38fdf2180cc2cedeb3f4fc16" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.json new file mode 100644 index 000000000000..d6b30b1f039b --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.json @@ -0,0 +1,28 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/general", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"language\":\"es\"},{\"id\":\"6\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"language\":\"es\"}]}", + "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": "7683a61c-7a40-4626-b3ef-f6f8c92bf91a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:13:43 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "4" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "7de71703965569a57d9c84d5ae95763a" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.json new file mode 100644 index 000000000000..6e5f1ec654ea --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.json @@ -0,0 +1,8 @@ +{ + "recordings": [], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "85638de68feea86c1695a14c61ca59de" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.json new file mode 100644 index 000000000000..7d5497ae5e97 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.json @@ -0,0 +1,28 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/linking", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"This is some text, but it doesn't matter.\",\"language\":\"notalanguage\"}]}", + "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. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}", + "responseHeaders": { + "apim-request-id": "8cfa6aad-4553-4227-97ab-7436f8d57cf0", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:13:42 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "3" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "5fb15576b315482f44754cc0f6d91801" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.json new file mode 100644 index 000000000000..d62651155505 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.json @@ -0,0 +1,30 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "Utf16CodeUnit", + "domain": "PHI" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I work at Microsoft and my phone number is 333-333-3333\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"I work at ********* and my phone number is ************\",\"id\":\"0\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":10,\"length\":9,\"confidenceScore\":0.95},{\"text\":\"333-333-3333\",\"category\":\"PhoneNumber\",\"offset\":43,\"length\":12,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "e3dbaa3b-cf5d-4b65-b28e-32dad99c5075", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Fri, 25 Jun 2021 20:13:42 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "34" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "6aacb0e9cdd05e66fe9904538c611eab" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.json new file mode 100644 index 000000000000..b80c7922b273 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.json @@ -0,0 +1,30 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "Utf16CodeUnit", + "piiCategories": "USSocialSecurityNumber" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"Patient name is Joe and SSN is 859-98-0987\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"Patient name is Joe and SSN is ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":31,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "25fdc7ac-becc-41b7-a6d8-cb4fe758a964", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Fri, 25 Jun 2021 20:13:42 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "61" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "715a39f4e2fef48461eed60ed7c423ec" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.json new file mode 100644 index 000000000000..e29755a84ce9 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"language\":\"es\"},{\"id\":\"5\",\"text\":\"La carretera estaba atascada. Había mucho tráfico el día de ayer.\",\"language\":\"es\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!\",\"id\":\"1\",\"entities\":[{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8}],\"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\":[]},{\"redactedText\":\"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"La carretera estaba atascada. Había mucho tráfico el día de ****.\",\"id\":\"5\",\"entities\":[{\"text\":\"ayer\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":60,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "42f69092-6f27-422a-ab9d-0fc3d3884e50", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5", + "date": "Fri, 25 Jun 2021 20:13:42 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "2548" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "5ec8aaf6662a33e07532390829e62e7a" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.json new file mode 100644 index 000000000000..b5f81f66274c --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!\",\"id\":\"0\",\"entities\":[{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8}],\"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\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "8991966b-c527-485b-aaed-8e27c2ad0bb5", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "date": "Fri, 25 Jun 2021 20:13:39 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "2562" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "a7239aa57ac74e2a4ab2321e2ed80998" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.json new file mode 100644 index 000000000000..061ac6d81d38 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"I didn't like the last book I read at all.\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!\",\"id\":\"0\",\"entities\":[{\"text\":\"last week\",\"category\":\"DateTime\",\"subcategory\":\"DateRange\",\"offset\":34,\"length\":9,\"confidenceScore\":0.8}],\"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\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "e937945e-62a0-44f4-be06-68e6202ee878", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4", + "date": "Fri, 25 Jun 2021 20:13:36 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "2564" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "44cf1e73908b195dbdfa52311ea4fdef" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.json new file mode 100644 index 000000000000..4123e4efb626 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"Your Social Security Number is 859-98-0987.\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"Your Social Security Number is ***********.\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":31,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "dabbf83c-f398-47d3-bb53-e0de91937864", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Fri, 25 Jun 2021 20:13:39 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "57" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "30fd28c96f68f1a412fbad3315f2a3a2" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.json new file mode 100644 index 000000000000..bc83de4e5d15 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.json @@ -0,0 +1,28 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[]}", + "status": 400, + "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid Request.\",\"innererror\":{\"code\":\"MissingInputRecords\",\"message\":\"Missing input records.\"}}}", + "responseHeaders": { + "apim-request-id": "6540eab1-9356-4b0e-be4d-e4658c24e01f", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:13:34 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "4" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "01afa681adb7f537c0fd8ec67214b5c0" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.json new file mode 100644 index 000000000000..6a4b6a20b51e --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.json @@ -0,0 +1,50 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"Patient name is Joe and SSN is 859-98-0987\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"Patient name is *** and SSN is ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"Joe\",\"category\":\"Person\",\"offset\":16,\"length\":3,\"confidenceScore\":0.79},{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":31,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "ba611fc6-ce54-4e1e-9083-4ae7cca79f3f", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Fri, 25 Jun 2021 20:13:42 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "30" + } + }, + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "Utf16CodeUnit", + "piiCategories": "USSocialSecurityNumber" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"Patient name is Joe and SSN is 859-98-0987\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"Patient name is Joe and SSN is ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":31,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "bd318be5-c605-42e9-9bf5-9dc4e716662e", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Fri, 25 Jun 2021 20:13:42 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "53" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "de5b4b37967461f9ed943fb6f84228e5" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.json new file mode 100644 index 000000000000..f017a55b27e6 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.json @@ -0,0 +1,28 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"This is some text, but it doesn't matter.\",\"language\":\"notalanguage\"}]}", + "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,pt-BR,pt-PT,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "ba4f80e7-c7f3-4e57-9790-6929e5457246", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:13:39 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "3" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "80acdc66d0bcc0cc3b0446e597fc56bf" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.json new file mode 100644 index 000000000000..2b1479a67a98 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"año SSN: 859-98-0987\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"año SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":9,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "18b48034-4234-4281-a768-d086f661aab6", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Tue, 29 Jun 2021 21:09:41 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "47" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "1405fd53d6237d457a1bba0408b1e696" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.json new file mode 100644 index 000000000000..b555bc4819a5 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"año SSN: 859-98-0987\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"año SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":10,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "19b1a744-3e61-43ea-904d-d0d44a15a78f", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Tue, 29 Jun 2021 21:09:43 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "52" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "bd8f8e11c32bea3ce834804ae6e55eba" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.json new file mode 100644 index 000000000000..e237fd082dc3 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩 SSN: 859-98-0987\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"👩 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "f87e4420-f7cf-47c9-9e77-5d7a7a58a025", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Tue, 29 Jun 2021 21:09:41 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "31" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "908cd4b4839d69ee785150461c56ff98" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.json new file mode 100644 index 000000000000..a0e663d4d10e --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩🏻 SSN: 859-98-0987\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"👩🏻 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":10,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "ab01d0ca-2dd2-49f1-b058-051d80d1c7b2", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Tue, 29 Jun 2021 21:09:41 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "31" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "567cf9233223f7f12a6a5228401a4c20" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.json new file mode 100644 index 000000000000..5fa98645d39c --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩‍👩‍👧‍👧 SSN: 859-98-0987\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"👩‍👩‍👧‍👧 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":17,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "1222f2cd-598f-4139-85be-9cf1d9fa15ee", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Tue, 29 Jun 2021 21:09:41 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "37" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "8d00943bbcf0fb21630156b78d055772" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.json new file mode 100644 index 000000000000..64e20e39725a --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"아가 SSN: 859-98-0987\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"아가 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "286c3d09-583a-4cd8-864c-7581d7c3299c", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Tue, 29 Jun 2021 21:09:43 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "56" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "36d5a15867f64e61b29bc146c4ef9483" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.json new file mode 100644 index 000000000000..3a71c4d6889c --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"아가 SSN: 859-98-0987\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"아가 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "f93d3991-8de7-4cdd-a578-a3a1a6f255c8", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Tue, 29 Jun 2021 21:09:43 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "57" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "36d5a15867f64e61b29bc146c4ef9483" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.json new file mode 100644 index 000000000000..1033f87a4f43 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":121,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "53ce2e5a-8e99-4691-abcc-e5e5a50c3e42", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Tue, 29 Jun 2021 21:09:43 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "240" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "7087283e7c49a7af17336acd08edebd6" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.json new file mode 100644 index 000000000000..84a57788febb --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "TextElement_v8" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"año SSN: 859-98-0987\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"año SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":9,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "8b557175-8369-409c-88ca-35b56fe056ca", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Tue, 29 Jun 2021 21:09:45 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "50" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "c4168ce455743735cc3b0867596a0298" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.json new file mode 100644 index 000000000000..4dfad4031866 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "TextElement_v8" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"año SSN: 859-98-0987\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"año SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":9,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "663e15b9-23c0-4124-bce4-dd845f1e2a91", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Tue, 29 Jun 2021 21:09:45 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "52" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "97deed18f72cb452533d75fe71f106cd" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.json new file mode 100644 index 000000000000..70bcffcf009f --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "TextElement_v8" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩 SSN: 859-98-0987\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"👩 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":7,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "49770590-f4ea-4ff8-ae0b-714131961c76", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Tue, 29 Jun 2021 21:09:45 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "40" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "4e42b362a5c0bfae3331b57329538488" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.json new file mode 100644 index 000000000000..c104ad193c39 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "TextElement_v8" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩🏻 SSN: 859-98-0987\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"👩🏻 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "440fcb00-4377-4aed-96d6-85c2fd4064d8", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Tue, 29 Jun 2021 21:09:45 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "30" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "c819adc2f07c63a60990e748cd4d68e9" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.json new file mode 100644 index 000000000000..ba7595b3fc71 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "TextElement_v8" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩‍👩‍👧‍👧 SSN: 859-98-0987\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"👩‍👩‍👧‍👧 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":13,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "94c92005-cfdc-418f-b5cc-943e58ddeb4f", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Tue, 29 Jun 2021 21:09:45 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "3a2084188b00fbb623bd37ce1666c56e" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.json new file mode 100644 index 000000000000..1afbf8095e30 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "TextElement_v8" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"아가 SSN: 859-98-0987\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"아가 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "d08db718-4f0c-4687-bc93-e5b8396411cf", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Tue, 29 Jun 2021 21:09:45 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "28" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "b748441acac968abb561573139954822" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.json new file mode 100644 index 000000000000..82badc81c1c3 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "TextElement_v8" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"아가 SSN: 859-98-0987\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"아가 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "b85fdc31-fa87-49a7-86a5-40ff4d895f43", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Tue, 29 Jun 2021 21:09:45 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "51" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "b748441acac968abb561573139954822" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.json new file mode 100644 index 000000000000..5c267df1ccb6 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "TextElement_v8" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":9,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "1c737007-e782-4eac-a20f-ab889e7fbbba", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Tue, 29 Jun 2021 21:09:46 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "242" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "5666bd084b5377efc9af0f8dd722e62b" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.json new file mode 100644 index 000000000000..81ab3159f839 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "UnicodeCodePoint" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"año SSN: 859-98-0987\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"año SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":9,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "fd3f11fc-a7e5-4d5a-953d-7ab3fdac701f", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Tue, 29 Jun 2021 21:09:44 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "49" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "ab9960d541e7c4bd338117cb7daf5920" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.json new file mode 100644 index 000000000000..8290da81b2c2 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "UnicodeCodePoint" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"año SSN: 859-98-0987\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"año SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":10,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "eba192bf-049c-4310-8d25-84664c73df73", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Tue, 29 Jun 2021 21:09:44 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "37" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "0e1b2a9dcd3d5fcaf9d7b9f44a56b3fd" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.json new file mode 100644 index 000000000000..8b2375f39927 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "UnicodeCodePoint" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩 SSN: 859-98-0987\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"👩 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":7,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "fbaf6114-ae06-4bd7-8a9f-4b57740bb97d", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Tue, 29 Jun 2021 21:09:43 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "30" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "47884ef2981b03ff59ce02b82a931678" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.json new file mode 100644 index 000000000000..a019cd93557c --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "UnicodeCodePoint" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩🏻 SSN: 859-98-0987\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"👩🏻 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "e386f3fe-2437-4776-86b8-ff451a50cf8e", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Tue, 29 Jun 2021 21:09:43 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "62" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "caf1393d64f58fff7dfb3e2d5e88900d" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.json new file mode 100644 index 000000000000..4b006b5a3234 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "UnicodeCodePoint" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"👩‍👩‍👧‍👧 SSN: 859-98-0987\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"👩‍👩‍👧‍👧 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":13,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "a20acd83-51e3-4395-b4b8-032064d8875f", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Tue, 29 Jun 2021 21:09:44 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "43" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "cf86e2d033b790043263dc6047ead0c2" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.json new file mode 100644 index 000000000000..7b110deba802 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "UnicodeCodePoint" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"아가 SSN: 859-98-0987\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"아가 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "017321b1-89c4-41e8-bae3-cfb49d664f11", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Tue, 29 Jun 2021 21:09:44 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "59" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "efeafd6bc19716841855e51f9bfcaae5" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.json new file mode 100644 index 000000000000..3661565cc82a --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "UnicodeCodePoint" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"아가 SSN: 859-98-0987\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"아가 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":8,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "531e0487-85ee-4417-9fe3-a62738f1e254", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Tue, 29 Jun 2021 21:09:44 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "32" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "efeafd6bc19716841855e51f9bfcaae5" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.json new file mode 100644 index 000000000000..b90a49510f8f --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.json @@ -0,0 +1,29 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/recognition/pii", + "query": { + "stringIndexType": "UnicodeCodePoint" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987\",\"language\":\"en\"}]}", + "status": 200, + "response": "{\"documents\":[{\"redactedText\":\"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":121,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}", + "responseHeaders": { + "apim-request-id": "0c9a14df-2030-446d-8872-13cbfa3a24b3", + "content-type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1", + "date": "Tue, 29 Jun 2021 21:09:44 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "119" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "44c2300ce411e8279dc446b4136bb8d1" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.json new file mode 100644 index 000000000000..e2cb77df169f --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.json @@ -0,0 +1,311 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/analyze", + "query": {}, + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"\",\"language\":\"\"},{\"id\":\"2\",\"text\":\"I did not like the hotel we stayed at. It was too expensive.\",\"language\":\"english\"},{\"id\":\"3\",\"text\":\"\",\"language\":\"en\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "3aadbfab-2bb3-4490-b88a-2b248ffd803d", + "date": "Fri, 25 Jun 2021 20:17:54 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/b28e81e1-1f40-4a02-869c-bc466f5fbe95", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "261" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/b28e81e1-1f40-4a02-869c-bc466f5fbe95", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"b28e81e1-1f40-4a02-869c-bc466f5fbe95\",\"lastUpdateDateTime\":\"2021-06-25T20:17:54Z\",\"createdDateTime\":\"2021-06-25T20:17:54Z\",\"expirationDateTime\":\"2021-06-26T20:17:54Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "0b3ac845-f5e3-4e58-8dff-2b4568e3946e", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:17:54 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/b28e81e1-1f40-4a02-869c-bc466f5fbe95", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"b28e81e1-1f40-4a02-869c-bc466f5fbe95\",\"lastUpdateDateTime\":\"2021-06-25T20:17:54Z\",\"createdDateTime\":\"2021-06-25T20:17:54Z\",\"expirationDateTime\":\"2021-06-26T20:17:54Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "aeb9a053-d104-409f-820f-bbc49c6e78e3", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:17:54 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/b28e81e1-1f40-4a02-869c-bc466f5fbe95", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"b28e81e1-1f40-4a02-869c-bc466f5fbe95\",\"lastUpdateDateTime\":\"2021-06-25T20:17:55Z\",\"createdDateTime\":\"2021-06-25T20:17:54Z\",\"expirationDateTime\":\"2021-06-26T20:17:54Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "1299954f-21fa-4a82-b0c6-d0683f874ae6", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:17:56 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/b28e81e1-1f40-4a02-869c-bc466f5fbe95", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"b28e81e1-1f40-4a02-869c-bc466f5fbe95\",\"lastUpdateDateTime\":\"2021-06-25T20:17:55Z\",\"createdDateTime\":\"2021-06-25T20:17:54Z\",\"expirationDateTime\":\"2021-06-26T20:17:54Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "af8bca25-fc06-4f96-a0d8-74d9d7629512", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:17:58 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "24" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/b28e81e1-1f40-4a02-869c-bc466f5fbe95", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"b28e81e1-1f40-4a02-869c-bc466f5fbe95\",\"lastUpdateDateTime\":\"2021-06-25T20:17:55Z\",\"createdDateTime\":\"2021-06-25T20:17:54Z\",\"expirationDateTime\":\"2021-06-26T20:17:54Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "112c1537-de82-4515-906a-35612af0b7c2", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:18:00 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "34" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/b28e81e1-1f40-4a02-869c-bc466f5fbe95", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"b28e81e1-1f40-4a02-869c-bc466f5fbe95\",\"lastUpdateDateTime\":\"2021-06-25T20:17:55Z\",\"createdDateTime\":\"2021-06-25T20:17:54Z\",\"expirationDateTime\":\"2021-06-26T20:17:54Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "850265ec-cba7-4693-933d-22944d696d62", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:18:02 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/b28e81e1-1f40-4a02-869c-bc466f5fbe95", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"b28e81e1-1f40-4a02-869c-bc466f5fbe95\",\"lastUpdateDateTime\":\"2021-06-25T20:17:55Z\",\"createdDateTime\":\"2021-06-25T20:17:54Z\",\"expirationDateTime\":\"2021-06-26T20:17:54Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "5090cf8b-688e-4706-aa30-0d740202cef5", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:18:04 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/b28e81e1-1f40-4a02-869c-bc466f5fbe95", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"b28e81e1-1f40-4a02-869c-bc466f5fbe95\",\"lastUpdateDateTime\":\"2021-06-25T20:18:05Z\",\"createdDateTime\":\"2021-06-25T20:17:54Z\",\"expirationDateTime\":\"2021-06-26T20:17:54Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:05.350574Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "404e5878-c6c9-404d-aba0-a24b8eb5ac35", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:18:06 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "58" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/b28e81e1-1f40-4a02-869c-bc466f5fbe95", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"b28e81e1-1f40-4a02-869c-bc466f5fbe95\",\"lastUpdateDateTime\":\"2021-06-25T20:18:05Z\",\"createdDateTime\":\"2021-06-25T20:17:54Z\",\"expirationDateTime\":\"2021-06-26T20:17:54Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:05.350574Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "8596a0aa-ffd4-416b-8de5-c07a40001f2c", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:18:09 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "64" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/b28e81e1-1f40-4a02-869c-bc466f5fbe95", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"b28e81e1-1f40-4a02-869c-bc466f5fbe95\",\"lastUpdateDateTime\":\"2021-06-25T20:18:05Z\",\"createdDateTime\":\"2021-06-25T20:17:54Z\",\"expirationDateTime\":\"2021-06-26T20:17:54Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:05.350574Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "df0e9fcb-3de6-4294-a2e6-4c611fbaca28", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:18:11 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "61" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/b28e81e1-1f40-4a02-869c-bc466f5fbe95", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"b28e81e1-1f40-4a02-869c-bc466f5fbe95\",\"lastUpdateDateTime\":\"2021-06-25T20:18:13Z\",\"createdDateTime\":\"2021-06-25T20:17:54Z\",\"expirationDateTime\":\"2021-06-26T20:17:54Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:13.4004191Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:05.350574Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "ab9e9cff-dbbf-4006-bf45-0adb446d6a50", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:18:13 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "108" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/b28e81e1-1f40-4a02-869c-bc466f5fbe95", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"b28e81e1-1f40-4a02-869c-bc466f5fbe95\",\"lastUpdateDateTime\":\"2021-06-25T20:18:13Z\",\"createdDateTime\":\"2021-06-25T20:17:54Z\",\"expirationDateTime\":\"2021-06-26T20:17:54Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:13.4004191Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:05.350574Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "3da8e93f-2fa5-4639-9691-a72ed0510839", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:18:15 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "128" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/b28e81e1-1f40-4a02-869c-bc466f5fbe95", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"b28e81e1-1f40-4a02-869c-bc466f5fbe95\",\"lastUpdateDateTime\":\"2021-06-25T20:18:13Z\",\"createdDateTime\":\"2021-06-25T20:17:54Z\",\"expirationDateTime\":\"2021-06-26T20:17:54Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:13.4004191Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:05.350574Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "a37bdaab-89ac-448e-94c6-e915281f193b", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:18:18 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "117" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/b28e81e1-1f40-4a02-869c-bc466f5fbe95", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"b28e81e1-1f40-4a02-869c-bc466f5fbe95\",\"lastUpdateDateTime\":\"2021-06-25T20:18:19Z\",\"createdDateTime\":\"2021-06-25T20:17:54Z\",\"expirationDateTime\":\"2021-06-26T20:17:54Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:13.4004191Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:05.350574Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:19.1701976Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "871192cd-933d-4f71-85d8-683bc403c036", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:18:20 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "172" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/b28e81e1-1f40-4a02-869c-bc466f5fbe95", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"b28e81e1-1f40-4a02-869c-bc466f5fbe95\",\"lastUpdateDateTime\":\"2021-06-25T20:18:19Z\",\"createdDateTime\":\"2021-06-25T20:17:54Z\",\"expirationDateTime\":\"2021-06-26T20:17:54Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:13.4004191Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:05.350574Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:19.1701976Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "2978a2fc-a67b-4317-85de-4cf8c09d7e69", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:18:20 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "191" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "31bfac5ad44409ca98708bce61443165" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.json new file mode 100644 index 000000000000..a73d3f502c21 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.json @@ -0,0 +1,26 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/analyze", + "query": {}, + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"\",\"language\":\"en\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", + "status": 400, + "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocumentBatch\",\"message\":\"Document text is empty.\"}}}", + "responseHeaders": { + "apim-request-id": "3ea8359c-ab7f-4b75-85d6-b8fd98a8a044", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:33 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "f9f441a825a1fe550fcd21e25757994a" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.json new file mode 100644 index 000000000000..3321eed104f6 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.json @@ -0,0 +1,311 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/analyze", + "query": {}, + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\",\"language\":\"\"},{\"id\":\"2\",\"text\":\"I did not like the hotel we stayed at.\",\"language\":\"\"},{\"id\":\"3\",\"text\":\"The restaurant had really good food.\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "eeaf32b2-1061-4bb6-b088-cbeb7662471b", + "date": "Fri, 25 Jun 2021 20:21:18 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/9f126ea4-2c47-47b6-813e-7388c4dae922", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "266" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/9f126ea4-2c47-47b6-813e-7388c4dae922", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"9f126ea4-2c47-47b6-813e-7388c4dae922\",\"lastUpdateDateTime\":\"2021-06-25T20:21:19Z\",\"createdDateTime\":\"2021-06-25T20:21:18Z\",\"expirationDateTime\":\"2021-06-26T20:21:18Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "e2deaad7-d533-4163-aed0-c06fd674dea6", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:18 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/9f126ea4-2c47-47b6-813e-7388c4dae922", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"9f126ea4-2c47-47b6-813e-7388c4dae922\",\"lastUpdateDateTime\":\"2021-06-25T20:21:19Z\",\"createdDateTime\":\"2021-06-25T20:21:18Z\",\"expirationDateTime\":\"2021-06-26T20:21:18Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "96fa2a04-6e91-4aa2-9d67-f38130f6df89", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:19 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "5" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/9f126ea4-2c47-47b6-813e-7388c4dae922", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"9f126ea4-2c47-47b6-813e-7388c4dae922\",\"lastUpdateDateTime\":\"2021-06-25T20:21:19Z\",\"createdDateTime\":\"2021-06-25T20:21:18Z\",\"expirationDateTime\":\"2021-06-26T20:21:18Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "0dd7429e-ba1d-41fc-bf21-8a98dee05876", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:21 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/9f126ea4-2c47-47b6-813e-7388c4dae922", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"9f126ea4-2c47-47b6-813e-7388c4dae922\",\"lastUpdateDateTime\":\"2021-06-25T20:21:19Z\",\"createdDateTime\":\"2021-06-25T20:21:18Z\",\"expirationDateTime\":\"2021-06-26T20:21:18Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "726edee2-dc1e-49ab-9944-5c50cd5ab2c2", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:23 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/9f126ea4-2c47-47b6-813e-7388c4dae922", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"9f126ea4-2c47-47b6-813e-7388c4dae922\",\"lastUpdateDateTime\":\"2021-06-25T20:21:19Z\",\"createdDateTime\":\"2021-06-25T20:21:18Z\",\"expirationDateTime\":\"2021-06-26T20:21:18Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "3cf494e1-efb1-4ea2-9c7f-6e6a5245e70e", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:25 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/9f126ea4-2c47-47b6-813e-7388c4dae922", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"9f126ea4-2c47-47b6-813e-7388c4dae922\",\"lastUpdateDateTime\":\"2021-06-25T20:21:26Z\",\"createdDateTime\":\"2021-06-25T20:21:18Z\",\"expirationDateTime\":\"2021-06-26T20:21:18Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:26.2208566Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "c08382a0-e95f-4ee3-b1fb-139c76d7da08", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:27 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "56" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/9f126ea4-2c47-47b6-813e-7388c4dae922", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"9f126ea4-2c47-47b6-813e-7388c4dae922\",\"lastUpdateDateTime\":\"2021-06-25T20:21:26Z\",\"createdDateTime\":\"2021-06-25T20:21:18Z\",\"expirationDateTime\":\"2021-06-26T20:21:18Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:26.2208566Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "bb601578-911a-4726-9d26-f933119ab100", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:29 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "48" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/9f126ea4-2c47-47b6-813e-7388c4dae922", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"9f126ea4-2c47-47b6-813e-7388c4dae922\",\"lastUpdateDateTime\":\"2021-06-25T20:21:26Z\",\"createdDateTime\":\"2021-06-25T20:21:18Z\",\"expirationDateTime\":\"2021-06-26T20:21:18Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:26.2208566Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "205d0a31-38cf-4819-b101-27ddde8b91e2", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:31 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "81" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/9f126ea4-2c47-47b6-813e-7388c4dae922", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"9f126ea4-2c47-47b6-813e-7388c4dae922\",\"lastUpdateDateTime\":\"2021-06-25T20:21:33Z\",\"createdDateTime\":\"2021-06-25T20:21:18Z\",\"expirationDateTime\":\"2021-06-26T20:21:18Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:26.2208566Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:33.051761Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "a8d48588-a298-46a6-9b76-9c9186e7edfe", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:33 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "125" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/9f126ea4-2c47-47b6-813e-7388c4dae922", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"9f126ea4-2c47-47b6-813e-7388c4dae922\",\"lastUpdateDateTime\":\"2021-06-25T20:21:33Z\",\"createdDateTime\":\"2021-06-25T20:21:18Z\",\"expirationDateTime\":\"2021-06-26T20:21:18Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:26.2208566Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:33.051761Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "c9072ccb-5b12-403f-9f36-e23b502dec63", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:35 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "119" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/9f126ea4-2c47-47b6-813e-7388c4dae922", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"9f126ea4-2c47-47b6-813e-7388c4dae922\",\"lastUpdateDateTime\":\"2021-06-25T20:21:33Z\",\"createdDateTime\":\"2021-06-25T20:21:18Z\",\"expirationDateTime\":\"2021-06-26T20:21:18Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:26.2208566Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:33.051761Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "b79737c9-cd3c-4717-9749-bfeada6736dd", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:37 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "122" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/9f126ea4-2c47-47b6-813e-7388c4dae922", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"9f126ea4-2c47-47b6-813e-7388c4dae922\",\"lastUpdateDateTime\":\"2021-06-25T20:21:33Z\",\"createdDateTime\":\"2021-06-25T20:21:18Z\",\"expirationDateTime\":\"2021-06-26T20:21:18Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:26.2208566Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:33.051761Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "1270e37f-f600-4ac7-af0a-9217596befb4", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:40 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "90" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/9f126ea4-2c47-47b6-813e-7388c4dae922", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"9f126ea4-2c47-47b6-813e-7388c4dae922\",\"lastUpdateDateTime\":\"2021-06-25T20:21:33Z\",\"createdDateTime\":\"2021-06-25T20:21:18Z\",\"expirationDateTime\":\"2021-06-26T20:21:18Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:26.2208566Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:33.051761Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "b99105bd-159f-44db-9cfb-9889d154635f", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:42 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "130" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/9f126ea4-2c47-47b6-813e-7388c4dae922", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"9f126ea4-2c47-47b6-813e-7388c4dae922\",\"lastUpdateDateTime\":\"2021-06-25T20:21:43Z\",\"createdDateTime\":\"2021-06-25T20:21:18Z\",\"expirationDateTime\":\"2021-06-26T20:21:18Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:26.2208566Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:33.051761Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:43.0897577Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"park\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"good food\",\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "b7be340d-5b22-40a7-b8fd-0f912a8c1f95", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:44 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "178" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/9f126ea4-2c47-47b6-813e-7388c4dae922", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"9f126ea4-2c47-47b6-813e-7388c4dae922\",\"lastUpdateDateTime\":\"2021-06-25T20:21:43Z\",\"createdDateTime\":\"2021-06-25T20:21:18Z\",\"expirationDateTime\":\"2021-06-26T20:21:18Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:26.2208566Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:33.051761Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant had really good food.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:43.0897577Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"park\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"good food\",\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "bed20f1e-47ef-4ca9-bead-665393b6cd63", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:44 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "175" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "36897fdd6ebafb0b68c76afe29d7a3d4" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.json new file mode 100644 index 000000000000..3450ccabbeb9 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.json @@ -0,0 +1,159 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/analyze", + "query": {}, + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987\",\"language\":\"en\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"UnicodeCodePoint\"}}]}}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "5c638ee0-bd31-4908-bf9b-db7281847708", + "date": "Fri, 25 Jun 2021 20:23:03 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/37c213de-7812-4ca3-a600-0bf456684905", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "300" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/37c213de-7812-4ca3-a600-0bf456684905", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"37c213de-7812-4ca3-a600-0bf456684905\",\"lastUpdateDateTime\":\"2021-06-25T20:23:04Z\",\"createdDateTime\":\"2021-06-25T20:23:03Z\",\"expirationDateTime\":\"2021-06-26T20:23:03Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "915bd686-2c3c-4ff7-b356-3c9bd693ff58", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:03 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/37c213de-7812-4ca3-a600-0bf456684905", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"37c213de-7812-4ca3-a600-0bf456684905\",\"lastUpdateDateTime\":\"2021-06-25T20:23:04Z\",\"createdDateTime\":\"2021-06-25T20:23:03Z\",\"expirationDateTime\":\"2021-06-26T20:23:03Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "9f07c1f7-8f27-4124-854b-550023176f8f", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:03 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/37c213de-7812-4ca3-a600-0bf456684905", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"37c213de-7812-4ca3-a600-0bf456684905\",\"lastUpdateDateTime\":\"2021-06-25T20:23:04Z\",\"createdDateTime\":\"2021-06-25T20:23:03Z\",\"expirationDateTime\":\"2021-06-26T20:23:03Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "79f7befe-5140-4d08-9281-fa67f1e6c373", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:05 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "16" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/37c213de-7812-4ca3-a600-0bf456684905", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"37c213de-7812-4ca3-a600-0bf456684905\",\"lastUpdateDateTime\":\"2021-06-25T20:23:04Z\",\"createdDateTime\":\"2021-06-25T20:23:03Z\",\"expirationDateTime\":\"2021-06-26T20:23:03Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "434b332c-7e5e-46d5-a9c3-db6731590662", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:07 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/37c213de-7812-4ca3-a600-0bf456684905", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"37c213de-7812-4ca3-a600-0bf456684905\",\"lastUpdateDateTime\":\"2021-06-25T20:23:04Z\",\"createdDateTime\":\"2021-06-25T20:23:03Z\",\"expirationDateTime\":\"2021-06-26T20:23:03Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "2b0661df-8642-420f-bb14-1de2d8008957", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:09 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/37c213de-7812-4ca3-a600-0bf456684905", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"37c213de-7812-4ca3-a600-0bf456684905\",\"lastUpdateDateTime\":\"2021-06-25T20:23:11Z\",\"createdDateTime\":\"2021-06-25T20:23:03Z\",\"expirationDateTime\":\"2021-06-26T20:23:03Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:23:11.2381129Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":17,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "8d9b5d7f-8983-4f2f-b487-f66cacf88add", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:12 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "46" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/37c213de-7812-4ca3-a600-0bf456684905", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"37c213de-7812-4ca3-a600-0bf456684905\",\"lastUpdateDateTime\":\"2021-06-25T20:23:11Z\",\"createdDateTime\":\"2021-06-25T20:23:03Z\",\"expirationDateTime\":\"2021-06-26T20:23:03Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:23:11.2381129Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********\",\"id\":\"0\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":17,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "d9c6bf2e-7e42-4e5a-b07d-ef5078557c62", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:12 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "56" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "425e31a777619d837f737b23058c4474" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_invalid_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_invalid_language_hint.json new file mode 100644 index 000000000000..2854bb8b8f78 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_invalid_language_hint.json @@ -0,0 +1,254 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/analyze", + "query": {}, + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"This should fail because we're passing in an invalid language hint\",\"language\":\"notalanguage\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "021dd5a3-1de2-4d0f-a8dd-80d55a4a20e4", + "date": "Fri, 25 Jun 2021 20:21:58 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/d36c08c5-c19a-4932-86b2-5430073e132c", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "213" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/d36c08c5-c19a-4932-86b2-5430073e132c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"d36c08c5-c19a-4932-86b2-5430073e132c\",\"lastUpdateDateTime\":\"2021-06-25T20:21:59Z\",\"createdDateTime\":\"2021-06-25T20:21:59Z\",\"expirationDateTime\":\"2021-06-26T20:21:59Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "981a8dd0-a7ec-48ba-908c-2e94bb7564eb", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:58 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/d36c08c5-c19a-4932-86b2-5430073e132c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"d36c08c5-c19a-4932-86b2-5430073e132c\",\"lastUpdateDateTime\":\"2021-06-25T20:21:59Z\",\"createdDateTime\":\"2021-06-25T20:21:59Z\",\"expirationDateTime\":\"2021-06-26T20:21:59Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "ed1d1c6e-fcca-49d9-bc76-bee908d4b04c", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:58 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/d36c08c5-c19a-4932-86b2-5430073e132c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"d36c08c5-c19a-4932-86b2-5430073e132c\",\"lastUpdateDateTime\":\"2021-06-25T20:22:01Z\",\"createdDateTime\":\"2021-06-25T20:21:59Z\",\"expirationDateTime\":\"2021-06-26T20:21:59Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "5118420d-f615-4d6a-9ab7-4e8b15ed87aa", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:00 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/d36c08c5-c19a-4932-86b2-5430073e132c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"d36c08c5-c19a-4932-86b2-5430073e132c\",\"lastUpdateDateTime\":\"2021-06-25T20:22:01Z\",\"createdDateTime\":\"2021-06-25T20:21:59Z\",\"expirationDateTime\":\"2021-06-26T20:21:59Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "bde8eec8-54c3-48ca-a0fa-162396e0cbf2", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:03 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "14" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/d36c08c5-c19a-4932-86b2-5430073e132c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"d36c08c5-c19a-4932-86b2-5430073e132c\",\"lastUpdateDateTime\":\"2021-06-25T20:22:01Z\",\"createdDateTime\":\"2021-06-25T20:21:59Z\",\"expirationDateTime\":\"2021-06-26T20:21:59Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "85a61f9c-5a68-4e28-aa19-4aeb1c608891", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:06 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/d36c08c5-c19a-4932-86b2-5430073e132c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"d36c08c5-c19a-4932-86b2-5430073e132c\",\"lastUpdateDateTime\":\"2021-06-25T20:22:07Z\",\"createdDateTime\":\"2021-06-25T20:21:59Z\",\"expirationDateTime\":\"2021-06-26T20:21:59Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:22:07.9746408Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "b49b480e-7af9-4a38-bc33-2e106021ba74", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:08 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "35" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/d36c08c5-c19a-4932-86b2-5430073e132c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"d36c08c5-c19a-4932-86b2-5430073e132c\",\"lastUpdateDateTime\":\"2021-06-25T20:22:07Z\",\"createdDateTime\":\"2021-06-25T20:21:59Z\",\"expirationDateTime\":\"2021-06-26T20:21:59Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:22:07.9746408Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "90dbc8e3-ed9f-4651-8650-50a62f69d939", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:10 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/d36c08c5-c19a-4932-86b2-5430073e132c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"d36c08c5-c19a-4932-86b2-5430073e132c\",\"lastUpdateDateTime\":\"2021-06-25T20:22:11Z\",\"createdDateTime\":\"2021-06-25T20:21:59Z\",\"expirationDateTime\":\"2021-06-26T20:21:59Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:22:07.9746408Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "b05d2d4d-fb18-4ddd-8f5a-d1eabdccceb2", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:12 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "41" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/d36c08c5-c19a-4932-86b2-5430073e132c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"d36c08c5-c19a-4932-86b2-5430073e132c\",\"lastUpdateDateTime\":\"2021-06-25T20:22:11Z\",\"createdDateTime\":\"2021-06-25T20:21:59Z\",\"expirationDateTime\":\"2021-06-26T20:21:59Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:22:07.9746408Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "3780baee-56a4-44af-b540-b02444408c4a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:14 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "40" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/d36c08c5-c19a-4932-86b2-5430073e132c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"d36c08c5-c19a-4932-86b2-5430073e132c\",\"lastUpdateDateTime\":\"2021-06-25T20:22:11Z\",\"createdDateTime\":\"2021-06-25T20:21:59Z\",\"expirationDateTime\":\"2021-06-26T20:21:59Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:22:07.9746408Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "080970cf-60c9-4310-989a-dbab61c229a9", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:16 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/d36c08c5-c19a-4932-86b2-5430073e132c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"d36c08c5-c19a-4932-86b2-5430073e132c\",\"lastUpdateDateTime\":\"2021-06-25T20:22:18Z\",\"createdDateTime\":\"2021-06-25T20:21:59Z\",\"expirationDateTime\":\"2021-06-26T20:21:59Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:22:07.9746408Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:22:18.2007041Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:22:18.0876076Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "7955d961-8a41-4914-bbfb-430b44edfa48", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:18 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "114" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/d36c08c5-c19a-4932-86b2-5430073e132c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"d36c08c5-c19a-4932-86b2-5430073e132c\",\"lastUpdateDateTime\":\"2021-06-25T20:22:18Z\",\"createdDateTime\":\"2021-06-25T20:21:59Z\",\"expirationDateTime\":\"2021-06-26T20:21:59Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:22:07.9746408Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:22:18.2007041Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:22:18.0876076Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "7d395fb6-c0ca-487f-8458-c01e0f29fff8", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:18 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "114" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "55a9332c301d4649020961749a1eefec" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_malformed_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_malformed_actions.json new file mode 100644 index 000000000000..970521d7a584 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_malformed_actions.json @@ -0,0 +1,26 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/analyze", + "query": {}, + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"bad\",\"stringIndexType\":\"TextElement_v8\"}}]}}", + "status": 400, + "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid parameter in request\",\"innererror\":{\"code\":\"InvalidParameterValue\",\"message\":\"Job task parameter value bad is not supported for model-version parameter for job task type PersonallyIdentifiableInformation. Supported values latest,2020-07-01,2021-01-15.\"}}}", + "responseHeaders": { + "apim-request-id": "e19d5ce3-c7e1-459b-bb7a-75d50621af54", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 30 Jun 2021 19:34:44 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "35683911136f1ebaf864ca74c3f0b597" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_multiple_actions_per_type_are_disallowed.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_multiple_actions_per_type_are_disallowed.json new file mode 100644 index 000000000000..ddbcfe4d7dbe --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_multiple_actions_per_type_are_disallowed.json @@ -0,0 +1,8 @@ +{ + "recordings": [], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "64c8206f4b6d3882233f0ebe745aea90" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_operation_metadata.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_operation_metadata.json new file mode 100644 index 000000000000..12190aeee80a --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_operation_metadata.json @@ -0,0 +1,140 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/analyze", + "query": {}, + "requestBody": "{\"displayName\":\"testJob\",\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\"},{\"id\":\"2\",\"text\":\"Este es un document escrito en Español.\"},{\"id\":\"3\",\"text\":\"猫は幸せ\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "5a86d30a-2835-4ee5-a3ef-1fffdb8d020f", + "date": "Fri, 25 Jun 2021 20:22:54 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/cd150628-c73e-4f39-a3e5-dfa5904a6d07", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "201" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/cd150628-c73e-4f39-a3e5-dfa5904a6d07", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"cd150628-c73e-4f39-a3e5-dfa5904a6d07\",\"lastUpdateDateTime\":\"2021-06-25T20:22:55Z\",\"createdDateTime\":\"2021-06-25T20:22:54Z\",\"expirationDateTime\":\"2021-06-26T20:22:54Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "5df85f48-0339-4f04-918c-8319b1244c10", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:54 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/cd150628-c73e-4f39-a3e5-dfa5904a6d07", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"cd150628-c73e-4f39-a3e5-dfa5904a6d07\",\"lastUpdateDateTime\":\"2021-06-25T20:22:55Z\",\"createdDateTime\":\"2021-06-25T20:22:54Z\",\"expirationDateTime\":\"2021-06-26T20:22:54Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "8ec03300-210f-4d5e-9d61-fc5a832bbcac", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:55 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/cd150628-c73e-4f39-a3e5-dfa5904a6d07", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"cd150628-c73e-4f39-a3e5-dfa5904a6d07\",\"lastUpdateDateTime\":\"2021-06-25T20:22:56Z\",\"createdDateTime\":\"2021-06-25T20:22:54Z\",\"expirationDateTime\":\"2021-06-26T20:22:54Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "d3eceef0-09b2-4eca-903b-b8dcdf1a69db", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:57 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/cd150628-c73e-4f39-a3e5-dfa5904a6d07", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"cd150628-c73e-4f39-a3e5-dfa5904a6d07\",\"lastUpdateDateTime\":\"2021-06-25T20:22:56Z\",\"createdDateTime\":\"2021-06-25T20:22:54Z\",\"expirationDateTime\":\"2021-06-26T20:22:54Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "0b04d833-3452-40c1-a634-c08b9c73356f", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:59 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/cd150628-c73e-4f39-a3e5-dfa5904a6d07", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"cd150628-c73e-4f39-a3e5-dfa5904a6d07\",\"lastUpdateDateTime\":\"2021-06-25T20:22:56Z\",\"createdDateTime\":\"2021-06-25T20:22:54Z\",\"expirationDateTime\":\"2021-06-26T20:22:54Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "cdb18743-46ad-404d-b952-5512670df38e", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:01 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/cd150628-c73e-4f39-a3e5-dfa5904a6d07", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"cd150628-c73e-4f39-a3e5-dfa5904a6d07\",\"lastUpdateDateTime\":\"2021-06-25T20:23:03Z\",\"createdDateTime\":\"2021-06-25T20:22:54Z\",\"expirationDateTime\":\"2021-06-26T20:22:54Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"testJob\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:23:03.1628577Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "0979a29e-94a6-40ff-9f44-4de7af990f92", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:03 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "67" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "f1824e388e5e072cfa6552fb3e25e68c" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.json new file mode 100644 index 000000000000..64990eea3af8 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.json @@ -0,0 +1,767 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/analyze", + "query": {}, + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"56\",\"text\":\":)\"},{\"id\":\"0\",\"text\":\":(\"},{\"id\":\"22\",\"text\":\"w\"},{\"id\":\"19\",\"text\":\":P\"},{\"id\":\"1\",\"text\":\":D\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "ba473610-c82b-4b16-9404-9fc956c9a0ee", + "date": "Fri, 25 Jun 2021 20:19:00 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7923" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:19:01Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "a1b2b41a-4ca9-4b67-a39f-738f7177ee64", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:19:00 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:19:01Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "b2813263-c658-4ed6-bf0e-59175c98f1dd", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:19:00 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:19:02Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "608ce99f-526c-4626-b3ca-027688a2121f", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:19:02 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:19:02Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "b0f27346-ddff-4bdb-9e85-26792c36845c", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:19:04 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:19:02Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "49aa9dea-bb1b-4066-a91e-d4839dd2a987", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:19:07 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:19:08Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "b1180b04-c36c-4468-892b-0b3ca4959c2d", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:19:09 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "81" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:19:08Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "71e049da-1212-44d3-bc7f-f6762e1e18e8", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:19:12 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "103" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:19:08Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "3dcdb606-6a87-4a3f-91b7-43e33039a884", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:19:14 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "86" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:19:16Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "0dd0372f-5160-4be0-a212-3f03f4301a52", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:19:16 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "133" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:19:16Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "cbfc8502-6223-4546-aaa4-afd7f762fa25", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:19:18 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "140" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:19:16Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "a55d72d0-61b3-4d91-aa0c-eaa47e549142", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:19:20 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "154" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:19:16Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "58e4059f-3223-4d9c-829c-47a724260507", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:19:23 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "198" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:19:16Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "ba71155b-5e2d-452a-8afc-08d14f62e392", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:19:25 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "185" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:19:16Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "16d8f421-b571-4354-ba34-0e31a3de7bb8", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:19:27 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "135" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:19:16Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "e5ddc384-f5df-4487-a295-e98797265061", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:19:29 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "154" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:19:16Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "d3f62732-9353-43a6-8796-1df02e132aff", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:19:31 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "186" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:19:16Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "8c6f0087-2926-4905-b5f1-a03f00ca6a9d", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:19:34 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "123" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:19:16Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "bd2c2f04-e756-4709-ae45-d5914048b0d0", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:19:36 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "152" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:19:16Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "1ef53efc-a855-45fd-8b26-331d4fedc522", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:19:38 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "190" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:19:16Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "18213986-2453-4c55-ac5f-53ba3f33b558", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:19:40 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "125" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:19:16Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "608dfc36-c3b3-4727-907c-6d98c2bfa80b", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:19:42 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "167" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:19:16Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "83a1ca4d-f787-48eb-9ce2-2b2e3aa550b3", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:19:45 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "164" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:19:16Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "73a5c9d0-51f3-4f60-b75d-6b5cb5f60837", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:19:47 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "203" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:19:16Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "8567e6ae-3b33-4cf9-826d-1961d34b7100", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:19:49 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "148" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:19:16Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "7465a851-c47a-47a7-9b8e-7227526272ab", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:19:51 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "146" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:19:16Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "24309cd4-1237-4fd4-8dbf-21a2d2e6bff2", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:19:53 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "159" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:19:16Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "beb71ebb-29e3-4398-a8f6-88f05b857729", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:19:56 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "123" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:19:16Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "00d5f7b2-c42f-4709-8ad4-1dd1bc447178", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:19:59 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "134" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:19:16Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "e01f6331-245f-45bc-9fcd-4b68084c263c", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:20:01 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "143" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:20:01Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "74b50aff-e91b-483e-9abc-43c15b88fc05", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:20:03 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "144" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:20:01Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "cde4e444-3a04-44b9-ad90-13af9ae092c1", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:20:05 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "138" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:20:01Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "a6e027d0-cb33-4d0d-8f59-23fe47ed3113", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:20:07 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "166" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:20:01Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "d6ea77c9-9c7b-4506-9620-1d90b1f07f52", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:20:09 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "162" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:20:01Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "2ababfdd-e5bb-472c-87c2-18b24e2df2af", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:20:12 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "135" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:20:01Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "98fa3f1a-129b-4a43-9876-c01040259b4f", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:20:14 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "128" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:20:01Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "31695618-c882-4060-926f-cb25bb5f7d28", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:20:16 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "142" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:20:01Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "34073e4b-f7b0-4aae-b481-69f9fd46cf61", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:20:18 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "199" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:20:19Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:20:19.527562Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"0\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"22\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"19\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "478e0bc5-d971-4629-8f37-b5e9b24d4971", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:20:20 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "288" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/320caa89-245c-47de-bea8-dddb18ed5c9a", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"320caa89-245c-47de-bea8-dddb18ed5c9a\",\"lastUpdateDateTime\":\"2021-06-25T20:20:19Z\",\"createdDateTime\":\"2021-06-25T20:18:53Z\",\"expirationDateTime\":\"2021-06-26T20:18:53Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:08.5954293Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:19:16.3189411Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\":)\",\"id\":\"56\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":(\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"w\",\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":P\",\"id\":\"19\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\":D\",\"id\":\"1\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:20:19.527562Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"56\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"0\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"22\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"19\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "e520a0d2-aed8-4596-a89a-25cff881dcc4", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:20:21 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "218" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "985928d389900f82ef53f2eca9ffbe0e" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.json new file mode 100644 index 000000000000..e7b8e5112f46 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.json @@ -0,0 +1,349 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/analyze", + "query": {}, + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"one\"},{\"id\":\"2\",\"text\":\"two\"},{\"id\":\"3\",\"text\":\"three\"},{\"id\":\"4\",\"text\":\"four\"},{\"id\":\"5\",\"text\":\"five\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "e0c403b3-cbee-4950-b0dd-9b774725e1ab", + "date": "Fri, 25 Jun 2021 20:18:21 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/7fc71311-9075-41be-b06d-a9027e74675d", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "293" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7fc71311-9075-41be-b06d-a9027e74675d", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"7fc71311-9075-41be-b06d-a9027e74675d\",\"lastUpdateDateTime\":\"2021-06-25T20:18:21Z\",\"createdDateTime\":\"2021-06-25T20:18:21Z\",\"expirationDateTime\":\"2021-06-26T20:18:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "8dd2de2c-d289-4bb8-8479-efb75138470f", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:18:21 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7fc71311-9075-41be-b06d-a9027e74675d", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"7fc71311-9075-41be-b06d-a9027e74675d\",\"lastUpdateDateTime\":\"2021-06-25T20:18:21Z\",\"createdDateTime\":\"2021-06-25T20:18:21Z\",\"expirationDateTime\":\"2021-06-26T20:18:21Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "640a8171-d0d8-4e8c-9eb6-ad54111ede3a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:18:21 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7fc71311-9075-41be-b06d-a9027e74675d", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"7fc71311-9075-41be-b06d-a9027e74675d\",\"lastUpdateDateTime\":\"2021-06-25T20:18:22Z\",\"createdDateTime\":\"2021-06-25T20:18:21Z\",\"expirationDateTime\":\"2021-06-26T20:18:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "3b67e8a3-2041-458e-8c14-406f0d1bfb76", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:18:23 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7fc71311-9075-41be-b06d-a9027e74675d", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"7fc71311-9075-41be-b06d-a9027e74675d\",\"lastUpdateDateTime\":\"2021-06-25T20:18:22Z\",\"createdDateTime\":\"2021-06-25T20:18:21Z\",\"expirationDateTime\":\"2021-06-26T20:18:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "e012dc0f-3c06-481e-9060-c70139e0ef2e", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:18:25 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "11" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7fc71311-9075-41be-b06d-a9027e74675d", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"7fc71311-9075-41be-b06d-a9027e74675d\",\"lastUpdateDateTime\":\"2021-06-25T20:18:22Z\",\"createdDateTime\":\"2021-06-25T20:18:21Z\",\"expirationDateTime\":\"2021-06-26T20:18:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "76c66ace-c6d8-4688-b1b2-3dc86e18dc63", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:18:27 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "15" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7fc71311-9075-41be-b06d-a9027e74675d", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"7fc71311-9075-41be-b06d-a9027e74675d\",\"lastUpdateDateTime\":\"2021-06-25T20:18:28Z\",\"createdDateTime\":\"2021-06-25T20:18:21Z\",\"expirationDateTime\":\"2021-06-26T20:18:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:28.6389168Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "42d47804-3e68-4c13-8579-8bc45a4df674", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:18:29 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "103" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7fc71311-9075-41be-b06d-a9027e74675d", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"7fc71311-9075-41be-b06d-a9027e74675d\",\"lastUpdateDateTime\":\"2021-06-25T20:18:28Z\",\"createdDateTime\":\"2021-06-25T20:18:21Z\",\"expirationDateTime\":\"2021-06-26T20:18:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:28.6389168Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "08530c65-a0ec-48a8-9308-ff34bfd7624c", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:18:31 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "201" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7fc71311-9075-41be-b06d-a9027e74675d", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"7fc71311-9075-41be-b06d-a9027e74675d\",\"lastUpdateDateTime\":\"2021-06-25T20:18:28Z\",\"createdDateTime\":\"2021-06-25T20:18:21Z\",\"expirationDateTime\":\"2021-06-26T20:18:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:28.6389168Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "583c6ae6-8786-4383-a9d4-fa4bdbb73ec1", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:18:33 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "95" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7fc71311-9075-41be-b06d-a9027e74675d", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"7fc71311-9075-41be-b06d-a9027e74675d\",\"lastUpdateDateTime\":\"2021-06-25T20:18:36Z\",\"createdDateTime\":\"2021-06-25T20:18:21Z\",\"expirationDateTime\":\"2021-06-26T20:18:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:36.097895Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"one\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"two\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"three\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":5,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"4\",\"entities\":[{\"text\":\"four\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"text\":\"five\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:28.6389168Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "a11f0081-61e0-49af-8435-f1542f6619ea", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:18:36 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "131" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7fc71311-9075-41be-b06d-a9027e74675d", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"7fc71311-9075-41be-b06d-a9027e74675d\",\"lastUpdateDateTime\":\"2021-06-25T20:18:36Z\",\"createdDateTime\":\"2021-06-25T20:18:21Z\",\"expirationDateTime\":\"2021-06-26T20:18:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:36.097895Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"one\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"two\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"three\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":5,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"4\",\"entities\":[{\"text\":\"four\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"text\":\"five\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:28.6389168Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "7497c552-6a4e-4877-8eda-fbb2d0c040d8", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:18:38 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "143" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7fc71311-9075-41be-b06d-a9027e74675d", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"7fc71311-9075-41be-b06d-a9027e74675d\",\"lastUpdateDateTime\":\"2021-06-25T20:18:36Z\",\"createdDateTime\":\"2021-06-25T20:18:21Z\",\"expirationDateTime\":\"2021-06-26T20:18:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:36.097895Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"one\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"two\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"three\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":5,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"4\",\"entities\":[{\"text\":\"four\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"text\":\"five\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:28.6389168Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "ab3a6eef-2c9c-49ed-936d-ef967d78134c", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:18:41 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "291" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7fc71311-9075-41be-b06d-a9027e74675d", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"7fc71311-9075-41be-b06d-a9027e74675d\",\"lastUpdateDateTime\":\"2021-06-25T20:18:36Z\",\"createdDateTime\":\"2021-06-25T20:18:21Z\",\"expirationDateTime\":\"2021-06-26T20:18:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:36.097895Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"one\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"two\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"three\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":5,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"4\",\"entities\":[{\"text\":\"four\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"text\":\"five\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:28.6389168Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "8b4615a7-6f85-4e18-beed-90e6ddbc98f9", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:18:43 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "159" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7fc71311-9075-41be-b06d-a9027e74675d", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"7fc71311-9075-41be-b06d-a9027e74675d\",\"lastUpdateDateTime\":\"2021-06-25T20:18:36Z\",\"createdDateTime\":\"2021-06-25T20:18:21Z\",\"expirationDateTime\":\"2021-06-26T20:18:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:36.097895Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"one\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"two\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"three\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":5,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"4\",\"entities\":[{\"text\":\"four\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"text\":\"five\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:28.6389168Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "c1e3abdc-2530-4d91-abbd-388ee645c3a2", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:18:45 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "156" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7fc71311-9075-41be-b06d-a9027e74675d", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"7fc71311-9075-41be-b06d-a9027e74675d\",\"lastUpdateDateTime\":\"2021-06-25T20:18:36Z\",\"createdDateTime\":\"2021-06-25T20:18:21Z\",\"expirationDateTime\":\"2021-06-26T20:18:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:36.097895Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"one\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"two\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"three\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":5,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"4\",\"entities\":[{\"text\":\"four\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"text\":\"five\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:28.6389168Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "2b50c1b8-7c9e-4845-84b9-4a829127d416", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:18:47 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "170" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7fc71311-9075-41be-b06d-a9027e74675d", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"7fc71311-9075-41be-b06d-a9027e74675d\",\"lastUpdateDateTime\":\"2021-06-25T20:18:36Z\",\"createdDateTime\":\"2021-06-25T20:18:21Z\",\"expirationDateTime\":\"2021-06-26T20:18:21Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:36.097895Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"one\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"two\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"three\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":5,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"4\",\"entities\":[{\"text\":\"four\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"text\":\"five\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:28.6389168Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "998a8530-94ff-40ff-81f3-0048667e0549", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:18:50 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "344" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7fc71311-9075-41be-b06d-a9027e74675d", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"7fc71311-9075-41be-b06d-a9027e74675d\",\"lastUpdateDateTime\":\"2021-06-25T20:18:51Z\",\"createdDateTime\":\"2021-06-25T20:18:21Z\",\"expirationDateTime\":\"2021-06-26T20:18:21Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:36.097895Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"one\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"two\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"three\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":5,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"4\",\"entities\":[{\"text\":\"four\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"text\":\"five\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:28.6389168Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:51.7495446Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "4536600f-5449-4be9-bb0d-c38eb6418396", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:18:52 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "247" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/7fc71311-9075-41be-b06d-a9027e74675d", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"7fc71311-9075-41be-b06d-a9027e74675d\",\"lastUpdateDateTime\":\"2021-06-25T20:18:51Z\",\"createdDateTime\":\"2021-06-25T20:18:21Z\",\"expirationDateTime\":\"2021-06-26T20:18:21Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:36.097895Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"one\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"two\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":3,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"three\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":5,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"4\",\"entities\":[{\"text\":\"four\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"text\":\"five\",\"category\":\"Quantity\",\"subcategory\":\"Number\",\"offset\":0,\"length\":4,\"confidenceScore\":0.8}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:28.6389168Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"one\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"two\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"three\",\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"four\",\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"five\",\"id\":\"5\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:18:51.7495446Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "98ef6bfd-81d0-4948-aa65-cf596f74ec9a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:18:52 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "248" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "599895c6273ae4ea4eeb3372f9907fd6" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.json new file mode 100644 index 000000000000..51726f28c289 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.json @@ -0,0 +1,313 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/analyze", + "query": {}, + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"6\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"7\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"8\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"9\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"10\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"11\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"12\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"13\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"14\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"15\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"16\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"17\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"18\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"19\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"20\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"21\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"22\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"23\",\"text\":\"random text\",\"language\":\"en\"},{\"id\":\"24\",\"text\":\"Microsoft was founded by Bill Gates and Paul Allen\",\"language\":\"en\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "9c9c586c-f826-4987-aee6-b0a785d4ccf9", + "date": "Fri, 25 Jun 2021 20:22:19 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/0aa11bad-fec4-41cd-afa2-5d1d5f8287cf", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "707" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/0aa11bad-fec4-41cd-afa2-5d1d5f8287cf", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"0aa11bad-fec4-41cd-afa2-5d1d5f8287cf\",\"lastUpdateDateTime\":\"2021-06-25T20:22:19Z\",\"createdDateTime\":\"2021-06-25T20:22:19Z\",\"expirationDateTime\":\"2021-06-26T20:22:19Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", + "responseHeaders": { + "apim-request-id": "ca685066-37ee-4a39-b658-0ee290490e3b", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:19 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/0aa11bad-fec4-41cd-afa2-5d1d5f8287cf", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"0aa11bad-fec4-41cd-afa2-5d1d5f8287cf\",\"lastUpdateDateTime\":\"2021-06-25T20:22:19Z\",\"createdDateTime\":\"2021-06-25T20:22:19Z\",\"expirationDateTime\":\"2021-06-26T20:22:19Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", + "responseHeaders": { + "apim-request-id": "7f046708-e442-44e5-bd92-f5b26193f6e8", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:19 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/0aa11bad-fec4-41cd-afa2-5d1d5f8287cf", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"0aa11bad-fec4-41cd-afa2-5d1d5f8287cf\",\"lastUpdateDateTime\":\"2021-06-25T20:22:21Z\",\"createdDateTime\":\"2021-06-25T20:22:19Z\",\"expirationDateTime\":\"2021-06-26T20:22:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", + "responseHeaders": { + "apim-request-id": "06f9654f-287d-4b23-b940-dc89c51cafff", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:21 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "15" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/0aa11bad-fec4-41cd-afa2-5d1d5f8287cf", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"0aa11bad-fec4-41cd-afa2-5d1d5f8287cf\",\"lastUpdateDateTime\":\"2021-06-25T20:22:21Z\",\"createdDateTime\":\"2021-06-25T20:22:19Z\",\"expirationDateTime\":\"2021-06-26T20:22:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", + "responseHeaders": { + "apim-request-id": "0502e703-d987-4f99-825e-155e266e8eb2", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:23 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "18" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/0aa11bad-fec4-41cd-afa2-5d1d5f8287cf", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"0aa11bad-fec4-41cd-afa2-5d1d5f8287cf\",\"lastUpdateDateTime\":\"2021-06-25T20:22:21Z\",\"createdDateTime\":\"2021-06-25T20:22:19Z\",\"expirationDateTime\":\"2021-06-26T20:22:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", + "responseHeaders": { + "apim-request-id": "a5045893-cbf0-4d51-bccf-e05c330ad6c4", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:26 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "11" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/0aa11bad-fec4-41cd-afa2-5d1d5f8287cf", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"0aa11bad-fec4-41cd-afa2-5d1d5f8287cf\",\"lastUpdateDateTime\":\"2021-06-25T20:22:21Z\",\"createdDateTime\":\"2021-06-25T20:22:19Z\",\"expirationDateTime\":\"2021-06-26T20:22:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":2,\"total\":2}}", + "responseHeaders": { + "apim-request-id": "6f85a837-5c1b-4396-a821-eb8b2f1a4054", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:28 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "15" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/0aa11bad-fec4-41cd-afa2-5d1d5f8287cf", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"0aa11bad-fec4-41cd-afa2-5d1d5f8287cf\",\"lastUpdateDateTime\":\"2021-06-25T20:22:29Z\",\"createdDateTime\":\"2021-06-25T20:22:19Z\",\"expirationDateTime\":\"2021-06-26T20:22:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:22:29.2984851Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/0aa11bad-fec4-41cd-afa2-5d1d5f8287cf?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "26e84e8c-06e3-4e4c-8652-a45bc8164cd0", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:30 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "163" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/0aa11bad-fec4-41cd-afa2-5d1d5f8287cf", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"0aa11bad-fec4-41cd-afa2-5d1d5f8287cf\",\"lastUpdateDateTime\":\"2021-06-25T20:22:29Z\",\"createdDateTime\":\"2021-06-25T20:22:19Z\",\"expirationDateTime\":\"2021-06-26T20:22:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:22:29.2984851Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/0aa11bad-fec4-41cd-afa2-5d1d5f8287cf?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "ec899b40-065d-4ace-94b8-ea29ddf886c0", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:32 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "230" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/0aa11bad-fec4-41cd-afa2-5d1d5f8287cf", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"0aa11bad-fec4-41cd-afa2-5d1d5f8287cf\",\"lastUpdateDateTime\":\"2021-06-25T20:22:29Z\",\"createdDateTime\":\"2021-06-25T20:22:19Z\",\"expirationDateTime\":\"2021-06-26T20:22:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:22:29.2984851Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/0aa11bad-fec4-41cd-afa2-5d1d5f8287cf?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "4de39a2e-81f1-4da7-a539-04aa4428f69c", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:34 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "220" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/0aa11bad-fec4-41cd-afa2-5d1d5f8287cf", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"0aa11bad-fec4-41cd-afa2-5d1d5f8287cf\",\"lastUpdateDateTime\":\"2021-06-25T20:22:29Z\",\"createdDateTime\":\"2021-06-25T20:22:19Z\",\"expirationDateTime\":\"2021-06-26T20:22:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:22:29.2984851Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/0aa11bad-fec4-41cd-afa2-5d1d5f8287cf?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "cc21da5d-496b-4b15-aaaf-989ea4200366", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:36 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "207" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/0aa11bad-fec4-41cd-afa2-5d1d5f8287cf", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"0aa11bad-fec4-41cd-afa2-5d1d5f8287cf\",\"lastUpdateDateTime\":\"2021-06-25T20:22:39Z\",\"createdDateTime\":\"2021-06-25T20:22:19Z\",\"expirationDateTime\":\"2021-06-26T20:22:19Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":1,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:22:29.2984851Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/0aa11bad-fec4-41cd-afa2-5d1d5f8287cf?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "3db37a3d-41c0-49b6-8b66-aa33c335acb0", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:39 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "182" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/0aa11bad-fec4-41cd-afa2-5d1d5f8287cf", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"0aa11bad-fec4-41cd-afa2-5d1d5f8287cf\",\"lastUpdateDateTime\":\"2021-06-25T20:22:40Z\",\"createdDateTime\":\"2021-06-25T20:22:19Z\",\"expirationDateTime\":\"2021-06-26T20:22:19Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":0,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:22:29.2984851Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]},{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:22:40.5758738Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"6\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"7\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"8\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"9\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"10\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"11\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"12\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"13\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"14\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"15\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"16\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"17\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"18\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"19\",\"keyPhrases\":[\"random text\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/0aa11bad-fec4-41cd-afa2-5d1d5f8287cf?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "29dc748e-6b19-45f6-9a4c-533c3b3a79a1", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:41 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "414" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/0aa11bad-fec4-41cd-afa2-5d1d5f8287cf", + "query": { + "$top": "10" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"0aa11bad-fec4-41cd-afa2-5d1d5f8287cf\",\"lastUpdateDateTime\":\"2021-06-25T20:22:40Z\",\"createdDateTime\":\"2021-06-25T20:22:19Z\",\"expirationDateTime\":\"2021-06-26T20:22:19Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":0,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:22:29.2984851Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[],\"warnings\":[]},{\"id\":\"6\",\"entities\":[],\"warnings\":[]},{\"id\":\"7\",\"entities\":[],\"warnings\":[]},{\"id\":\"8\",\"entities\":[],\"warnings\":[]},{\"id\":\"9\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:22:40.5758738Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"4\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"5\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"6\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"7\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"8\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"9\",\"keyPhrases\":[\"random text\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/0aa11bad-fec4-41cd-afa2-5d1d5f8287cf?$skip=10&$top=10&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "200ae76f-474b-4417-9047-01f97a9a4201", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:41 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "257" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/0aa11bad-fec4-41cd-afa2-5d1d5f8287cf", + "query": { + "$top": "10", + "$skip": "10" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"0aa11bad-fec4-41cd-afa2-5d1d5f8287cf\",\"lastUpdateDateTime\":\"2021-06-25T20:22:40Z\",\"createdDateTime\":\"2021-06-25T20:22:19Z\",\"expirationDateTime\":\"2021-06-26T20:22:19Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":0,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:22:29.2984851Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"10\",\"entities\":[],\"warnings\":[]},{\"id\":\"11\",\"entities\":[],\"warnings\":[]},{\"id\":\"12\",\"entities\":[],\"warnings\":[]},{\"id\":\"13\",\"entities\":[],\"warnings\":[]},{\"id\":\"14\",\"entities\":[],\"warnings\":[]},{\"id\":\"15\",\"entities\":[],\"warnings\":[]},{\"id\":\"16\",\"entities\":[],\"warnings\":[]},{\"id\":\"17\",\"entities\":[],\"warnings\":[]},{\"id\":\"18\",\"entities\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:22:40.5758738Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"10\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"11\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"12\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"13\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"14\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"15\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"16\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"17\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"18\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"19\",\"keyPhrases\":[\"random text\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]},\"@nextLink\":\"https://endpoint/text/analytics/v3.1/analyze/jobs/0aa11bad-fec4-41cd-afa2-5d1d5f8287cf?$skip=20&$top=5&showStats=False\"}", + "responseHeaders": { + "apim-request-id": "edc9a249-ef8d-479a-bd11-a97d2296880a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:42 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "277" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/0aa11bad-fec4-41cd-afa2-5d1d5f8287cf", + "query": { + "$top": "5", + "$skip": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"0aa11bad-fec4-41cd-afa2-5d1d5f8287cf\",\"lastUpdateDateTime\":\"2021-06-25T20:22:40Z\",\"createdDateTime\":\"2021-06-25T20:22:19Z\",\"expirationDateTime\":\"2021-06-26T20:22:19Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":0,\"total\":2,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:22:29.2984851Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"20\",\"entities\":[],\"warnings\":[]},{\"id\":\"21\",\"entities\":[],\"warnings\":[]},{\"id\":\"22\",\"entities\":[],\"warnings\":[]},{\"id\":\"23\",\"entities\":[],\"warnings\":[]},{\"id\":\"24\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":1.0},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":25,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":40,\"length\":10,\"confidenceScore\":1.0}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:22:40.5758738Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"20\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"21\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"22\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"23\",\"keyPhrases\":[\"random text\"],\"warnings\":[]},{\"id\":\"24\",\"keyPhrases\":[\"Bill Gates\",\"Paul Allen\",\"Microsoft\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "4cf1acee-7b78-42b7-a25e-5630f34395ab", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:42 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "142" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "62ca71ecf688e9feaf17203742a35f2b" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.json new file mode 100644 index 000000000000..dc885473416d --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.json @@ -0,0 +1,159 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/analyze", + "query": {}, + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\"},{\"id\":\"2\",\"text\":\"Este es un document escrito en Español.\"},{\"id\":\"3\",\"text\":\"猫は幸せ\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "cfe0b134-76d9-49c4-87b7-a3f82b4e64ed", + "date": "Fri, 25 Jun 2021 20:22:45 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/59f5b4ca-0662-40fa-a9e0-58e8269b1a34", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "2769" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/59f5b4ca-0662-40fa-a9e0-58e8269b1a34", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"59f5b4ca-0662-40fa-a9e0-58e8269b1a34\",\"lastUpdateDateTime\":\"2021-06-25T20:22:46Z\",\"createdDateTime\":\"2021-06-25T20:22:43Z\",\"expirationDateTime\":\"2021-06-26T20:22:43Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "caddad9a-5a2a-4b75-85c8-286843b4d5b7", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:45 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/59f5b4ca-0662-40fa-a9e0-58e8269b1a34", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"59f5b4ca-0662-40fa-a9e0-58e8269b1a34\",\"lastUpdateDateTime\":\"2021-06-25T20:22:46Z\",\"createdDateTime\":\"2021-06-25T20:22:43Z\",\"expirationDateTime\":\"2021-06-26T20:22:43Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "15ba481b-4f24-48c6-8447-424c918d2f9e", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:45 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/59f5b4ca-0662-40fa-a9e0-58e8269b1a34", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"59f5b4ca-0662-40fa-a9e0-58e8269b1a34\",\"lastUpdateDateTime\":\"2021-06-25T20:22:47Z\",\"createdDateTime\":\"2021-06-25T20:22:43Z\",\"expirationDateTime\":\"2021-06-26T20:22:43Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "bd631cdb-a53f-4c6d-be84-9a5f8de52cf2", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:47 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "11" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/59f5b4ca-0662-40fa-a9e0-58e8269b1a34", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"59f5b4ca-0662-40fa-a9e0-58e8269b1a34\",\"lastUpdateDateTime\":\"2021-06-25T20:22:47Z\",\"createdDateTime\":\"2021-06-25T20:22:43Z\",\"expirationDateTime\":\"2021-06-26T20:22:43Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "565958cc-898f-438c-843a-af111c309118", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:49 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/59f5b4ca-0662-40fa-a9e0-58e8269b1a34", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"59f5b4ca-0662-40fa-a9e0-58e8269b1a34\",\"lastUpdateDateTime\":\"2021-06-25T20:22:47Z\",\"createdDateTime\":\"2021-06-25T20:22:43Z\",\"expirationDateTime\":\"2021-06-26T20:22:43Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "afe1ade2-a0e4-4670-89ed-68cb7e84de6b", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:52 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "17" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/59f5b4ca-0662-40fa-a9e0-58e8269b1a34", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"59f5b4ca-0662-40fa-a9e0-58e8269b1a34\",\"lastUpdateDateTime\":\"2021-06-25T20:22:53Z\",\"createdDateTime\":\"2021-06-25T20:22:43Z\",\"expirationDateTime\":\"2021-06-26T20:22:43Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:22:53.7952934Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "0dfcbcec-9fa4-41af-81bc-1a908ebf0918", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:54 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "65" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/59f5b4ca-0662-40fa-a9e0-58e8269b1a34", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"59f5b4ca-0662-40fa-a9e0-58e8269b1a34\",\"lastUpdateDateTime\":\"2021-06-25T20:22:53Z\",\"createdDateTime\":\"2021-06-25T20:22:43Z\",\"expirationDateTime\":\"2021-06-26T20:22:43Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:22:53.7952934Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "63f020d9-54a6-4412-8022-53d375b516d2", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:22:54 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "61" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "096c12a7cccfec04b026e6b6a418de2b" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.json new file mode 100644 index 000000000000..4c7f5e81da91 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.json @@ -0,0 +1,121 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/analyze", + "query": {}, + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"Microsoft moved its headquarters to Bellevue, Washington in January 1979.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Steve Ballmer stepped down as CEO of Microsoft and was succeeded by Satya Nadella.\",\"language\":\"en\"}]},\"tasks\":{\"entityLinkingTasks\":[{\"parameters\":{\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "48d1facc-2000-4b56-87d3-0d793f16a6df", + "date": "Fri, 25 Jun 2021 20:15:15 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/4f7c2b23-9dea-412f-ad36-e5065283dbfd", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "168" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4f7c2b23-9dea-412f-ad36-e5065283dbfd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4f7c2b23-9dea-412f-ad36-e5065283dbfd\",\"lastUpdateDateTime\":\"2021-06-25T20:15:16Z\",\"createdDateTime\":\"2021-06-25T20:15:16Z\",\"expirationDateTime\":\"2021-06-26T20:15:16Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "01b73c90-7d00-494d-b270-549b3268e3e0", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:15:15 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4f7c2b23-9dea-412f-ad36-e5065283dbfd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4f7c2b23-9dea-412f-ad36-e5065283dbfd\",\"lastUpdateDateTime\":\"2021-06-25T20:15:16Z\",\"createdDateTime\":\"2021-06-25T20:15:16Z\",\"expirationDateTime\":\"2021-06-26T20:15:16Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "760b3cb8-8db0-4620-9f0a-2320dc37e5c5", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:15:15 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4f7c2b23-9dea-412f-ad36-e5065283dbfd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4f7c2b23-9dea-412f-ad36-e5065283dbfd\",\"lastUpdateDateTime\":\"2021-06-25T20:15:17Z\",\"createdDateTime\":\"2021-06-25T20:15:16Z\",\"expirationDateTime\":\"2021-06-26T20:15:16Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "ba75f613-1569-42f1-93f0-5a208e0771f1", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:15:17 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4f7c2b23-9dea-412f-ad36-e5065283dbfd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4f7c2b23-9dea-412f-ad36-e5065283dbfd\",\"lastUpdateDateTime\":\"2021-06-25T20:15:20Z\",\"createdDateTime\":\"2021-06-25T20:15:16Z\",\"expirationDateTime\":\"2021-06-26T20:15:16Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityLinkingTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:15:20.6000895Z\",\"taskName\":\"EntityLinking_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"name\":\"Bellevue, Washington\",\"matches\":[{\"text\":\"Bellevue, Washington\",\"offset\":36,\"length\":20,\"confidenceScore\":0.87}],\"language\":\"en\",\"id\":\"Bellevue, Washington\",\"url\":\"https://en.wikipedia.org/wiki/Bellevue,_Washington\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Microsoft\",\"matches\":[{\"text\":\"Microsoft\",\"offset\":0,\"length\":9,\"confidenceScore\":0.39}],\"language\":\"en\",\"id\":\"Microsoft\",\"url\":\"https://en.wikipedia.org/wiki/Microsoft\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Briann January\",\"matches\":[{\"text\":\"January\",\"offset\":60,\"length\":7,\"confidenceScore\":0.14}],\"language\":\"en\",\"id\":\"Briann January\",\"url\":\"https://en.wikipedia.org/wiki/Briann_January\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"name\":\"Steve Ballmer\",\"matches\":[{\"text\":\"Steve Ballmer\",\"offset\":0,\"length\":13,\"confidenceScore\":0.92}],\"language\":\"en\",\"id\":\"Steve Ballmer\",\"url\":\"https://en.wikipedia.org/wiki/Steve_Ballmer\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Satya Nadella\",\"matches\":[{\"text\":\"Satya Nadella\",\"offset\":68,\"length\":13,\"confidenceScore\":0.9}],\"language\":\"en\",\"id\":\"Satya Nadella\",\"url\":\"https://en.wikipedia.org/wiki/Satya_Nadella\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Microsoft\",\"matches\":[{\"text\":\"Microsoft\",\"offset\":37,\"length\":9,\"confidenceScore\":0.36}],\"language\":\"en\",\"id\":\"Microsoft\",\"url\":\"https://en.wikipedia.org/wiki/Microsoft\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Chief executive officer\",\"matches\":[{\"text\":\"CEO\",\"offset\":30,\"length\":3,\"confidenceScore\":0.25}],\"language\":\"en\",\"id\":\"Chief executive officer\",\"url\":\"https://en.wikipedia.org/wiki/Chief_executive_officer\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-02-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "2dde943f-bbbd-4a44-a8f9-8400fb0c9473", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:15:28 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7660" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/4f7c2b23-9dea-412f-ad36-e5065283dbfd", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"4f7c2b23-9dea-412f-ad36-e5065283dbfd\",\"lastUpdateDateTime\":\"2021-06-25T20:15:20Z\",\"createdDateTime\":\"2021-06-25T20:15:16Z\",\"expirationDateTime\":\"2021-06-26T20:15:16Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityLinkingTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:15:20.6000895Z\",\"taskName\":\"EntityLinking_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"name\":\"Bellevue, Washington\",\"matches\":[{\"text\":\"Bellevue, Washington\",\"offset\":36,\"length\":20,\"confidenceScore\":0.87}],\"language\":\"en\",\"id\":\"Bellevue, Washington\",\"url\":\"https://en.wikipedia.org/wiki/Bellevue,_Washington\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Microsoft\",\"matches\":[{\"text\":\"Microsoft\",\"offset\":0,\"length\":9,\"confidenceScore\":0.39}],\"language\":\"en\",\"id\":\"Microsoft\",\"url\":\"https://en.wikipedia.org/wiki/Microsoft\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Briann January\",\"matches\":[{\"text\":\"January\",\"offset\":60,\"length\":7,\"confidenceScore\":0.14}],\"language\":\"en\",\"id\":\"Briann January\",\"url\":\"https://en.wikipedia.org/wiki/Briann_January\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"name\":\"Steve Ballmer\",\"matches\":[{\"text\":\"Steve Ballmer\",\"offset\":0,\"length\":13,\"confidenceScore\":0.92}],\"language\":\"en\",\"id\":\"Steve Ballmer\",\"url\":\"https://en.wikipedia.org/wiki/Steve_Ballmer\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Satya Nadella\",\"matches\":[{\"text\":\"Satya Nadella\",\"offset\":68,\"length\":13,\"confidenceScore\":0.9}],\"language\":\"en\",\"id\":\"Satya Nadella\",\"url\":\"https://en.wikipedia.org/wiki/Satya_Nadella\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Microsoft\",\"matches\":[{\"text\":\"Microsoft\",\"offset\":37,\"length\":9,\"confidenceScore\":0.36}],\"language\":\"en\",\"id\":\"Microsoft\",\"url\":\"https://en.wikipedia.org/wiki/Microsoft\",\"dataSource\":\"Wikipedia\"},{\"name\":\"Chief executive officer\",\"matches\":[{\"text\":\"CEO\",\"offset\":30,\"length\":3,\"confidenceScore\":0.25}],\"language\":\"en\",\"id\":\"Chief executive officer\",\"url\":\"https://en.wikipedia.org/wiki/Chief_executive_officer\",\"dataSource\":\"Wikipedia\"}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2020-02-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "b5370ae6-4fed-42f8-bdaa-485bbb7378d9", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:15:28 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "72" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "d106d5b70ea37037fd91dd13fffd822e" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.json new file mode 100644 index 000000000000..7de5a03dd730 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.json @@ -0,0 +1,235 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/analyze", + "query": {}, + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"Microsoft was founded by Bill Gates and Paul Allen on April 4, 1975.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Microsoft fue fundado por Bill Gates y Paul Allen el 4 de abril de 1975.\",\"language\":\"es\"},{\"id\":\"3\",\"text\":\"Microsoft wurde am 4. April 1975 von Bill Gates und Paul Allen gegründet.\",\"language\":\"de\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "1d1ee115-0305-476a-9815-1754cecfc412", + "date": "Fri, 25 Jun 2021 20:14:53 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/ccf385be-e81e-4265-8098-24ee73d54b80", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "173" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/ccf385be-e81e-4265-8098-24ee73d54b80", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"ccf385be-e81e-4265-8098-24ee73d54b80\",\"lastUpdateDateTime\":\"2021-06-25T20:14:54Z\",\"createdDateTime\":\"2021-06-25T20:14:54Z\",\"expirationDateTime\":\"2021-06-26T20:14:54Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "3bb9450d-6221-4baa-9ed0-af2cd3f40ac6", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:53 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/ccf385be-e81e-4265-8098-24ee73d54b80", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"ccf385be-e81e-4265-8098-24ee73d54b80\",\"lastUpdateDateTime\":\"2021-06-25T20:14:54Z\",\"createdDateTime\":\"2021-06-25T20:14:54Z\",\"expirationDateTime\":\"2021-06-26T20:14:54Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "dd5eaad0-472c-4ce7-9366-efc11f9d364b", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:53 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/ccf385be-e81e-4265-8098-24ee73d54b80", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"ccf385be-e81e-4265-8098-24ee73d54b80\",\"lastUpdateDateTime\":\"2021-06-25T20:14:54Z\",\"createdDateTime\":\"2021-06-25T20:14:54Z\",\"expirationDateTime\":\"2021-06-26T20:14:54Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "c8137171-cdda-4a38-84d5-5073720ce171", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:55 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/ccf385be-e81e-4265-8098-24ee73d54b80", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"ccf385be-e81e-4265-8098-24ee73d54b80\",\"lastUpdateDateTime\":\"2021-06-25T20:14:54Z\",\"createdDateTime\":\"2021-06-25T20:14:54Z\",\"expirationDateTime\":\"2021-06-26T20:14:54Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "5cf4bc68-d429-43e4-8f1f-fbaff7414050", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:58 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/ccf385be-e81e-4265-8098-24ee73d54b80", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"ccf385be-e81e-4265-8098-24ee73d54b80\",\"lastUpdateDateTime\":\"2021-06-25T20:14:54Z\",\"createdDateTime\":\"2021-06-25T20:14:54Z\",\"expirationDateTime\":\"2021-06-26T20:14:54Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "b2bdc914-cd5e-4ac3-9e13-b36bf722229c", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:15:00 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/ccf385be-e81e-4265-8098-24ee73d54b80", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"ccf385be-e81e-4265-8098-24ee73d54b80\",\"lastUpdateDateTime\":\"2021-06-25T20:14:54Z\",\"createdDateTime\":\"2021-06-25T20:14:54Z\",\"expirationDateTime\":\"2021-06-26T20:14:54Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "5e81fa8e-e0f3-4727-b502-4f15f3175d7f", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:15:02 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/ccf385be-e81e-4265-8098-24ee73d54b80", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"ccf385be-e81e-4265-8098-24ee73d54b80\",\"lastUpdateDateTime\":\"2021-06-25T20:15:03Z\",\"createdDateTime\":\"2021-06-25T20:14:54Z\",\"expirationDateTime\":\"2021-06-26T20:14:54Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "ebcc20c9-f7c2-4158-9fed-c22ba698b340", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:15:04 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/ccf385be-e81e-4265-8098-24ee73d54b80", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"ccf385be-e81e-4265-8098-24ee73d54b80\",\"lastUpdateDateTime\":\"2021-06-25T20:15:03Z\",\"createdDateTime\":\"2021-06-25T20:14:54Z\",\"expirationDateTime\":\"2021-06-26T20:14:54Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "15e9427c-acb4-44ea-bbb5-75a4205959b1", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:15:06 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/ccf385be-e81e-4265-8098-24ee73d54b80", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"ccf385be-e81e-4265-8098-24ee73d54b80\",\"lastUpdateDateTime\":\"2021-06-25T20:15:09Z\",\"createdDateTime\":\"2021-06-25T20:14:54Z\",\"expirationDateTime\":\"2021-06-26T20:14:54Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "815eaba7-408b-4c11-b183-1b0487cd81b6", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:15:08 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/ccf385be-e81e-4265-8098-24ee73d54b80", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"ccf385be-e81e-4265-8098-24ee73d54b80\",\"lastUpdateDateTime\":\"2021-06-25T20:15:09Z\",\"createdDateTime\":\"2021-06-25T20:14:54Z\",\"expirationDateTime\":\"2021-06-26T20:14:54Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:15:09.0874216Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":1.0},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":25,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":40,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"April 4, 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":54,\"length\":13,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":1.0},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":26,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":39,\"length\":10,\"confidenceScore\":0.99},{\"text\":\"4 de abril de 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":53,\"length\":18,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":1.0},{\"text\":\"4. April 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":19,\"length\":13,\"confidenceScore\":0.8},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":37,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":52,\"length\":10,\"confidenceScore\":1.0}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "4e041bf1-0288-4941-8691-6a6b22be514b", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:15:15 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "5097" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/ccf385be-e81e-4265-8098-24ee73d54b80", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"ccf385be-e81e-4265-8098-24ee73d54b80\",\"lastUpdateDateTime\":\"2021-06-25T20:15:09Z\",\"createdDateTime\":\"2021-06-25T20:14:54Z\",\"expirationDateTime\":\"2021-06-26T20:14:54Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:15:09.0874216Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":1.0},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":25,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":40,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"April 4, 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":54,\"length\":13,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":1.0},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":26,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":39,\"length\":10,\"confidenceScore\":0.99},{\"text\":\"4 de abril de 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":53,\"length\":18,\"confidenceScore\":0.8}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":1.0},{\"text\":\"4. April 1975\",\"category\":\"DateTime\",\"subcategory\":\"Date\",\"offset\":19,\"length\":13,\"confidenceScore\":0.8},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":37,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":52,\"length\":10,\"confidenceScore\":1.0}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "f00499c8-281c-4fe4-ba12-9919fea8140e", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:15:15 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "52" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "cf115337615566d6c56926e571550fa1" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.json new file mode 100644 index 000000000000..f6fdf032ede3 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.json @@ -0,0 +1,387 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/analyze", + "query": {}, + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"Microsoft was founded by Bill Gates and Paul Allen\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Microsoft fue fundado por Bill Gates y Paul Allen\",\"language\":\"es\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "c8332dcf-8f34-498b-963f-7669c7a52145", + "date": "Fri, 25 Jun 2021 20:13:46 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/8d3a4fa9-b619-4225-afbf-6a22660a6d63", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "282" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8d3a4fa9-b619-4225-afbf-6a22660a6d63", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8d3a4fa9-b619-4225-afbf-6a22660a6d63\",\"lastUpdateDateTime\":\"2021-06-25T20:13:47Z\",\"createdDateTime\":\"2021-06-25T20:13:46Z\",\"expirationDateTime\":\"2021-06-26T20:13:46Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "1c1b8318-e560-4326-abea-fe4e62496dd1", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:13:46 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "34" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8d3a4fa9-b619-4225-afbf-6a22660a6d63", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8d3a4fa9-b619-4225-afbf-6a22660a6d63\",\"lastUpdateDateTime\":\"2021-06-25T20:13:47Z\",\"createdDateTime\":\"2021-06-25T20:13:46Z\",\"expirationDateTime\":\"2021-06-26T20:13:46Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "2d8c57db-187d-499b-9202-3c91491e3171", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:13:47 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "22" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8d3a4fa9-b619-4225-afbf-6a22660a6d63", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8d3a4fa9-b619-4225-afbf-6a22660a6d63\",\"lastUpdateDateTime\":\"2021-06-25T20:13:47Z\",\"createdDateTime\":\"2021-06-25T20:13:46Z\",\"expirationDateTime\":\"2021-06-26T20:13:46Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "e34c2449-509c-43d6-a82e-0ff99012fdee", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:13:49 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "14" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8d3a4fa9-b619-4225-afbf-6a22660a6d63", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8d3a4fa9-b619-4225-afbf-6a22660a6d63\",\"lastUpdateDateTime\":\"2021-06-25T20:13:47Z\",\"createdDateTime\":\"2021-06-25T20:13:46Z\",\"expirationDateTime\":\"2021-06-26T20:13:46Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "7aa5ac22-0cf2-4db4-85bd-5d24c9d50945", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:13:51 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8d3a4fa9-b619-4225-afbf-6a22660a6d63", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8d3a4fa9-b619-4225-afbf-6a22660a6d63\",\"lastUpdateDateTime\":\"2021-06-25T20:13:52Z\",\"createdDateTime\":\"2021-06-25T20:13:46Z\",\"expirationDateTime\":\"2021-06-26T20:13:46Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "007bd023-6137-4b41-9083-7432f2f4e98b", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:13:53 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8d3a4fa9-b619-4225-afbf-6a22660a6d63", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8d3a4fa9-b619-4225-afbf-6a22660a6d63\",\"lastUpdateDateTime\":\"2021-06-25T20:13:52Z\",\"createdDateTime\":\"2021-06-25T20:13:46Z\",\"expirationDateTime\":\"2021-06-26T20:13:46Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "74d335d8-2665-49c1-bae0-45ba6dd216ae", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:13:55 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8d3a4fa9-b619-4225-afbf-6a22660a6d63", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8d3a4fa9-b619-4225-afbf-6a22660a6d63\",\"lastUpdateDateTime\":\"2021-06-25T20:13:52Z\",\"createdDateTime\":\"2021-06-25T20:13:46Z\",\"expirationDateTime\":\"2021-06-26T20:13:46Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "d98e72fd-5570-4792-87b2-ca742b752d7f", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:13:57 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8d3a4fa9-b619-4225-afbf-6a22660a6d63", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8d3a4fa9-b619-4225-afbf-6a22660a6d63\",\"lastUpdateDateTime\":\"2021-06-25T20:13:52Z\",\"createdDateTime\":\"2021-06-25T20:13:46Z\",\"expirationDateTime\":\"2021-06-26T20:13:46Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "7a70da18-315c-4d98-b2a4-7513cdfc5bf3", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:13:59 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8d3a4fa9-b619-4225-afbf-6a22660a6d63", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8d3a4fa9-b619-4225-afbf-6a22660a6d63\",\"lastUpdateDateTime\":\"2021-06-25T20:13:52Z\",\"createdDateTime\":\"2021-06-25T20:13:46Z\",\"expirationDateTime\":\"2021-06-26T20:13:46Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "1d4926ca-4673-4e6f-b119-c77d3bdc539e", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:01 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "11" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8d3a4fa9-b619-4225-afbf-6a22660a6d63", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8d3a4fa9-b619-4225-afbf-6a22660a6d63\",\"lastUpdateDateTime\":\"2021-06-25T20:13:52Z\",\"createdDateTime\":\"2021-06-25T20:13:46Z\",\"expirationDateTime\":\"2021-06-26T20:13:46Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "47e944ae-be4c-4281-b563-ee4862caf42d", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:03 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8d3a4fa9-b619-4225-afbf-6a22660a6d63", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8d3a4fa9-b619-4225-afbf-6a22660a6d63\",\"lastUpdateDateTime\":\"2021-06-25T20:13:52Z\",\"createdDateTime\":\"2021-06-25T20:13:46Z\",\"expirationDateTime\":\"2021-06-26T20:13:46Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "9afb7856-a4a4-41ab-9111-fecdc2d1fa6a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:05 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8d3a4fa9-b619-4225-afbf-6a22660a6d63", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8d3a4fa9-b619-4225-afbf-6a22660a6d63\",\"lastUpdateDateTime\":\"2021-06-25T20:13:52Z\",\"createdDateTime\":\"2021-06-25T20:13:46Z\",\"expirationDateTime\":\"2021-06-26T20:13:46Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "f2a7f8a3-5dee-47e6-bcfd-635f5a2d05dc", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:07 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8d3a4fa9-b619-4225-afbf-6a22660a6d63", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8d3a4fa9-b619-4225-afbf-6a22660a6d63\",\"lastUpdateDateTime\":\"2021-06-25T20:13:52Z\",\"createdDateTime\":\"2021-06-25T20:13:46Z\",\"expirationDateTime\":\"2021-06-26T20:13:46Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "c174b29d-499f-4c05-9fc1-d9eacfd54678", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:09 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8d3a4fa9-b619-4225-afbf-6a22660a6d63", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8d3a4fa9-b619-4225-afbf-6a22660a6d63\",\"lastUpdateDateTime\":\"2021-06-25T20:13:52Z\",\"createdDateTime\":\"2021-06-25T20:13:46Z\",\"expirationDateTime\":\"2021-06-26T20:13:46Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "53c1ffd6-c2e2-4c05-afff-d8e2c985d27a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:12 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8d3a4fa9-b619-4225-afbf-6a22660a6d63", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8d3a4fa9-b619-4225-afbf-6a22660a6d63\",\"lastUpdateDateTime\":\"2021-06-25T20:13:52Z\",\"createdDateTime\":\"2021-06-25T20:13:46Z\",\"expirationDateTime\":\"2021-06-26T20:13:46Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "4113948f-2346-4028-9dbf-bf748d858ec4", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:14 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8d3a4fa9-b619-4225-afbf-6a22660a6d63", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8d3a4fa9-b619-4225-afbf-6a22660a6d63\",\"lastUpdateDateTime\":\"2021-06-25T20:13:52Z\",\"createdDateTime\":\"2021-06-25T20:13:46Z\",\"expirationDateTime\":\"2021-06-26T20:13:46Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "3a598128-749d-481d-ac78-15770ae7820d", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:16 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8d3a4fa9-b619-4225-afbf-6a22660a6d63", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8d3a4fa9-b619-4225-afbf-6a22660a6d63\",\"lastUpdateDateTime\":\"2021-06-25T20:13:52Z\",\"createdDateTime\":\"2021-06-25T20:13:46Z\",\"expirationDateTime\":\"2021-06-26T20:13:46Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "d2bdf096-9297-4e23-8708-a6b9b23844a3", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:18 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8d3a4fa9-b619-4225-afbf-6a22660a6d63", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8d3a4fa9-b619-4225-afbf-6a22660a6d63\",\"lastUpdateDateTime\":\"2021-06-25T20:14:19Z\",\"createdDateTime\":\"2021-06-25T20:13:46Z\",\"expirationDateTime\":\"2021-06-26T20:13:46Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:14:19.0608941Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":1.0},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":25,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":40,\"length\":10,\"confidenceScore\":1.0}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":1.0},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":26,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":39,\"length\":10,\"confidenceScore\":0.99}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "b47e2a32-d96d-44cf-ba65-cbb32dd807f6", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:20 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "67" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8d3a4fa9-b619-4225-afbf-6a22660a6d63", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8d3a4fa9-b619-4225-afbf-6a22660a6d63\",\"lastUpdateDateTime\":\"2021-06-25T20:14:19Z\",\"createdDateTime\":\"2021-06-25T20:13:46Z\",\"expirationDateTime\":\"2021-06-26T20:13:46Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:14:19.0608941Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":1.0},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":25,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":40,\"length\":10,\"confidenceScore\":1.0}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Microsoft\",\"category\":\"Organization\",\"offset\":0,\"length\":9,\"confidenceScore\":1.0},{\"text\":\"Bill Gates\",\"category\":\"Person\",\"offset\":26,\"length\":10,\"confidenceScore\":1.0},{\"text\":\"Paul Allen\",\"category\":\"Person\",\"offset\":39,\"length\":10,\"confidenceScore\":0.99}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "297c2a7b-5974-4e31-94b1-b81011a137fb", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:25 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "5237" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "881e291f78d9d9466840e6f0072b0c70" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.json new file mode 100644 index 000000000000..55bebec52e1e --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.json @@ -0,0 +1,330 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/analyze", + "query": {}, + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"Microsoft was founded by Bill Gates and Paul Allen\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Microsoft fue fundado por Bill Gates y Paul Allen\",\"language\":\"es\"}]},\"tasks\":{\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "f9383411-2a7c-494b-acb0-e7a7f9ef7498", + "date": "Fri, 25 Jun 2021 20:14:26 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/fcbe2994-150f-4512-a8aa-ef7b1ac96041", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "230" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/fcbe2994-150f-4512-a8aa-ef7b1ac96041", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"fcbe2994-150f-4512-a8aa-ef7b1ac96041\",\"lastUpdateDateTime\":\"2021-06-25T20:14:26Z\",\"createdDateTime\":\"2021-06-25T20:14:26Z\",\"expirationDateTime\":\"2021-06-26T20:14:26Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "1fcf6b7e-46a4-4b34-a549-12c0752b818b", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:26 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/fcbe2994-150f-4512-a8aa-ef7b1ac96041", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"fcbe2994-150f-4512-a8aa-ef7b1ac96041\",\"lastUpdateDateTime\":\"2021-06-25T20:14:26Z\",\"createdDateTime\":\"2021-06-25T20:14:26Z\",\"expirationDateTime\":\"2021-06-26T20:14:26Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "f93faa46-250c-47a6-9ad3-09f805df7479", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:26 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/fcbe2994-150f-4512-a8aa-ef7b1ac96041", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"fcbe2994-150f-4512-a8aa-ef7b1ac96041\",\"lastUpdateDateTime\":\"2021-06-25T20:14:26Z\",\"createdDateTime\":\"2021-06-25T20:14:26Z\",\"expirationDateTime\":\"2021-06-26T20:14:26Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "b659bcc0-fc2a-4dab-8b8b-274eef5d6bd0", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:28 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "12" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/fcbe2994-150f-4512-a8aa-ef7b1ac96041", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"fcbe2994-150f-4512-a8aa-ef7b1ac96041\",\"lastUpdateDateTime\":\"2021-06-25T20:14:26Z\",\"createdDateTime\":\"2021-06-25T20:14:26Z\",\"expirationDateTime\":\"2021-06-26T20:14:26Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "90ceb0dc-214e-44af-a3be-fdaf7df9e4b2", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:30 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "29" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/fcbe2994-150f-4512-a8aa-ef7b1ac96041", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"fcbe2994-150f-4512-a8aa-ef7b1ac96041\",\"lastUpdateDateTime\":\"2021-06-25T20:14:26Z\",\"createdDateTime\":\"2021-06-25T20:14:26Z\",\"expirationDateTime\":\"2021-06-26T20:14:26Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "7384c51d-141e-4218-9565-6fc8057359d1", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:32 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/fcbe2994-150f-4512-a8aa-ef7b1ac96041", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"fcbe2994-150f-4512-a8aa-ef7b1ac96041\",\"lastUpdateDateTime\":\"2021-06-25T20:14:34Z\",\"createdDateTime\":\"2021-06-25T20:14:26Z\",\"expirationDateTime\":\"2021-06-26T20:14:26Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "e5193b66-4e72-4e48-9e4c-9f60ba73b3c7", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:34 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "15" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/fcbe2994-150f-4512-a8aa-ef7b1ac96041", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"fcbe2994-150f-4512-a8aa-ef7b1ac96041\",\"lastUpdateDateTime\":\"2021-06-25T20:14:34Z\",\"createdDateTime\":\"2021-06-25T20:14:26Z\",\"expirationDateTime\":\"2021-06-26T20:14:26Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "a7792a56-86e5-4b97-ab30-7c4b2340819f", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:36 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "15" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/fcbe2994-150f-4512-a8aa-ef7b1ac96041", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"fcbe2994-150f-4512-a8aa-ef7b1ac96041\",\"lastUpdateDateTime\":\"2021-06-25T20:14:34Z\",\"createdDateTime\":\"2021-06-25T20:14:26Z\",\"expirationDateTime\":\"2021-06-26T20:14:26Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "60164ad7-3a21-4b3c-bb8c-233ed8493331", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:38 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/fcbe2994-150f-4512-a8aa-ef7b1ac96041", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"fcbe2994-150f-4512-a8aa-ef7b1ac96041\",\"lastUpdateDateTime\":\"2021-06-25T20:14:34Z\",\"createdDateTime\":\"2021-06-25T20:14:26Z\",\"expirationDateTime\":\"2021-06-26T20:14:26Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "480064e7-c619-4b0d-a79f-27f08539849d", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:40 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/fcbe2994-150f-4512-a8aa-ef7b1ac96041", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"fcbe2994-150f-4512-a8aa-ef7b1ac96041\",\"lastUpdateDateTime\":\"2021-06-25T20:14:34Z\",\"createdDateTime\":\"2021-06-25T20:14:26Z\",\"expirationDateTime\":\"2021-06-26T20:14:26Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "a30dd206-3f3e-4c41-a675-7d90f91c8da2", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:42 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "12" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/fcbe2994-150f-4512-a8aa-ef7b1ac96041", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"fcbe2994-150f-4512-a8aa-ef7b1ac96041\",\"lastUpdateDateTime\":\"2021-06-25T20:14:34Z\",\"createdDateTime\":\"2021-06-25T20:14:26Z\",\"expirationDateTime\":\"2021-06-26T20:14:26Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "6d7a32e1-394f-4d1a-aaf5-619821eaf29a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:44 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/fcbe2994-150f-4512-a8aa-ef7b1ac96041", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"fcbe2994-150f-4512-a8aa-ef7b1ac96041\",\"lastUpdateDateTime\":\"2021-06-25T20:14:34Z\",\"createdDateTime\":\"2021-06-25T20:14:26Z\",\"expirationDateTime\":\"2021-06-26T20:14:26Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "4da3c45d-e433-4fa2-867e-10a2c1b84690", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:46 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "11" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/fcbe2994-150f-4512-a8aa-ef7b1ac96041", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"fcbe2994-150f-4512-a8aa-ef7b1ac96041\",\"lastUpdateDateTime\":\"2021-06-25T20:14:34Z\",\"createdDateTime\":\"2021-06-25T20:14:26Z\",\"expirationDateTime\":\"2021-06-26T20:14:26Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "9a399f5b-fe18-4c72-9aeb-5915d7583b80", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:49 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "32" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/fcbe2994-150f-4512-a8aa-ef7b1ac96041", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"fcbe2994-150f-4512-a8aa-ef7b1ac96041\",\"lastUpdateDateTime\":\"2021-06-25T20:14:34Z\",\"createdDateTime\":\"2021-06-25T20:14:26Z\",\"expirationDateTime\":\"2021-06-26T20:14:26Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "f350577b-8cc7-4bfd-b99b-338a90c60200", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:51 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/fcbe2994-150f-4512-a8aa-ef7b1ac96041", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"fcbe2994-150f-4512-a8aa-ef7b1ac96041\",\"lastUpdateDateTime\":\"2021-06-25T20:14:52Z\",\"createdDateTime\":\"2021-06-25T20:14:26Z\",\"expirationDateTime\":\"2021-06-26T20:14:26Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:14:52.6689767Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"Bill Gates\",\"Paul Allen\",\"Microsoft\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"Bill Gates\",\"Paul Allen\",\"Microsoft\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "f6079621-a82d-4279-8cab-e014887d708f", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:53 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "66" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/fcbe2994-150f-4512-a8aa-ef7b1ac96041", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"fcbe2994-150f-4512-a8aa-ef7b1ac96041\",\"lastUpdateDateTime\":\"2021-06-25T20:14:52Z\",\"createdDateTime\":\"2021-06-25T20:14:26Z\",\"expirationDateTime\":\"2021-06-26T20:14:26Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:14:52.6689767Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"Bill Gates\",\"Paul Allen\",\"Microsoft\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"Bill Gates\",\"Paul Allen\",\"Microsoft\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "9443c167-639b-421f-9a19-f631c6fda970", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:14:53 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "56" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "710f01b115bc7c24cb2619f59823b881" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.json new file mode 100644 index 000000000000..b6b9e3ad15cf --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.json @@ -0,0 +1,273 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/analyze", + "query": {}, + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"My SSN is 859-98-0987.\"},{\"id\":\"2\",\"text\":\"Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.\"},{\"id\":\"3\",\"text\":\"Is 998.214.865-68 your Brazilian CPF number?\"}]},\"tasks\":{\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "a6646aaa-49a9-4bd9-8810-d34818581760", + "date": "Fri, 25 Jun 2021 20:15:28 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/1deaf184-7735-4952-a68d-4519b37549c9", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "183" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/1deaf184-7735-4952-a68d-4519b37549c9", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"1deaf184-7735-4952-a68d-4519b37549c9\",\"lastUpdateDateTime\":\"2021-06-25T20:15:29Z\",\"createdDateTime\":\"2021-06-25T20:15:28Z\",\"expirationDateTime\":\"2021-06-26T20:15:28Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "791f2a47-cf88-4df7-8c77-bc09857fc886", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:15:29 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/1deaf184-7735-4952-a68d-4519b37549c9", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"1deaf184-7735-4952-a68d-4519b37549c9\",\"lastUpdateDateTime\":\"2021-06-25T20:15:29Z\",\"createdDateTime\":\"2021-06-25T20:15:28Z\",\"expirationDateTime\":\"2021-06-26T20:15:28Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "3b50d80d-2b81-4714-bc1d-6fa4bb44606d", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:15:29 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/1deaf184-7735-4952-a68d-4519b37549c9", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"1deaf184-7735-4952-a68d-4519b37549c9\",\"lastUpdateDateTime\":\"2021-06-25T20:15:30Z\",\"createdDateTime\":\"2021-06-25T20:15:28Z\",\"expirationDateTime\":\"2021-06-26T20:15:28Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "efc9b78a-20ed-4d73-bafc-2d60272666e1", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:15:31 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/1deaf184-7735-4952-a68d-4519b37549c9", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"1deaf184-7735-4952-a68d-4519b37549c9\",\"lastUpdateDateTime\":\"2021-06-25T20:15:30Z\",\"createdDateTime\":\"2021-06-25T20:15:28Z\",\"expirationDateTime\":\"2021-06-26T20:15:28Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "0e9448f1-1537-423e-8532-52b6a33dbd80", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:15:33 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/1deaf184-7735-4952-a68d-4519b37549c9", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"1deaf184-7735-4952-a68d-4519b37549c9\",\"lastUpdateDateTime\":\"2021-06-25T20:15:30Z\",\"createdDateTime\":\"2021-06-25T20:15:28Z\",\"expirationDateTime\":\"2021-06-26T20:15:28Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "7a980a7d-cbc6-4468-afc7-45c903c49d07", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:15:35 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/1deaf184-7735-4952-a68d-4519b37549c9", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"1deaf184-7735-4952-a68d-4519b37549c9\",\"lastUpdateDateTime\":\"2021-06-25T20:15:30Z\",\"createdDateTime\":\"2021-06-25T20:15:28Z\",\"expirationDateTime\":\"2021-06-26T20:15:28Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "28aee069-6e8c-4234-bf9e-200f516dfc3d", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:15:37 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/1deaf184-7735-4952-a68d-4519b37549c9", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"1deaf184-7735-4952-a68d-4519b37549c9\",\"lastUpdateDateTime\":\"2021-06-25T20:15:30Z\",\"createdDateTime\":\"2021-06-25T20:15:28Z\",\"expirationDateTime\":\"2021-06-26T20:15:28Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "91dfb960-e3fb-43f0-910d-cacfd02d36d4", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:15:39 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/1deaf184-7735-4952-a68d-4519b37549c9", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"1deaf184-7735-4952-a68d-4519b37549c9\",\"lastUpdateDateTime\":\"2021-06-25T20:15:30Z\",\"createdDateTime\":\"2021-06-25T20:15:28Z\",\"expirationDateTime\":\"2021-06-26T20:15:28Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "587d89b0-172a-4062-8bc9-c034612a9067", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:15:41 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/1deaf184-7735-4952-a68d-4519b37549c9", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"1deaf184-7735-4952-a68d-4519b37549c9\",\"lastUpdateDateTime\":\"2021-06-25T20:15:30Z\",\"createdDateTime\":\"2021-06-25T20:15:28Z\",\"expirationDateTime\":\"2021-06-26T20:15:28Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "3812c93a-3f6a-4399-ac16-6d58cc6eb0bf", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:15:43 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/1deaf184-7735-4952-a68d-4519b37549c9", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"1deaf184-7735-4952-a68d-4519b37549c9\",\"lastUpdateDateTime\":\"2021-06-25T20:15:30Z\",\"createdDateTime\":\"2021-06-25T20:15:28Z\",\"expirationDateTime\":\"2021-06-26T20:15:28Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "b910432f-4f6b-480c-b723-2b84ef6c94bb", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:15:45 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/1deaf184-7735-4952-a68d-4519b37549c9", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"1deaf184-7735-4952-a68d-4519b37549c9\",\"lastUpdateDateTime\":\"2021-06-25T20:15:30Z\",\"createdDateTime\":\"2021-06-25T20:15:28Z\",\"expirationDateTime\":\"2021-06-26T20:15:28Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "e7890a4b-dcfb-44f6-9e6f-49001dc081bd", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:15:47 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/1deaf184-7735-4952-a68d-4519b37549c9", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"1deaf184-7735-4952-a68d-4519b37549c9\",\"lastUpdateDateTime\":\"2021-06-25T20:15:48Z\",\"createdDateTime\":\"2021-06-25T20:15:28Z\",\"expirationDateTime\":\"2021-06-26T20:15:28Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:15:48.2805502Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"My SSN is ***********.\",\"id\":\"1\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":10,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]},{\"redactedText\":\"Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.\",\"id\":\"2\",\"entities\":[{\"text\":\"111000025\",\"category\":\"PhoneNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.8},{\"text\":\"111000025\",\"category\":\"ABARoutingNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.75},{\"text\":\"111000025\",\"category\":\"NZSocialWelfareNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.65}],\"warnings\":[]},{\"redactedText\":\"Is 998.214.865-68 your Brazilian CPF number?\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "3ddbd91a-3682-4854-afc1-511d86c02137", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:15:49 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "56" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/1deaf184-7735-4952-a68d-4519b37549c9", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"1deaf184-7735-4952-a68d-4519b37549c9\",\"lastUpdateDateTime\":\"2021-06-25T20:15:48Z\",\"createdDateTime\":\"2021-06-25T20:15:28Z\",\"expirationDateTime\":\"2021-06-26T20:15:28Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:15:48.2805502Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"My SSN is ***********.\",\"id\":\"1\",\"entities\":[{\"text\":\"859-98-0987\",\"category\":\"USSocialSecurityNumber\",\"offset\":10,\"length\":11,\"confidenceScore\":0.65}],\"warnings\":[]},{\"redactedText\":\"Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.\",\"id\":\"2\",\"entities\":[{\"text\":\"111000025\",\"category\":\"PhoneNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.8},{\"text\":\"111000025\",\"category\":\"ABARoutingNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.75},{\"text\":\"111000025\",\"category\":\"NZSocialWelfareNumber\",\"offset\":18,\"length\":9,\"confidenceScore\":0.65}],\"warnings\":[]},{\"redactedText\":\"Is 998.214.865-68 your Brazilian CPF number?\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "9b710d19-fc1d-4955-b654-ae00dee3f653", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:15:49 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "52" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "b91a2978099d3831c48eacb4b56d7914" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.json new file mode 100644 index 000000000000..d8f6caf47f43 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.json @@ -0,0 +1,406 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/analyze", + "query": {}, + "requestBody": "{\"analysisInput\":{\"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\"}]},\"tasks\":{\"sentimentAnalysisTasks\":[{\"parameters\":{\"opinionMining\":true,\"stringIndexType\":\"Utf16CodeUnit\"}}]}}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "d32ce858-c88b-4dca-9860-979d7b3d830a", + "date": "Fri, 25 Jun 2021 20:15:57 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7815" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c\",\"lastUpdateDateTime\":\"2021-06-25T20:15:58Z\",\"createdDateTime\":\"2021-06-25T20:15:50Z\",\"expirationDateTime\":\"2021-06-26T20:15:50Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "d88b488d-4091-4831-9d21-da149d7fda60", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:15:57 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c\",\"lastUpdateDateTime\":\"2021-06-25T20:15:58Z\",\"createdDateTime\":\"2021-06-25T20:15:50Z\",\"expirationDateTime\":\"2021-06-26T20:15:50Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "67165db7-897c-4995-86db-384d187c4260", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:15:57 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c\",\"lastUpdateDateTime\":\"2021-06-25T20:15:58Z\",\"createdDateTime\":\"2021-06-25T20:15:50Z\",\"expirationDateTime\":\"2021-06-26T20:15:50Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "d159dd92-97b2-4809-989a-95ecc0352cf4", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:15:59 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c\",\"lastUpdateDateTime\":\"2021-06-25T20:15:58Z\",\"createdDateTime\":\"2021-06-25T20:15:50Z\",\"expirationDateTime\":\"2021-06-26T20:15:50Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "b6aee283-dd30-4d39-a241-4d13ac1bbb6f", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:01 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c\",\"lastUpdateDateTime\":\"2021-06-25T20:16:03Z\",\"createdDateTime\":\"2021-06-25T20:15:50Z\",\"expirationDateTime\":\"2021-06-26T20:15:50Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "a58d7745-91d4-4f12-8ac5-425b15ed255c", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:03 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c\",\"lastUpdateDateTime\":\"2021-06-25T20:16:03Z\",\"createdDateTime\":\"2021-06-25T20:15:50Z\",\"expirationDateTime\":\"2021-06-26T20:15:50Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "8a847109-e269-4256-9329-9a1900a273f2", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:05 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c\",\"lastUpdateDateTime\":\"2021-06-25T20:16:03Z\",\"createdDateTime\":\"2021-06-25T20:15:50Z\",\"expirationDateTime\":\"2021-06-26T20:15:50Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "78826bdf-38a9-488d-9b78-5cb13a8b14d8", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:07 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c\",\"lastUpdateDateTime\":\"2021-06-25T20:16:03Z\",\"createdDateTime\":\"2021-06-25T20:15:50Z\",\"expirationDateTime\":\"2021-06-26T20:15:50Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "8afef0ad-c9e6-4eae-83e4-c2bb084b6057", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:10 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c\",\"lastUpdateDateTime\":\"2021-06-25T20:16:03Z\",\"createdDateTime\":\"2021-06-25T20:15:50Z\",\"expirationDateTime\":\"2021-06-26T20:15:50Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "d84b1585-396c-4e22-8c85-0dcc550cb8f9", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:12 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c\",\"lastUpdateDateTime\":\"2021-06-25T20:16:03Z\",\"createdDateTime\":\"2021-06-25T20:15:50Z\",\"expirationDateTime\":\"2021-06-26T20:15:50Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "165ecafe-b04a-4e68-8762-88e13a17f52b", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:15 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c\",\"lastUpdateDateTime\":\"2021-06-25T20:16:03Z\",\"createdDateTime\":\"2021-06-25T20:15:50Z\",\"expirationDateTime\":\"2021-06-26T20:15:50Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "29da8f38-0b5d-4a38-8277-8935e8f9b716", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:17 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c\",\"lastUpdateDateTime\":\"2021-06-25T20:16:03Z\",\"createdDateTime\":\"2021-06-25T20:15:50Z\",\"expirationDateTime\":\"2021-06-26T20:15:50Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "28e443dc-83b0-4d77-ac66-8e7d14886ed9", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:19 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c\",\"lastUpdateDateTime\":\"2021-06-25T20:16:03Z\",\"createdDateTime\":\"2021-06-25T20:15:50Z\",\"expirationDateTime\":\"2021-06-26T20:15:50Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "b6551f55-5df0-4b32-a6ba-ff56b4efaf79", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:21 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c\",\"lastUpdateDateTime\":\"2021-06-25T20:16:03Z\",\"createdDateTime\":\"2021-06-25T20:15:50Z\",\"expirationDateTime\":\"2021-06-26T20:15:50Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "4b5169e3-fef7-472d-a001-558fa11aac51", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:23 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c\",\"lastUpdateDateTime\":\"2021-06-25T20:16:03Z\",\"createdDateTime\":\"2021-06-25T20:15:50Z\",\"expirationDateTime\":\"2021-06-26T20:15:50Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "e45a2792-215d-403e-96dd-1a8510429a18", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:25 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c\",\"lastUpdateDateTime\":\"2021-06-25T20:16:03Z\",\"createdDateTime\":\"2021-06-25T20:15:50Z\",\"expirationDateTime\":\"2021-06-26T20:15:50Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "753ba156-2e37-4dfb-9aaa-37d0802fc502", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:27 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "12" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c\",\"lastUpdateDateTime\":\"2021-06-25T20:16:03Z\",\"createdDateTime\":\"2021-06-25T20:15:50Z\",\"expirationDateTime\":\"2021-06-26T20:15:50Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "d2696d88-2655-40b2-a912-3dee7f3fba39", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:29 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c\",\"lastUpdateDateTime\":\"2021-06-25T20:16:03Z\",\"createdDateTime\":\"2021-06-25T20:15:50Z\",\"expirationDateTime\":\"2021-06-26T20:15:50Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":1,\"total\":1}}", + "responseHeaders": { + "apim-request-id": "38affcdc-7528-4ff2-9211-7d22d40bddec", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:31 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "126" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c\",\"lastUpdateDateTime\":\"2021-06-25T20:16:32Z\",\"createdDateTime\":\"2021-06-25T20:15:50Z\",\"expirationDateTime\":\"2021-06-26T20:15:50Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"sentimentAnalysisTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:16:32.9432427Z\",\"taskName\":\"SentimentAnalysis_latest\",\"state\":\"succeeded\",\"results\":{\"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\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":4,\"length\":4,\"text\":\"food\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/0/assessments/0\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":30,\"length\":2,\"text\":\"AC\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/1/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/1/assessments/1\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/2/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":32,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/2/sentences/0/assessments/1\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":11,\"length\":5,\"text\":\"hotel\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/0\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":24,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/1\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":41,\"length\":15,\"text\":\"shuttle service\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/2\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":65,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/1\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/3\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/2\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.97,\"negative\":0.03},\"offset\":27,\"length\":4,\"text\":\"view\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/4/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/4/sentences/0/assessments/1\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":5,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":15,\"length\":9,\"text\":\"bathrooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/1\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":42,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/2\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":4,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/0/assessments/0\"}]}],\"assessments\":[{\"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": "775b8f51-814a-48ba-8728-6666d545b05d", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:33 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "116" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"c696fcbd-acea-4f61-9d1b-c5ea0fd30d6c\",\"lastUpdateDateTime\":\"2021-06-25T20:16:32Z\",\"createdDateTime\":\"2021-06-25T20:15:50Z\",\"expirationDateTime\":\"2021-06-26T20:15:50Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":0,\"total\":1,\"sentimentAnalysisTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:16:32.9432427Z\",\"taskName\":\"SentimentAnalysis_latest\",\"state\":\"succeeded\",\"results\":{\"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\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":4,\"length\":4,\"text\":\"food\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/0/assessments/0\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":30,\"length\":2,\"text\":\"AC\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/1/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/1/assessments/1\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":4,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/2/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":32,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/2/sentences/0/assessments/1\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":11,\"length\":5,\"text\":\"hotel\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/0\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":24,\"length\":9,\"text\":\"breakfast\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/1\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":41,\"length\":15,\"text\":\"shuttle service\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/2\"}]},{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":65,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/1\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/3\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/3/sentences/0/assessments/2\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":0.97,\"negative\":0.03},\"offset\":27,\"length\":4,\"text\":\"view\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/4/sentences/0/assessments/0\"},{\"relationType\":\"assessment\",\"ref\":\"#/documents/4/sentences/0/assessments/1\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"positive\",\"confidenceScores\":{\"positive\":1.0,\"negative\":0.0},\"offset\":5,\"length\":5,\"text\":\"rooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/0\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":15,\"length\":9,\"text\":\"bathrooms\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/1\"}]},{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.0,\"negative\":1.0},\"offset\":42,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/0/sentences/0/assessments/2\"}]}],\"assessments\":[{\"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.\",\"targets\":[{\"sentiment\":\"negative\",\"confidenceScores\":{\"positive\":0.01,\"negative\":0.99},\"offset\":4,\"length\":6,\"text\":\"toilet\",\"relations\":[{\"relationType\":\"assessment\",\"ref\":\"#/documents/1/sentences/0/assessments/0\"}]}],\"assessments\":[{\"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": "4347c512-4bce-46d1-b802-7b11da2202db", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:33 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "150" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "3a7f3ca2530dc07b8daf84a4a93dba9e" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.json new file mode 100644 index 000000000000..ca699418f98c --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.json @@ -0,0 +1,767 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/analyze", + "query": {}, + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"\",\"language\":\"\"},{\"id\":\"2\",\"text\":\"I did not like the hotel we stayed at. It was too expensive.\",\"language\":\"english\"},{\"id\":\"3\",\"text\":\"The restaurant had really good food. I recommend you try it.\",\"language\":\"en\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "8daef56e-a2ce-4ecf-86eb-83796a6632df", + "date": "Fri, 25 Jun 2021 20:16:34 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "239" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:16:34Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "4d2cb2a5-5d7b-4c96-8960-0890a8cb882a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:34 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:16:34Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "60c856a9-eb7a-4a6d-886e-628cb6d0f0f8", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:34 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:16:35Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "2c364a30-822f-4939-bd11-5e9c1c067273", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:36 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:16:35Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "6fa1c268-42e7-4518-abe8-938720c71923", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:38 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:16:35Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "40b825c5-65a7-416a-ac2d-73f9b9b95f9c", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:41 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:16:43Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "0895a2db-a9cf-43e9-8463-3e60bad8cbb3", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:43 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:16:43Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "10e22b8f-be41-474a-a8c7-15e624917b1f", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:45 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:16:43Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "9617447d-4714-4e5d-a822-6ec5c648e484", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:47 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "14" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:16:43Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "cb565ebc-05f0-435a-8b91-6f5a672f140f", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:49 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:16:43Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "d84dcbca-1b59-4a56-a43b-f899f96ef81f", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:51 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:16:43Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "1298b218-9370-4f74-9433-595bdccccc30", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:53 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:16:43Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "0a85fa04-c7e6-4ff1-b8b2-692b745c76aa", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:55 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:16:43Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "7c6d95b4-be83-46bf-a0bf-a14bbdbf91bb", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:57 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:16:59Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:16:59.1841784Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "26762c90-16f5-4a80-8dd7-31213a73ee89", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:16:59 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "64" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:16:59Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:16:59.1841784Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "b4aa8a17-cb79-4845-89a3-e1317e545018", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:17:01 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "61" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:16:59Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:16:59.1841784Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "7cd0cdbd-f5d0-4021-957b-4e4eb0c94202", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:17:03 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "93" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:16:59Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:16:59.1841784Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "2ebba7b8-961c-4d0f-be24-5b0f0400f389", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:17:06 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "75" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:17:07Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:16:59.1841784Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:17:07.7176459Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "c3af55fe-d8de-4b65-8281-85c6856522df", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:17:08 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "115" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:17:07Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:16:59.1841784Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:17:07.7176459Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "a9294a80-07f4-440a-ad33-f17b81e429d9", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:17:10 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "106" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:17:07Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:16:59.1841784Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:17:07.7176459Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "c1a85e50-30d0-4cc6-b3c7-9f1a1521d865", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:17:12 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "130" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:17:07Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:16:59.1841784Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:17:07.7176459Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "3f006cab-c81b-4065-a065-1cd19af878a5", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:17:14 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "103" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:17:07Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:16:59.1841784Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:17:07.7176459Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "b91d2d1d-961c-4263-9d41-0d449bba5738", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:17:16 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "111" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:17:07Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:16:59.1841784Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:17:07.7176459Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "f2f1860b-7c51-4355-949a-261688bb12dc", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:17:19 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "136" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:17:07Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:16:59.1841784Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:17:07.7176459Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "9c6c2501-98fa-44b0-a897-51f6538bf258", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:17:21 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "115" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:17:07Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:16:59.1841784Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:17:07.7176459Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "f982fece-010e-42d7-9479-e505d1e951e2", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:17:24 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "107" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:17:07Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:16:59.1841784Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:17:07.7176459Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "c3d77605-832c-437d-a2a6-8402d22bb029", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:17:26 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "118" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:17:07Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:16:59.1841784Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:17:07.7176459Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "4fb96a79-9b5f-4054-bcd8-80f1da879d90", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:17:28 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "156" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:17:07Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:16:59.1841784Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:17:07.7176459Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "4f97c4c2-2299-47cc-9120-6967b86073d9", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:17:31 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "114" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:17:07Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:16:59.1841784Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:17:07.7176459Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "ed13bd9b-6908-429f-86bd-308f46038036", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:17:33 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "104" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:17:07Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:16:59.1841784Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:17:07.7176459Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "ca544759-c902-4769-9bef-071ef62303b9", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:17:35 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "134" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:17:07Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:16:59.1841784Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:17:07.7176459Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "3668662c-7288-425a-a48f-5d2aad625bb5", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:17:37 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "110" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:17:07Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:16:59.1841784Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:17:07.7176459Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "401c929d-9ec3-4b20-bf4f-d12de8971b1e", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:17:39 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "107" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:17:07Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:16:59.1841784Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:17:07.7176459Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "5c038eb2-be4b-49cc-afde-b5e231492dcb", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:17:42 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "120" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:17:07Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:16:59.1841784Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:17:07.7176459Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "160af5eb-e8e3-4c3d-b26f-bfe15bdf41e1", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:17:44 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "101" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:17:07Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:16:59.1841784Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:17:07.7176459Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "d5602ed4-eb48-487a-bf74-16fcade37a10", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:17:46 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "109" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:17:07Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:16:59.1841784Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:17:07.7176459Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "e43fd347-a49a-4f95-8e45-2df4b559f813", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:17:48 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "246" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:17:51Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:16:59.1841784Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:17:07.7176459Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "ba117188-e3b5-4e65-908e-a42bffe78e3a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:17:51 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "118" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:17:51Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:16:59.1841784Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:17:07.7176459Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:17:51.518295Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"keyPhrases\":[\"good food\",\"restaurant\"],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "03e4e666-d368-4a92-9ad7-078ddf9881f2", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:17:53 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "176" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/3f3ad18e-da27-42b8-aa22-ae8c3233d866", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"3f3ad18e-da27-42b8-aa22-ae8c3233d866\",\"lastUpdateDateTime\":\"2021-06-25T20:17:51Z\",\"createdDateTime\":\"2021-06-25T20:16:34Z\",\"expirationDateTime\":\"2021-06-26T20:16:34Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:16:59.1841784Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.97}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:17:07.7176459Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"The restaurant had really good food. I recommend you try it.\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition\"}}}],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:17:51.518295Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"3\",\"keyPhrases\":[\"good food\",\"restaurant\"],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction\"}}}],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "887785ca-b967-4662-bf7a-ad1d54084335", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:17:53 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "164" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "10b0e4554231ab60fcfbc8922809b3ac" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.json new file mode 100644 index 000000000000..990f551e0245 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.json @@ -0,0 +1,197 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/analyze", + "query": {}, + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\"},{\"id\":\"2\",\"text\":\"Este es un document escrito en Español.\"},{\"id\":\"3\",\"text\":\"猫は幸せ\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "d03092e4-77ee-4ed7-8705-3ffd1253c722", + "date": "Fri, 25 Jun 2021 20:21:45 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/32b0a887-3df3-484b-b66c-8f3441363865", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "267" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/32b0a887-3df3-484b-b66c-8f3441363865", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"32b0a887-3df3-484b-b66c-8f3441363865\",\"lastUpdateDateTime\":\"2021-06-25T20:21:46Z\",\"createdDateTime\":\"2021-06-25T20:21:45Z\",\"expirationDateTime\":\"2021-06-26T20:21:45Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "839233d9-e60f-46f3-8090-eb6351c36f1a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:45 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/32b0a887-3df3-484b-b66c-8f3441363865", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"32b0a887-3df3-484b-b66c-8f3441363865\",\"lastUpdateDateTime\":\"2021-06-25T20:21:46Z\",\"createdDateTime\":\"2021-06-25T20:21:45Z\",\"expirationDateTime\":\"2021-06-26T20:21:45Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "ab6ad3ce-dcd6-452d-8dba-1a49479d6a3e", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:45 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/32b0a887-3df3-484b-b66c-8f3441363865", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"32b0a887-3df3-484b-b66c-8f3441363865\",\"lastUpdateDateTime\":\"2021-06-25T20:21:47Z\",\"createdDateTime\":\"2021-06-25T20:21:45Z\",\"expirationDateTime\":\"2021-06-26T20:21:45Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "1a5050a8-0244-4a97-b6c2-be50dd33a352", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:47 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/32b0a887-3df3-484b-b66c-8f3441363865", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"32b0a887-3df3-484b-b66c-8f3441363865\",\"lastUpdateDateTime\":\"2021-06-25T20:21:47Z\",\"createdDateTime\":\"2021-06-25T20:21:45Z\",\"expirationDateTime\":\"2021-06-26T20:21:45Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "a4308664-afdd-440b-a273-6169e0ff58cc", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:49 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/32b0a887-3df3-484b-b66c-8f3441363865", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"32b0a887-3df3-484b-b66c-8f3441363865\",\"lastUpdateDateTime\":\"2021-06-25T20:21:47Z\",\"createdDateTime\":\"2021-06-25T20:21:45Z\",\"expirationDateTime\":\"2021-06-26T20:21:45Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "37b2db61-472a-4598-a6a5-b79f6d8d0bf7", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:51 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/32b0a887-3df3-484b-b66c-8f3441363865", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"32b0a887-3df3-484b-b66c-8f3441363865\",\"lastUpdateDateTime\":\"2021-06-25T20:21:53Z\",\"createdDateTime\":\"2021-06-25T20:21:45Z\",\"expirationDateTime\":\"2021-06-26T20:21:45Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":1,\"failed\":0,\"inProgress\":2,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:53.7137798Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Español\",\"category\":\"Skill\",\"offset\":31,\"length\":7,\"confidenceScore\":0.92}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "162aa9d3-287f-4e37-9b35-798a7426da9e", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:53 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "61" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/32b0a887-3df3-484b-b66c-8f3441363865", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"32b0a887-3df3-484b-b66c-8f3441363865\",\"lastUpdateDateTime\":\"2021-06-25T20:21:56Z\",\"createdDateTime\":\"2021-06-25T20:21:45Z\",\"expirationDateTime\":\"2021-06-26T20:21:45Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:53.7137798Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Español\",\"category\":\"Skill\",\"offset\":31,\"length\":7,\"confidenceScore\":0.92}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:56.2781781Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}]}}", + "responseHeaders": { + "apim-request-id": "78f2cd40-5748-4f7f-81eb-c6a2a3173392", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:55 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "116" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/32b0a887-3df3-484b-b66c-8f3441363865", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"32b0a887-3df3-484b-b66c-8f3441363865\",\"lastUpdateDateTime\":\"2021-06-25T20:21:58Z\",\"createdDateTime\":\"2021-06-25T20:21:45Z\",\"expirationDateTime\":\"2021-06-26T20:21:45Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:53.7137798Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Español\",\"category\":\"Skill\",\"offset\":31,\"length\":7,\"confidenceScore\":0.92}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:56.2781781Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:58.2349623Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"park\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"Español\",\"document\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"せ\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "250370d4-cd52-465d-8871-2bf6c860dc47", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:58 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "205" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/32b0a887-3df3-484b-b66c-8f3441363865", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"32b0a887-3df3-484b-b66c-8f3441363865\",\"lastUpdateDateTime\":\"2021-06-25T20:21:58Z\",\"createdDateTime\":\"2021-06-25T20:21:45Z\",\"expirationDateTime\":\"2021-06-26T20:21:45Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:53.7137798Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"text\":\"park\",\"category\":\"Location\",\"offset\":17,\"length\":4,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"Español\",\"category\":\"Skill\",\"offset\":31,\"length\":7,\"confidenceScore\":0.92}],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:56.2781781Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"I will go to the park.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"Este es un document escrito en Español.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"猫は幸せ\",\"id\":\"3\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:58.2349623Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"1\",\"keyPhrases\":[\"park\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"Español\",\"document\"],\"warnings\":[]},{\"id\":\"3\",\"keyPhrases\":[\"せ\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "c471c558-239b-4ea5-b282-628a7e26b4bd", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:58 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "181" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "8f314fa816eb3a9379d509dd8840d64e" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.json new file mode 100644 index 000000000000..dbaea18db1bc --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.json @@ -0,0 +1,349 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/analyze", + "query": {}, + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"This was the best day of my life.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"I did not like the hotel we stayed at. It was too expensive.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"The restaurant was not as good as I hoped.\",\"language\":\"en\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "7e493d3e-f00a-4dfd-a06d-4130722f6e17", + "date": "Fri, 25 Jun 2021 20:20:28 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/8b89c3b2-537f-4447-ae37-914d8834fa42", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7878" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8b89c3b2-537f-4447-ae37-914d8834fa42", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8b89c3b2-537f-4447-ae37-914d8834fa42\",\"lastUpdateDateTime\":\"2021-06-25T20:20:29Z\",\"createdDateTime\":\"2021-06-25T20:20:22Z\",\"expirationDateTime\":\"2021-06-26T20:20:22Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "1b4cb94b-15d7-4179-b6ce-6ef273699ae3", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:20:29 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8b89c3b2-537f-4447-ae37-914d8834fa42", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8b89c3b2-537f-4447-ae37-914d8834fa42\",\"lastUpdateDateTime\":\"2021-06-25T20:20:29Z\",\"createdDateTime\":\"2021-06-25T20:20:22Z\",\"expirationDateTime\":\"2021-06-26T20:20:22Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "3c324c16-4d5d-474c-a0e3-f25786ae9f65", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:20:29 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8b89c3b2-537f-4447-ae37-914d8834fa42", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8b89c3b2-537f-4447-ae37-914d8834fa42\",\"lastUpdateDateTime\":\"2021-06-25T20:20:30Z\",\"createdDateTime\":\"2021-06-25T20:20:22Z\",\"expirationDateTime\":\"2021-06-26T20:20:22Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "c9c2971c-3b40-483a-b084-e777d2d77542", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:20:31 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8b89c3b2-537f-4447-ae37-914d8834fa42", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8b89c3b2-537f-4447-ae37-914d8834fa42\",\"lastUpdateDateTime\":\"2021-06-25T20:20:30Z\",\"createdDateTime\":\"2021-06-25T20:20:22Z\",\"expirationDateTime\":\"2021-06-26T20:20:22Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "90708661-a9e7-4546-a1ee-186c7829e309", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:20:34 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "11" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8b89c3b2-537f-4447-ae37-914d8834fa42", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8b89c3b2-537f-4447-ae37-914d8834fa42\",\"lastUpdateDateTime\":\"2021-06-25T20:20:35Z\",\"createdDateTime\":\"2021-06-25T20:20:22Z\",\"expirationDateTime\":\"2021-06-26T20:20:22Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "3a46d056-5b5b-4f7d-8d25-52d0444cf186", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:20:36 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8b89c3b2-537f-4447-ae37-914d8834fa42", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8b89c3b2-537f-4447-ae37-914d8834fa42\",\"lastUpdateDateTime\":\"2021-06-25T20:20:35Z\",\"createdDateTime\":\"2021-06-25T20:20:22Z\",\"expirationDateTime\":\"2021-06-26T20:20:22Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "e0479340-4d43-4a7d-95c5-fd4448426e18", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:20:38 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8b89c3b2-537f-4447-ae37-914d8834fa42", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8b89c3b2-537f-4447-ae37-914d8834fa42\",\"lastUpdateDateTime\":\"2021-06-25T20:20:35Z\",\"createdDateTime\":\"2021-06-25T20:20:22Z\",\"expirationDateTime\":\"2021-06-26T20:20:22Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "0727231f-8d9b-4dd7-b47b-9a06ceb51469", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:20:40 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8b89c3b2-537f-4447-ae37-914d8834fa42", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8b89c3b2-537f-4447-ae37-914d8834fa42\",\"lastUpdateDateTime\":\"2021-06-25T20:20:35Z\",\"createdDateTime\":\"2021-06-25T20:20:22Z\",\"expirationDateTime\":\"2021-06-26T20:20:22Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "db098de8-5835-4b1a-8819-ae5e4726599d", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:20:42 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8b89c3b2-537f-4447-ae37-914d8834fa42", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8b89c3b2-537f-4447-ae37-914d8834fa42\",\"lastUpdateDateTime\":\"2021-06-25T20:20:35Z\",\"createdDateTime\":\"2021-06-25T20:20:22Z\",\"expirationDateTime\":\"2021-06-26T20:20:22Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "7e2c6576-54e2-40b0-8b0b-3735caa92575", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:20:44 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "13" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8b89c3b2-537f-4447-ae37-914d8834fa42", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8b89c3b2-537f-4447-ae37-914d8834fa42\",\"lastUpdateDateTime\":\"2021-06-25T20:20:35Z\",\"createdDateTime\":\"2021-06-25T20:20:22Z\",\"expirationDateTime\":\"2021-06-26T20:20:22Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "1571a3c1-fda1-44e2-955b-405376d32c4b", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:20:46 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8b89c3b2-537f-4447-ae37-914d8834fa42", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8b89c3b2-537f-4447-ae37-914d8834fa42\",\"lastUpdateDateTime\":\"2021-06-25T20:20:48Z\",\"createdDateTime\":\"2021-06-25T20:20:22Z\",\"expirationDateTime\":\"2021-06-26T20:20:22Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:20:48.6060998Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:20:48.1530994Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "38ae2e1a-3604-47e5-a9a6-5a64285bb886", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:20:48 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "117" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8b89c3b2-537f-4447-ae37-914d8834fa42", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8b89c3b2-537f-4447-ae37-914d8834fa42\",\"lastUpdateDateTime\":\"2021-06-25T20:20:48Z\",\"createdDateTime\":\"2021-06-25T20:20:22Z\",\"expirationDateTime\":\"2021-06-26T20:20:22Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:20:48.6060998Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:20:48.1530994Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "0d45d0f8-dc1e-4289-b04e-fce32b5e5ff7", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:20:50 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "146" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8b89c3b2-537f-4447-ae37-914d8834fa42", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8b89c3b2-537f-4447-ae37-914d8834fa42\",\"lastUpdateDateTime\":\"2021-06-25T20:20:48Z\",\"createdDateTime\":\"2021-06-25T20:20:22Z\",\"expirationDateTime\":\"2021-06-26T20:20:22Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:20:48.6060998Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:20:48.1530994Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "15987ef6-ed74-4576-b419-237e41360d1b", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:20:52 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "116" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8b89c3b2-537f-4447-ae37-914d8834fa42", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8b89c3b2-537f-4447-ae37-914d8834fa42\",\"lastUpdateDateTime\":\"2021-06-25T20:20:48Z\",\"createdDateTime\":\"2021-06-25T20:20:22Z\",\"expirationDateTime\":\"2021-06-26T20:20:22Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:20:48.6060998Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:20:48.1530994Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "48b30af7-719a-442b-89d6-67d8ec545ab7", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:20:54 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "126" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8b89c3b2-537f-4447-ae37-914d8834fa42", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8b89c3b2-537f-4447-ae37-914d8834fa42\",\"lastUpdateDateTime\":\"2021-06-25T20:20:48Z\",\"createdDateTime\":\"2021-06-25T20:20:22Z\",\"expirationDateTime\":\"2021-06-26T20:20:22Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:20:48.6060998Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:20:48.1530994Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "00f477bc-326c-433d-b3e6-39a856fd53e6", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:20:57 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "152" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8b89c3b2-537f-4447-ae37-914d8834fa42", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8b89c3b2-537f-4447-ae37-914d8834fa42\",\"lastUpdateDateTime\":\"2021-06-25T20:20:59Z\",\"createdDateTime\":\"2021-06-25T20:20:22Z\",\"expirationDateTime\":\"2021-06-26T20:20:22Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:20:48.6060998Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:20:59.560156Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:20:48.1530994Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "b9254bb3-3ce1-42a5-b90f-29501be66c80", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:20:59 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "403" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/8b89c3b2-537f-4447-ae37-914d8834fa42", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8b89c3b2-537f-4447-ae37-914d8834fa42\",\"lastUpdateDateTime\":\"2021-06-25T20:20:59Z\",\"createdDateTime\":\"2021-06-25T20:20:22Z\",\"expirationDateTime\":\"2021-06-26T20:20:22Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:20:48.6060998Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:20:59.560156Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:20:48.1530994Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "56168491-a290-4767-8fad-3afdc4a79901", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:20:59 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "200" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "2456069a85819d9a9195cf97a63ecf43" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.json new file mode 100644 index 000000000000..928cb13f92d2 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.json @@ -0,0 +1,235 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/analyze", + "query": {}, + "requestBody": "{\"analysisInput\":{\"documents\":[{\"id\":\"0\",\"text\":\"This was the best day of my life.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"I did not like the hotel we stayed at. It was too expensive.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"The restaurant was not as good as I hoped.\",\"language\":\"en\"}]},\"tasks\":{\"entityRecognitionTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"entityRecognitionPiiTasks\":[{\"parameters\":{\"model-version\":\"latest\",\"stringIndexType\":\"Utf16CodeUnit\"}}],\"keyPhraseExtractionTasks\":[{\"parameters\":{\"model-version\":\"latest\"}}]}}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "0f4894f5-d977-4618-b392-9189543d3358", + "date": "Fri, 25 Jun 2021 20:21:00 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/analyze/jobs/6d9fd70d-3acb-40da-953a-f19b27eadfb2", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "366" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/6d9fd70d-3acb-40da-953a-f19b27eadfb2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"6d9fd70d-3acb-40da-953a-f19b27eadfb2\",\"lastUpdateDateTime\":\"2021-06-25T20:21:01Z\",\"createdDateTime\":\"2021-06-25T20:21:00Z\",\"expirationDateTime\":\"2021-06-26T20:21:00Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "402b1f14-c913-4087-933a-1379c6037ef1", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:00 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "11" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/6d9fd70d-3acb-40da-953a-f19b27eadfb2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"6d9fd70d-3acb-40da-953a-f19b27eadfb2\",\"lastUpdateDateTime\":\"2021-06-25T20:21:01Z\",\"createdDateTime\":\"2021-06-25T20:21:00Z\",\"expirationDateTime\":\"2021-06-26T20:21:00Z\",\"status\":\"notStarted\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "dde41712-93c6-4367-9e68-a3efdd861935", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:00 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/6d9fd70d-3acb-40da-953a-f19b27eadfb2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"6d9fd70d-3acb-40da-953a-f19b27eadfb2\",\"lastUpdateDateTime\":\"2021-06-25T20:21:03Z\",\"createdDateTime\":\"2021-06-25T20:21:00Z\",\"expirationDateTime\":\"2021-06-26T20:21:00Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "c9abd5a6-fbb2-4674-b8de-bb5b21f55773", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:02 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/6d9fd70d-3acb-40da-953a-f19b27eadfb2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"6d9fd70d-3acb-40da-953a-f19b27eadfb2\",\"lastUpdateDateTime\":\"2021-06-25T20:21:03Z\",\"createdDateTime\":\"2021-06-25T20:21:00Z\",\"expirationDateTime\":\"2021-06-26T20:21:00Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "bd6c9c13-74d6-4d21-bcbb-0b7ccc6ab59f", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:04 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "15" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/6d9fd70d-3acb-40da-953a-f19b27eadfb2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"6d9fd70d-3acb-40da-953a-f19b27eadfb2\",\"lastUpdateDateTime\":\"2021-06-25T20:21:03Z\",\"createdDateTime\":\"2021-06-25T20:21:00Z\",\"expirationDateTime\":\"2021-06-26T20:21:00Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":0,\"failed\":0,\"inProgress\":3,\"total\":3}}", + "responseHeaders": { + "apim-request-id": "df0503a1-4929-425b-90c7-b8e72885c67c", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:06 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/6d9fd70d-3acb-40da-953a-f19b27eadfb2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"6d9fd70d-3acb-40da-953a-f19b27eadfb2\",\"lastUpdateDateTime\":\"2021-06-25T20:21:08Z\",\"createdDateTime\":\"2021-06-25T20:21:00Z\",\"expirationDateTime\":\"2021-06-26T20:21:00Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:08.6178566Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:08.1179963Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "7c2bd941-14b3-40bf-af85-bafc77abc9b3", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:08 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "121" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/6d9fd70d-3acb-40da-953a-f19b27eadfb2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"6d9fd70d-3acb-40da-953a-f19b27eadfb2\",\"lastUpdateDateTime\":\"2021-06-25T20:21:08Z\",\"createdDateTime\":\"2021-06-25T20:21:00Z\",\"expirationDateTime\":\"2021-06-26T20:21:00Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:08.6178566Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:08.1179963Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "26c14f91-afbb-4d0a-8b88-70b6743113cc", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:10 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "119" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/6d9fd70d-3acb-40da-953a-f19b27eadfb2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"6d9fd70d-3acb-40da-953a-f19b27eadfb2\",\"lastUpdateDateTime\":\"2021-06-25T20:21:08Z\",\"createdDateTime\":\"2021-06-25T20:21:00Z\",\"expirationDateTime\":\"2021-06-26T20:21:00Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:08.6178566Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:08.1179963Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "1a1ef952-f68f-4774-ad30-f310619e76e9", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:13 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "101" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/6d9fd70d-3acb-40da-953a-f19b27eadfb2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"6d9fd70d-3acb-40da-953a-f19b27eadfb2\",\"lastUpdateDateTime\":\"2021-06-25T20:21:08Z\",\"createdDateTime\":\"2021-06-25T20:21:00Z\",\"expirationDateTime\":\"2021-06-26T20:21:00Z\",\"status\":\"running\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":2,\"failed\":0,\"inProgress\":1,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:08.6178566Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:08.1179963Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "e9457934-2f27-49d1-ac1c-24848de886f3", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:16 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "98" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/6d9fd70d-3acb-40da-953a-f19b27eadfb2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"6d9fd70d-3acb-40da-953a-f19b27eadfb2\",\"lastUpdateDateTime\":\"2021-06-25T20:21:16Z\",\"createdDateTime\":\"2021-06-25T20:21:00Z\",\"expirationDateTime\":\"2021-06-26T20:21:00Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:08.6178566Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:16.2360639Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:08.1179963Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "921148f3-ade0-4d2e-8501-f32efd8dffb9", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:18 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "172" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/analyze/jobs/6d9fd70d-3acb-40da-953a-f19b27eadfb2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"6d9fd70d-3acb-40da-953a-f19b27eadfb2\",\"lastUpdateDateTime\":\"2021-06-25T20:21:16Z\",\"createdDateTime\":\"2021-06-25T20:21:00Z\",\"expirationDateTime\":\"2021-06-26T20:21:00Z\",\"status\":\"succeeded\",\"errors\":[],\"displayName\":\"NA\",\"tasks\":{\"completed\":3,\"failed\":0,\"inProgress\":0,\"total\":3,\"entityRecognitionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:08.6178566Z\",\"taskName\":\"NamedEntityRecognition_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"text\":\"hotel\",\"category\":\"Location\",\"offset\":19,\"length\":5,\"confidenceScore\":0.99}],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"text\":\"restaurant\",\"category\":\"Location\",\"subcategory\":\"Structural\",\"offset\":4,\"length\":10,\"confidenceScore\":0.96}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}],\"entityRecognitionPiiTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:16.2360639Z\",\"taskName\":\"PersonallyIdentifiableInformation_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"redactedText\":\"This was the best day of my life.\",\"id\":\"0\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"I did not like the hotel we stayed at. It was too expensive.\",\"id\":\"1\",\"entities\":[],\"warnings\":[]},{\"redactedText\":\"The restaurant was not as good as I hoped.\",\"id\":\"2\",\"entities\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-01-15\"}}],\"keyPhraseExtractionTasks\":[{\"lastUpdateDateTime\":\"2021-06-25T20:21:08.1179963Z\",\"taskName\":\"KeyPhraseExtraction_latest\",\"state\":\"succeeded\",\"results\":{\"documents\":[{\"id\":\"0\",\"keyPhrases\":[\"best day\",\"life\"],\"warnings\":[]},{\"id\":\"1\",\"keyPhrases\":[\"hotel\"],\"warnings\":[]},{\"id\":\"2\",\"keyPhrases\":[\"restaurant\"],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-06-01\"}}]}}", + "responseHeaders": { + "apim-request-id": "c53456da-5f11-45cf-b2a1-56c75543b92d", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:21:18 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "191" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "f9c18b0e6c6100b2a2b49820e7d212e4" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_all_documents_have_errors.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_all_documents_have_errors.json similarity index 72% rename from sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_all_documents_have_errors.json rename to sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_all_documents_have_errors.json index 96edaf7c6bd7..70a2c04b98ef 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_all_documents_have_errors.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_all_documents_have_errors.json @@ -2,7 +2,7 @@ "recordings": [ { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -10,47 +10,47 @@ "status": 202, "response": "", "responseHeaders": { - "apim-request-id": "c66abf2e-cce5-45f9-85d1-4bf54a3bc748", - "date": "Wed, 12 May 2021 19:16:53 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/702c4698-c410-4cf1-b93f-7c24ff8eeab8", + "apim-request-id": "76d48261-6405-4511-8ec8-592bfdd46ca6", + "date": "Fri, 25 Jun 2021 20:25:07 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/1e7920e0-0787-490b-b5f9-2031733cf080", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "99" + "x-envoy-upstream-service-time": "186" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/702c4698-c410-4cf1-b93f-7c24ff8eeab8", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/1e7920e0-0787-490b-b5f9-2031733cf080", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"702c4698-c410-4cf1-b93f-7c24ff8eeab8\",\"lastUpdateDateTime\":\"2021-05-12T19:16:53Z\",\"createdDateTime\":\"2021-05-12T19:16:53Z\",\"expirationDateTime\":\"2021-05-13T19:16:53Z\",\"status\":\"notStarted\",\"errors\":[]}", + "response": "{\"jobId\":\"1e7920e0-0787-490b-b5f9-2031733cf080\",\"lastUpdateDateTime\":\"2021-06-25T20:25:08Z\",\"createdDateTime\":\"2021-06-25T20:25:08Z\",\"expirationDateTime\":\"2021-06-26T20:25:08Z\",\"status\":\"notStarted\",\"errors\":[]}", "responseHeaders": { - "apim-request-id": "2148ea99-299b-44d5-8f42-3f9c44488eb3", + "apim-request-id": "3dcf8d19-0ee6-45b5-90c3-6ebbfbb87758", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:53 GMT", + "date": "Fri, 25 Jun 2021 20:25:07 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "6" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/702c4698-c410-4cf1-b93f-7c24ff8eeab8", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/1e7920e0-0787-490b-b5f9-2031733cf080", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"702c4698-c410-4cf1-b93f-7c24ff8eeab8\",\"lastUpdateDateTime\":\"2021-05-12T19:16:53Z\",\"createdDateTime\":\"2021-05-12T19:16:53Z\",\"expirationDateTime\":\"2021-05-13T19:16:53Z\",\"status\":\"notStarted\",\"errors\":[]}", + "response": "{\"jobId\":\"1e7920e0-0787-490b-b5f9-2031733cf080\",\"lastUpdateDateTime\":\"2021-06-25T20:25:08Z\",\"createdDateTime\":\"2021-06-25T20:25:08Z\",\"expirationDateTime\":\"2021-06-26T20:25:08Z\",\"status\":\"notStarted\",\"errors\":[]}", "responseHeaders": { - "apim-request-id": "57d2dda0-2382-466a-9465-bf72ceb9ef71", + "apim-request-id": "c4e7b3ed-74ce-48fa-9842-8f24f18d42ee", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:53 GMT", + "date": "Fri, 25 Jun 2021 20:25:08 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -59,40 +59,59 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/702c4698-c410-4cf1-b93f-7c24ff8eeab8", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/1e7920e0-0787-490b-b5f9-2031733cf080", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"1e7920e0-0787-490b-b5f9-2031733cf080\",\"lastUpdateDateTime\":\"2021-06-25T20:25:08Z\",\"createdDateTime\":\"2021-06-25T20:25:08Z\",\"expirationDateTime\":\"2021-06-26T20:25:08Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "f81186b1-df29-428d-a585-f7aba1020528", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:25:10 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/1e7920e0-0787-490b-b5f9-2031733cf080", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"702c4698-c410-4cf1-b93f-7c24ff8eeab8\",\"lastUpdateDateTime\":\"2021-05-12T19:16:54Z\",\"createdDateTime\":\"2021-05-12T19:16:53Z\",\"expirationDateTime\":\"2021-05-13T19:16:53Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"A document within the request was too large to be processed. Limit document size to: 5120 text elements. For additional details on the data limitations see https://aka.ms/text-analytics-data-limits\"}}}],\"modelVersion\":\"2021-03-01\"}}", + "response": "{\"jobId\":\"1e7920e0-0787-490b-b5f9-2031733cf080\",\"lastUpdateDateTime\":\"2021-06-25T20:25:11Z\",\"createdDateTime\":\"2021-06-25T20:25:08Z\",\"expirationDateTime\":\"2021-06-26T20:25:08Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"A document within the request was too large to be processed. Limit document size to: 5120 text elements. For additional details on the data limitations see https://aka.ms/text-analytics-data-limits\"}}}],\"modelVersion\":\"2021-05-15\"}}", "responseHeaders": { - "apim-request-id": "d8dece8e-e849-460a-bc93-7ca708573f5a", + "apim-request-id": "22f771f0-3fc0-4549-9aae-c1d1cc1331ff", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:55 GMT", + "date": "Fri, 25 Jun 2021 20:25:13 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "73" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/702c4698-c410-4cf1-b93f-7c24ff8eeab8", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/1e7920e0-0787-490b-b5f9-2031733cf080", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"702c4698-c410-4cf1-b93f-7c24ff8eeab8\",\"lastUpdateDateTime\":\"2021-05-12T19:16:54Z\",\"createdDateTime\":\"2021-05-12T19:16:53Z\",\"expirationDateTime\":\"2021-05-13T19:16:53Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"A document within the request was too large to be processed. Limit document size to: 5120 text elements. For additional details on the data limitations see https://aka.ms/text-analytics-data-limits\"}}}],\"modelVersion\":\"2021-03-01\"}}", + "response": "{\"jobId\":\"1e7920e0-0787-490b-b5f9-2031733cf080\",\"lastUpdateDateTime\":\"2021-06-25T20:25:11Z\",\"createdDateTime\":\"2021-06-25T20:25:08Z\",\"expirationDateTime\":\"2021-06-26T20:25:08Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"A document within the request was too large to be processed. Limit document size to: 5120 text elements. For additional details on the data limitations see https://aka.ms/text-analytics-data-limits\"}}}],\"modelVersion\":\"2021-05-15\"}}", "responseHeaders": { - "apim-request-id": "fb66bf04-c3de-48e5-a9f2-8a3c803d12b4", + "apim-request-id": "acea739f-a967-4d27-8bdf-c37a7ca0106d", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:55 GMT", + "date": "Fri, 25 Jun 2021 20:25:13 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "52" + "x-envoy-upstream-service-time": "63" } } ], @@ -100,5 +119,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "e3c59c72b696ba9b58df9f60903d4375" + "hash": "01881f729b552f93505ee1dc6d622559" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_all_inputs_with_errors.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_all_inputs_with_errors.json similarity index 55% rename from sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_all_inputs_with_errors.json rename to sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_all_inputs_with_errors.json index 896d450dcb5f..4c2fd131c326 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_all_inputs_with_errors.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_all_inputs_with_errors.json @@ -2,7 +2,7 @@ "recordings": [ { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -10,66 +10,66 @@ "status": 202, "response": "", "responseHeaders": { - "apim-request-id": "ef5a157e-8c9a-4b41-9ac7-e56794692efa", - "date": "Wed, 12 May 2021 19:16:19 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/1caa0fa4-61b8-4dc0-a765-ec9cc8cf0b11", + "apim-request-id": "6189d22a-55c1-4b32-97b8-11a6948b2414", + "date": "Fri, 25 Jun 2021 20:24:13 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/2a627463-a51f-49d8-a6e7-4fa7c32d5666", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "104" + "x-envoy-upstream-service-time": "177" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/1caa0fa4-61b8-4dc0-a765-ec9cc8cf0b11", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/2a627463-a51f-49d8-a6e7-4fa7c32d5666", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"1caa0fa4-61b8-4dc0-a765-ec9cc8cf0b11\",\"lastUpdateDateTime\":\"2021-05-12T19:16:19Z\",\"createdDateTime\":\"2021-05-12T19:16:19Z\",\"expirationDateTime\":\"2021-05-13T19:16:19Z\",\"status\":\"notStarted\",\"errors\":[]}", + "response": "{\"jobId\":\"2a627463-a51f-49d8-a6e7-4fa7c32d5666\",\"lastUpdateDateTime\":\"2021-06-25T20:24:13Z\",\"createdDateTime\":\"2021-06-25T20:24:13Z\",\"expirationDateTime\":\"2021-06-26T20:24:13Z\",\"status\":\"notStarted\",\"errors\":[]}", "responseHeaders": { - "apim-request-id": "78440420-b2b3-4861-ba86-5cb8a7d480c3", + "apim-request-id": "9808650a-6a50-4348-92f8-37e3b0deca36", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:19 GMT", + "date": "Fri, 25 Jun 2021 20:24:13 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/1caa0fa4-61b8-4dc0-a765-ec9cc8cf0b11", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/2a627463-a51f-49d8-a6e7-4fa7c32d5666", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"1caa0fa4-61b8-4dc0-a765-ec9cc8cf0b11\",\"lastUpdateDateTime\":\"2021-05-12T19:16:19Z\",\"createdDateTime\":\"2021-05-12T19:16:19Z\",\"expirationDateTime\":\"2021-05-13T19:16:19Z\",\"status\":\"notStarted\",\"errors\":[]}", + "response": "{\"jobId\":\"2a627463-a51f-49d8-a6e7-4fa7c32d5666\",\"lastUpdateDateTime\":\"2021-06-25T20:24:13Z\",\"createdDateTime\":\"2021-06-25T20:24:13Z\",\"expirationDateTime\":\"2021-06-26T20:24:13Z\",\"status\":\"notStarted\",\"errors\":[]}", "responseHeaders": { - "apim-request-id": "cb6957e7-7c50-401e-a58c-3d9ab404f5a0", + "apim-request-id": "38b4747e-3f29-4c61-b823-d7f7bc875726", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:19 GMT", + "date": "Fri, 25 Jun 2021 20:24:13 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/1caa0fa4-61b8-4dc0-a765-ec9cc8cf0b11", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/2a627463-a51f-49d8-a6e7-4fa7c32d5666", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"1caa0fa4-61b8-4dc0-a765-ec9cc8cf0b11\",\"lastUpdateDateTime\":\"2021-05-12T19:16:19Z\",\"createdDateTime\":\"2021-05-12T19:16:19Z\",\"expirationDateTime\":\"2021-05-13T19:16:19Z\",\"status\":\"notStarted\",\"errors\":[]}", + "response": "{\"jobId\":\"2a627463-a51f-49d8-a6e7-4fa7c32d5666\",\"lastUpdateDateTime\":\"2021-06-25T20:24:15Z\",\"createdDateTime\":\"2021-06-25T20:24:13Z\",\"expirationDateTime\":\"2021-06-26T20:24:13Z\",\"status\":\"running\",\"errors\":[]}", "responseHeaders": { - "apim-request-id": "e4d9a73b-e55b-4525-b274-0538a016afde", + "apim-request-id": "01773e3c-fdad-4647-b4f1-9374db1f2193", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:21 GMT", + "date": "Fri, 25 Jun 2021 20:24:15 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -78,40 +78,40 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/1caa0fa4-61b8-4dc0-a765-ec9cc8cf0b11", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/2a627463-a51f-49d8-a6e7-4fa7c32d5666", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"1caa0fa4-61b8-4dc0-a765-ec9cc8cf0b11\",\"lastUpdateDateTime\":\"2021-05-12T19:16:22Z\",\"createdDateTime\":\"2021-05-12T19:16:19Z\",\"expirationDateTime\":\"2021-05-13T19:16:19Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-03-01\"}}", + "response": "{\"jobId\":\"2a627463-a51f-49d8-a6e7-4fa7c32d5666\",\"lastUpdateDateTime\":\"2021-06-25T20:24:16Z\",\"createdDateTime\":\"2021-06-25T20:24:13Z\",\"expirationDateTime\":\"2021-06-26T20:24:13Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-05-15\"}}", "responseHeaders": { - "apim-request-id": "8b4e096c-4d90-476a-9f95-6b41a35d763d", + "apim-request-id": "2f3917eb-d5d4-4aa8-b7e0-46b7789a06b4", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:23 GMT", + "date": "Fri, 25 Jun 2021 20:24:17 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-envoy-upstream-service-time": "60" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/1caa0fa4-61b8-4dc0-a765-ec9cc8cf0b11", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/2a627463-a51f-49d8-a6e7-4fa7c32d5666", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"1caa0fa4-61b8-4dc0-a765-ec9cc8cf0b11\",\"lastUpdateDateTime\":\"2021-05-12T19:16:22Z\",\"createdDateTime\":\"2021-05-12T19:16:19Z\",\"expirationDateTime\":\"2021-05-13T19:16:19Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-03-01\"}}", + "response": "{\"jobId\":\"2a627463-a51f-49d8-a6e7-4fa7c32d5666\",\"lastUpdateDateTime\":\"2021-06-25T20:24:16Z\",\"createdDateTime\":\"2021-06-25T20:24:13Z\",\"expirationDateTime\":\"2021-06-26T20:24:13Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}},{\"id\":\"3\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-05-15\"}}", "responseHeaders": { - "apim-request-id": "0ccd068f-2bc9-41f9-bbb0-5c17b5ea2b3d", + "apim-request-id": "e5575007-0776-4fe3-abbd-adf3bb15ad5e", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:23 GMT", + "date": "Fri, 25 Jun 2021 20:24:17 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "49" + "x-envoy-upstream-service-time": "93" } } ], @@ -119,5 +119,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "ffe80882b29b8f8f74ab88e8a42b4836" + "hash": "422fa2aae090de9b8ef49ad07a6940c1" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_cancelled.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_cancelled.json new file mode 100644 index 000000000000..ac8a06869bce --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_cancelled.json @@ -0,0 +1,64 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"Patient does not suffer from high blood pressure.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Prescribed 100mg ibuprofen, taken twice daily.\",\"language\":\"en\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "a9f39b35-60e9-448e-97f1-39e3fb193c31", + "date": "Fri, 25 Jun 2021 20:25:13 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/21e4ca96-8519-46da-8d9e-b43c34bbae14", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "205" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/21e4ca96-8519-46da-8d9e-b43c34bbae14", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"21e4ca96-8519-46da-8d9e-b43c34bbae14\",\"lastUpdateDateTime\":\"2021-06-25T20:25:13Z\",\"createdDateTime\":\"2021-06-25T20:25:13Z\",\"expirationDateTime\":\"2021-06-26T20:25:13Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "a44ef4e1-5d56-4b81-b6bb-9c9e7120faef", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:25:13 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "DELETE", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/21e4ca96-8519-46da-8d9e-b43c34bbae14", + "query": {}, + "requestBody": null, + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "fe7e42b4-7632-4c84-be69-0699255867ba", + "date": "Fri, 25 Jun 2021 20:25:13 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/21e4ca96-8519-46da-8d9e-b43c34bbae14", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "26" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "01dfa9d01856d50a1807094a8dc25695" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_document_warnings.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_document_warnings.json new file mode 100644 index 000000000000..a6bc18662133 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_document_warnings.json @@ -0,0 +1,104 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"This won't actually create a warning :'(\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "fd3b7924-fcaf-4272-96a4-9acf2bf1520e", + "date": "Fri, 25 Jun 2021 20:24:19 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/8c0a3c35-1048-4c1a-bf9e-d73e10e48142", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "140" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/8c0a3c35-1048-4c1a-bf9e-d73e10e48142", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8c0a3c35-1048-4c1a-bf9e-d73e10e48142\",\"lastUpdateDateTime\":\"2021-06-25T20:24:19Z\",\"createdDateTime\":\"2021-06-25T20:24:19Z\",\"expirationDateTime\":\"2021-06-26T20:24:19Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "f1600aea-8f3e-4c62-a2f6-4e93584af6e1", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:19 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "5" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/8c0a3c35-1048-4c1a-bf9e-d73e10e48142", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8c0a3c35-1048-4c1a-bf9e-d73e10e48142\",\"lastUpdateDateTime\":\"2021-06-25T20:24:19Z\",\"createdDateTime\":\"2021-06-25T20:24:19Z\",\"expirationDateTime\":\"2021-06-26T20:24:19Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "0486c8d0-3713-463f-aa71-acc7fae95f75", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:19 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/8c0a3c35-1048-4c1a-bf9e-d73e10e48142", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8c0a3c35-1048-4c1a-bf9e-d73e10e48142\",\"lastUpdateDateTime\":\"2021-06-25T20:24:20Z\",\"createdDateTime\":\"2021-06-25T20:24:19Z\",\"expirationDateTime\":\"2021-06-26T20:24:19Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "deec9144-46d5-4818-b38e-c4aa4404ce06", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:21 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "55" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/8c0a3c35-1048-4c1a-bf9e-d73e10e48142", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"8c0a3c35-1048-4c1a-bf9e-d73e10e48142\",\"lastUpdateDateTime\":\"2021-06-25T20:24:20Z\",\"createdDateTime\":\"2021-06-25T20:24:19Z\",\"expirationDateTime\":\"2021-06-26T20:24:19Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "f31641de-1b72-498d-bffb-de6357bc9b99", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:21 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "59" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "87bec8b74fdd02cc761c1d3668adde6a" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.json similarity index 74% rename from sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.json rename to sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.json index 7e199d334066..262b10555b9f 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.json @@ -2,7 +2,7 @@ "recordings": [ { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -10,13 +10,13 @@ "status": 400, "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Request contains duplicated Ids. Make sure each document has a unique Id.\"}}}", "responseHeaders": { - "apim-request-id": "b5a5f159-68b2-48ae-8bb8-e3caacf138da", + "apim-request-id": "1f22fcae-8e4c-4587-b280-fbcdd7a6b936", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:55 GMT", + "date": "Fri, 25 Jun 2021 20:25:13 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "3" } } ], @@ -24,5 +24,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "fd07491e077d664a98fa00ed86c7e0f4" + "hash": "5a1a51d510e78fbb9637596af3eed13e" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_entity_assertions.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_entity_assertions.json similarity index 84% rename from sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_entity_assertions.json rename to sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_entity_assertions.json index 2835f1ab5c95..e3325d6a268c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_entity_assertions.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_entity_assertions.json @@ -2,7 +2,7 @@ "recordings": [ { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -10,108 +10,89 @@ "status": 202, "response": "", "responseHeaders": { - "apim-request-id": "34f42c79-0a64-48de-a34e-a47a791093cf", - "date": "Mon, 07 Jun 2021 21:26:17 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/c16efaa6-5f20-4eb6-bab5-9447f494ee6f", + "apim-request-id": "34005ed9-9a51-4a1e-80d8-948cf2aeaa47", + "date": "Fri, 25 Jun 2021 20:23:33 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/d200165a-0bd1-422b-9d0d-12a71a1f004d", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5221" + "x-envoy-upstream-service-time": "130" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/c16efaa6-5f20-4eb6-bab5-9447f494ee6f", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/d200165a-0bd1-422b-9d0d-12a71a1f004d", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"c16efaa6-5f20-4eb6-bab5-9447f494ee6f\",\"lastUpdateDateTime\":\"2021-06-07T21:26:17Z\",\"createdDateTime\":\"2021-06-07T21:26:12Z\",\"expirationDateTime\":\"2021-06-08T21:26:12Z\",\"status\":\"notStarted\",\"errors\":[]}", + "response": "{\"jobId\":\"d200165a-0bd1-422b-9d0d-12a71a1f004d\",\"lastUpdateDateTime\":\"2021-06-25T20:23:34Z\",\"createdDateTime\":\"2021-06-25T20:23:34Z\",\"expirationDateTime\":\"2021-06-26T20:23:34Z\",\"status\":\"notStarted\",\"errors\":[]}", "responseHeaders": { - "apim-request-id": "0e73f0f1-a379-4092-a720-abe6c6661b2d", + "apim-request-id": "eaf8a36b-136a-41be-8b93-b974f6820e96", "content-type": "application/json; charset=utf-8", - "date": "Mon, 07 Jun 2021 21:26:17 GMT", + "date": "Fri, 25 Jun 2021 20:23:33 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "9" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/c16efaa6-5f20-4eb6-bab5-9447f494ee6f", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/d200165a-0bd1-422b-9d0d-12a71a1f004d", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"c16efaa6-5f20-4eb6-bab5-9447f494ee6f\",\"lastUpdateDateTime\":\"2021-06-07T21:26:17Z\",\"createdDateTime\":\"2021-06-07T21:26:12Z\",\"expirationDateTime\":\"2021-06-08T21:26:12Z\",\"status\":\"notStarted\",\"errors\":[]}", + "response": "{\"jobId\":\"d200165a-0bd1-422b-9d0d-12a71a1f004d\",\"lastUpdateDateTime\":\"2021-06-25T20:23:34Z\",\"createdDateTime\":\"2021-06-25T20:23:34Z\",\"expirationDateTime\":\"2021-06-26T20:23:34Z\",\"status\":\"notStarted\",\"errors\":[]}", "responseHeaders": { - "apim-request-id": "e0bb008f-133a-4228-b225-a8fcd93a140d", + "apim-request-id": "8b66fb69-1a43-40af-85a4-bcb2deb2fe31", "content-type": "application/json; charset=utf-8", - "date": "Mon, 07 Jun 2021 21:26:17 GMT", + "date": "Fri, 25 Jun 2021 20:23:33 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "10" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/c16efaa6-5f20-4eb6-bab5-9447f494ee6f", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/d200165a-0bd1-422b-9d0d-12a71a1f004d", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"c16efaa6-5f20-4eb6-bab5-9447f494ee6f\",\"lastUpdateDateTime\":\"2021-06-07T21:26:17Z\",\"createdDateTime\":\"2021-06-07T21:26:12Z\",\"expirationDateTime\":\"2021-06-08T21:26:12Z\",\"status\":\"notStarted\",\"errors\":[]}", + "response": "{\"jobId\":\"d200165a-0bd1-422b-9d0d-12a71a1f004d\",\"lastUpdateDateTime\":\"2021-06-25T20:23:35Z\",\"createdDateTime\":\"2021-06-25T20:23:34Z\",\"expirationDateTime\":\"2021-06-26T20:23:34Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":0,\"length\":4,\"text\":\"Baby\",\"category\":\"Age\",\"confidenceScore\":0.94,\"name\":\"Infant\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0021270\"},{\"dataSource\":\"AOD\",\"id\":\"0000005273\"},{\"dataSource\":\"CCPSS\",\"id\":\"0030805\"},{\"dataSource\":\"CHV\",\"id\":\"0000006675\"},{\"dataSource\":\"DXP\",\"id\":\"U002089\"},{\"dataSource\":\"LCH\",\"id\":\"U002421\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85066022\"},{\"dataSource\":\"LNC\",\"id\":\"LA19747-7\"},{\"dataSource\":\"MDR\",\"id\":\"10021731\"},{\"dataSource\":\"MSH\",\"id\":\"D007223\"},{\"dataSource\":\"NCI\",\"id\":\"C27956\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"C27956\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C27956\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"133931009\"}]},{\"offset\":24,\"length\":10,\"text\":\"Meningitis\",\"category\":\"Diagnosis\",\"confidenceScore\":1.0,\"assertion\":{\"certainty\":\"negativePossible\"},\"name\":\"Meningitis\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0025289\"},{\"dataSource\":\"AOD\",\"id\":\"0000006185\"},{\"dataSource\":\"BI\",\"id\":\"BI00546\"},{\"dataSource\":\"CCPSS\",\"id\":\"1018016\"},{\"dataSource\":\"CCSR_10\",\"id\":\"NVS001\"},{\"dataSource\":\"CHV\",\"id\":\"0000007932\"},{\"dataSource\":\"COSTAR\",\"id\":\"478\"},{\"dataSource\":\"CSP\",\"id\":\"2042-5301\"},{\"dataSource\":\"CST\",\"id\":\"MENINGITIS\"},{\"dataSource\":\"DXP\",\"id\":\"U002543\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0001287\"},{\"dataSource\":\"ICD10\",\"id\":\"G03.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"G03.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"G03.9\"},{\"dataSource\":\"ICD9CM\",\"id\":\"322.9\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU048434\"},{\"dataSource\":\"ICPC2P\",\"id\":\"N71002\"},{\"dataSource\":\"LCH\",\"id\":\"U002901\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85083562\"},{\"dataSource\":\"LNC\",\"id\":\"LP20756-0\"},{\"dataSource\":\"MDR\",\"id\":\"10027199\"},{\"dataSource\":\"MEDCIN\",\"id\":\"31192\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"324\"},{\"dataSource\":\"MSH\",\"id\":\"D008581\"},{\"dataSource\":\"NANDA-I\",\"id\":\"02899\"},{\"dataSource\":\"NCI\",\"id\":\"C26828\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C26828\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E11458\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"2389\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000471780\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C26828\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU005994\"},{\"dataSource\":\"PSY\",\"id\":\"30660\"},{\"dataSource\":\"RCD\",\"id\":\"X000H\"},{\"dataSource\":\"SNM\",\"id\":\"M-40000\"},{\"dataSource\":\"SNMI\",\"id\":\"DA-10010\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"7180009\"},{\"dataSource\":\"WHO\",\"id\":\"0955\"}]},{\"offset\":47,\"length\":5,\"text\":\"fever\",\"category\":\"SymptomOrSign\",\"confidenceScore\":1.0,\"name\":\"Fever\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0015967\"},{\"dataSource\":\"AIR\",\"id\":\"FEVER\"},{\"dataSource\":\"AOD\",\"id\":\"0000004396\"},{\"dataSource\":\"BI\",\"id\":\"BI00751\"},{\"dataSource\":\"CCC\",\"id\":\"K25.2\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017166\"},{\"dataSource\":\"CCSR_10\",\"id\":\"SYM002\"},{\"dataSource\":\"CHV\",\"id\":\"0000005010\"},{\"dataSource\":\"COSTAR\",\"id\":\"300\"},{\"dataSource\":\"CPM\",\"id\":\"65287\"},{\"dataSource\":\"CSP\",\"id\":\"2871-4310\"},{\"dataSource\":\"CST\",\"id\":\"FEVER\"},{\"dataSource\":\"DXP\",\"id\":\"U001483\"},{\"dataSource\":\"GO\",\"id\":\"GO:0001660\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0001945\"},{\"dataSource\":\"ICD10\",\"id\":\"R50.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"R50.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"R50.9\"},{\"dataSource\":\"ICD9CM\",\"id\":\"780.60\"},{\"dataSource\":\"ICNP\",\"id\":\"10041539\"},{\"dataSource\":\"ICPC\",\"id\":\"A03\"},{\"dataSource\":\"ICPC2EENG\",\"id\":\"A03\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU041751\"},{\"dataSource\":\"ICPC2P\",\"id\":\"A03002\"},{\"dataSource\":\"LCH\",\"id\":\"U001776\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85047994\"},{\"dataSource\":\"LNC\",\"id\":\"MTHU013518\"},{\"dataSource\":\"MDR\",\"id\":\"10005911\"},{\"dataSource\":\"MEDCIN\",\"id\":\"6005\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"511\"},{\"dataSource\":\"MSH\",\"id\":\"D005334\"},{\"dataSource\":\"MTHICD9\",\"id\":\"780.60\"},{\"dataSource\":\"NANDA-I\",\"id\":\"01128\"},{\"dataSource\":\"NCI\",\"id\":\"C3038\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E11102\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1858\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000450108\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3038\"},{\"dataSource\":\"NOC\",\"id\":\"070307\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU005439\"},{\"dataSource\":\"OMS\",\"id\":\"50.03\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11020.02\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000775882\"},{\"dataSource\":\"PSY\",\"id\":\"23840\"},{\"dataSource\":\"QMR\",\"id\":\"Q0200115\"},{\"dataSource\":\"RCD\",\"id\":\"X76EI\"},{\"dataSource\":\"SNM\",\"id\":\"F-03003\"},{\"dataSource\":\"SNMI\",\"id\":\"F-03003\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"386661006\"},{\"dataSource\":\"WHO\",\"id\":\"0725\"}]},{\"offset\":60,\"length\":6,\"text\":\"mother\",\"category\":\"FamilyRelation\",\"confidenceScore\":0.99,\"name\":\"Mother (person)\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0026591\"},{\"dataSource\":\"AOD\",\"id\":\"0000027173\"},{\"dataSource\":\"CCPSS\",\"id\":\"U000286\"},{\"dataSource\":\"CHV\",\"id\":\"0000008266\"},{\"dataSource\":\"CSP\",\"id\":\"1124-5492\"},{\"dataSource\":\"HL7V3.0\",\"id\":\"MTH\"},{\"dataSource\":\"LCH\",\"id\":\"U003028\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85087526\"},{\"dataSource\":\"LNC\",\"id\":\"LA10417-6\"},{\"dataSource\":\"MSH\",\"id\":\"D009035\"},{\"dataSource\":\"NCI\",\"id\":\"C25189\"},{\"dataSource\":\"NCI_CDISC\",\"id\":\"C25189\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C25189\"},{\"dataSource\":\"PSY\",\"id\":\"32140\"},{\"dataSource\":\"RCD\",\"id\":\"X78ym\"},{\"dataSource\":\"SNMI\",\"id\":\"S-10120\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"72705000\"}]},{\"offset\":77,\"length\":10,\"text\":\"Penicillin\",\"category\":\"MedicationName\",\"confidenceScore\":0.9,\"assertion\":{\"certainty\":\"neutralPossible\"},\"name\":\"penicillins\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0030842\"},{\"dataSource\":\"AOD\",\"id\":\"0000019206\"},{\"dataSource\":\"ATC\",\"id\":\"J01C\"},{\"dataSource\":\"CCPSS\",\"id\":\"0014106\"},{\"dataSource\":\"CHV\",\"id\":\"0000009423\"},{\"dataSource\":\"CSP\",\"id\":\"0199-8025\"},{\"dataSource\":\"GS\",\"id\":\"4011\"},{\"dataSource\":\"LCH\",\"id\":\"U003521\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85099402\"},{\"dataSource\":\"LNC\",\"id\":\"LP14319-5\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40319\"},{\"dataSource\":\"MMSL\",\"id\":\"d00116\"},{\"dataSource\":\"MSH\",\"id\":\"D010406\"},{\"dataSource\":\"NCI\",\"id\":\"C1500\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0402815\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000045296\"},{\"dataSource\":\"NDDF\",\"id\":\"016121\"},{\"dataSource\":\"PSY\",\"id\":\"37190\"},{\"dataSource\":\"RCD\",\"id\":\"x009C\"},{\"dataSource\":\"SNM\",\"id\":\"E-7260\"},{\"dataSource\":\"SNMI\",\"id\":\"C-54000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"764146007\"},{\"dataSource\":\"VANDF\",\"id\":\"4019880\"}]},{\"offset\":96,\"length\":4,\"text\":\"baby\",\"category\":\"FamilyRelation\",\"confidenceScore\":1.0,\"name\":\"Infant\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0021270\"},{\"dataSource\":\"AOD\",\"id\":\"0000005273\"},{\"dataSource\":\"CCPSS\",\"id\":\"0030805\"},{\"dataSource\":\"CHV\",\"id\":\"0000006675\"},{\"dataSource\":\"DXP\",\"id\":\"U002089\"},{\"dataSource\":\"LCH\",\"id\":\"U002421\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85066022\"},{\"dataSource\":\"LNC\",\"id\":\"LA19747-7\"},{\"dataSource\":\"MDR\",\"id\":\"10021731\"},{\"dataSource\":\"MSH\",\"id\":\"D007223\"},{\"dataSource\":\"NCI\",\"id\":\"C27956\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"C27956\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C27956\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"133931009\"}]}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", "responseHeaders": { - "apim-request-id": "18584e2d-5151-4c94-b9db-e04888316b49", + "apim-request-id": "2484d09f-3d42-4690-9c82-fdc302924925", "content-type": "application/json; charset=utf-8", - "date": "Mon, 07 Jun 2021 21:26:19 GMT", + "date": "Fri, 25 Jun 2021 20:23:36 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "47" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/c16efaa6-5f20-4eb6-bab5-9447f494ee6f", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/d200165a-0bd1-422b-9d0d-12a71a1f004d", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"c16efaa6-5f20-4eb6-bab5-9447f494ee6f\",\"lastUpdateDateTime\":\"2021-06-07T21:26:20Z\",\"createdDateTime\":\"2021-06-07T21:26:12Z\",\"expirationDateTime\":\"2021-06-08T21:26:12Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":0,\"length\":4,\"text\":\"Baby\",\"category\":\"Age\",\"confidenceScore\":0.94,\"name\":\"Infant\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0021270\"},{\"dataSource\":\"AOD\",\"id\":\"0000005273\"},{\"dataSource\":\"CCPSS\",\"id\":\"0030805\"},{\"dataSource\":\"CHV\",\"id\":\"0000006675\"},{\"dataSource\":\"DXP\",\"id\":\"U002089\"},{\"dataSource\":\"LCH\",\"id\":\"U002421\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85066022\"},{\"dataSource\":\"LNC\",\"id\":\"LA19747-7\"},{\"dataSource\":\"MDR\",\"id\":\"10021731\"},{\"dataSource\":\"MSH\",\"id\":\"D007223\"},{\"dataSource\":\"NCI\",\"id\":\"C27956\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"C27956\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C27956\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"133931009\"}]},{\"offset\":24,\"length\":10,\"text\":\"Meningitis\",\"category\":\"Diagnosis\",\"confidenceScore\":1.0,\"assertion\":{\"certainty\":\"negativePossible\"},\"name\":\"Meningitis\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0025289\"},{\"dataSource\":\"AOD\",\"id\":\"0000006185\"},{\"dataSource\":\"BI\",\"id\":\"BI00546\"},{\"dataSource\":\"CCPSS\",\"id\":\"1018016\"},{\"dataSource\":\"CCSR_10\",\"id\":\"NVS001\"},{\"dataSource\":\"CHV\",\"id\":\"0000007932\"},{\"dataSource\":\"COSTAR\",\"id\":\"478\"},{\"dataSource\":\"CSP\",\"id\":\"2042-5301\"},{\"dataSource\":\"CST\",\"id\":\"MENINGITIS\"},{\"dataSource\":\"DXP\",\"id\":\"U002543\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0001287\"},{\"dataSource\":\"ICD10\",\"id\":\"G03.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"G03.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"G03.9\"},{\"dataSource\":\"ICD9CM\",\"id\":\"322.9\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU048434\"},{\"dataSource\":\"ICPC2P\",\"id\":\"N71002\"},{\"dataSource\":\"LCH\",\"id\":\"U002901\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85083562\"},{\"dataSource\":\"LNC\",\"id\":\"LP20756-0\"},{\"dataSource\":\"MDR\",\"id\":\"10027199\"},{\"dataSource\":\"MEDCIN\",\"id\":\"31192\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"324\"},{\"dataSource\":\"MSH\",\"id\":\"D008581\"},{\"dataSource\":\"NANDA-I\",\"id\":\"02899\"},{\"dataSource\":\"NCI\",\"id\":\"C26828\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C26828\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E11458\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"2389\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000471780\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C26828\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU005994\"},{\"dataSource\":\"PSY\",\"id\":\"30660\"},{\"dataSource\":\"RCD\",\"id\":\"X000H\"},{\"dataSource\":\"SNM\",\"id\":\"M-40000\"},{\"dataSource\":\"SNMI\",\"id\":\"DA-10010\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"7180009\"},{\"dataSource\":\"WHO\",\"id\":\"0955\"}]},{\"offset\":47,\"length\":5,\"text\":\"fever\",\"category\":\"SymptomOrSign\",\"confidenceScore\":1.0,\"name\":\"Fever\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0015967\"},{\"dataSource\":\"AIR\",\"id\":\"FEVER\"},{\"dataSource\":\"AOD\",\"id\":\"0000004396\"},{\"dataSource\":\"BI\",\"id\":\"BI00751\"},{\"dataSource\":\"CCC\",\"id\":\"K25.2\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017166\"},{\"dataSource\":\"CCSR_10\",\"id\":\"SYM002\"},{\"dataSource\":\"CHV\",\"id\":\"0000005010\"},{\"dataSource\":\"COSTAR\",\"id\":\"300\"},{\"dataSource\":\"CPM\",\"id\":\"65287\"},{\"dataSource\":\"CSP\",\"id\":\"2871-4310\"},{\"dataSource\":\"CST\",\"id\":\"FEVER\"},{\"dataSource\":\"DXP\",\"id\":\"U001483\"},{\"dataSource\":\"GO\",\"id\":\"GO:0001660\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0001945\"},{\"dataSource\":\"ICD10\",\"id\":\"R50.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"R50.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"R50.9\"},{\"dataSource\":\"ICD9CM\",\"id\":\"780.60\"},{\"dataSource\":\"ICNP\",\"id\":\"10041539\"},{\"dataSource\":\"ICPC\",\"id\":\"A03\"},{\"dataSource\":\"ICPC2EENG\",\"id\":\"A03\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU041751\"},{\"dataSource\":\"ICPC2P\",\"id\":\"A03002\"},{\"dataSource\":\"LCH\",\"id\":\"U001776\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85047994\"},{\"dataSource\":\"LNC\",\"id\":\"MTHU013518\"},{\"dataSource\":\"MDR\",\"id\":\"10005911\"},{\"dataSource\":\"MEDCIN\",\"id\":\"6005\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"511\"},{\"dataSource\":\"MSH\",\"id\":\"D005334\"},{\"dataSource\":\"MTHICD9\",\"id\":\"780.60\"},{\"dataSource\":\"NANDA-I\",\"id\":\"01128\"},{\"dataSource\":\"NCI\",\"id\":\"C3038\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E11102\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1858\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000450108\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3038\"},{\"dataSource\":\"NOC\",\"id\":\"070307\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU005439\"},{\"dataSource\":\"OMS\",\"id\":\"50.03\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11020.02\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000775882\"},{\"dataSource\":\"PSY\",\"id\":\"23840\"},{\"dataSource\":\"QMR\",\"id\":\"Q0200115\"},{\"dataSource\":\"RCD\",\"id\":\"X76EI\"},{\"dataSource\":\"SNM\",\"id\":\"F-03003\"},{\"dataSource\":\"SNMI\",\"id\":\"F-03003\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"386661006\"},{\"dataSource\":\"WHO\",\"id\":\"0725\"}]},{\"offset\":60,\"length\":6,\"text\":\"mother\",\"category\":\"FamilyRelation\",\"confidenceScore\":0.99,\"name\":\"Mother (person)\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0026591\"},{\"dataSource\":\"AOD\",\"id\":\"0000027173\"},{\"dataSource\":\"CCPSS\",\"id\":\"U000286\"},{\"dataSource\":\"CHV\",\"id\":\"0000008266\"},{\"dataSource\":\"CSP\",\"id\":\"1124-5492\"},{\"dataSource\":\"HL7V3.0\",\"id\":\"MTH\"},{\"dataSource\":\"LCH\",\"id\":\"U003028\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85087526\"},{\"dataSource\":\"LNC\",\"id\":\"LA10417-6\"},{\"dataSource\":\"MSH\",\"id\":\"D009035\"},{\"dataSource\":\"NCI\",\"id\":\"C25189\"},{\"dataSource\":\"NCI_CDISC\",\"id\":\"C25189\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C25189\"},{\"dataSource\":\"PSY\",\"id\":\"32140\"},{\"dataSource\":\"RCD\",\"id\":\"X78ym\"},{\"dataSource\":\"SNMI\",\"id\":\"S-10120\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"72705000\"}]},{\"offset\":77,\"length\":10,\"text\":\"Penicillin\",\"category\":\"MedicationName\",\"confidenceScore\":0.9,\"assertion\":{\"certainty\":\"neutralPossible\"},\"name\":\"penicillins\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0030842\"},{\"dataSource\":\"AOD\",\"id\":\"0000019206\"},{\"dataSource\":\"ATC\",\"id\":\"J01C\"},{\"dataSource\":\"CCPSS\",\"id\":\"0014106\"},{\"dataSource\":\"CHV\",\"id\":\"0000009423\"},{\"dataSource\":\"CSP\",\"id\":\"0199-8025\"},{\"dataSource\":\"GS\",\"id\":\"4011\"},{\"dataSource\":\"LCH\",\"id\":\"U003521\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85099402\"},{\"dataSource\":\"LNC\",\"id\":\"LP14319-5\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40319\"},{\"dataSource\":\"MMSL\",\"id\":\"d00116\"},{\"dataSource\":\"MSH\",\"id\":\"D010406\"},{\"dataSource\":\"NCI\",\"id\":\"C1500\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0402815\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000045296\"},{\"dataSource\":\"NDDF\",\"id\":\"016121\"},{\"dataSource\":\"PSY\",\"id\":\"37190\"},{\"dataSource\":\"RCD\",\"id\":\"x009C\"},{\"dataSource\":\"SNM\",\"id\":\"E-7260\"},{\"dataSource\":\"SNMI\",\"id\":\"C-54000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"764146007\"},{\"dataSource\":\"VANDF\",\"id\":\"4019880\"}]},{\"offset\":96,\"length\":4,\"text\":\"baby\",\"category\":\"FamilyRelation\",\"confidenceScore\":1.0,\"name\":\"Infant\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0021270\"},{\"dataSource\":\"AOD\",\"id\":\"0000005273\"},{\"dataSource\":\"CCPSS\",\"id\":\"0030805\"},{\"dataSource\":\"CHV\",\"id\":\"0000006675\"},{\"dataSource\":\"DXP\",\"id\":\"U002089\"},{\"dataSource\":\"LCH\",\"id\":\"U002421\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85066022\"},{\"dataSource\":\"LNC\",\"id\":\"LA19747-7\"},{\"dataSource\":\"MDR\",\"id\":\"10021731\"},{\"dataSource\":\"MSH\",\"id\":\"D007223\"},{\"dataSource\":\"NCI\",\"id\":\"C27956\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"C27956\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C27956\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"133931009\"}]}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "response": "{\"jobId\":\"d200165a-0bd1-422b-9d0d-12a71a1f004d\",\"lastUpdateDateTime\":\"2021-06-25T20:23:35Z\",\"createdDateTime\":\"2021-06-25T20:23:34Z\",\"expirationDateTime\":\"2021-06-26T20:23:34Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":0,\"length\":4,\"text\":\"Baby\",\"category\":\"Age\",\"confidenceScore\":0.94,\"name\":\"Infant\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0021270\"},{\"dataSource\":\"AOD\",\"id\":\"0000005273\"},{\"dataSource\":\"CCPSS\",\"id\":\"0030805\"},{\"dataSource\":\"CHV\",\"id\":\"0000006675\"},{\"dataSource\":\"DXP\",\"id\":\"U002089\"},{\"dataSource\":\"LCH\",\"id\":\"U002421\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85066022\"},{\"dataSource\":\"LNC\",\"id\":\"LA19747-7\"},{\"dataSource\":\"MDR\",\"id\":\"10021731\"},{\"dataSource\":\"MSH\",\"id\":\"D007223\"},{\"dataSource\":\"NCI\",\"id\":\"C27956\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"C27956\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C27956\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"133931009\"}]},{\"offset\":24,\"length\":10,\"text\":\"Meningitis\",\"category\":\"Diagnosis\",\"confidenceScore\":1.0,\"assertion\":{\"certainty\":\"negativePossible\"},\"name\":\"Meningitis\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0025289\"},{\"dataSource\":\"AOD\",\"id\":\"0000006185\"},{\"dataSource\":\"BI\",\"id\":\"BI00546\"},{\"dataSource\":\"CCPSS\",\"id\":\"1018016\"},{\"dataSource\":\"CCSR_10\",\"id\":\"NVS001\"},{\"dataSource\":\"CHV\",\"id\":\"0000007932\"},{\"dataSource\":\"COSTAR\",\"id\":\"478\"},{\"dataSource\":\"CSP\",\"id\":\"2042-5301\"},{\"dataSource\":\"CST\",\"id\":\"MENINGITIS\"},{\"dataSource\":\"DXP\",\"id\":\"U002543\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0001287\"},{\"dataSource\":\"ICD10\",\"id\":\"G03.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"G03.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"G03.9\"},{\"dataSource\":\"ICD9CM\",\"id\":\"322.9\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU048434\"},{\"dataSource\":\"ICPC2P\",\"id\":\"N71002\"},{\"dataSource\":\"LCH\",\"id\":\"U002901\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85083562\"},{\"dataSource\":\"LNC\",\"id\":\"LP20756-0\"},{\"dataSource\":\"MDR\",\"id\":\"10027199\"},{\"dataSource\":\"MEDCIN\",\"id\":\"31192\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"324\"},{\"dataSource\":\"MSH\",\"id\":\"D008581\"},{\"dataSource\":\"NANDA-I\",\"id\":\"02899\"},{\"dataSource\":\"NCI\",\"id\":\"C26828\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C26828\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E11458\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"2389\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000471780\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C26828\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU005994\"},{\"dataSource\":\"PSY\",\"id\":\"30660\"},{\"dataSource\":\"RCD\",\"id\":\"X000H\"},{\"dataSource\":\"SNM\",\"id\":\"M-40000\"},{\"dataSource\":\"SNMI\",\"id\":\"DA-10010\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"7180009\"},{\"dataSource\":\"WHO\",\"id\":\"0955\"}]},{\"offset\":47,\"length\":5,\"text\":\"fever\",\"category\":\"SymptomOrSign\",\"confidenceScore\":1.0,\"name\":\"Fever\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0015967\"},{\"dataSource\":\"AIR\",\"id\":\"FEVER\"},{\"dataSource\":\"AOD\",\"id\":\"0000004396\"},{\"dataSource\":\"BI\",\"id\":\"BI00751\"},{\"dataSource\":\"CCC\",\"id\":\"K25.2\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017166\"},{\"dataSource\":\"CCSR_10\",\"id\":\"SYM002\"},{\"dataSource\":\"CHV\",\"id\":\"0000005010\"},{\"dataSource\":\"COSTAR\",\"id\":\"300\"},{\"dataSource\":\"CPM\",\"id\":\"65287\"},{\"dataSource\":\"CSP\",\"id\":\"2871-4310\"},{\"dataSource\":\"CST\",\"id\":\"FEVER\"},{\"dataSource\":\"DXP\",\"id\":\"U001483\"},{\"dataSource\":\"GO\",\"id\":\"GO:0001660\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0001945\"},{\"dataSource\":\"ICD10\",\"id\":\"R50.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"R50.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"R50.9\"},{\"dataSource\":\"ICD9CM\",\"id\":\"780.60\"},{\"dataSource\":\"ICNP\",\"id\":\"10041539\"},{\"dataSource\":\"ICPC\",\"id\":\"A03\"},{\"dataSource\":\"ICPC2EENG\",\"id\":\"A03\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU041751\"},{\"dataSource\":\"ICPC2P\",\"id\":\"A03002\"},{\"dataSource\":\"LCH\",\"id\":\"U001776\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85047994\"},{\"dataSource\":\"LNC\",\"id\":\"MTHU013518\"},{\"dataSource\":\"MDR\",\"id\":\"10005911\"},{\"dataSource\":\"MEDCIN\",\"id\":\"6005\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"511\"},{\"dataSource\":\"MSH\",\"id\":\"D005334\"},{\"dataSource\":\"MTHICD9\",\"id\":\"780.60\"},{\"dataSource\":\"NANDA-I\",\"id\":\"01128\"},{\"dataSource\":\"NCI\",\"id\":\"C3038\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E11102\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1858\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000450108\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3038\"},{\"dataSource\":\"NOC\",\"id\":\"070307\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU005439\"},{\"dataSource\":\"OMS\",\"id\":\"50.03\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11020.02\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000775882\"},{\"dataSource\":\"PSY\",\"id\":\"23840\"},{\"dataSource\":\"QMR\",\"id\":\"Q0200115\"},{\"dataSource\":\"RCD\",\"id\":\"X76EI\"},{\"dataSource\":\"SNM\",\"id\":\"F-03003\"},{\"dataSource\":\"SNMI\",\"id\":\"F-03003\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"386661006\"},{\"dataSource\":\"WHO\",\"id\":\"0725\"}]},{\"offset\":60,\"length\":6,\"text\":\"mother\",\"category\":\"FamilyRelation\",\"confidenceScore\":0.99,\"name\":\"Mother (person)\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0026591\"},{\"dataSource\":\"AOD\",\"id\":\"0000027173\"},{\"dataSource\":\"CCPSS\",\"id\":\"U000286\"},{\"dataSource\":\"CHV\",\"id\":\"0000008266\"},{\"dataSource\":\"CSP\",\"id\":\"1124-5492\"},{\"dataSource\":\"HL7V3.0\",\"id\":\"MTH\"},{\"dataSource\":\"LCH\",\"id\":\"U003028\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85087526\"},{\"dataSource\":\"LNC\",\"id\":\"LA10417-6\"},{\"dataSource\":\"MSH\",\"id\":\"D009035\"},{\"dataSource\":\"NCI\",\"id\":\"C25189\"},{\"dataSource\":\"NCI_CDISC\",\"id\":\"C25189\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C25189\"},{\"dataSource\":\"PSY\",\"id\":\"32140\"},{\"dataSource\":\"RCD\",\"id\":\"X78ym\"},{\"dataSource\":\"SNMI\",\"id\":\"S-10120\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"72705000\"}]},{\"offset\":77,\"length\":10,\"text\":\"Penicillin\",\"category\":\"MedicationName\",\"confidenceScore\":0.9,\"assertion\":{\"certainty\":\"neutralPossible\"},\"name\":\"penicillins\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0030842\"},{\"dataSource\":\"AOD\",\"id\":\"0000019206\"},{\"dataSource\":\"ATC\",\"id\":\"J01C\"},{\"dataSource\":\"CCPSS\",\"id\":\"0014106\"},{\"dataSource\":\"CHV\",\"id\":\"0000009423\"},{\"dataSource\":\"CSP\",\"id\":\"0199-8025\"},{\"dataSource\":\"GS\",\"id\":\"4011\"},{\"dataSource\":\"LCH\",\"id\":\"U003521\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85099402\"},{\"dataSource\":\"LNC\",\"id\":\"LP14319-5\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40319\"},{\"dataSource\":\"MMSL\",\"id\":\"d00116\"},{\"dataSource\":\"MSH\",\"id\":\"D010406\"},{\"dataSource\":\"NCI\",\"id\":\"C1500\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0402815\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000045296\"},{\"dataSource\":\"NDDF\",\"id\":\"016121\"},{\"dataSource\":\"PSY\",\"id\":\"37190\"},{\"dataSource\":\"RCD\",\"id\":\"x009C\"},{\"dataSource\":\"SNM\",\"id\":\"E-7260\"},{\"dataSource\":\"SNMI\",\"id\":\"C-54000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"764146007\"},{\"dataSource\":\"VANDF\",\"id\":\"4019880\"}]},{\"offset\":96,\"length\":4,\"text\":\"baby\",\"category\":\"FamilyRelation\",\"confidenceScore\":1.0,\"name\":\"Infant\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0021270\"},{\"dataSource\":\"AOD\",\"id\":\"0000005273\"},{\"dataSource\":\"CCPSS\",\"id\":\"0030805\"},{\"dataSource\":\"CHV\",\"id\":\"0000006675\"},{\"dataSource\":\"DXP\",\"id\":\"U002089\"},{\"dataSource\":\"LCH\",\"id\":\"U002421\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85066022\"},{\"dataSource\":\"LNC\",\"id\":\"LA19747-7\"},{\"dataSource\":\"MDR\",\"id\":\"10021731\"},{\"dataSource\":\"MSH\",\"id\":\"D007223\"},{\"dataSource\":\"NCI\",\"id\":\"C27956\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"C27956\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C27956\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"133931009\"}]}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", "responseHeaders": { - "apim-request-id": "58d7fb78-bd8d-4ff6-88bf-7a2ec5b638b3", + "apim-request-id": "044fd6b5-737c-45d6-a0dd-034b3f22116c", "content-type": "application/json; charset=utf-8", - "date": "Mon, 07 Jun 2021 21:26:21 GMT", + "date": "Fri, 25 Jun 2021 20:23:37 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "29" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/c16efaa6-5f20-4eb6-bab5-9447f494ee6f", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"c16efaa6-5f20-4eb6-bab5-9447f494ee6f\",\"lastUpdateDateTime\":\"2021-06-07T21:26:20Z\",\"createdDateTime\":\"2021-06-07T21:26:12Z\",\"expirationDateTime\":\"2021-06-08T21:26:12Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":0,\"length\":4,\"text\":\"Baby\",\"category\":\"Age\",\"confidenceScore\":0.94,\"name\":\"Infant\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0021270\"},{\"dataSource\":\"AOD\",\"id\":\"0000005273\"},{\"dataSource\":\"CCPSS\",\"id\":\"0030805\"},{\"dataSource\":\"CHV\",\"id\":\"0000006675\"},{\"dataSource\":\"DXP\",\"id\":\"U002089\"},{\"dataSource\":\"LCH\",\"id\":\"U002421\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85066022\"},{\"dataSource\":\"LNC\",\"id\":\"LA19747-7\"},{\"dataSource\":\"MDR\",\"id\":\"10021731\"},{\"dataSource\":\"MSH\",\"id\":\"D007223\"},{\"dataSource\":\"NCI\",\"id\":\"C27956\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"C27956\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C27956\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"133931009\"}]},{\"offset\":24,\"length\":10,\"text\":\"Meningitis\",\"category\":\"Diagnosis\",\"confidenceScore\":1.0,\"assertion\":{\"certainty\":\"negativePossible\"},\"name\":\"Meningitis\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0025289\"},{\"dataSource\":\"AOD\",\"id\":\"0000006185\"},{\"dataSource\":\"BI\",\"id\":\"BI00546\"},{\"dataSource\":\"CCPSS\",\"id\":\"1018016\"},{\"dataSource\":\"CCSR_10\",\"id\":\"NVS001\"},{\"dataSource\":\"CHV\",\"id\":\"0000007932\"},{\"dataSource\":\"COSTAR\",\"id\":\"478\"},{\"dataSource\":\"CSP\",\"id\":\"2042-5301\"},{\"dataSource\":\"CST\",\"id\":\"MENINGITIS\"},{\"dataSource\":\"DXP\",\"id\":\"U002543\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0001287\"},{\"dataSource\":\"ICD10\",\"id\":\"G03.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"G03.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"G03.9\"},{\"dataSource\":\"ICD9CM\",\"id\":\"322.9\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU048434\"},{\"dataSource\":\"ICPC2P\",\"id\":\"N71002\"},{\"dataSource\":\"LCH\",\"id\":\"U002901\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85083562\"},{\"dataSource\":\"LNC\",\"id\":\"LP20756-0\"},{\"dataSource\":\"MDR\",\"id\":\"10027199\"},{\"dataSource\":\"MEDCIN\",\"id\":\"31192\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"324\"},{\"dataSource\":\"MSH\",\"id\":\"D008581\"},{\"dataSource\":\"NANDA-I\",\"id\":\"02899\"},{\"dataSource\":\"NCI\",\"id\":\"C26828\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C26828\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E11458\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"2389\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000471780\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C26828\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU005994\"},{\"dataSource\":\"PSY\",\"id\":\"30660\"},{\"dataSource\":\"RCD\",\"id\":\"X000H\"},{\"dataSource\":\"SNM\",\"id\":\"M-40000\"},{\"dataSource\":\"SNMI\",\"id\":\"DA-10010\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"7180009\"},{\"dataSource\":\"WHO\",\"id\":\"0955\"}]},{\"offset\":47,\"length\":5,\"text\":\"fever\",\"category\":\"SymptomOrSign\",\"confidenceScore\":1.0,\"name\":\"Fever\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0015967\"},{\"dataSource\":\"AIR\",\"id\":\"FEVER\"},{\"dataSource\":\"AOD\",\"id\":\"0000004396\"},{\"dataSource\":\"BI\",\"id\":\"BI00751\"},{\"dataSource\":\"CCC\",\"id\":\"K25.2\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017166\"},{\"dataSource\":\"CCSR_10\",\"id\":\"SYM002\"},{\"dataSource\":\"CHV\",\"id\":\"0000005010\"},{\"dataSource\":\"COSTAR\",\"id\":\"300\"},{\"dataSource\":\"CPM\",\"id\":\"65287\"},{\"dataSource\":\"CSP\",\"id\":\"2871-4310\"},{\"dataSource\":\"CST\",\"id\":\"FEVER\"},{\"dataSource\":\"DXP\",\"id\":\"U001483\"},{\"dataSource\":\"GO\",\"id\":\"GO:0001660\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0001945\"},{\"dataSource\":\"ICD10\",\"id\":\"R50.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"R50.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"R50.9\"},{\"dataSource\":\"ICD9CM\",\"id\":\"780.60\"},{\"dataSource\":\"ICNP\",\"id\":\"10041539\"},{\"dataSource\":\"ICPC\",\"id\":\"A03\"},{\"dataSource\":\"ICPC2EENG\",\"id\":\"A03\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU041751\"},{\"dataSource\":\"ICPC2P\",\"id\":\"A03002\"},{\"dataSource\":\"LCH\",\"id\":\"U001776\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85047994\"},{\"dataSource\":\"LNC\",\"id\":\"MTHU013518\"},{\"dataSource\":\"MDR\",\"id\":\"10005911\"},{\"dataSource\":\"MEDCIN\",\"id\":\"6005\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"511\"},{\"dataSource\":\"MSH\",\"id\":\"D005334\"},{\"dataSource\":\"MTHICD9\",\"id\":\"780.60\"},{\"dataSource\":\"NANDA-I\",\"id\":\"01128\"},{\"dataSource\":\"NCI\",\"id\":\"C3038\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E11102\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1858\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000450108\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3038\"},{\"dataSource\":\"NOC\",\"id\":\"070307\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU005439\"},{\"dataSource\":\"OMS\",\"id\":\"50.03\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11020.02\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000775882\"},{\"dataSource\":\"PSY\",\"id\":\"23840\"},{\"dataSource\":\"QMR\",\"id\":\"Q0200115\"},{\"dataSource\":\"RCD\",\"id\":\"X76EI\"},{\"dataSource\":\"SNM\",\"id\":\"F-03003\"},{\"dataSource\":\"SNMI\",\"id\":\"F-03003\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"386661006\"},{\"dataSource\":\"WHO\",\"id\":\"0725\"}]},{\"offset\":60,\"length\":6,\"text\":\"mother\",\"category\":\"FamilyRelation\",\"confidenceScore\":0.99,\"name\":\"Mother (person)\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0026591\"},{\"dataSource\":\"AOD\",\"id\":\"0000027173\"},{\"dataSource\":\"CCPSS\",\"id\":\"U000286\"},{\"dataSource\":\"CHV\",\"id\":\"0000008266\"},{\"dataSource\":\"CSP\",\"id\":\"1124-5492\"},{\"dataSource\":\"HL7V3.0\",\"id\":\"MTH\"},{\"dataSource\":\"LCH\",\"id\":\"U003028\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85087526\"},{\"dataSource\":\"LNC\",\"id\":\"LA10417-6\"},{\"dataSource\":\"MSH\",\"id\":\"D009035\"},{\"dataSource\":\"NCI\",\"id\":\"C25189\"},{\"dataSource\":\"NCI_CDISC\",\"id\":\"C25189\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C25189\"},{\"dataSource\":\"PSY\",\"id\":\"32140\"},{\"dataSource\":\"RCD\",\"id\":\"X78ym\"},{\"dataSource\":\"SNMI\",\"id\":\"S-10120\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"72705000\"}]},{\"offset\":77,\"length\":10,\"text\":\"Penicillin\",\"category\":\"MedicationName\",\"confidenceScore\":0.9,\"assertion\":{\"certainty\":\"neutralPossible\"},\"name\":\"penicillins\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0030842\"},{\"dataSource\":\"AOD\",\"id\":\"0000019206\"},{\"dataSource\":\"ATC\",\"id\":\"J01C\"},{\"dataSource\":\"CCPSS\",\"id\":\"0014106\"},{\"dataSource\":\"CHV\",\"id\":\"0000009423\"},{\"dataSource\":\"CSP\",\"id\":\"0199-8025\"},{\"dataSource\":\"GS\",\"id\":\"4011\"},{\"dataSource\":\"LCH\",\"id\":\"U003521\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85099402\"},{\"dataSource\":\"LNC\",\"id\":\"LP14319-5\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40319\"},{\"dataSource\":\"MMSL\",\"id\":\"d00116\"},{\"dataSource\":\"MSH\",\"id\":\"D010406\"},{\"dataSource\":\"NCI\",\"id\":\"C1500\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0402815\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000045296\"},{\"dataSource\":\"NDDF\",\"id\":\"016121\"},{\"dataSource\":\"PSY\",\"id\":\"37190\"},{\"dataSource\":\"RCD\",\"id\":\"x009C\"},{\"dataSource\":\"SNM\",\"id\":\"E-7260\"},{\"dataSource\":\"SNMI\",\"id\":\"C-54000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"764146007\"},{\"dataSource\":\"VANDF\",\"id\":\"4019880\"}]},{\"offset\":96,\"length\":4,\"text\":\"baby\",\"category\":\"FamilyRelation\",\"confidenceScore\":1.0,\"name\":\"Infant\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0021270\"},{\"dataSource\":\"AOD\",\"id\":\"0000005273\"},{\"dataSource\":\"CCPSS\",\"id\":\"0030805\"},{\"dataSource\":\"CHV\",\"id\":\"0000006675\"},{\"dataSource\":\"DXP\",\"id\":\"U002089\"},{\"dataSource\":\"LCH\",\"id\":\"U002421\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85066022\"},{\"dataSource\":\"LNC\",\"id\":\"LA19747-7\"},{\"dataSource\":\"MDR\",\"id\":\"10021731\"},{\"dataSource\":\"MSH\",\"id\":\"D007223\"},{\"dataSource\":\"NCI\",\"id\":\"C27956\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"C27956\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C27956\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"133931009\"}]}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", - "responseHeaders": { - "apim-request-id": "b7102926-c750-4d5a-85d7-49fce7fc1b16", - "content-type": "application/json; charset=utf-8", - "date": "Mon, 07 Jun 2021 21:26:21 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "48" } } ], @@ -119,5 +100,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "a07f86fc0aca21b8121098ffdb5f643f" + "hash": "cc4d87871f3923d074a5e1b6cb77e07e" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.json similarity index 53% rename from sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.json rename to sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.json index 874b341501b8..6d714bdea402 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.json @@ -2,7 +2,7 @@ "recordings": [ { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", "query": { "stringIndexType": "UnicodeCodePoint" }, @@ -10,66 +10,47 @@ "status": 202, "response": "", "responseHeaders": { - "apim-request-id": "864e208b-1ce2-4bca-abfc-ffd367ddffd2", - "date": "Wed, 12 May 2021 19:17:00 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/292cea8f-bdce-417b-adae-898d3812136d", + "apim-request-id": "ecbba55f-092d-43ab-ac41-afe0f1fb454b", + "date": "Fri, 25 Jun 2021 20:25:23 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/f4f80052-5d6b-4e08-a4a3-a2df84fa6cc3", "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": "135" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/292cea8f-bdce-417b-adae-898d3812136d", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/f4f80052-5d6b-4e08-a4a3-a2df84fa6cc3", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"292cea8f-bdce-417b-adae-898d3812136d\",\"lastUpdateDateTime\":\"2021-05-12T19:17:01Z\",\"createdDateTime\":\"2021-05-12T19:17:01Z\",\"expirationDateTime\":\"2021-05-13T19:17:01Z\",\"status\":\"notStarted\",\"errors\":[]}", + "response": "{\"jobId\":\"f4f80052-5d6b-4e08-a4a3-a2df84fa6cc3\",\"lastUpdateDateTime\":\"2021-06-25T20:25:23Z\",\"createdDateTime\":\"2021-06-25T20:25:23Z\",\"expirationDateTime\":\"2021-06-26T20:25:23Z\",\"status\":\"notStarted\",\"errors\":[]}", "responseHeaders": { - "apim-request-id": "69b179eb-5a58-4828-9d99-f6f5f1b78948", + "apim-request-id": "06c645ca-6561-4a26-a3cd-3039c0374327", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:00 GMT", + "date": "Fri, 25 Jun 2021 20:25:23 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/292cea8f-bdce-417b-adae-898d3812136d", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"292cea8f-bdce-417b-adae-898d3812136d\",\"lastUpdateDateTime\":\"2021-05-12T19:17:01Z\",\"createdDateTime\":\"2021-05-12T19:17:01Z\",\"expirationDateTime\":\"2021-05-13T19:17:01Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "148f61ec-82bc-4f43-970f-1e55d3c4ce2a", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:00 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "14" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/292cea8f-bdce-417b-adae-898d3812136d", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/f4f80052-5d6b-4e08-a4a3-a2df84fa6cc3", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"292cea8f-bdce-417b-adae-898d3812136d\",\"lastUpdateDateTime\":\"2021-05-12T19:17:01Z\",\"createdDateTime\":\"2021-05-12T19:17:01Z\",\"expirationDateTime\":\"2021-05-13T19:17:01Z\",\"status\":\"notStarted\",\"errors\":[]}", + "response": "{\"jobId\":\"f4f80052-5d6b-4e08-a4a3-a2df84fa6cc3\",\"lastUpdateDateTime\":\"2021-06-25T20:25:23Z\",\"createdDateTime\":\"2021-06-25T20:25:23Z\",\"expirationDateTime\":\"2021-06-26T20:25:23Z\",\"status\":\"notStarted\",\"errors\":[]}", "responseHeaders": { - "apim-request-id": "898db5a0-685a-4af9-9227-d317d963ca66", + "apim-request-id": "f4fbe5d9-705e-4300-990c-42966d151a2e", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:02 GMT", + "date": "Fri, 25 Jun 2021 20:25:23 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -78,78 +59,59 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/292cea8f-bdce-417b-adae-898d3812136d", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/f4f80052-5d6b-4e08-a4a3-a2df84fa6cc3", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"292cea8f-bdce-417b-adae-898d3812136d\",\"lastUpdateDateTime\":\"2021-05-12T19:17:01Z\",\"createdDateTime\":\"2021-05-12T19:17:01Z\",\"expirationDateTime\":\"2021-05-13T19:17:01Z\",\"status\":\"notStarted\",\"errors\":[]}", + "response": "{\"jobId\":\"f4f80052-5d6b-4e08-a4a3-a2df84fa6cc3\",\"lastUpdateDateTime\":\"2021-06-25T20:25:23Z\",\"createdDateTime\":\"2021-06-25T20:25:23Z\",\"expirationDateTime\":\"2021-06-26T20:25:23Z\",\"status\":\"notStarted\",\"errors\":[]}", "responseHeaders": { - "apim-request-id": "6f41bc19-9a62-4fd5-b56a-19599b73b192", + "apim-request-id": "3bc0d7d8-040a-40f5-8810-eaebbd96d198", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:04 GMT", + "date": "Fri, 25 Jun 2021 20:25:25 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" - } - }, - { - "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/292cea8f-bdce-417b-adae-898d3812136d", - "query": { - "$top": "20" - }, - "requestBody": null, - "status": 200, - "response": "{\"jobId\":\"292cea8f-bdce-417b-adae-898d3812136d\",\"lastUpdateDateTime\":\"2021-05-12T19:17:01Z\",\"createdDateTime\":\"2021-05-12T19:17:01Z\",\"expirationDateTime\":\"2021-05-13T19:17:01Z\",\"status\":\"notStarted\",\"errors\":[]}", - "responseHeaders": { - "apim-request-id": "d3254702-d867-4090-a59f-d9207e6c21f2", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:06 GMT", - "strict-transport-security": "max-age=31536000; includeSubDomains; preload", - "transfer-encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "9" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/292cea8f-bdce-417b-adae-898d3812136d", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/f4f80052-5d6b-4e08-a4a3-a2df84fa6cc3", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"292cea8f-bdce-417b-adae-898d3812136d\",\"lastUpdateDateTime\":\"2021-05-12T19:17:08Z\",\"createdDateTime\":\"2021-05-12T19:17:01Z\",\"expirationDateTime\":\"2021-05-13T19:17:01Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":12,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":0.89,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-03-01\"}}", + "response": "{\"jobId\":\"f4f80052-5d6b-4e08-a4a3-a2df84fa6cc3\",\"lastUpdateDateTime\":\"2021-06-25T20:25:26Z\",\"createdDateTime\":\"2021-06-25T20:25:23Z\",\"expirationDateTime\":\"2021-06-26T20:25:23Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":12,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":0.99,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", "responseHeaders": { - "apim-request-id": "e8d766dd-9ad1-4094-b0d9-e0842e89b43d", + "apim-request-id": "452a6e3c-643f-408e-9a30-a27d9b2cfd76", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:08 GMT", + "date": "Fri, 25 Jun 2021 20:25:27 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "41" + "x-envoy-upstream-service-time": "43" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/292cea8f-bdce-417b-adae-898d3812136d", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/f4f80052-5d6b-4e08-a4a3-a2df84fa6cc3", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"292cea8f-bdce-417b-adae-898d3812136d\",\"lastUpdateDateTime\":\"2021-05-12T19:17:08Z\",\"createdDateTime\":\"2021-05-12T19:17:01Z\",\"expirationDateTime\":\"2021-05-13T19:17:01Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":12,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":0.89,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-03-01\"}}", + "response": "{\"jobId\":\"f4f80052-5d6b-4e08-a4a3-a2df84fa6cc3\",\"lastUpdateDateTime\":\"2021-06-25T20:25:26Z\",\"createdDateTime\":\"2021-06-25T20:25:23Z\",\"expirationDateTime\":\"2021-06-26T20:25:23Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":12,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":0.99,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", "responseHeaders": { - "apim-request-id": "4788207a-61eb-49c7-9e0d-fa8c7bd8f166", + "apim-request-id": "f342b805-e80a-4907-a2d7-d23e8b6c3e69", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:08 GMT", + "date": "Fri, 25 Jun 2021 20:25:27 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "52" } } ], @@ -157,5 +119,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "9afc25f8e6d5cfec33f4967b3151ef3e" + "hash": "3a4d4b61449c4b62316d886bdd39c2af" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.json similarity index 60% rename from sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.json rename to sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.json index 0d11ed93c1f7..157f9346da9e 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.json @@ -2,7 +2,7 @@ "recordings": [ { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -10,28 +10,47 @@ "status": 202, "response": "", "responseHeaders": { - "apim-request-id": "fbbee406-24b3-4051-b477-056a9eb1a3bb", - "date": "Wed, 12 May 2021 19:16:58 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/25239dfe-21ad-4f7b-a2d0-367852a18819", + "apim-request-id": "ff628b46-8611-4911-9023-835be3864cfe", + "date": "Fri, 25 Jun 2021 20:25:18 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/365d484a-953d-4bdf-a2f3-cdf4110ea386", "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": "125" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/25239dfe-21ad-4f7b-a2d0-367852a18819", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/365d484a-953d-4bdf-a2f3-cdf4110ea386", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"25239dfe-21ad-4f7b-a2d0-367852a18819\",\"lastUpdateDateTime\":\"2021-05-12T19:16:58Z\",\"createdDateTime\":\"2021-05-12T19:16:58Z\",\"expirationDateTime\":\"2021-05-13T19:16:58Z\",\"status\":\"notStarted\",\"errors\":[]}", + "response": "{\"jobId\":\"365d484a-953d-4bdf-a2f3-cdf4110ea386\",\"lastUpdateDateTime\":\"2021-06-25T20:25:18Z\",\"createdDateTime\":\"2021-06-25T20:25:18Z\",\"expirationDateTime\":\"2021-06-26T20:25:18Z\",\"status\":\"notStarted\",\"errors\":[]}", "responseHeaders": { - "apim-request-id": "210e8d36-3a41-4e07-b28a-ed5b069b0314", + "apim-request-id": "06cb8997-7e69-4462-804f-beb6c9fdac2a", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:58 GMT", + "date": "Fri, 25 Jun 2021 20:25:18 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/365d484a-953d-4bdf-a2f3-cdf4110ea386", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"365d484a-953d-4bdf-a2f3-cdf4110ea386\",\"lastUpdateDateTime\":\"2021-06-25T20:25:18Z\",\"createdDateTime\":\"2021-06-25T20:25:18Z\",\"expirationDateTime\":\"2021-06-26T20:25:18Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "7f7ec717-9c22-4284-9cb7-b9a7e35f1684", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:25:18 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -40,17 +59,17 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/25239dfe-21ad-4f7b-a2d0-367852a18819", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/365d484a-953d-4bdf-a2f3-cdf4110ea386", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"25239dfe-21ad-4f7b-a2d0-367852a18819\",\"lastUpdateDateTime\":\"2021-05-12T19:16:58Z\",\"createdDateTime\":\"2021-05-12T19:16:58Z\",\"expirationDateTime\":\"2021-05-13T19:16:58Z\",\"status\":\"notStarted\",\"errors\":[]}", + "response": "{\"jobId\":\"365d484a-953d-4bdf-a2f3-cdf4110ea386\",\"lastUpdateDateTime\":\"2021-06-25T20:25:18Z\",\"createdDateTime\":\"2021-06-25T20:25:18Z\",\"expirationDateTime\":\"2021-06-26T20:25:18Z\",\"status\":\"notStarted\",\"errors\":[]}", "responseHeaders": { - "apim-request-id": "3f97c6fe-269b-49a6-b75b-13d1e0f5fc72", + "apim-request-id": "3e6be149-50ee-430a-8dea-c852f83ce88a", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:58 GMT", + "date": "Fri, 25 Jun 2021 20:25:20 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -59,40 +78,40 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/25239dfe-21ad-4f7b-a2d0-367852a18819", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/365d484a-953d-4bdf-a2f3-cdf4110ea386", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"25239dfe-21ad-4f7b-a2d0-367852a18819\",\"lastUpdateDateTime\":\"2021-05-12T19:16:59Z\",\"createdDateTime\":\"2021-05-12T19:16:58Z\",\"expirationDateTime\":\"2021-05-13T19:16:58Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":20,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":0.89,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-03-01\"}}", + "response": "{\"jobId\":\"365d484a-953d-4bdf-a2f3-cdf4110ea386\",\"lastUpdateDateTime\":\"2021-06-25T20:25:21Z\",\"createdDateTime\":\"2021-06-25T20:25:18Z\",\"expirationDateTime\":\"2021-06-26T20:25:18Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":20,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":0.99,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", "responseHeaders": { - "apim-request-id": "9a5d2a27-5173-48ef-85ef-4d2b0555a084", + "apim-request-id": "d17fa538-ddbd-42c3-8b3e-b5e211072b1d", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:00 GMT", + "date": "Fri, 25 Jun 2021 20:25:22 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "37" + "x-envoy-upstream-service-time": "50" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/25239dfe-21ad-4f7b-a2d0-367852a18819", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/365d484a-953d-4bdf-a2f3-cdf4110ea386", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"25239dfe-21ad-4f7b-a2d0-367852a18819\",\"lastUpdateDateTime\":\"2021-05-12T19:16:59Z\",\"createdDateTime\":\"2021-05-12T19:16:58Z\",\"expirationDateTime\":\"2021-05-13T19:16:58Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":20,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":0.89,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-03-01\"}}", + "response": "{\"jobId\":\"365d484a-953d-4bdf-a2f3-cdf4110ea386\",\"lastUpdateDateTime\":\"2021-06-25T20:25:21Z\",\"createdDateTime\":\"2021-06-25T20:25:18Z\",\"expirationDateTime\":\"2021-06-26T20:25:18Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":20,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":0.99,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", "responseHeaders": { - "apim-request-id": "e0edb12f-8878-4e45-8dae-94a22c2993c3", + "apim-request-id": "0a6f59cb-e1bd-44d3-9e77-b68222786924", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:17:00 GMT", + "date": "Fri, 25 Jun 2021 20:25:22 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "52" } } ], @@ -100,5 +119,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "eefcecc2b464d92bb1af5471b71f3611" + "hash": "d47462d4e9b472ba12db5c090d1db876" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_input_documents.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_input_documents.json new file mode 100644 index 000000000000..b46f2c72086e --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_input_documents.json @@ -0,0 +1,313 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"Patient does not suffer from high blood pressure.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Prescribed 100mg ibuprofen, taken twice daily.\",\"language\":\"en\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "7f90dad5-e070-46c1-86a5-0a594a378f99", + "date": "Fri, 25 Jun 2021 20:23:37 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/ce7f6b04-0e58-4f68-a337-afdbacdf71d2", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "205" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/ce7f6b04-0e58-4f68-a337-afdbacdf71d2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"ce7f6b04-0e58-4f68-a337-afdbacdf71d2\",\"lastUpdateDateTime\":\"2021-06-25T20:23:37Z\",\"createdDateTime\":\"2021-06-25T20:23:37Z\",\"expirationDateTime\":\"2021-06-26T20:23:37Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "e9b81186-38c9-4761-b3e3-9a7550923e41", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:37 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/ce7f6b04-0e58-4f68-a337-afdbacdf71d2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"ce7f6b04-0e58-4f68-a337-afdbacdf71d2\",\"lastUpdateDateTime\":\"2021-06-25T20:23:37Z\",\"createdDateTime\":\"2021-06-25T20:23:37Z\",\"expirationDateTime\":\"2021-06-26T20:23:37Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "b95374ba-02e1-4f38-9067-fbc318816a1f", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:37 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/ce7f6b04-0e58-4f68-a337-afdbacdf71d2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"ce7f6b04-0e58-4f68-a337-afdbacdf71d2\",\"lastUpdateDateTime\":\"2021-06-25T20:23:37Z\",\"createdDateTime\":\"2021-06-25T20:23:37Z\",\"expirationDateTime\":\"2021-06-26T20:23:37Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "a18a6aea-dd18-4cce-8332-2b43acc6ee25", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:39 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "5" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/ce7f6b04-0e58-4f68-a337-afdbacdf71d2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"ce7f6b04-0e58-4f68-a337-afdbacdf71d2\",\"lastUpdateDateTime\":\"2021-06-25T20:23:37Z\",\"createdDateTime\":\"2021-06-25T20:23:37Z\",\"expirationDateTime\":\"2021-06-26T20:23:37Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "eb7ab06e-48f4-472e-81ec-bc6e4b156d6d", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:41 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/ce7f6b04-0e58-4f68-a337-afdbacdf71d2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"ce7f6b04-0e58-4f68-a337-afdbacdf71d2\",\"lastUpdateDateTime\":\"2021-06-25T20:23:37Z\",\"createdDateTime\":\"2021-06-25T20:23:37Z\",\"expirationDateTime\":\"2021-06-26T20:23:37Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "48591300-539b-42c2-a3bf-b8e9d4029293", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:43 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "11" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/ce7f6b04-0e58-4f68-a337-afdbacdf71d2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"ce7f6b04-0e58-4f68-a337-afdbacdf71d2\",\"lastUpdateDateTime\":\"2021-06-25T20:23:37Z\",\"createdDateTime\":\"2021-06-25T20:23:37Z\",\"expirationDateTime\":\"2021-06-26T20:23:37Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "a45d87f0-f89f-4ce9-9ed0-120d140f361b", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:45 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "22" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/ce7f6b04-0e58-4f68-a337-afdbacdf71d2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"ce7f6b04-0e58-4f68-a337-afdbacdf71d2\",\"lastUpdateDateTime\":\"2021-06-25T20:23:37Z\",\"createdDateTime\":\"2021-06-25T20:23:37Z\",\"expirationDateTime\":\"2021-06-26T20:23:37Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "dd72263a-535a-4cf2-8c48-8fbb8c03eb54", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:47 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/ce7f6b04-0e58-4f68-a337-afdbacdf71d2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"ce7f6b04-0e58-4f68-a337-afdbacdf71d2\",\"lastUpdateDateTime\":\"2021-06-25T20:23:37Z\",\"createdDateTime\":\"2021-06-25T20:23:37Z\",\"expirationDateTime\":\"2021-06-26T20:23:37Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "74b325a8-5c1e-440c-a906-10072beffe2a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:49 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/ce7f6b04-0e58-4f68-a337-afdbacdf71d2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"ce7f6b04-0e58-4f68-a337-afdbacdf71d2\",\"lastUpdateDateTime\":\"2021-06-25T20:23:50Z\",\"createdDateTime\":\"2021-06-25T20:23:37Z\",\"expirationDateTime\":\"2021-06-26T20:23:37Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "af42b089-0d38-4f8f-9427-8b715bc4434e", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:51 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/ce7f6b04-0e58-4f68-a337-afdbacdf71d2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"ce7f6b04-0e58-4f68-a337-afdbacdf71d2\",\"lastUpdateDateTime\":\"2021-06-25T20:23:50Z\",\"createdDateTime\":\"2021-06-25T20:23:37Z\",\"expirationDateTime\":\"2021-06-26T20:23:37Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "f57cc558-d057-4463-bcdd-17e99fea36bf", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:53 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/ce7f6b04-0e58-4f68-a337-afdbacdf71d2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"ce7f6b04-0e58-4f68-a337-afdbacdf71d2\",\"lastUpdateDateTime\":\"2021-06-25T20:23:50Z\",\"createdDateTime\":\"2021-06-25T20:23:37Z\",\"expirationDateTime\":\"2021-06-26T20:23:37Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "5a0bd12f-fdf7-499d-9508-175e7d70a1a3", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:55 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/ce7f6b04-0e58-4f68-a337-afdbacdf71d2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"ce7f6b04-0e58-4f68-a337-afdbacdf71d2\",\"lastUpdateDateTime\":\"2021-06-25T20:23:50Z\",\"createdDateTime\":\"2021-06-25T20:23:37Z\",\"expirationDateTime\":\"2021-06-26T20:23:37Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "04286a96-e9da-4255-b96b-ad4e6c01e6b1", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:57 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "81" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/ce7f6b04-0e58-4f68-a337-afdbacdf71d2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"ce7f6b04-0e58-4f68-a337-afdbacdf71d2\",\"lastUpdateDateTime\":\"2021-06-25T20:23:50Z\",\"createdDateTime\":\"2021-06-25T20:23:37Z\",\"expirationDateTime\":\"2021-06-26T20:23:37Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "b2679436-2745-4320-a615-9a5b668b5251", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:59 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "18" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/ce7f6b04-0e58-4f68-a337-afdbacdf71d2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"ce7f6b04-0e58-4f68-a337-afdbacdf71d2\",\"lastUpdateDateTime\":\"2021-06-25T20:24:01Z\",\"createdDateTime\":\"2021-06-25T20:23:37Z\",\"expirationDateTime\":\"2021-06-26T20:23:37Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"offset\":29,\"length\":19,\"text\":\"high blood pressure\",\"category\":\"SymptomOrSign\",\"confidenceScore\":1.0,\"assertion\":{\"certainty\":\"negative\"},\"name\":\"Hypertensive disease\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020538\"},{\"dataSource\":\"AOD\",\"id\":\"0000023317\"},{\"dataSource\":\"BI\",\"id\":\"BI00001\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017493\"},{\"dataSource\":\"CCS\",\"id\":\"7.1\"},{\"dataSource\":\"CHV\",\"id\":\"0000015800\"},{\"dataSource\":\"COSTAR\",\"id\":\"397\"},{\"dataSource\":\"CSP\",\"id\":\"0571-5243\"},{\"dataSource\":\"CST\",\"id\":\"HYPERTENS\"},{\"dataSource\":\"DXP\",\"id\":\"U002034\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0000822\"},{\"dataSource\":\"ICD10\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"I10\"},{\"dataSource\":\"ICD9CM\",\"id\":\"997.91\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU035456\"},{\"dataSource\":\"ICPC2P\",\"id\":\"K85004\"},{\"dataSource\":\"LCH\",\"id\":\"U002317\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85063723\"},{\"dataSource\":\"LNC\",\"id\":\"LA14293-7\"},{\"dataSource\":\"MDR\",\"id\":\"10020772\"},{\"dataSource\":\"MEDCIN\",\"id\":\"33288\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"34\"},{\"dataSource\":\"MSH\",\"id\":\"D006973\"},{\"dataSource\":\"MTH\",\"id\":\"005\"},{\"dataSource\":\"MTHICD9\",\"id\":\"997.91\"},{\"dataSource\":\"NANDA-I\",\"id\":\"00905\"},{\"dataSource\":\"NCI\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E13785\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1908\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000458091\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3117\"},{\"dataSource\":\"NOC\",\"id\":\"060808\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU002068\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11000.06\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000686951\"},{\"dataSource\":\"PSY\",\"id\":\"23830\"},{\"dataSource\":\"RCD\",\"id\":\"XE0Ub\"},{\"dataSource\":\"SNM\",\"id\":\"F-70700\"},{\"dataSource\":\"SNMI\",\"id\":\"D3-02000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"38341003\"},{\"dataSource\":\"WHO\",\"id\":\"0210\"}]}],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/1/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "11f83df0-5189-4e08-a10d-d564c0e677a6", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:02 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "67" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/ce7f6b04-0e58-4f68-a337-afdbacdf71d2", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"ce7f6b04-0e58-4f68-a337-afdbacdf71d2\",\"lastUpdateDateTime\":\"2021-06-25T20:24:01Z\",\"createdDateTime\":\"2021-06-25T20:23:37Z\",\"expirationDateTime\":\"2021-06-26T20:23:37Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"offset\":29,\"length\":19,\"text\":\"high blood pressure\",\"category\":\"SymptomOrSign\",\"confidenceScore\":1.0,\"assertion\":{\"certainty\":\"negative\"},\"name\":\"Hypertensive disease\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020538\"},{\"dataSource\":\"AOD\",\"id\":\"0000023317\"},{\"dataSource\":\"BI\",\"id\":\"BI00001\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017493\"},{\"dataSource\":\"CCS\",\"id\":\"7.1\"},{\"dataSource\":\"CHV\",\"id\":\"0000015800\"},{\"dataSource\":\"COSTAR\",\"id\":\"397\"},{\"dataSource\":\"CSP\",\"id\":\"0571-5243\"},{\"dataSource\":\"CST\",\"id\":\"HYPERTENS\"},{\"dataSource\":\"DXP\",\"id\":\"U002034\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0000822\"},{\"dataSource\":\"ICD10\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"I10\"},{\"dataSource\":\"ICD9CM\",\"id\":\"997.91\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU035456\"},{\"dataSource\":\"ICPC2P\",\"id\":\"K85004\"},{\"dataSource\":\"LCH\",\"id\":\"U002317\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85063723\"},{\"dataSource\":\"LNC\",\"id\":\"LA14293-7\"},{\"dataSource\":\"MDR\",\"id\":\"10020772\"},{\"dataSource\":\"MEDCIN\",\"id\":\"33288\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"34\"},{\"dataSource\":\"MSH\",\"id\":\"D006973\"},{\"dataSource\":\"MTH\",\"id\":\"005\"},{\"dataSource\":\"MTHICD9\",\"id\":\"997.91\"},{\"dataSource\":\"NANDA-I\",\"id\":\"00905\"},{\"dataSource\":\"NCI\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E13785\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1908\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000458091\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3117\"},{\"dataSource\":\"NOC\",\"id\":\"060808\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU002068\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11000.06\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000686951\"},{\"dataSource\":\"PSY\",\"id\":\"23830\"},{\"dataSource\":\"RCD\",\"id\":\"XE0Ub\"},{\"dataSource\":\"SNM\",\"id\":\"F-70700\"},{\"dataSource\":\"SNMI\",\"id\":\"D3-02000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"38341003\"},{\"dataSource\":\"WHO\",\"id\":\"0210\"}]}],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/1/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "083cce51-32ef-43e5-bf6f-69785ce3ffa4", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:03 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "57" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "6552401251c2054ad876d83d9f36d259" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_input_strings.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_input_strings.json new file mode 100644 index 000000000000..6f3aa8a1d21a --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_input_strings.json @@ -0,0 +1,275 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"Patient does not suffer from high blood pressure.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"Prescribed 100mg ibuprofen, taken twice daily.\",\"language\":\"en\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "97cab840-3182-4381-b44a-843c58220094", + "date": "Fri, 25 Jun 2021 20:23:12 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/01cff468-a700-4009-ba13-5a3f22804dbb", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "192" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/01cff468-a700-4009-ba13-5a3f22804dbb", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01cff468-a700-4009-ba13-5a3f22804dbb\",\"lastUpdateDateTime\":\"2021-06-25T20:23:13Z\",\"createdDateTime\":\"2021-06-25T20:23:12Z\",\"expirationDateTime\":\"2021-06-26T20:23:12Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "6c52dffd-d30a-415c-8930-043b06154932", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:12 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/01cff468-a700-4009-ba13-5a3f22804dbb", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01cff468-a700-4009-ba13-5a3f22804dbb\",\"lastUpdateDateTime\":\"2021-06-25T20:23:13Z\",\"createdDateTime\":\"2021-06-25T20:23:12Z\",\"expirationDateTime\":\"2021-06-26T20:23:12Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "ca52a932-0287-4e70-ba6b-cc7aba4e8604", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:12 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/01cff468-a700-4009-ba13-5a3f22804dbb", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01cff468-a700-4009-ba13-5a3f22804dbb\",\"lastUpdateDateTime\":\"2021-06-25T20:23:13Z\",\"createdDateTime\":\"2021-06-25T20:23:12Z\",\"expirationDateTime\":\"2021-06-26T20:23:12Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "2880a094-e0f7-4937-8439-ebeed047332a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:14 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/01cff468-a700-4009-ba13-5a3f22804dbb", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01cff468-a700-4009-ba13-5a3f22804dbb\",\"lastUpdateDateTime\":\"2021-06-25T20:23:13Z\",\"createdDateTime\":\"2021-06-25T20:23:12Z\",\"expirationDateTime\":\"2021-06-26T20:23:12Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "bfe9182e-1644-4555-8e50-120d453e191d", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:16 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/01cff468-a700-4009-ba13-5a3f22804dbb", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01cff468-a700-4009-ba13-5a3f22804dbb\",\"lastUpdateDateTime\":\"2021-06-25T20:23:18Z\",\"createdDateTime\":\"2021-06-25T20:23:12Z\",\"expirationDateTime\":\"2021-06-26T20:23:12Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "7e1dde42-0b7b-46fa-8395-91183b3d1eb3", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:18 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/01cff468-a700-4009-ba13-5a3f22804dbb", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01cff468-a700-4009-ba13-5a3f22804dbb\",\"lastUpdateDateTime\":\"2021-06-25T20:23:18Z\",\"createdDateTime\":\"2021-06-25T20:23:12Z\",\"expirationDateTime\":\"2021-06-26T20:23:12Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "f721c60e-3464-45c5-9e07-bb18b1de5d90", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:20 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/01cff468-a700-4009-ba13-5a3f22804dbb", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01cff468-a700-4009-ba13-5a3f22804dbb\",\"lastUpdateDateTime\":\"2021-06-25T20:23:18Z\",\"createdDateTime\":\"2021-06-25T20:23:12Z\",\"expirationDateTime\":\"2021-06-26T20:23:12Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "1d154f17-39c9-40fb-b6d3-4c8698ae6c16", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:22 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/01cff468-a700-4009-ba13-5a3f22804dbb", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01cff468-a700-4009-ba13-5a3f22804dbb\",\"lastUpdateDateTime\":\"2021-06-25T20:23:18Z\",\"createdDateTime\":\"2021-06-25T20:23:12Z\",\"expirationDateTime\":\"2021-06-26T20:23:12Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "7b25e6af-e534-498b-a06b-ccee421396b5", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:24 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/01cff468-a700-4009-ba13-5a3f22804dbb", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01cff468-a700-4009-ba13-5a3f22804dbb\",\"lastUpdateDateTime\":\"2021-06-25T20:23:18Z\",\"createdDateTime\":\"2021-06-25T20:23:12Z\",\"expirationDateTime\":\"2021-06-26T20:23:12Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "dc6aa7b4-2e2d-4425-898d-4c68ddb90adb", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:27 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "95" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/01cff468-a700-4009-ba13-5a3f22804dbb", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01cff468-a700-4009-ba13-5a3f22804dbb\",\"lastUpdateDateTime\":\"2021-06-25T20:23:18Z\",\"createdDateTime\":\"2021-06-25T20:23:12Z\",\"expirationDateTime\":\"2021-06-26T20:23:12Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "4af41f28-a57c-44fd-9c43-aa571a422430", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:29 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "30" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/01cff468-a700-4009-ba13-5a3f22804dbb", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01cff468-a700-4009-ba13-5a3f22804dbb\",\"lastUpdateDateTime\":\"2021-06-25T20:23:18Z\",\"createdDateTime\":\"2021-06-25T20:23:12Z\",\"expirationDateTime\":\"2021-06-26T20:23:12Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "fb30a096-5e72-403d-b53f-efc3d124e964", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:31 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "37" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/01cff468-a700-4009-ba13-5a3f22804dbb", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01cff468-a700-4009-ba13-5a3f22804dbb\",\"lastUpdateDateTime\":\"2021-06-25T20:23:33Z\",\"createdDateTime\":\"2021-06-25T20:23:12Z\",\"expirationDateTime\":\"2021-06-26T20:23:12Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":29,\"length\":19,\"text\":\"high blood pressure\",\"category\":\"SymptomOrSign\",\"confidenceScore\":1.0,\"assertion\":{\"certainty\":\"negative\"},\"name\":\"Hypertensive disease\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020538\"},{\"dataSource\":\"AOD\",\"id\":\"0000023317\"},{\"dataSource\":\"BI\",\"id\":\"BI00001\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017493\"},{\"dataSource\":\"CCS\",\"id\":\"7.1\"},{\"dataSource\":\"CHV\",\"id\":\"0000015800\"},{\"dataSource\":\"COSTAR\",\"id\":\"397\"},{\"dataSource\":\"CSP\",\"id\":\"0571-5243\"},{\"dataSource\":\"CST\",\"id\":\"HYPERTENS\"},{\"dataSource\":\"DXP\",\"id\":\"U002034\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0000822\"},{\"dataSource\":\"ICD10\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"I10\"},{\"dataSource\":\"ICD9CM\",\"id\":\"997.91\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU035456\"},{\"dataSource\":\"ICPC2P\",\"id\":\"K85004\"},{\"dataSource\":\"LCH\",\"id\":\"U002317\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85063723\"},{\"dataSource\":\"LNC\",\"id\":\"LA14293-7\"},{\"dataSource\":\"MDR\",\"id\":\"10020772\"},{\"dataSource\":\"MEDCIN\",\"id\":\"33288\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"34\"},{\"dataSource\":\"MSH\",\"id\":\"D006973\"},{\"dataSource\":\"MTH\",\"id\":\"005\"},{\"dataSource\":\"MTHICD9\",\"id\":\"997.91\"},{\"dataSource\":\"NANDA-I\",\"id\":\"00905\"},{\"dataSource\":\"NCI\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E13785\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1908\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000458091\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3117\"},{\"dataSource\":\"NOC\",\"id\":\"060808\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU002068\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11000.06\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000686951\"},{\"dataSource\":\"PSY\",\"id\":\"23830\"},{\"dataSource\":\"RCD\",\"id\":\"XE0Ub\"},{\"dataSource\":\"SNM\",\"id\":\"F-70700\"},{\"dataSource\":\"SNMI\",\"id\":\"D3-02000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"38341003\"},{\"dataSource\":\"WHO\",\"id\":\"0210\"}]}],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/1/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "93bede66-b06e-4404-8e8b-3ead0097a282", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:33 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "64" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/01cff468-a700-4009-ba13-5a3f22804dbb", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"01cff468-a700-4009-ba13-5a3f22804dbb\",\"lastUpdateDateTime\":\"2021-06-25T20:23:33Z\",\"createdDateTime\":\"2021-06-25T20:23:12Z\",\"expirationDateTime\":\"2021-06-26T20:23:12Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[{\"offset\":29,\"length\":19,\"text\":\"high blood pressure\",\"category\":\"SymptomOrSign\",\"confidenceScore\":1.0,\"assertion\":{\"certainty\":\"negative\"},\"name\":\"Hypertensive disease\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020538\"},{\"dataSource\":\"AOD\",\"id\":\"0000023317\"},{\"dataSource\":\"BI\",\"id\":\"BI00001\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017493\"},{\"dataSource\":\"CCS\",\"id\":\"7.1\"},{\"dataSource\":\"CHV\",\"id\":\"0000015800\"},{\"dataSource\":\"COSTAR\",\"id\":\"397\"},{\"dataSource\":\"CSP\",\"id\":\"0571-5243\"},{\"dataSource\":\"CST\",\"id\":\"HYPERTENS\"},{\"dataSource\":\"DXP\",\"id\":\"U002034\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0000822\"},{\"dataSource\":\"ICD10\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"I10\"},{\"dataSource\":\"ICD9CM\",\"id\":\"997.91\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU035456\"},{\"dataSource\":\"ICPC2P\",\"id\":\"K85004\"},{\"dataSource\":\"LCH\",\"id\":\"U002317\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85063723\"},{\"dataSource\":\"LNC\",\"id\":\"LA14293-7\"},{\"dataSource\":\"MDR\",\"id\":\"10020772\"},{\"dataSource\":\"MEDCIN\",\"id\":\"33288\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"34\"},{\"dataSource\":\"MSH\",\"id\":\"D006973\"},{\"dataSource\":\"MTH\",\"id\":\"005\"},{\"dataSource\":\"MTHICD9\",\"id\":\"997.91\"},{\"dataSource\":\"NANDA-I\",\"id\":\"00905\"},{\"dataSource\":\"NCI\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E13785\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1908\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000458091\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3117\"},{\"dataSource\":\"NOC\",\"id\":\"060808\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU002068\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11000.06\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000686951\"},{\"dataSource\":\"PSY\",\"id\":\"23830\"},{\"dataSource\":\"RCD\",\"id\":\"XE0Ub\"},{\"dataSource\":\"SNM\",\"id\":\"F-70700\"},{\"dataSource\":\"SNMI\",\"id\":\"D3-02000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"38341003\"},{\"dataSource\":\"WHO\",\"id\":\"0210\"}]}],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/1/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "c6c25560-1147-4062-a38c-e93ad1b4f481", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:23:33 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "69" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "3539cc6e492731ad933d3d63d2719d0e" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_invalid_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint.json similarity index 51% rename from sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_invalid_language_hint.json rename to sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint.json index fe6968344d06..8da5f2296d80 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_invalid_language_hint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint.json @@ -2,7 +2,7 @@ "recordings": [ { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -10,47 +10,47 @@ "status": 202, "response": "", "responseHeaders": { - "apim-request-id": "b563b410-6c1d-4d1d-a635-3c1293be4cc0", - "date": "Wed, 12 May 2021 19:16:48 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/65dcf052-dee9-4542-b2fd-f67c3d9a639f", + "apim-request-id": "1aa0f28c-5a19-402a-90a7-0e525be04a2e", + "date": "Fri, 25 Jun 2021 20:25:02 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/c67c868f-6cfb-49d5-9c73-5a244a2e307f", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "65" + "x-envoy-upstream-service-time": "128" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/65dcf052-dee9-4542-b2fd-f67c3d9a639f", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/c67c868f-6cfb-49d5-9c73-5a244a2e307f", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"65dcf052-dee9-4542-b2fd-f67c3d9a639f\",\"lastUpdateDateTime\":\"2021-05-12T19:16:48Z\",\"createdDateTime\":\"2021-05-12T19:16:48Z\",\"expirationDateTime\":\"2021-05-13T19:16:48Z\",\"status\":\"notStarted\",\"errors\":[]}", + "response": "{\"jobId\":\"c67c868f-6cfb-49d5-9c73-5a244a2e307f\",\"lastUpdateDateTime\":\"2021-06-25T20:25:02Z\",\"createdDateTime\":\"2021-06-25T20:25:02Z\",\"expirationDateTime\":\"2021-06-26T20:25:02Z\",\"status\":\"notStarted\",\"errors\":[]}", "responseHeaders": { - "apim-request-id": "e311ddee-9016-4124-819c-ebf9d423a03b", + "apim-request-id": "484ab914-fa52-4ce2-882f-725cabb96756", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:48 GMT", + "date": "Fri, 25 Jun 2021 20:25:02 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": "135" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/65dcf052-dee9-4542-b2fd-f67c3d9a639f", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/c67c868f-6cfb-49d5-9c73-5a244a2e307f", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"65dcf052-dee9-4542-b2fd-f67c3d9a639f\",\"lastUpdateDateTime\":\"2021-05-12T19:16:48Z\",\"createdDateTime\":\"2021-05-12T19:16:48Z\",\"expirationDateTime\":\"2021-05-13T19:16:48Z\",\"status\":\"notStarted\",\"errors\":[]}", + "response": "{\"jobId\":\"c67c868f-6cfb-49d5-9c73-5a244a2e307f\",\"lastUpdateDateTime\":\"2021-06-25T20:25:02Z\",\"createdDateTime\":\"2021-06-25T20:25:02Z\",\"expirationDateTime\":\"2021-06-26T20:25:02Z\",\"status\":\"notStarted\",\"errors\":[]}", "responseHeaders": { - "apim-request-id": "4a3a206e-63e2-4389-a9b5-ca68f9ddd456", + "apim-request-id": "4bc94e9d-3cc3-4738-b2df-c282c620d84c", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:48 GMT", + "date": "Fri, 25 Jun 2021 20:25:02 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -59,40 +59,40 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/65dcf052-dee9-4542-b2fd-f67c3d9a639f", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/c67c868f-6cfb-49d5-9c73-5a244a2e307f", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"65dcf052-dee9-4542-b2fd-f67c3d9a639f\",\"lastUpdateDateTime\":\"2021-05-12T19:16:49Z\",\"createdDateTime\":\"2021-05-12T19:16:48Z\",\"expirationDateTime\":\"2021-05-13T19:16:48Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}}],\"modelVersion\":\"2021-03-01\"}}", + "response": "{\"jobId\":\"c67c868f-6cfb-49d5-9c73-5a244a2e307f\",\"lastUpdateDateTime\":\"2021-06-25T20:25:03Z\",\"createdDateTime\":\"2021-06-25T20:25:02Z\",\"expirationDateTime\":\"2021-06-26T20:25:02Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}}],\"modelVersion\":\"2021-05-15\"}}", "responseHeaders": { - "apim-request-id": "c579856b-cec4-4424-9628-ef1005b0ba5f", + "apim-request-id": "379fb1fb-5dfd-4e3f-875e-3afcb10cb3f0", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:50 GMT", + "date": "Fri, 25 Jun 2021 20:25:04 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "46" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/65dcf052-dee9-4542-b2fd-f67c3d9a639f", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/c67c868f-6cfb-49d5-9c73-5a244a2e307f", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"65dcf052-dee9-4542-b2fd-f67c3d9a639f\",\"lastUpdateDateTime\":\"2021-05-12T19:16:49Z\",\"createdDateTime\":\"2021-05-12T19:16:48Z\",\"expirationDateTime\":\"2021-05-13T19:16:48Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}}],\"modelVersion\":\"2021-03-01\"}}", + "response": "{\"jobId\":\"c67c868f-6cfb-49d5-9c73-5a244a2e307f\",\"lastUpdateDateTime\":\"2021-06-25T20:25:03Z\",\"createdDateTime\":\"2021-06-25T20:25:02Z\",\"expirationDateTime\":\"2021-06-26T20:25:02Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"0\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}}],\"modelVersion\":\"2021-05-15\"}}", "responseHeaders": { - "apim-request-id": "bb51a1a9-821b-41d1-9725-4a1ed28392e3", + "apim-request-id": "7c7de9b1-2110-4a99-a852-179546197c61", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:50 GMT", + "date": "Fri, 25 Jun 2021 20:25:04 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "53" } } ], @@ -100,5 +100,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "950803c07856400abdae1e4fba405f38" + "hash": "7fe28fb1cf9568039be008ba4f6aae88" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.json similarity index 51% rename from sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.json rename to sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.json index 887657183080..db4da74737a5 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.json @@ -2,7 +2,7 @@ "recordings": [ { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -10,47 +10,47 @@ "status": 202, "response": "", "responseHeaders": { - "apim-request-id": "66ee2606-2f8a-4a8f-be24-297661e90f25", - "date": "Wed, 12 May 2021 19:16:50 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/9daff497-b80a-4f77-b276-8e7eaf71b856", + "apim-request-id": "0dc2d970-a71c-4519-a6af-6b9d50a3f708", + "date": "Fri, 25 Jun 2021 20:25:04 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/45aca8f4-2169-4d71-90a0-15be76730787", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "83" + "x-envoy-upstream-service-time": "162" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/9daff497-b80a-4f77-b276-8e7eaf71b856", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/45aca8f4-2169-4d71-90a0-15be76730787", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"9daff497-b80a-4f77-b276-8e7eaf71b856\",\"lastUpdateDateTime\":\"2021-05-12T19:16:51Z\",\"createdDateTime\":\"2021-05-12T19:16:51Z\",\"expirationDateTime\":\"2021-05-13T19:16:51Z\",\"status\":\"notStarted\",\"errors\":[]}", + "response": "{\"jobId\":\"45aca8f4-2169-4d71-90a0-15be76730787\",\"lastUpdateDateTime\":\"2021-06-25T20:25:05Z\",\"createdDateTime\":\"2021-06-25T20:25:05Z\",\"expirationDateTime\":\"2021-06-26T20:25:05Z\",\"status\":\"notStarted\",\"errors\":[]}", "responseHeaders": { - "apim-request-id": "5a46ea19-28f2-4196-b14b-49b36e0ae1c8", + "apim-request-id": "e893bd6e-b2ac-49cf-949b-4adbb2818f2e", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:51 GMT", + "date": "Fri, 25 Jun 2021 20:25:04 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-envoy-upstream-service-time": "7" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/9daff497-b80a-4f77-b276-8e7eaf71b856", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/45aca8f4-2169-4d71-90a0-15be76730787", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"9daff497-b80a-4f77-b276-8e7eaf71b856\",\"lastUpdateDateTime\":\"2021-05-12T19:16:51Z\",\"createdDateTime\":\"2021-05-12T19:16:51Z\",\"expirationDateTime\":\"2021-05-13T19:16:51Z\",\"status\":\"notStarted\",\"errors\":[]}", + "response": "{\"jobId\":\"45aca8f4-2169-4d71-90a0-15be76730787\",\"lastUpdateDateTime\":\"2021-06-25T20:25:05Z\",\"createdDateTime\":\"2021-06-25T20:25:05Z\",\"expirationDateTime\":\"2021-06-26T20:25:05Z\",\"status\":\"notStarted\",\"errors\":[]}", "responseHeaders": { - "apim-request-id": "858a6efb-dd36-4d41-8ceb-01aea9a87a4c", + "apim-request-id": "3c392991-204d-474e-a316-23273cd97a73", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:51 GMT", + "date": "Fri, 25 Jun 2021 20:25:04 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -59,40 +59,40 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/9daff497-b80a-4f77-b276-8e7eaf71b856", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/45aca8f4-2169-4d71-90a0-15be76730787", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"9daff497-b80a-4f77-b276-8e7eaf71b856\",\"lastUpdateDateTime\":\"2021-05-12T19:16:52Z\",\"createdDateTime\":\"2021-05-12T19:16:51Z\",\"expirationDateTime\":\"2021-05-13T19:16:51Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}}],\"modelVersion\":\"2021-03-01\"}}", + "response": "{\"jobId\":\"45aca8f4-2169-4d71-90a0-15be76730787\",\"lastUpdateDateTime\":\"2021-06-25T20:25:06Z\",\"createdDateTime\":\"2021-06-25T20:25:05Z\",\"expirationDateTime\":\"2021-06-26T20:25:05Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}}],\"modelVersion\":\"2021-05-15\"}}", "responseHeaders": { - "apim-request-id": "525701e7-e7f3-4060-b24f-01ed14f42794", + "apim-request-id": "441420e2-8262-489c-b15d-6af17d6abb2f", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:53 GMT", + "date": "Fri, 25 Jun 2021 20:25:07 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "659" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/9daff497-b80a-4f77-b276-8e7eaf71b856", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/45aca8f4-2169-4d71-90a0-15be76730787", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"9daff497-b80a-4f77-b276-8e7eaf71b856\",\"lastUpdateDateTime\":\"2021-05-12T19:16:52Z\",\"createdDateTime\":\"2021-05-12T19:16:51Z\",\"expirationDateTime\":\"2021-05-13T19:16:51Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}}],\"modelVersion\":\"2021-03-01\"}}", + "response": "{\"jobId\":\"45aca8f4-2169-4d71-90a0-15be76730787\",\"lastUpdateDateTime\":\"2021-06-25T20:25:06Z\",\"createdDateTime\":\"2021-06-25T20:25:05Z\",\"expirationDateTime\":\"2021-06-26T20:25:05Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}}],\"modelVersion\":\"2021-05-15\"}}", "responseHeaders": { - "apim-request-id": "29aef2cf-e0d1-48a0-bf74-a87dde93b422", + "apim-request-id": "a2ae36ce-e3ca-4f9c-a7d2-582c1d89271e", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:53 GMT", + "date": "Fri, 25 Jun 2021 20:25:07 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "38" } } ], @@ -100,5 +100,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "0641fc54f2fe5df899ff918a659bffde" + "hash": "340cd4ff03c6dde812d00ee817fd5d2d" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_operation_metadata.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_operation_metadata.json new file mode 100644 index 000000000000..e9dfb504b966 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_operation_metadata.json @@ -0,0 +1,104 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"Patient does not suffer from high blood pressure.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"Prescribed 100mg ibuprofen, taken twice daily.\",\"language\":\"en\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "3908ae43-0799-4c2b-9ce4-3eb0e6230743", + "date": "Fri, 25 Jun 2021 20:25:13 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/5494101e-ebfd-4480-93ef-44198be522f4", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "141" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/5494101e-ebfd-4480-93ef-44198be522f4", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"5494101e-ebfd-4480-93ef-44198be522f4\",\"lastUpdateDateTime\":\"2021-06-25T20:25:13Z\",\"createdDateTime\":\"2021-06-25T20:25:13Z\",\"expirationDateTime\":\"2021-06-26T20:25:13Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "466dc2a0-2728-4d15-a22a-36b8613cc462", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:25:14 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/5494101e-ebfd-4480-93ef-44198be522f4", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"5494101e-ebfd-4480-93ef-44198be522f4\",\"lastUpdateDateTime\":\"2021-06-25T20:25:13Z\",\"createdDateTime\":\"2021-06-25T20:25:13Z\",\"expirationDateTime\":\"2021-06-26T20:25:13Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "128822ee-e1e9-4e95-b3b5-39e2c0bb4908", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:25:14 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/5494101e-ebfd-4480-93ef-44198be522f4", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"5494101e-ebfd-4480-93ef-44198be522f4\",\"lastUpdateDateTime\":\"2021-06-25T20:25:13Z\",\"createdDateTime\":\"2021-06-25T20:25:13Z\",\"expirationDateTime\":\"2021-06-26T20:25:13Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "db5713e2-22d1-454d-a536-ac1694c9cfb1", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:25:16 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/5494101e-ebfd-4480-93ef-44198be522f4", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"5494101e-ebfd-4480-93ef-44198be522f4\",\"lastUpdateDateTime\":\"2021-06-25T20:25:16Z\",\"createdDateTime\":\"2021-06-25T20:25:13Z\",\"expirationDateTime\":\"2021-06-26T20:25:13Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"offset\":29,\"length\":19,\"text\":\"high blood pressure\",\"category\":\"SymptomOrSign\",\"confidenceScore\":1.0,\"assertion\":{\"certainty\":\"negative\"},\"name\":\"Hypertensive disease\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020538\"},{\"dataSource\":\"AOD\",\"id\":\"0000023317\"},{\"dataSource\":\"BI\",\"id\":\"BI00001\"},{\"dataSource\":\"CCPSS\",\"id\":\"1017493\"},{\"dataSource\":\"CCS\",\"id\":\"7.1\"},{\"dataSource\":\"CHV\",\"id\":\"0000015800\"},{\"dataSource\":\"COSTAR\",\"id\":\"397\"},{\"dataSource\":\"CSP\",\"id\":\"0571-5243\"},{\"dataSource\":\"CST\",\"id\":\"HYPERTENS\"},{\"dataSource\":\"DXP\",\"id\":\"U002034\"},{\"dataSource\":\"HPO\",\"id\":\"HP:0000822\"},{\"dataSource\":\"ICD10\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10AM\",\"id\":\"I10-I15.9\"},{\"dataSource\":\"ICD10CM\",\"id\":\"I10\"},{\"dataSource\":\"ICD9CM\",\"id\":\"997.91\"},{\"dataSource\":\"ICPC2ICD10ENG\",\"id\":\"MTHU035456\"},{\"dataSource\":\"ICPC2P\",\"id\":\"K85004\"},{\"dataSource\":\"LCH\",\"id\":\"U002317\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh85063723\"},{\"dataSource\":\"LNC\",\"id\":\"LA14293-7\"},{\"dataSource\":\"MDR\",\"id\":\"10020772\"},{\"dataSource\":\"MEDCIN\",\"id\":\"33288\"},{\"dataSource\":\"MEDLINEPLUS\",\"id\":\"34\"},{\"dataSource\":\"MSH\",\"id\":\"D006973\"},{\"dataSource\":\"MTH\",\"id\":\"005\"},{\"dataSource\":\"MTHICD9\",\"id\":\"997.91\"},{\"dataSource\":\"NANDA-I\",\"id\":\"00905\"},{\"dataSource\":\"NCI\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CPTAC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_CTCAE\",\"id\":\"E13785\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"1908\"},{\"dataSource\":\"NCI_GDC\",\"id\":\"C3117\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000458091\"},{\"dataSource\":\"NCI_NICHD\",\"id\":\"C3117\"},{\"dataSource\":\"NOC\",\"id\":\"060808\"},{\"dataSource\":\"OMIM\",\"id\":\"MTHU002068\"},{\"dataSource\":\"PCDS\",\"id\":\"PRB_11000.06\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000686951\"},{\"dataSource\":\"PSY\",\"id\":\"23830\"},{\"dataSource\":\"RCD\",\"id\":\"XE0Ub\"},{\"dataSource\":\"SNM\",\"id\":\"F-70700\"},{\"dataSource\":\"SNMI\",\"id\":\"D3-02000\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"38341003\"},{\"dataSource\":\"WHO\",\"id\":\"0210\"}]}],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/1/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/1/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "9453b0f2-a765-4d78-96b5-7926339b6410", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:25:18 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "59" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "e91e7a3ec01d0a9dd6b8e5f9fd5ddc80" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.json new file mode 100644 index 000000000000..c5e5ef879137 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.json @@ -0,0 +1,104 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"one\"},{\"id\":\"2\",\"text\":\"two\"},{\"id\":\"3\",\"text\":\"three\"},{\"id\":\"4\",\"text\":\"four\"},{\"id\":\"5\",\"text\":\"five\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "238b0d01-4bf5-44df-8ba3-28cc3229558c", + "date": "Fri, 25 Jun 2021 20:24:21 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/69a87c99-5101-4499-a02a-a6704686dd08", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "298" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/69a87c99-5101-4499-a02a-a6704686dd08", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"69a87c99-5101-4499-a02a-a6704686dd08\",\"lastUpdateDateTime\":\"2021-06-25T20:24:22Z\",\"createdDateTime\":\"2021-06-25T20:24:22Z\",\"expirationDateTime\":\"2021-06-26T20:24:22Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "3eddd4d4-e01f-48cc-90c7-d074cdc8ccd6", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:22 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/69a87c99-5101-4499-a02a-a6704686dd08", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"69a87c99-5101-4499-a02a-a6704686dd08\",\"lastUpdateDateTime\":\"2021-06-25T20:24:22Z\",\"createdDateTime\":\"2021-06-25T20:24:22Z\",\"expirationDateTime\":\"2021-06-26T20:24:22Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "36ed7b08-90f9-4189-89ec-a0bdc171ab29", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:22 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/69a87c99-5101-4499-a02a-a6704686dd08", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"69a87c99-5101-4499-a02a-a6704686dd08\",\"lastUpdateDateTime\":\"2021-06-25T20:24:23Z\",\"createdDateTime\":\"2021-06-25T20:24:22Z\",\"expirationDateTime\":\"2021-06-26T20:24:22Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"offset\":0,\"length\":4,\"text\":\"five\",\"category\":\"Dosage\",\"confidenceScore\":0.58}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "6cf6f63f-c088-458a-9097-5a28514fd7fb", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:24 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "173" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/69a87c99-5101-4499-a02a-a6704686dd08", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"69a87c99-5101-4499-a02a-a6704686dd08\",\"lastUpdateDateTime\":\"2021-06-25T20:24:23Z\",\"createdDateTime\":\"2021-06-25T20:24:22Z\",\"expirationDateTime\":\"2021-06-26T20:24:22Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"4\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"5\",\"entities\":[{\"offset\":0,\"length\":4,\"text\":\"five\",\"category\":\"Dosage\",\"confidenceScore\":0.58}],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "0b2b8152-43ab-46ba-880f-dcc1d9c00b99", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:24 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "91" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "4612eff1b1a5db435331459355dbeb93" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.json similarity index 53% rename from sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.json rename to sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.json index 268282af242b..387c417f05d8 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.json @@ -2,7 +2,7 @@ "recordings": [ { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -10,28 +10,28 @@ "status": 202, "response": "", "responseHeaders": { - "apim-request-id": "c07f6978-be6f-4539-9b61-6c643566f321", - "date": "Wed, 12 May 2021 19:16:33 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/0f92681a-ebd8-4cee-98e4-851f14241401", + "apim-request-id": "7fe8f12f-2654-4b8e-b357-63aa224fa979", + "date": "Fri, 25 Jun 2021 20:24:24 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/8bd36f85-6c40-4f35-93a7-89a1cf2970c5", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "213" + "x-envoy-upstream-service-time": "237" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/0f92681a-ebd8-4cee-98e4-851f14241401", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/8bd36f85-6c40-4f35-93a7-89a1cf2970c5", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"0f92681a-ebd8-4cee-98e4-851f14241401\",\"lastUpdateDateTime\":\"2021-05-12T19:16:34Z\",\"createdDateTime\":\"2021-05-12T19:16:33Z\",\"expirationDateTime\":\"2021-05-13T19:16:33Z\",\"status\":\"notStarted\",\"errors\":[]}", + "response": "{\"jobId\":\"8bd36f85-6c40-4f35-93a7-89a1cf2970c5\",\"lastUpdateDateTime\":\"2021-06-25T20:24:25Z\",\"createdDateTime\":\"2021-06-25T20:24:25Z\",\"expirationDateTime\":\"2021-06-26T20:24:25Z\",\"status\":\"notStarted\",\"errors\":[]}", "responseHeaders": { - "apim-request-id": "15d70ad0-40ca-4aab-902d-80e9c919b0c0", + "apim-request-id": "c6abad41-f5c8-45ed-a96f-1689c027bcd8", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:33 GMT", + "date": "Fri, 25 Jun 2021 20:24:24 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -40,59 +40,59 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/0f92681a-ebd8-4cee-98e4-851f14241401", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/8bd36f85-6c40-4f35-93a7-89a1cf2970c5", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"0f92681a-ebd8-4cee-98e4-851f14241401\",\"lastUpdateDateTime\":\"2021-05-12T19:16:34Z\",\"createdDateTime\":\"2021-05-12T19:16:33Z\",\"expirationDateTime\":\"2021-05-13T19:16:33Z\",\"status\":\"notStarted\",\"errors\":[]}", + "response": "{\"jobId\":\"8bd36f85-6c40-4f35-93a7-89a1cf2970c5\",\"lastUpdateDateTime\":\"2021-06-25T20:24:25Z\",\"createdDateTime\":\"2021-06-25T20:24:25Z\",\"expirationDateTime\":\"2021-06-26T20:24:25Z\",\"status\":\"notStarted\",\"errors\":[]}", "responseHeaders": { - "apim-request-id": "9d841bcc-34d4-4d77-bcb9-ee1b9759b1e5", + "apim-request-id": "80e22d23-9f2c-4eed-b038-afac80b92026", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:33 GMT", + "date": "Fri, 25 Jun 2021 20:24:24 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "5" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/0f92681a-ebd8-4cee-98e4-851f14241401", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/8bd36f85-6c40-4f35-93a7-89a1cf2970c5", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"0f92681a-ebd8-4cee-98e4-851f14241401\",\"lastUpdateDateTime\":\"2021-05-12T19:16:34Z\",\"createdDateTime\":\"2021-05-12T19:16:33Z\",\"expirationDateTime\":\"2021-05-13T19:16:33Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"22\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-03-01\"}}", + "response": "{\"jobId\":\"8bd36f85-6c40-4f35-93a7-89a1cf2970c5\",\"lastUpdateDateTime\":\"2021-06-25T20:24:26Z\",\"createdDateTime\":\"2021-06-25T20:24:25Z\",\"expirationDateTime\":\"2021-06-26T20:24:25Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"22\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-05-15\"}}", "responseHeaders": { - "apim-request-id": "0ffd44e1-499d-4890-9bc8-a8bf68ca774c", + "apim-request-id": "036292f1-557c-4955-aa77-d1f85696488a", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:35 GMT", + "date": "Fri, 25 Jun 2021 20:24:27 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": "96" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/0f92681a-ebd8-4cee-98e4-851f14241401", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/8bd36f85-6c40-4f35-93a7-89a1cf2970c5", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"0f92681a-ebd8-4cee-98e4-851f14241401\",\"lastUpdateDateTime\":\"2021-05-12T19:16:34Z\",\"createdDateTime\":\"2021-05-12T19:16:33Z\",\"expirationDateTime\":\"2021-05-13T19:16:33Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"22\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-03-01\"}}", + "response": "{\"jobId\":\"8bd36f85-6c40-4f35-93a7-89a1cf2970c5\",\"lastUpdateDateTime\":\"2021-06-25T20:24:26Z\",\"createdDateTime\":\"2021-06-25T20:24:25Z\",\"expirationDateTime\":\"2021-06-26T20:24:25Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"56\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"19\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"22\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-05-15\"}}", "responseHeaders": { - "apim-request-id": "041c7ca7-ab95-4413-a226-1dc165b6e0c8", + "apim-request-id": "47718abb-d790-442b-88b6-b50d159e9a5e", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:35 GMT", + "date": "Fri, 25 Jun 2021 20:24:27 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": "92" } } ], @@ -100,5 +100,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "9a764927d50f61c7b45566d4a3bece56" + "hash": "e7248b98353def73af890958a958ef0d" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_payload_too_large.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_payload_too_large.json new file mode 100644 index 000000000000..ce14fe3cdb4e --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_payload_too_large.json @@ -0,0 +1,28 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"3\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"4\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"5\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"6\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"7\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"8\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"9\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"10\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"11\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"12\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"13\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"14\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"15\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"16\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"17\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"18\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"19\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"20\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"21\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"22\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"23\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"24\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"25\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"26\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"27\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"28\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"29\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"30\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"31\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"32\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"33\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"34\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"35\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"36\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"37\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"38\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"39\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"40\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"41\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"42\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"43\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"44\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"45\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"46\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"47\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"48\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"49\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"50\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"51\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"52\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"53\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"54\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"55\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"56\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"57\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"58\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"59\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"60\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"61\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"62\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"63\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"64\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"65\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"66\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"67\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"68\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"69\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"70\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"71\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"72\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"73\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"74\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"75\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"76\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"77\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"78\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"79\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"80\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"81\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"82\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"83\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"84\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"85\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"86\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"87\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"88\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"89\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"90\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"91\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"92\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"93\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"94\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"95\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"96\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"97\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"98\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"99\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"100\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"101\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"102\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"103\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"104\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"105\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"106\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"107\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"108\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"109\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"110\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"111\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"112\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"113\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"114\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"115\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"116\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"117\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"118\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"119\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"120\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"121\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"122\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"123\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"124\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"125\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"126\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"127\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"128\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"129\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"130\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"131\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"132\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"133\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"134\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"135\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"136\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"137\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"138\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"139\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"140\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"141\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"142\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"143\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"144\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"145\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"146\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"147\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"148\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"149\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"150\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"151\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"152\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"153\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"154\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"155\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"156\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"157\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"158\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"159\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"160\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"161\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"162\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"163\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"164\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"165\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"166\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"167\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"168\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"169\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"170\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"171\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"172\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"173\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"174\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"175\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"176\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"177\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"178\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"179\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"180\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"181\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"182\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"183\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"184\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"185\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"186\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"187\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"188\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"189\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"190\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"191\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"192\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"193\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"194\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"195\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"196\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"197\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"198\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"199\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"200\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"201\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"202\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"203\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"204\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"205\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"206\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"207\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"208\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"209\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"210\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"211\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"212\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"213\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"214\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"215\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"216\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"217\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"218\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"219\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"220\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"221\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"222\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"223\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"224\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"225\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"226\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"227\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"228\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"229\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"230\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"231\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"232\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"233\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"234\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"235\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"236\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"237\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"238\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"239\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"240\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"241\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"242\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"243\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"244\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"245\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"246\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"247\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"248\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"249\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"250\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"251\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"252\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"253\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"254\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"255\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"256\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"257\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"258\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"259\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"260\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"261\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"262\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"263\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"264\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"265\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"266\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"267\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"268\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"269\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"270\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"271\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"272\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"273\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"274\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"275\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"276\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"277\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"278\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"279\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"280\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"281\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"282\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"283\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"284\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"285\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"286\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"287\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"288\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"289\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"290\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"291\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"292\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"293\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"294\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"295\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"296\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"297\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"298\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"299\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"300\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"301\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"302\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"303\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"304\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"305\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"306\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"307\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"308\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"309\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"310\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"311\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"312\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"313\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"314\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"315\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"316\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"317\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"318\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"319\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"320\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"321\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"322\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"323\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"324\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"325\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"326\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"327\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"328\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"329\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"330\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"331\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"332\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"333\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"334\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"335\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"336\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"337\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"338\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"339\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"340\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"341\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"342\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"343\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"344\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"345\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"346\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"347\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"348\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"349\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"350\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"351\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"352\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"353\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"354\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"355\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"356\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"357\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"358\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"359\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"360\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"361\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"362\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"363\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"364\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"365\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"366\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"367\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"368\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"369\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"370\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"371\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"372\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"373\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"374\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"375\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"376\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"377\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"378\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"379\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"380\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"381\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"382\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"383\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"384\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"385\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"386\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"387\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"388\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"389\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"390\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"391\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"392\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"393\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"394\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"395\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"396\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"397\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"398\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"399\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"400\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"401\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"402\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"403\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"404\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"405\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"406\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"407\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"408\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"409\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"410\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"411\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"412\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"413\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"414\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"415\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"416\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"417\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"418\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"419\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"420\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"421\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"422\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"423\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"424\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"425\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"426\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"427\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"428\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"429\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"430\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"431\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"432\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"433\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"434\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"435\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"436\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"437\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"438\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"439\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"440\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"441\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"442\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"443\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"444\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"445\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"446\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"447\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"448\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"449\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"450\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"451\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"452\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"453\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"454\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"455\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"456\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"457\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"458\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"459\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"460\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"461\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"462\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"463\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"464\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"465\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"466\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"467\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"468\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"469\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"470\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"471\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"472\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"473\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"474\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"475\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"476\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"477\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"478\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"479\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"480\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"481\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"482\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"483\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"484\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"485\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"486\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"487\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"488\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"489\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"490\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"491\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"492\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"493\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"494\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"495\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"496\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"497\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"498\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"},{\"id\":\"499\",\"text\":\"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.\",\"language\":\"en\"}]}", + "status": 413, + "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocumentBatch\",\"message\":\"Request Payload sent is too large to be processed. Limit request size to: 524288\"}}}", + "responseHeaders": { + "apim-request-id": "924aef3a-0c33-4190-8a2a-ffce1cda2f5c", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:18 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "46" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "fabb23fcf348878da5328d2e1b041a32" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_show_stats_and_model_version.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_show_stats_and_model_version.json new file mode 100644 index 000000000000..832978717116 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_show_stats_and_model_version.json @@ -0,0 +1,289 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "model-version": "latest", + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"56\",\"text\":\":)\"},{\"id\":\"0\",\"text\":\":(\"},{\"id\":\"22\",\"text\":\"\"},{\"id\":\"19\",\"text\":\":P\"},{\"id\":\"1\",\"text\":\":D\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "98af46ae-3149-4c21-a83d-7b2c933b89d4", + "date": "Fri, 25 Jun 2021 20:24:27 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/833ecc46-b747-4b28-bf61-597ccb7050cb", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "249" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/833ecc46-b747-4b28-bf61-597ccb7050cb", + "query": { + "showStats": "true", + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"833ecc46-b747-4b28-bf61-597ccb7050cb\",\"lastUpdateDateTime\":\"2021-06-25T20:24:28Z\",\"createdDateTime\":\"2021-06-25T20:24:28Z\",\"expirationDateTime\":\"2021-06-26T20:24:28Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "d4dc7e31-a592-45f1-be40-d1ba35b82d82", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:27 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/833ecc46-b747-4b28-bf61-597ccb7050cb", + "query": { + "showStats": "true", + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"833ecc46-b747-4b28-bf61-597ccb7050cb\",\"lastUpdateDateTime\":\"2021-06-25T20:24:28Z\",\"createdDateTime\":\"2021-06-25T20:24:28Z\",\"expirationDateTime\":\"2021-06-26T20:24:28Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "d18ff74e-c880-4d3d-b5c8-5192d681c841", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:27 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/833ecc46-b747-4b28-bf61-597ccb7050cb", + "query": { + "showStats": "true", + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"833ecc46-b747-4b28-bf61-597ccb7050cb\",\"lastUpdateDateTime\":\"2021-06-25T20:24:28Z\",\"createdDateTime\":\"2021-06-25T20:24:28Z\",\"expirationDateTime\":\"2021-06-26T20:24:28Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "40698b7a-ba26-46a6-965f-ff1eda8417a8", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:29 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/833ecc46-b747-4b28-bf61-597ccb7050cb", + "query": { + "showStats": "true", + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"833ecc46-b747-4b28-bf61-597ccb7050cb\",\"lastUpdateDateTime\":\"2021-06-25T20:24:28Z\",\"createdDateTime\":\"2021-06-25T20:24:28Z\",\"expirationDateTime\":\"2021-06-26T20:24:28Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "31020c72-d3ff-4b72-97e7-327f4cb5405c", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:31 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/833ecc46-b747-4b28-bf61-597ccb7050cb", + "query": { + "showStats": "true", + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"833ecc46-b747-4b28-bf61-597ccb7050cb\",\"lastUpdateDateTime\":\"2021-06-25T20:24:28Z\",\"createdDateTime\":\"2021-06-25T20:24:28Z\",\"expirationDateTime\":\"2021-06-26T20:24:28Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "bbd35f8e-2cd7-425f-9c56-b531427cd892", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:33 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "11" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/833ecc46-b747-4b28-bf61-597ccb7050cb", + "query": { + "showStats": "true", + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"833ecc46-b747-4b28-bf61-597ccb7050cb\",\"lastUpdateDateTime\":\"2021-06-25T20:24:28Z\",\"createdDateTime\":\"2021-06-25T20:24:28Z\",\"expirationDateTime\":\"2021-06-26T20:24:28Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "66d725df-4c3a-49c8-a2a9-a7dd9b6d8caa", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:36 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/833ecc46-b747-4b28-bf61-597ccb7050cb", + "query": { + "showStats": "true", + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"833ecc46-b747-4b28-bf61-597ccb7050cb\",\"lastUpdateDateTime\":\"2021-06-25T20:24:28Z\",\"createdDateTime\":\"2021-06-25T20:24:28Z\",\"expirationDateTime\":\"2021-06-26T20:24:28Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "0cd5355e-a592-47ca-879b-4c3889eaadfc", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:38 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/833ecc46-b747-4b28-bf61-597ccb7050cb", + "query": { + "showStats": "true", + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"833ecc46-b747-4b28-bf61-597ccb7050cb\",\"lastUpdateDateTime\":\"2021-06-25T20:24:38Z\",\"createdDateTime\":\"2021-06-25T20:24:28Z\",\"expirationDateTime\":\"2021-06-26T20:24:28Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "ebda4b5c-99e5-46c8-9629-88b5a9c7e4c7", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:40 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/833ecc46-b747-4b28-bf61-597ccb7050cb", + "query": { + "showStats": "true", + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"833ecc46-b747-4b28-bf61-597ccb7050cb\",\"lastUpdateDateTime\":\"2021-06-25T20:24:38Z\",\"createdDateTime\":\"2021-06-25T20:24:28Z\",\"expirationDateTime\":\"2021-06-26T20:24:28Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "683597a0-81e0-41db-a12c-0d92caf2beca", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:42 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/833ecc46-b747-4b28-bf61-597ccb7050cb", + "query": { + "showStats": "true", + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"833ecc46-b747-4b28-bf61-597ccb7050cb\",\"lastUpdateDateTime\":\"2021-06-25T20:24:38Z\",\"createdDateTime\":\"2021-06-25T20:24:28Z\",\"expirationDateTime\":\"2021-06-26T20:24:28Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "e8a6dbbf-e42d-4d4b-81eb-ea5e088371e2", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:44 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/833ecc46-b747-4b28-bf61-597ccb7050cb", + "query": { + "showStats": "true", + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"833ecc46-b747-4b28-bf61-597ccb7050cb\",\"lastUpdateDateTime\":\"2021-06-25T20:24:38Z\",\"createdDateTime\":\"2021-06-25T20:24:28Z\",\"expirationDateTime\":\"2021-06-26T20:24:28Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "3260cedd-aece-4bed-b1c2-c12694af1920", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:46 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/833ecc46-b747-4b28-bf61-597ccb7050cb", + "query": { + "showStats": "true", + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"833ecc46-b747-4b28-bf61-597ccb7050cb\",\"lastUpdateDateTime\":\"2021-06-25T20:24:49Z\",\"createdDateTime\":\"2021-06-25T20:24:28Z\",\"expirationDateTime\":\"2021-06-26T20:24:28Z\",\"status\":\"running\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "88cf0f10-7d67-48e0-8cb7-71adf9fba5b5", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:49 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "11" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/833ecc46-b747-4b28-bf61-597ccb7050cb", + "query": { + "showStats": "true", + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"833ecc46-b747-4b28-bf61-597ccb7050cb\",\"lastUpdateDateTime\":\"2021-06-25T20:24:49Z\",\"createdDateTime\":\"2021-06-25T20:24:28Z\",\"expirationDateTime\":\"2021-06-26T20:24:28Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"statistics\":{\"documentsCount\":5,\"validDocumentsCount\":4,\"erroneousDocumentsCount\":1,\"transactionsCount\":4},\"documents\":[{\"id\":\"56\",\"statistics\":{\"charactersCount\":2,\"transactionsCount\":1},\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"0\",\"statistics\":{\"charactersCount\":2,\"transactionsCount\":1},\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"19\",\"statistics\":{\"charactersCount\":2,\"transactionsCount\":1},\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"statistics\":{\"charactersCount\":2,\"transactionsCount\":1},\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[{\"id\":\"22\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}}],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "633eb71a-cafe-41c8-a60c-1786d66754c1", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:51 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "85" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "b7886f5b0094498f9a0939c3cb1bca51" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_some_inputs_with_errors.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_some_inputs_with_errors.json similarity index 71% rename from sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_some_inputs_with_errors.json rename to sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_some_inputs_with_errors.json index 5ebece000b33..473691a5ccbc 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_some_inputs_with_errors.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_some_inputs_with_errors.json @@ -2,7 +2,7 @@ "recordings": [ { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -10,108 +10,108 @@ "status": 202, "response": "", "responseHeaders": { - "apim-request-id": "cb2296bb-ce2a-4ec0-8031-90cee207589e", - "date": "Wed, 12 May 2021 19:16:14 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/d4d65d4f-e6df-4e98-af63-c3cc986e39d8", + "apim-request-id": "0bb1caae-6072-4a03-883e-981f18725d9a", + "date": "Fri, 25 Jun 2021 20:24:08 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/c7c35361-c983-4c04-abe4-3c66bde62a4a", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "91" + "x-envoy-upstream-service-time": "5248" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/d4d65d4f-e6df-4e98-af63-c3cc986e39d8", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/c7c35361-c983-4c04-abe4-3c66bde62a4a", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"d4d65d4f-e6df-4e98-af63-c3cc986e39d8\",\"lastUpdateDateTime\":\"2021-05-12T19:16:15Z\",\"createdDateTime\":\"2021-05-12T19:16:15Z\",\"expirationDateTime\":\"2021-05-13T19:16:15Z\",\"status\":\"notStarted\",\"errors\":[]}", + "response": "{\"jobId\":\"c7c35361-c983-4c04-abe4-3c66bde62a4a\",\"lastUpdateDateTime\":\"2021-06-25T20:24:08Z\",\"createdDateTime\":\"2021-06-25T20:24:03Z\",\"expirationDateTime\":\"2021-06-26T20:24:03Z\",\"status\":\"notStarted\",\"errors\":[]}", "responseHeaders": { - "apim-request-id": "c761cfee-b9d5-411c-b9be-36e9ddcdf5d0", + "apim-request-id": "8034dfdd-7b4d-4ad7-8b8e-7db2db75cafa", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:14 GMT", + "date": "Fri, 25 Jun 2021 20:24:08 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "8" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/d4d65d4f-e6df-4e98-af63-c3cc986e39d8", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/c7c35361-c983-4c04-abe4-3c66bde62a4a", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"d4d65d4f-e6df-4e98-af63-c3cc986e39d8\",\"lastUpdateDateTime\":\"2021-05-12T19:16:15Z\",\"createdDateTime\":\"2021-05-12T19:16:15Z\",\"expirationDateTime\":\"2021-05-13T19:16:15Z\",\"status\":\"notStarted\",\"errors\":[]}", + "response": "{\"jobId\":\"c7c35361-c983-4c04-abe4-3c66bde62a4a\",\"lastUpdateDateTime\":\"2021-06-25T20:24:08Z\",\"createdDateTime\":\"2021-06-25T20:24:03Z\",\"expirationDateTime\":\"2021-06-26T20:24:03Z\",\"status\":\"notStarted\",\"errors\":[]}", "responseHeaders": { - "apim-request-id": "4e826876-04dc-4bab-89b3-89a397aa9ef8", + "apim-request-id": "8ddb04d0-451a-4ad9-929d-9d53e2e5d0b1", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:14 GMT", + "date": "Fri, 25 Jun 2021 20:24:08 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "9" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/d4d65d4f-e6df-4e98-af63-c3cc986e39d8", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/c7c35361-c983-4c04-abe4-3c66bde62a4a", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"d4d65d4f-e6df-4e98-af63-c3cc986e39d8\",\"lastUpdateDateTime\":\"2021-05-12T19:16:15Z\",\"createdDateTime\":\"2021-05-12T19:16:15Z\",\"expirationDateTime\":\"2021-05-13T19:16:15Z\",\"status\":\"notStarted\",\"errors\":[]}", + "response": "{\"jobId\":\"c7c35361-c983-4c04-abe4-3c66bde62a4a\",\"lastUpdateDateTime\":\"2021-06-25T20:24:10Z\",\"createdDateTime\":\"2021-06-25T20:24:03Z\",\"expirationDateTime\":\"2021-06-26T20:24:03Z\",\"status\":\"running\",\"errors\":[]}", "responseHeaders": { - "apim-request-id": "ef46a6f6-7e87-4bff-9363-3b968332f2e2", + "apim-request-id": "b40a0704-89b3-4847-b7e2-412e8c0a50f9", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:16 GMT", + "date": "Fri, 25 Jun 2021 20:24:10 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-envoy-upstream-service-time": "15" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/d4d65d4f-e6df-4e98-af63-c3cc986e39d8", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/c7c35361-c983-4c04-abe4-3c66bde62a4a", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"d4d65d4f-e6df-4e98-af63-c3cc986e39d8\",\"lastUpdateDateTime\":\"2021-05-12T19:16:17Z\",\"createdDateTime\":\"2021-05-12T19:16:15Z\",\"expirationDateTime\":\"2021-05-13T19:16:15Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/0/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/0/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/0/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/0/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}}],\"modelVersion\":\"2021-03-01\"}}", + "response": "{\"jobId\":\"c7c35361-c983-4c04-abe4-3c66bde62a4a\",\"lastUpdateDateTime\":\"2021-06-25T20:24:11Z\",\"createdDateTime\":\"2021-06-25T20:24:03Z\",\"expirationDateTime\":\"2021-06-26T20:24:03Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/0/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/0/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/0/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/0/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}}],\"modelVersion\":\"2021-05-15\"}}", "responseHeaders": { - "apim-request-id": "6693c938-cfb8-4bd7-93ad-fffdf368d89a", + "apim-request-id": "09d2078f-e2ff-40ad-b749-1bdd857ffcd9", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:18 GMT", + "date": "Fri, 25 Jun 2021 20:24:12 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "55" + "x-envoy-upstream-service-time": "59" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/d4d65d4f-e6df-4e98-af63-c3cc986e39d8", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/c7c35361-c983-4c04-abe4-3c66bde62a4a", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"d4d65d4f-e6df-4e98-af63-c3cc986e39d8\",\"lastUpdateDateTime\":\"2021-05-12T19:16:17Z\",\"createdDateTime\":\"2021-05-12T19:16:15Z\",\"expirationDateTime\":\"2021-05-13T19:16:15Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/0/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/0/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/0/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/0/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}}],\"modelVersion\":\"2021-03-01\"}}", + "response": "{\"jobId\":\"c7c35361-c983-4c04-abe4-3c66bde62a4a\",\"lastUpdateDateTime\":\"2021-06-25T20:24:11Z\",\"createdDateTime\":\"2021-06-25T20:24:03Z\",\"expirationDateTime\":\"2021-06-26T20:24:03Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"3\",\"entities\":[{\"offset\":11,\"length\":5,\"text\":\"100mg\",\"category\":\"Dosage\",\"confidenceScore\":1.0},{\"offset\":17,\"length\":9,\"text\":\"ibuprofen\",\"category\":\"MedicationName\",\"confidenceScore\":1.0,\"name\":\"ibuprofen\",\"links\":[{\"dataSource\":\"UMLS\",\"id\":\"C0020740\"},{\"dataSource\":\"AOD\",\"id\":\"0000019879\"},{\"dataSource\":\"ATC\",\"id\":\"M01AE01\"},{\"dataSource\":\"CCPSS\",\"id\":\"0046165\"},{\"dataSource\":\"CHV\",\"id\":\"0000006519\"},{\"dataSource\":\"CSP\",\"id\":\"2270-2077\"},{\"dataSource\":\"DRUGBANK\",\"id\":\"DB01050\"},{\"dataSource\":\"GS\",\"id\":\"1611\"},{\"dataSource\":\"LCH_NW\",\"id\":\"sh97005926\"},{\"dataSource\":\"LNC\",\"id\":\"LP16165-0\"},{\"dataSource\":\"MEDCIN\",\"id\":\"40458\"},{\"dataSource\":\"MMSL\",\"id\":\"d00015\"},{\"dataSource\":\"MSH\",\"id\":\"D007052\"},{\"dataSource\":\"MTHSPL\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI\",\"id\":\"C561\"},{\"dataSource\":\"NCI_CTRP\",\"id\":\"C561\"},{\"dataSource\":\"NCI_DCP\",\"id\":\"00803\"},{\"dataSource\":\"NCI_DTP\",\"id\":\"NSC0256857\"},{\"dataSource\":\"NCI_FDA\",\"id\":\"WK2XYI10QM\"},{\"dataSource\":\"NCI_NCI-GLOSS\",\"id\":\"CDR0000613511\"},{\"dataSource\":\"NDDF\",\"id\":\"002377\"},{\"dataSource\":\"PDQ\",\"id\":\"CDR0000040475\"},{\"dataSource\":\"RCD\",\"id\":\"x02MO\"},{\"dataSource\":\"RXNORM\",\"id\":\"5640\"},{\"dataSource\":\"SNM\",\"id\":\"E-7772\"},{\"dataSource\":\"SNMI\",\"id\":\"C-603C0\"},{\"dataSource\":\"SNOMEDCT_US\",\"id\":\"387207008\"},{\"dataSource\":\"USP\",\"id\":\"m39860\"},{\"dataSource\":\"USPMG\",\"id\":\"MTHU000060\"},{\"dataSource\":\"VANDF\",\"id\":\"4017840\"}]},{\"offset\":34,\"length\":11,\"text\":\"twice daily\",\"category\":\"Frequency\",\"confidenceScore\":1.0}],\"relations\":[{\"relationType\":\"DosageOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/0/entities/0\",\"role\":\"Dosage\"},{\"ref\":\"#/results/documents/0/entities/1\",\"role\":\"Medication\"}]},{\"relationType\":\"FrequencyOfMedication\",\"entities\":[{\"ref\":\"#/results/documents/0/entities/1\",\"role\":\"Medication\"},{\"ref\":\"#/results/documents/0/entities/2\",\"role\":\"Frequency\"}]}],\"warnings\":[]}],\"errors\":[{\"id\":\"1\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocument\",\"message\":\"Document text is empty.\"}}},{\"id\":\"2\",\"error\":{\"code\":\"InvalidArgument\",\"message\":\"Invalid Language Code.\",\"innererror\":{\"code\":\"UnsupportedLanguageCode\",\"message\":\"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support\"}}}],\"modelVersion\":\"2021-05-15\"}}", "responseHeaders": { - "apim-request-id": "01880ccb-b647-43c5-bd48-26cb72b43bc8", + "apim-request-id": "b4de5fd8-a972-41e1-886a-d4409edb7c29", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:18 GMT", + "date": "Fri, 25 Jun 2021 20:24:12 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-envoy-upstream-service-time": "65" } } ], @@ -119,5 +119,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "a8c460dfa57900682173b81ae8854fde" + "hash": "8f137e103df6a68f682870f77ddba5fa" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_too_many_documents.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_too_many_documents.json similarity index 83% rename from sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_too_many_documents.json rename to sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_too_many_documents.json index 852f5c5596ed..b2d67b80f84b 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_too_many_documents.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_too_many_documents.json @@ -2,7 +2,7 @@ "recordings": [ { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -10,13 +10,13 @@ "status": 400, "response": "{\"error\":{\"code\":\"InvalidRequest\",\"message\":\"Invalid document in request.\",\"innererror\":{\"code\":\"InvalidDocumentBatch\",\"message\":\"Batch request contains too many records. Max 10 records are permitted.\"}}}", "responseHeaders": { - "apim-request-id": "69e5affb-e310-4fc5-a318-51e705ef689f", + "apim-request-id": "a78cd330-69bb-47b4-b338-978760dc5809", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:23 GMT", + "date": "Fri, 25 Jun 2021 20:24:17 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "6" } } ], @@ -24,5 +24,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "781019d238e9adb12964edee1e0185f6" + "hash": "f4e1a2c36c41c301fea32887bbea5a55" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.json new file mode 100644 index 000000000000..64d850215a14 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.json @@ -0,0 +1,104 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"0\",\"text\":\"This was the best day of my life.\",\"language\":\"en\"},{\"id\":\"1\",\"text\":\"I did not like the hotel we stayed at. It was too expensive.\",\"language\":\"en\"},{\"id\":\"2\",\"text\":\"The restaurant was not as good as I hoped.\",\"language\":\"en\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "c2d4a4ea-5213-429d-b6c0-0e7019d50396", + "date": "Fri, 25 Jun 2021 20:24:54 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/d0818b09-d853-4f39-bb00-5ce5ae5fbf74", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "149" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/d0818b09-d853-4f39-bb00-5ce5ae5fbf74", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"d0818b09-d853-4f39-bb00-5ce5ae5fbf74\",\"lastUpdateDateTime\":\"2021-06-25T20:24:54Z\",\"createdDateTime\":\"2021-06-25T20:24:54Z\",\"expirationDateTime\":\"2021-06-26T20:24:54Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "11f85f33-c877-4200-a988-4deadfbf2764", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:54 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/d0818b09-d853-4f39-bb00-5ce5ae5fbf74", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"d0818b09-d853-4f39-bb00-5ce5ae5fbf74\",\"lastUpdateDateTime\":\"2021-06-25T20:24:54Z\",\"createdDateTime\":\"2021-06-25T20:24:54Z\",\"expirationDateTime\":\"2021-06-26T20:24:54Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "1122db3e-7a8c-478f-a966-8c1e3ba36eea", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:54 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/d0818b09-d853-4f39-bb00-5ce5ae5fbf74", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"d0818b09-d853-4f39-bb00-5ce5ae5fbf74\",\"lastUpdateDateTime\":\"2021-06-25T20:24:56Z\",\"createdDateTime\":\"2021-06-25T20:24:54Z\",\"expirationDateTime\":\"2021-06-26T20:24:54Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "e30adc6f-7fae-4b53-b3e3-7e2655bec624", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:56 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "71" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/d0818b09-d853-4f39-bb00-5ce5ae5fbf74", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"d0818b09-d853-4f39-bb00-5ce5ae5fbf74\",\"lastUpdateDateTime\":\"2021-06-25T20:24:56Z\",\"createdDateTime\":\"2021-06-25T20:24:54Z\",\"expirationDateTime\":\"2021-06-26T20:24:54Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "d7488119-62bb-4dd1-892f-6467d9846b31", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:56 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "57" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "244cc773590bf1739b9bee615d0136fa" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.json new file mode 100644 index 000000000000..d660d1b5785a --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.json @@ -0,0 +1,104 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I will go to the park.\",\"language\":\"\"},{\"id\":\"2\",\"text\":\"I did not like the hotel we stayed at.\",\"language\":\"\"},{\"id\":\"3\",\"text\":\"The restaurant had really good food.\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "246db4a4-a4ea-4aa1-8027-fabdfb87a483", + "date": "Fri, 25 Jun 2021 20:24:56 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/f69197d0-ac64-4a2b-a1db-e3fcde84eb63", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "205" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/f69197d0-ac64-4a2b-a1db-e3fcde84eb63", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"f69197d0-ac64-4a2b-a1db-e3fcde84eb63\",\"lastUpdateDateTime\":\"2021-06-25T20:24:57Z\",\"createdDateTime\":\"2021-06-25T20:24:57Z\",\"expirationDateTime\":\"2021-06-26T20:24:57Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "8fc4b9d6-3b9b-4d99-a181-c4da793d7421", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:56 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/f69197d0-ac64-4a2b-a1db-e3fcde84eb63", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"f69197d0-ac64-4a2b-a1db-e3fcde84eb63\",\"lastUpdateDateTime\":\"2021-06-25T20:24:57Z\",\"createdDateTime\":\"2021-06-25T20:24:57Z\",\"expirationDateTime\":\"2021-06-26T20:24:57Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "9bc9c34c-a801-4917-91f8-ff5e3b2e9c60", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:56 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/f69197d0-ac64-4a2b-a1db-e3fcde84eb63", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"f69197d0-ac64-4a2b-a1db-e3fcde84eb63\",\"lastUpdateDateTime\":\"2021-06-25T20:24:58Z\",\"createdDateTime\":\"2021-06-25T20:24:57Z\",\"expirationDateTime\":\"2021-06-26T20:24:57Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "def07459-2e12-447a-b4be-1114a9399201", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:59 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "75" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/f69197d0-ac64-4a2b-a1db-e3fcde84eb63", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"f69197d0-ac64-4a2b-a1db-e3fcde84eb63\",\"lastUpdateDateTime\":\"2021-06-25T20:24:58Z\",\"createdDateTime\":\"2021-06-25T20:24:57Z\",\"expirationDateTime\":\"2021-06-26T20:24:57Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "735c0174-7f29-42de-a43d-01a710085909", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:59 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "75" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "9a24b1f99cf69c19826f3e7864953d2e" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_whole_batch_language_hint.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_language_hint.json similarity index 50% rename from sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_whole_batch_language_hint.json rename to sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_language_hint.json index 5f420e1f2ceb..ecd366a93a56 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/browsers/api_key_textanalyticsclient_lros_health/recording_whole_batch_language_hint.json +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_language_hint.json @@ -2,7 +2,7 @@ "recordings": [ { "method": "POST", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", "query": { "stringIndexType": "Utf16CodeUnit" }, @@ -10,28 +10,28 @@ "status": 202, "response": "", "responseHeaders": { - "apim-request-id": "fb4dc1f1-21ed-48f8-acf5-84024fcbdaf5", - "date": "Wed, 12 May 2021 19:16:38 GMT", - "operation-location": "https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/3f941f62-c1c2-4408-996c-78305d9b6502", + "apim-request-id": "53d82758-5a1e-4cea-92e1-64ecf575fedf", + "date": "Fri, 25 Jun 2021 20:24:51 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/959eac67-f498-484b-9efd-940e07fb29d6", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "109" + "x-envoy-upstream-service-time": "254" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/3f941f62-c1c2-4408-996c-78305d9b6502", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/959eac67-f498-484b-9efd-940e07fb29d6", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"3f941f62-c1c2-4408-996c-78305d9b6502\",\"lastUpdateDateTime\":\"2021-05-12T19:16:38Z\",\"createdDateTime\":\"2021-05-12T19:16:38Z\",\"expirationDateTime\":\"2021-05-13T19:16:38Z\",\"status\":\"notStarted\",\"errors\":[]}", + "response": "{\"jobId\":\"959eac67-f498-484b-9efd-940e07fb29d6\",\"lastUpdateDateTime\":\"2021-06-25T20:24:51Z\",\"createdDateTime\":\"2021-06-25T20:24:51Z\",\"expirationDateTime\":\"2021-06-26T20:24:51Z\",\"status\":\"notStarted\",\"errors\":[]}", "responseHeaders": { - "apim-request-id": "e9b87d4d-1320-4d48-bcd2-e003ecf9d686", + "apim-request-id": "b72c1312-7104-496d-a8f0-40925f412659", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:38 GMT", + "date": "Fri, 25 Jun 2021 20:24:51 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -40,17 +40,17 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/3f941f62-c1c2-4408-996c-78305d9b6502", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/959eac67-f498-484b-9efd-940e07fb29d6", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"3f941f62-c1c2-4408-996c-78305d9b6502\",\"lastUpdateDateTime\":\"2021-05-12T19:16:38Z\",\"createdDateTime\":\"2021-05-12T19:16:38Z\",\"expirationDateTime\":\"2021-05-13T19:16:38Z\",\"status\":\"notStarted\",\"errors\":[]}", + "response": "{\"jobId\":\"959eac67-f498-484b-9efd-940e07fb29d6\",\"lastUpdateDateTime\":\"2021-06-25T20:24:51Z\",\"createdDateTime\":\"2021-06-25T20:24:51Z\",\"expirationDateTime\":\"2021-06-26T20:24:51Z\",\"status\":\"notStarted\",\"errors\":[]}", "responseHeaders": { - "apim-request-id": "39f93117-44ae-4aef-bacb-c95b95d4da5a", + "apim-request-id": "e5af1119-58f2-45df-a1cd-f0fe13eb6526", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:38 GMT", + "date": "Fri, 25 Jun 2021 20:24:51 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", @@ -59,40 +59,40 @@ }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/3f941f62-c1c2-4408-996c-78305d9b6502", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/959eac67-f498-484b-9efd-940e07fb29d6", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"3f941f62-c1c2-4408-996c-78305d9b6502\",\"lastUpdateDateTime\":\"2021-05-12T19:16:39Z\",\"createdDateTime\":\"2021-05-12T19:16:38Z\",\"expirationDateTime\":\"2021-05-13T19:16:38Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-03-01\"}}", + "response": "{\"jobId\":\"959eac67-f498-484b-9efd-940e07fb29d6\",\"lastUpdateDateTime\":\"2021-06-25T20:24:53Z\",\"createdDateTime\":\"2021-06-25T20:24:51Z\",\"expirationDateTime\":\"2021-06-26T20:24:51Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", "responseHeaders": { - "apim-request-id": "2066e49c-e790-4778-88a3-0614b87dacb8", + "apim-request-id": "1feee750-5f6c-4c9e-b371-a06d2e24ac2a", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:41 GMT", + "date": "Fri, 25 Jun 2021 20:24:53 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "81" + "x-envoy-upstream-service-time": "65" } }, { "method": "GET", - "url": "https://endpoint//text/analytics/v3.1-preview.5/entities/health/jobs/3f941f62-c1c2-4408-996c-78305d9b6502", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/959eac67-f498-484b-9efd-940e07fb29d6", "query": { "$top": "20" }, "requestBody": null, "status": 200, - "response": "{\"jobId\":\"3f941f62-c1c2-4408-996c-78305d9b6502\",\"lastUpdateDateTime\":\"2021-05-12T19:16:39Z\",\"createdDateTime\":\"2021-05-12T19:16:38Z\",\"expirationDateTime\":\"2021-05-13T19:16:38Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-03-01\"}}", + "response": "{\"jobId\":\"959eac67-f498-484b-9efd-940e07fb29d6\",\"lastUpdateDateTime\":\"2021-06-25T20:24:53Z\",\"createdDateTime\":\"2021-06-25T20:24:51Z\",\"expirationDateTime\":\"2021-06-26T20:24:51Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"0\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"1\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", "responseHeaders": { - "apim-request-id": "ff4e1de0-d3ed-4866-b743-68c95721a13c", + "apim-request-id": "1722245f-df70-444d-93fd-fadd08e49456", "content-type": "application/json; charset=utf-8", - "date": "Wed, 12 May 2021 19:16:41 GMT", + "date": "Fri, 25 Jun 2021 20:24:53 GMT", "strict-transport-security": "max-age=31536000; includeSubDomains; preload", "transfer-encoding": "chunked", "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "52" + "x-envoy-upstream-service-time": "60" } } ], @@ -100,5 +100,5 @@ "uniqueName": {}, "newDate": {} }, - "hash": "1412f3cd179a394132ee17ae13aa5369" + "hash": "33965f5fc7bffb3476452949579b99ba" } \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.json b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.json new file mode 100644 index 000000000000..83a782b782b6 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/browsers/apikey_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.json @@ -0,0 +1,104 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs", + "query": { + "stringIndexType": "Utf16CodeUnit" + }, + "requestBody": "{\"documents\":[{\"id\":\"1\",\"text\":\"I should take my cat to the veterinarian.\"},{\"id\":\"2\",\"text\":\"Este es un document escrito en Español.\"},{\"id\":\"3\",\"text\":\"猫は幸せ\"}]}", + "status": 202, + "response": "", + "responseHeaders": { + "apim-request-id": "c2e0ec94-5fa8-4436-92f1-3c61ad0ffa49", + "date": "Fri, 25 Jun 2021 20:24:59 GMT", + "operation-location": "https://endpoint/text/analytics/v3.1/entities/health/jobs/36fb8cb3-df19-4a6c-8805-5e7b96fae31d", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "154" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/36fb8cb3-df19-4a6c-8805-5e7b96fae31d", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"36fb8cb3-df19-4a6c-8805-5e7b96fae31d\",\"lastUpdateDateTime\":\"2021-06-25T20:25:00Z\",\"createdDateTime\":\"2021-06-25T20:24:59Z\",\"expirationDateTime\":\"2021-06-26T20:24:59Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "efcb11ae-6581-4484-b99b-29a21e841458", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:59 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/36fb8cb3-df19-4a6c-8805-5e7b96fae31d", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"36fb8cb3-df19-4a6c-8805-5e7b96fae31d\",\"lastUpdateDateTime\":\"2021-06-25T20:25:00Z\",\"createdDateTime\":\"2021-06-25T20:24:59Z\",\"expirationDateTime\":\"2021-06-26T20:24:59Z\",\"status\":\"notStarted\",\"errors\":[]}", + "responseHeaders": { + "apim-request-id": "81a357bc-f640-4909-9a2f-77caf2d4fbab", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:24:59 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/36fb8cb3-df19-4a6c-8805-5e7b96fae31d", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"36fb8cb3-df19-4a6c-8805-5e7b96fae31d\",\"lastUpdateDateTime\":\"2021-06-25T20:25:01Z\",\"createdDateTime\":\"2021-06-25T20:24:59Z\",\"expirationDateTime\":\"2021-06-26T20:24:59Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"offset\":28,\"length\":12,\"text\":\"veterinarian\",\"category\":\"HealthcareProfession\",\"confidenceScore\":0.98}],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "1f34e77e-cddf-49ab-ae3c-0b7923ec5d79", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:25:01 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "62" + } + }, + { + "method": "GET", + "url": "https://endpoint//text/analytics/v3.1/entities/health/jobs/36fb8cb3-df19-4a6c-8805-5e7b96fae31d", + "query": { + "$top": "20" + }, + "requestBody": null, + "status": 200, + "response": "{\"jobId\":\"36fb8cb3-df19-4a6c-8805-5e7b96fae31d\",\"lastUpdateDateTime\":\"2021-06-25T20:25:01Z\",\"createdDateTime\":\"2021-06-25T20:24:59Z\",\"expirationDateTime\":\"2021-06-26T20:24:59Z\",\"status\":\"succeeded\",\"errors\":[],\"results\":{\"documents\":[{\"id\":\"1\",\"entities\":[{\"offset\":28,\"length\":12,\"text\":\"veterinarian\",\"category\":\"HealthcareProfession\",\"confidenceScore\":0.98}],\"relations\":[],\"warnings\":[]},{\"id\":\"2\",\"entities\":[],\"relations\":[],\"warnings\":[]},{\"id\":\"3\",\"entities\":[],\"relations\":[],\"warnings\":[]}],\"errors\":[],\"modelVersion\":\"2021-05-15\"}}", + "responseHeaders": { + "apim-request-id": "ae9792f9-9133-41d6-98b6-1d0b53125d4a", + "content-type": "application/json; charset=utf-8", + "date": "Fri, 25 Jun 2021 20:25:01 GMT", + "strict-transport-security": "max-age=31536000; includeSubDomains; preload", + "transfer-encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "57" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "7bec52ba89e96a0ba2f2013638873cb4" +} \ No newline at end of file diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.js index d0702751bebe..ed508bcb7a2d 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "ab00193669bfc618a2f0cb5282fcc4df"; +module.exports.hash = "3507106128a8c3279ca558497e4d0b6b"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,26 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '1c206b45-e788-41a9-b196-0c710d9d7c01', + 'b809defb-d23a-4f0c-93d3-0d5822203c00', 'x-ms-ests-server', - '2.1.11654.25 - EUS ProdSlices', + '2.1.11829.8 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MM; expires=Fri, 11-Jun-2021 19:06:03 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8k; expires=Sun, 25-Jul-2021 19:33:53 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrsBwFo3aKNh4kWItmu2GFXAZS2Z6JIAQzV617QJIkYR4AF7H54YFOvo-mmXbeTqRGCHSszayXz0EE7d2owtzxH6jov9PtOva51s4-1gM4oSHtCkELnrJfLqmo7ZiPEoBj240DC20VeDnTuDvVjv0Ojz2p1BRV3XCY4y5WlHEWtBYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrpD26DiEu9ED_V2nxSH12nq0Xy9iMhFtLBM3S4OkctUoaVVbETX10uHlo043R6_vSfvWvi6xZ5BcUgoX4OShD1wskoCiqH11jHLsj9uYVyRH4J5y-8ByDhzMJa-eY1YLK-EBcBBD4nsmWEQ5H6AMXlE0UwhqEwp7LEE1ivhjsUjYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:02 GMT', + 'Fri, 25 Jun 2021 19:33:53 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,28 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'd8df8829-77a8-46cc-a784-90abcbc6c800', + '546b154e-3691-42e1-a17e-80b9aa456700', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MM; expires=Fri, 11-Jun-2021 19:06:03 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8k; expires=Sun, 25-Jul-2021 19:33:53 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr4aDN1oDyBY3uAt6URxagaqGsK0lzYwqGurkj272py1wBCzY_4oiyyOMDatGAaldCANzFNe8_8UmgnWCpoaRnz1BC1o8FTG85Ij4oqCc6VaMuUY8euNmSRQCA1N0ho7Wk6-h_FC4fZy_bOd7u8O2zsm9_cmuQzqdATVuwSgdIfwogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrfyeejulnUNH71fHmnyvTHh_sA5qZbOBYGUinoAv19Na1lHS_u8ErZpUii-zrPzvAE46ktyCTU1tw6TKxchaedEYjlMo0eLeMzebSqhsDK39GTroj8cygtsyqbm9Ur7a4bbp5jU2-24d24iJFH7-FgwVyGFuUC_q0gb_C4VOWxZ4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:02 GMT', + 'Fri, 25 Jun 2021 19:33:53 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=07945ffd-4044-48f0-b2ac-83300a91d3f6&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'd8df8829-77a8-46cc-a784-90abd6c6c800', + '46746596-f429-4925-82fd-aa7979e57000', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1AQAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:03 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1AQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:33:54 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:03 GMT', + 'Fri, 25 Jun 2021 19:33:53 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/sentiment', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) + .post('//text/analytics/v3.1/sentiment', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) .query(true) .reply(200, {"documents":[{"id":"0","sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":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,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"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,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":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"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', 'x-envoy-upstream-service-time', - '152', + '156', 'apim-request-id', - '1c8ca224-00e4-42a6-ab6d-59a08ea88b60', + '8bd441f2-d6f3-4357-af45-59be4cf5dbf8', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:03 GMT' + 'Fri, 25 Jun 2021 19:33:55 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.js index cc7ee1e82d53..a23bbd3ba7cc 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "8d61babf8d0889f22bd5ab0a5f5e94c6"; +module.exports.hash = "bd1ef9032ab787da0c6aee257c7d1810"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,24 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '798eea15-2455-4b82-acbc-d777e3b20100', + 'd9651262-0db9-4929-9fc6-25b383319d00', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.8 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1AQAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:04 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1AQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:33:55 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrEfx4g6GYhb7Domu_0VXb9ZynVsvw3D8OoW5nNpR8-s9qd9ZsbG9LoJGpAYFWiLjq3BwOxAHKilEpuqZbNlRs53KN9G2x56pHi2N7KV6brWGwStxQ1IK4fXV6gTNbAhLSpzuodAohzjQ0zEagX1aa2InVqXrir3Z-9FiLFDQn2iggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrYVNTBN5KDHZwiZeIiQysKdh4ZFV0MtFIVd92m1FZF5FFmqbAF6eSoObrb8DSf3THyOa463j3yxHIJaDXOKI_ErLt-q0lQof5HGyN3DetY98rCbDLA59u3r57mdy-bewWOjTHWFpafPraYCJ03vspNKbcQLbbyxYwJwkk7WIwDPggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:03 GMT' + 'Fri, 25 Jun 2021 19:33:54 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,28 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'dac8c720-7f5b-4daa-a8aa-ada5590f5600', + '46746596-f429-4925-82fd-aa79c4e57000', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1AQAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:04 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1AQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:33:55 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr0EG8vTJ85V4hPZjJ8c3UuO_XfgXe-dva_KmkBrefAwlzvrU2vfe37MgKzGfkJoN2omFOiAleUN_XS7Tt5tulVIJxd8tyB6huCpvYvemYj6X3UK5lg2uYX_EZAOjzbYSayqEc8S8HiuiuxkmFQ3NGsHQRW_O2lBvNre1MbNld9qAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrv7irltPXcJJTIy00WyRWCfLzsLrkyw_brYrNT0UwGHGH3hzRgi_If-rmeu-3p4sa-A1QKyWjFE21fctlRk5eJFQXt3UdEVzlKhJuM22NID6e0utABbNcRCua8bhijcNyLDnQ2RMne4XrsNKsUT2cGLXlxkNMhrtn1LRn6KtuR4ogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:03 GMT', + 'Fri, 25 Jun 2021 19:33:54 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=f8e9c9c8-5cb6-4427-bfb4-0ada619ac56a&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '74c31071-9533-4e7e-92e2-c81a95fb5300', + '493aab2b-fb42-40cd-a2d0-93f5716b5a00', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1AgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:04 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1AgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:33:55 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:03 GMT', + 'Fri, 25 Jun 2021 19:33:55 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/sentiment', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) + .post('//text/analytics/v3.1/sentiment', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) .query(true) .reply(200, {"documents":[{"id":"0","sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":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,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"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,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":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"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', 'x-envoy-upstream-service-time', - '230', + '97', 'apim-request-id', - '8cae0137-8421-4a34-b11a-3edce78cd807', + '96e65b58-9520-4915-bb4c-2f7f8663a150', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:05 GMT' + 'Fri, 25 Jun 2021 19:33:55 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.js index 2152d05033ad..94fa016bdd9f 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "a73e59203fffd5936c74db2a86463458"; +module.exports.hash = "48ae2bd36a524f40c51f76e37f79ca4a"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,24 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '4086f93b-2614-4ec7-9743-d54f72ea5f00', + '9836a81d-351c-48ba-a6a4-3f41466b0100', 'x-ms-ests-server', - '2.1.11654.25 - EUS ProdSlices', + '2.1.11829.8 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:09 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1BQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:33:59 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrRJ3VvL4fRTl7Xgk3GIn0TdB9gvP9Zs9cO77YdXQYv6fREfLrEMxJLNEXo8Z05qnc0qoFNa0a-RD9DJUiWUdkF8p-iS6iF4imMT4dhl4tlNbHNgblgeW-Xmw-sswjhewDZDWWUXZE5VNbcZbEbQIvPtNgdPQaLuLLUErZJij0eL0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrIcpfQ47g36drw2fSKtFqUqnHTsQsvsYP9bYVC_DGcBqx_dCobA9VdGkFXqe6iZIL6sihZzr74PHfyWPdfZtDVdmdmstiBiotNDYXbD0hKqJxdtq8L-X8uvDgVIu3HYuiGNpfFRe0JXwevEOdxwBIaDJSO_arDymSRfZkN1vMUSsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:08 GMT' + 'Fri, 25 Jun 2021 19:33:59 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,28 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '29a193e4-4207-4b4e-982a-fd8216765e00', + '60255122-4f99-4912-bd79-4b91ae696000', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:09 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1BQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:00 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrTcFdWAqspih0dJN_rW40LV3Ench5S6y-rIZuyuO_fibAfXR6obPQYm8hQNpGfzcUr_MryV2BP3K7Mrx8h4LaMReDnjcqjYBabtE9CWPCjrNhFy09GjjGMIPA_kCI2vTHzV1zIThr9T8ocmrsoLItTOukY3YNcTG0NRqLq4Eq4MEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrfPao2xKFeFczYHh57tCdJLF3-9YKpL9Tu3f_4cjl7MaR9R9yDPzA2fTDvaRuISg29ehpi2Mg3tBr1qYtPRRHk8_incD6YrilYWV7mp22NvOJBOQlSTB3UylRoA-hexrDNg6-fAVTwyP1XT_CKOsGdFLM1NL5fqI_izH7sTMuenUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:08 GMT', + 'Fri, 25 Jun 2021 19:33:59 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=f9268555-934e-42cd-be72-6cd9c4bee2ec&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '2ea6dec1-bb0d-4e0c-baa2-1bf4241a5a00', + 'f75e896d-b4c4-4e8a-8d17-6ea682845900', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BQAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:09 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1BgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:00 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:08 GMT', + 'Fri, 25 Jun 2021 19:33:59 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/sentiment', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"I didn't like the last book I read at all.","language":"en"},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) + .post('//text/analytics/v3.1/sentiment', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"I didn't like the last book I read at all.","language":"en"},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) .query(true) .reply(200, {"documents":[{"id":"1","sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":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,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"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,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":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"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6', 'x-envoy-upstream-service-time', - '130', + '101', 'apim-request-id', - 'd564b62b-e821-49fc-90d5-c2f501377bd9', + 'b2bf2118-3641-41e6-8d11-907042e4807c', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:09 GMT' + 'Fri, 25 Jun 2021 19:34:00 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.js index 0367165f0633..430d7d2f2c45 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "919bcd1e61d53ef9171ac5312b7b0a8a"; +module.exports.hash = "01b84290224b19eda44a99f1f5f8866e"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,24 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '82537952-1af3-4e6d-a89d-6bf9a9093000', + 'b52aad76-1457-4ae2-b0c9-26bcfb877f00', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:12 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1BgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:03 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrTr6rj8OcvBqbMYUTmHao6cE1Iu3yaGX2DBEECAr3mZO3TLnsQY2Bh_NZz36ZFARXsCBr7aZT_eAFULvM9B2stfXRclOzxpzcCxu0HOQmTPEdjcgLM7VLh1D2ECxzfr0S-6v9GcV1qYF0pcOd18NkE9e9C86ujzML68JEoexF-oEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr0cuJxXhi8zPiFxDO7eDH2CvCk9C25YBPOHcgK82PhuBs31VBlrHujXJPIEHHgHOPxipUNmL14yMk1aYzi-WnkaSbctJsLVHa85dqEnPuNYEBeLYfYvsQUTnSHlz7_HYAMyKBKOZFCP-ojZ-l05sFocpSQ6Ug_3XGzyOUlJyskOYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:12 GMT' + 'Fri, 25 Jun 2021 19:34:02 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,35 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6d13d50f-9cbe-403f-876d-4ed3d7015b00', + '46746596-f429-4925-82fd-aa7945e77000', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:13 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1BgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:03 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr0_Z-FUc5ht12slhcUx2SzSpLy1LZMAnqMjm2sEwsXAI-9fM3naBPo9Nl6NQg_YSPf1yCsyNXc60ZRZxhzRYV9Bex63W2uzwq4iuLVnmcek9ivIbmJ_MigtnCoKJMieXnygUKNnpXv8CTjK8ClwH6ZpmRm5WJER1S1MSy6pms5F0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrm_r4DbY9qiG_yltsWJW6WLzwYDLrJl-ALnAqq65mdAvvmypEQ4Xv4vclgaC0rAh-yqGNA_F4t3oHtJISp3FS-0cMcNDUd0OvZ1h91ofU1xhuHxIkQZqg1cVFRzU3EqTyuGAhw-Zbj0CjKC4tp26N_C3qEYQJ5InMw-pEgTm9ssogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:13 GMT', + 'Fri, 25 Jun 2021 19:34:02 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=da3f4700-6e3c-4589-ad18-09a6a7d83c10&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,23 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '428c50f7-d2da-402a-a895-321253985200', + '5d543b59-2435-4161-9c9e-e923ea5c7100', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:13 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1BgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:03 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:13 GMT' + 'Fri, 25 Jun 2021 19:34:03 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/sentiment', {"documents":[{"id":"0","text":"The food and service is not good","language":"en"}]}) + .post('//text/analytics/v3.1/sentiment', {"documents":[{"id":"0","text":"The food and service is not good","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":32,"text":"The food and service is not good","targets":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":4,"length":4,"text":"food","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":13,"length":7,"text":"service","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"}]}],"assessments":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":28,"length":4,"text":"good","isNegated":true}]}],"warnings":[]}],"errors":[],"modelVersion":"2020-04-01"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '2597', + '2557', 'apim-request-id', - '5f56d0a3-c9c8-4383-aa5a-8cb3498c04ca', + '5722d8a7-9272-4f03-b9ce-e27dae39004d', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:15 GMT' + 'Fri, 25 Jun 2021 19:34:05 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.js index 9548a6834eb1..ce2c51f7135d 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "fd062b7f4e03bd5adebc58c8ccecc903"; +module.exports.hash = "02fc8cd878126d65fa0c1a49402ba0b8"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,26 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '1b0c922e-4ce7-43b9-8b0a-5e18fc176f01', + '8a835020-79fe-453f-8115-89eed2973f00', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.8 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:16 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1BgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:06 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr1RC2zS7uvr7ooFlv3DrPonFfgVvaG-zyKilMVKSvyqHtqQXZjbTW3kODJ0H8sPGSCmuj0LdPACtS9tH2K0l9Ap_r5C7aOYkTSAlXJpLb9rvLtuSIshUpKzgsKv-Itf1h99XlrSSlDSG1Sm7AVzEjTaAiUWkzX0kD0qyMeH5nMvsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrF2RLXBLwAJtsPAOb3fSnRw2URv6kfWjaNhNHprpcHqwN08AphTB0ddPDIv8GmHvrOAladlzOM71wBTEQGcUPF1lvuQ6VA8gIRH3B4qOPr9yD40XLLGRMcxJpYmBvRDyObJghm_8OsL-d0lB3bLIFJV7YJ8fFIqx2wWS8u0hmwt4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:16 GMT', + 'Fri, 25 Jun 2021 19:34:05 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,28 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6d13d50f-9cbe-403f-876d-4ed37c025b00', + '1e233fee-f232-4e03-820f-8a8c17986e00', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:16 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1BgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:06 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrn27x2muI-jzjfSZqpbM-bhEAO1rvVaD4l0AlzdOL2IqqwPpuqSdDfczu6ii6yjmmzzvHq_7i7vDRB2TGQfqnwCx4qadnbJc1pDA5Gbw7Myoqg9fh1zjZuvtby0ct4-1PINg3128sZA7DMr7GMq8MYb1zGbfsS5mF8yYu2SFUB6AgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrV6RkKXLZCZzsN8Kf1in02fdvw6ZD9XeyTYUrSodJ4ds2J0fKRo_gz6NQ6dVwxClZIEoxYr_2xKq3wI0PCRIF7wHuEogopggkb4tx-lYhP1IH0boomfW5Me4Iqla5VobcJAKbSNS0HdG2HvluYrMdvNqE1q_oA1axDQ8jyY0kBawgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:16 GMT', + 'Fri, 25 Jun 2021 19:34:05 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=7740a883-1c70-44c3-a6c9-23f9a5ad0393&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '2ea6dec1-bb0d-4e0c-baa2-1bf4bc1b5a00', + 'a9a1e068-3c7e-4040-b4a3-6952faa46e00', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:16 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1BwAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:06 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:16 GMT', + 'Fri, 25 Jun 2021 19:34:05 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/sentiment', {"documents":[{"id":"0","text":"today is a hot day","language":"en"}]}) + .post('//text/analytics/v3.1/sentiment', {"documents":[{"id":"0","text":"today is a hot day","language":"en"}]}) .query(true) .reply(200, {"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","targets":[],"assessments":[]}],"warnings":[]}],"errors":[],"modelVersion":"2020-04-01"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '102', + '5073', 'apim-request-id', - 'e0ba7bbc-c57c-427a-8c8e-184e6146e5f1', + '293fb8c1-0e7f-4f46-ba83-2ef1e60447cf', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:16 GMT' + 'Fri, 25 Jun 2021 19:34:10 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.js index 82bd4d0a7fab..662d39188a76 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "476a36da5c0b3436f000618afb9a4bdb"; +module.exports.hash = "734b436c2a291e8271b3b7d3813b67f7"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,24 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '76cd199c-e807-4594-8088-8155a3b47a00', + 'b0a4d72c-fe7e-440c-89a3-a9215ea2cd00', 'x-ms-ests-server', - '2.1.11654.25 - SCUS ProdSlices', + '2.1.11829.8 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BQAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:09 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1BgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:00 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrY7OUOti2mDA0-3y2WDKqb9Y4S7dFPfgYrUb9bJ_YtMcjBkS4ku-_uc-o84BDV6lVWjaBzQrARwMNHiewq1be6tUEhFmhyc5BeIXL5yTQh99Bl_vtKGMsZoqS2GAKh7t_xPuH15n1Baowdwot4adwIT170jKwng4_Sd5dxmF7yLkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr5YGvxvHuO8mpLKa_4fdeNjO2sKxeKT1yaHn0uO6ncKz4hBTdwh-BbAwci3TqYPh2Q3iISyR7jYmN1VcU4LsfZzkLcvZViE-iW4ZAn5rOD5YDYw7q4s2MiSR4hpN2ehh4XFv7hboUYEolmxp8vhDP9Z1usdUBjwYRednW7RZBm9EgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:08 GMT' + 'Fri, 25 Jun 2021 19:33:59 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,35 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '2ea6dec1-bb0d-4e0c-baa2-1bf4461a5a00', + '7f6441d7-2d0f-4f80-bf15-34dc5e685600', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BQAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:09 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1BgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:00 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrUF9HTKZzOqvurGbwItY3n1rZ6b43R5Mz-66ljFlVeLOK4wfCuNkErIp7rcE6i-lh8jJpiD7qUZsxxm-60lDcLy6aIZ1bPW1AerGOa0trBNcl4Bxo6UL3xPPhrhvUraIIfmgADTEDQtNgvB20QxwA3UhazSgT4MZQNgXQ-0eT2PEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrFg5DcDjI6eHjGwBCZbb1RFNRgBaanPQJEMU58aQABspLiWVA4UA9QF34CiqMdC2ZJgrbQ9-WFJ4r0a5xfz27zKXr4O7gDoF7AuoHzcErKAJCqot-zypdlKkuHACwdct4q0_SsoXp5bCPkSrn4NgEg_XdwHyLrYRuTpgU_TiAFWogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:08 GMT', + 'Fri, 25 Jun 2021 19:33:59 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=961380ce-3055-424c-932f-38f840973a78&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,23 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6e319f75-8e43-4e3e-8461-03eb2fe7cc00', + '493aab2b-fb42-40cd-a2d0-93f5276c5a00', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:10 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1BgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:00 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:09 GMT' + 'Fri, 25 Jun 2021 19:34:00 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/sentiment', {"documents":[{"id":"0","text":"It has a sleek premium aluminum design that makes it beautiful to look at.","language":"en"}]}) + .post('//text/analytics/v3.1/sentiment', {"documents":[{"id":"0","text":"It has a sleek premium aluminum design that makes it beautiful to look at.","language":"en"}]}) .query(true) .reply(200, {"documents":[{"id":"0","sentiment":"positive","confidenceScores":{"positive":0.98,"neutral":0.02,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":0.98,"neutral":0.02,"negative":0},"offset":0,"length":74,"text":"It has a sleek premium aluminum design that makes it beautiful to look at.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":32,"length":6,"text":"design","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/1"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":9,"length":5,"text":"sleek","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":15,"length":7,"text":"premium","isNegated":false}]}],"warnings":[]}],"errors":[],"modelVersion":"2020-04-01"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '2620', + '2568', 'apim-request-id', - 'b3d6213b-40a7-4b33-88ae-61b0c4a3e7a0', + '6be40fb5-52dd-4437-90d1-4ac1d789bc65', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:12 GMT' + 'Fri, 25 Jun 2021 19:34:02 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.js index 185212db24ae..c95373820b10 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.js @@ -1,5 +1,5 @@ let nock = require('nock'); -module.exports.hash = "58cb732832495cc0c88df9de67a2657f"; +module.exports.hash = "da56d9c74392fe1ab68ada4cc5812bcb"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.js index 16d9460e7821..84f58d61199d 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "654dbbe98dee03bb87535935318ac0e9"; +module.exports.hash = "a157febd45a30a9364c39af353c5a125"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -25,24 +25,24 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'bdbdfa77-04f9-4cce-86c6-141e2aca5900', + 'f75e896d-b4c4-4e8a-8d17-6ea6de835900', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1AwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:05 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1AwAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:33:56 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrO4fwBzjPsvmrscL9-iA-EYPAuCxmohX0hqnv-C7ciD8nKA98g_OEZ1Y6ChQoc6A9WzuJGPYJQ73alb4DSTlY67zS009sZEZNzwrECAT84IUW2gmab2IEUJii0CqC9COCwDNiX9GNDWDAAbIF1pdzHGozspMMY01iiZWScksbtZ0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrXCR8EyWaf4mPMw6xowKiM8CRYYgvd4rbl5d2g1guhvmreoTbCRypYsc5ZqOUFW6xeJfsrhvXO53P8eMvAHqUIqb45j-hUDtbaPGwHWk2Y7bcdBwGPfXw2LfIa4A21EaP5xm0X_XI2X42qht0S9sYZjxyB69V5P6xaTWqjK0fYTsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:04 GMT' + 'Fri, 25 Jun 2021 19:33:55 GMT' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,28 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6e319f75-8e43-4e3e-8461-03eb69e6cc00', + '8fe8fb0d-d1a1-431d-a7c5-a919c15f6900', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1AwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:05 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1AwAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:33:56 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrryxjTUJVo7h7RL9dhnosNBr8R747uEhGsxBWvbV3bwtCu-5-zFNjN3_BxxqxwREOMWJ2tZILMVFqDoChrjRquEsM-A76YEpZtS6Y0p_JL1jMfmLkPbF6DU5bqcdUsNcltWUP9d-PP73Dz_vbdYbOTKkoU58iMLJq5yA2O2rAwKMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrN0XJZb3NMV2JJYWjz19_GMDkV0sjhVO4nPUtiT8VVgDqXmtlLeqSVqojH3HWckP1HpVcxxyljIY4Vzcjhp00eDACPwdd1QczYld6AhilezyOAJG0qATarm5vsmWGV5brD6om2Q32x3vRaSpdihquaGeAKHv2OVpKfYI1PjzQShsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:04 GMT', + 'Fri, 25 Jun 2021 19:33:55 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=a7cd92cb-b0c5-4f2c-8c9c-05618bd256c4&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '992d1a63-daeb-4e71-a072-8897ecaf6100', + '97388d79-6103-488d-a26f-595cd28f7300', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:05 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1BAAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:33:56 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:04 GMT', + 'Fri, 25 Jun 2021 19:33:56 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/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"}]}) + .post('//text/analytics/v3.1/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","targets":[{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":4,"length":4,"text":"food","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/0/assessments/0"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":30,"length":2,"text":"AC","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/1/assessments/0"},{"relationType":"assessment","ref":"#/documents/1/sentences/1/assessments/1"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":9,"text":"breakfast","relations":[{"relationType":"assessment","ref":"#/documents/2/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":32,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/2/sentences/0/assessments/1"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":11,"length":5,"text":"hotel","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/0"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":24,"length":9,"text":"breakfast","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/1"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":41,"length":15,"text":"shuttle service","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/2"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":65,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/1"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/3"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/2"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":0.97,"negative":0.03},"offset":27,"length":4,"text":"view","relations":[{"relationType":"assessment","ref":"#/documents/4/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/4/sentences/0/assessments/1"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":5,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/5/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":15,"length":9,"text":"bathrooms","relations":[{"relationType":"assessment","ref":"#/documents/5/sentences/0/assessments/1"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":42,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/5/sentences/0/assessments/2"}]}],"assessments":[{"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.","targets":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":4,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/6/sentences/0/assessments/0"}]}],"assessments":[{"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', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=7,CognitiveServices.TextAnalytics.TextRecords=7', 'x-envoy-upstream-service-time', - '2689', + '2580', 'apim-request-id', - '453a2125-ad62-43f5-aa2c-c962baeb5c0e', + '98aa1575-674d-494e-8bf4-be5a095ec396', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:08 GMT' + 'Fri, 25 Jun 2021 19:33:59 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.js index b6ca8e9b1003..2fe6cefc3d44 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "e9d770a867bb5c4f84ba9e75ef627a41"; +module.exports.hash = "29742e141f59dfc99d625ed5ffffe81f"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,26 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'da7ac64e-0451-4c60-97ad-77141f58ba00', + 'eabf8f01-9c62-46fa-a826-727e52233a00', 'x-ms-ests-server', - '2.1.11654.25 - EUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:08 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1BAAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:33:59 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr4o4WliHkPe_gFNnfxZhrQ6UFBTxsGR8fnG-oADq7reAFpypseT6Z63jv7STCJp57J7JxhSK3y44hVC0yRpSdknSpH5Jhc6E_AWq8EJ-Oitv2WnhUWUNOv5Cot-8ZUI2IU6TAglWuX9o62gQNrbcPmR45CSKfmsFOAfhqVaDvRFcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrXj7F8qBTvVgaznH45tYwjXef1TkfGFeLGP6eB7s98zg9cbCxZ4sIcp1MDgG6W09YKCy69l7vqEVWwbOWO4zhnL1v4Kl-fjLFINA4a6aHA9MaSDvdL3jkyk-JU6x4dW-WDpdcqSWEHjpTE1X4o9Ab54LRhcgF8usO92ZEKGiGPg8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:07 GMT', + 'Fri, 25 Jun 2021 19:33:58 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,35 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '74c31071-9533-4e7e-92e2-c81a52fc5300', + '7f6441d7-2d0f-4f80-bf15-34dc44685600', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:08 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1BAAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:33:59 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrXK_cABDT3oYk-6-sfwX4LDNfAoVie4RcWD0SvCweR1Jp-yqPm9l_6rduHKBGPhnZtV9YsceBWv5oCoeFnohm2ykRnY2pM27z3T-mEzX_-qYxCX1yN1B5rYYlH404bgblUksjCYOdjJ-pyxv0BXm_PwauZKFtk5VnIzt83uqfBPggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrPAf6eWgpV542yRlCK9VmHNDE4-8UJ7UK0ezWnZd8blH89JMoCW0msxqcj50ic3xHo4WcP7B7dIRCr2qjsePHFLgOVRchvWz1PvEXv2FnvyyJuwiUAsbjiRsbSoADwErVhdT9VxUGrEul28y8V0jbfUQk3sgTUQcARs3QQzpIr5YgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:07 GMT', + 'Fri, 25 Jun 2021 19:33:58 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") - .reply(200, {"token_type":"Bearer","expires_in":86398,"ext_expires_in":86398,"access_token":"access_token"}, [ + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=b0b9c312-186f-4a9a-836f-947745796cc1&client_secret=azure_client_secret") + .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,23 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '85f09191-d1fd-4fd7-9a80-0d91b17e6200', + '8fe8fb0d-d1a1-431d-a7c5-a91980606900', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:09 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1BQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:33:59 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:08 GMT' + 'Fri, 25 Jun 2021 19:33:59 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/sentiment', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"I didn't like the last book I read at all.","language":"en"}]}) + .post('//text/analytics/v3.1/sentiment', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"I didn't like the last book I read at all.","language":"en"}]}) .query(true) .reply(200, {"documents":[{"id":"0","sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":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,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"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,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":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"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', 'x-envoy-upstream-service-time', - '146', + '90', 'apim-request-id', - '54ce9d00-7b50-4abe-82fe-23cf73abe31e', + '8e83e9fb-47c5-478c-ae80-d82ecb1d34c0', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:09 GMT' + 'Fri, 25 Jun 2021 19:33:59 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.js index 6e775f7a6655..2be4e15b3877 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "e4e42be237559ca6d2e2e47bf78f4539"; +module.exports.hash = "8c94fa8da2c7dc61a44b79f6f91a3472"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,28 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '1840bb55-1134-487a-8aa7-522829b80100', + '5b6eafa9-632b-4453-93f6-648e116baf01', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.4 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1AgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:05 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1AgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:33:56 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrXOuI8i2rYEkhocDPmZXL94DbPyf5QvIjAul1uzg8QSFl3BxLFVVlL9yTGr6mtwecbbR0YJ6MMoZR2q2gA9ft_27OaTeEyb0XPu_-SRquWJiVdpPIJWRliqFhDo9jdheCrzoaNW1XlxDHkbYILQ_rR-HCi-E-8wnBfotlmFjaquQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrQPnjs1W9nTBwpmnhs52F-KoAJ5KYa0mLHsrLo3cG4Vi2m-QTauVwh4nZTTKwEw9B4crJXnfkUWCUgmN6fG6AStni6YiUupfeT7UBtwxYN9Z00pxX5rCW-uXlVXcsO9FQTjcs-15mBcyKbcRXt4T7kpm2Y96sMDaStJGPIsaMolcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:04 GMT' + 'Fri, 25 Jun 2021 19:33:55 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,33 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '992d1a63-daeb-4e71-a072-8897c6af6100', + '46746596-f429-4925-82fd-aa79d9e57000', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1AgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:05 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1AgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:33:56 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrLaQldqyTaU3KGj8TWQxtr-c_qXANJuvPSIkGS2qgl9mIEXLgw7y9ehzP86X2mu4xu8zHpVLxZVWzaa2gPK0zngdY6EgbONy4570gYlPJuvkiTCMyjTnZCUHrV-p4Q5t-FUYE7oPRcCqtrDnd1qsrDpbjI2h5trqdjdUi-8sHcWggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr5SMyA3OTelP6yTFeIlfC-5TEHeLozbvJqNrujkk8kx4mCeXLuK2BRWEe5jVRGcsd5sPrBEAvz0PFibB7wSmduov0D_1aaOICBkGDMj6SlWaNx12hG_jUAMT1bUCpETGDQpdlYYyWypVbzUTdswkzewXwgYkSBfgNCMwHE2xlKIMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:04 GMT' + 'Fri, 25 Jun 2021 19:33:55 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=1973e7f1-3e52-48fe-95a2-cd8ca71071d2&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,23 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '85f09191-d1fd-4fd7-9a80-0d91207e6200', + '5d543b59-2435-4161-9c9e-e923635b7100', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1AwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:05 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1AwAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:33:56 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:04 GMT' + 'Fri, 25 Jun 2021 19:33:55 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/sentiment', {"documents":[{"id":"0","text":"Hello world!","language":"notalanguage"}]}) + .post('//text/analytics/v3.1/sentiment', {"documents":[{"id":"0","text":"Hello world!","language":"notalanguage"}]}) .query(true) .reply(200, {"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: de,en,es,fr,hi,it,ja,ko,nl,no,pt-BR,pt-PT,tr,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=sentiment-analysis"}}}],"modelVersion":"2020-04-01"}, [ 'Transfer-Encoding', @@ -122,13 +119,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '12', + '3', 'apim-request-id', - '4c4dc314-d9dc-4c68-8888-04bd98b7cdb3', + '167e9093-6ff8-4c02-a397-cdfa341bf6b2', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:05 GMT' + 'Fri, 25 Jun 2021 19:33:56 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.js index bb4e346748c4..37188756633c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "47c0ff5c1db4c4c84ee8bf3b06c0e5c2"; +module.exports.hash = "c05939b25e4a8a5b449063e05b2d2fd7"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,28 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'bb55b8cf-cf94-4f31-bfcb-cdbbaff77c00', + '321e8ae2-2520-4ddf-bf6a-9894dfdb0300', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:19 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1BwAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:12 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrZ1hiH4qFVz6mUb2iRbFcOqbm5OFka8YMZMZU8xN1PI_8h5R-_TctLmfo5bQDVjZ1xNYvV6X4P9d-76pYi0-DpvzTOnvBmo_9ne_26KA6Id8b_0tz-HVNJzQUQ-R0KGb-4x2rnzAI18MGkw6Ebkk6yqyfE3j9Fumy1PGPSOM47qsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrDvNorO632aDJQrMzu5d4qAgjhWl-jBFeSOYzgWNQuNfdANDwqL25x6gJ5guOuyfqtjniJzdvpSDiY5jv6le5FZROA7O-sOve5DDmnLJJ2qyvzvPeME5eZC480SjyYk38B_ymCE0Vd6KLgMO56xdcZRXIlPKKD6npO47APRzFmqMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:19 GMT' + 'Fri, 25 Jun 2021 19:34:11 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,26 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '4a103786-0d77-407a-b76a-a2894d21d400', + '9d80f76e-26fc-421e-9776-d8e369805b00', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:19 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1BwAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:12 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrqOseAShhHaEIoxL34QTQ8hsVOQXYHnHFRTEHL0o9DhGPijaS9qcxQM-4mBvSHliMh4Yq3PuH1sIjd80qhyN5EOgW44PuWJ4Uc-EQavYDzkEVYqEURdK9scPpo-Wzjyad7wB5JqhJxUIgDzu4XwwAwc1vCSo_pp5ld-_6_PHPfnUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrdQe1IHB7xYDTGwlTLhcaKbFniXaGevAWpWNGwdIKzF47o2QqXRsdf-vbzBL_l2mEhBfTdoHhIIVxakX1fmdPOTaJQ7XVmZTR3FYsAtX74CTsbJAC1g2eY7MYq_sOigqsxA8kK3LF2TAImfPYz2Z3ZqxaIwROoe5PkYeEtTQN8TEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:19 GMT' + 'Fri, 25 Jun 2021 19:34:11 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=ee6c8fcc-9241-4eb0-99cc-b1ac109deb7c&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6e319f75-8e43-4e3e-8461-03eb1ae9cc00', + 'c19e3cf4-d853-423c-83e5-5de30c5d6200', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:20 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CAAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:12 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:20 GMT', + 'Fri, 25 Jun 2021 19:34:11 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/languages', {"documents":[{"id":"0","text":"impossible","countryHint":"fr"}]}) + .post('//text/analytics/v3.1/languages', {"documents":[{"id":"0","text":"impossible","countryHint":"fr"}]}) .reply(200, {"documents":[{"id":"0","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":0.58},"warnings":[]}],"errors":[],"modelVersion":"2021-01-05"}, [ 'Transfer-Encoding', 'chunked', @@ -123,13 +120,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '18', + '6', 'apim-request-id', - '1f5c48e2-a5cd-4e70-9434-75d87a0ffc79', + 'd695009a-3bd4-44ac-baa5-f8735de1bcc0', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:19 GMT' + 'Fri, 25 Jun 2021 19:34:11 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.js index ff4f6358f782..9be9060e0b25 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "ebdefb9f34620501c03f0b8e8952114c"; +module.exports.hash = "9ec7001ef3eb203b0937c0c2e70a4012"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,30 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'be44e512-5ba3-4925-8bb2-b22ed5306900', + 'e3b095f9-bd7a-4b27-93c1-5d0d3ae13e00', 'x-ms-ests-server', - '2.1.11654.25 - NCUS ProdSlices', + '2.1.11829.8 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:29 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:13 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevraLVfZ5HsYahe7j4EUOMS_5g_XwKxOlJ4nfr86EA6ywYzC2utBe2hEJcyNK7TZ_opmWsHIfa3MYZczdV_phMlZLTNpUVIKUrk2ouYCnLp9aHRa4pmxQZcBzHPWNcCwmlkDqIUWmRbiSDaNH2ZEylOIQ2FEJh7kqcIxhaq8BsfT-cgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrxiyFZxeCiePMjca6sow-_C1AgYrF38voM8luLJ6KoioN5kiJceon_lul0QWXA8gtkbDhx15r8tWcXjt3WYErQ0ODBrfxAX8Pz4YGcMyCG4VhHMkWaKUh_kTALy3esbyobC2WdjPNRGfA1Xt8jsP3bDd_i1dx_ghd7Igj5TcC_zIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:29 GMT', + 'Fri, 25 Jun 2021 19:34:13 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,26 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '74c31071-9533-4e7e-92e2-c81a55ff5300', + '493aab2b-fb42-40cd-a2d0-93f54a6e5a00', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:29 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:13 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrswtCovPQr-zrTWF-0SmoVX539ybg2CHVeqRy5BvGgixF2OXNhPOMxFOo8dZ6L6PI-8ZSaYm7XZOWFYC9LmapS_udL8T7fmOUfqfSQCy5ySf_c3paXCUsC4lGd4_CkpNeuu-v2GRksbhEl5zJsHV_vMIbhg_A_tNudN6uITcc080gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrvfI16-98vFTsn9jutD0RiizjDciCrp8j0YOEMm_xb0hmiHiOYqg-HyucpO-OEe8KHWPUubHlfmROsS2GI1d5M493hzUn3pw5rh0Q3VHhS9pnGVFlrAVHMNvTu5MQTuxNpzqU_B-HnS8Ih0C2pdqaV6pU-E7a95erzAmdGBmhA-EgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:29 GMT' + 'Fri, 25 Jun 2021 19:34:13 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=4f0414e2-c611-4505-bd4c-4e6ca5a3db50&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '4a103786-0d77-407a-b76a-a2896622d400', + 'c19e3cf4-d853-423c-83e5-5de3565d6200', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1CAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:29 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:14 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:29 GMT', + 'Fri, 25 Jun 2021 19:34:13 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/languages', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected."},{"id":"4","text":"I didn't like the last book I read at all."},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","countryHint":"mx"},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","countryHint":"mx"}]}) + .post('//text/analytics/v3.1/languages', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected."},{"id":"4","text":"I didn't like the last book I read at all."},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","countryHint":"mx"},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","countryHint":"mx"}]}) .reply(200, {"documents":[{"id":"1","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"2","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"3","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"4","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"5","detectedLanguage":{"name":"Spanish","iso6391Name":"es","confidenceScore":0.99},"warnings":[]},{"id":"6","detectedLanguage":{"name":"Spanish","iso6391Name":"es","confidenceScore":1},"warnings":[]}],"errors":[],"modelVersion":"2021-01-05"}, [ 'Transfer-Encoding', 'chunked', @@ -123,13 +120,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6', 'x-envoy-upstream-service-time', - '26', + '8', 'apim-request-id', - '759ab715-57ac-4449-ae72-86385ee2c863', + '192a0c66-8af4-47e8-97e7-740f10c665af', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:28 GMT' + 'Fri, 25 Jun 2021 19:34:14 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.js index e9acb51a7bcf..28f318c94132 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "6e617b7ade9d4b8747f2f5cecb45d415"; +module.exports.hash = "89cc2d404cb94fe1fea0b7034c65a3d5"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,26 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '80d8cb26-2d43-48e6-9072-469c3d623700', + 'c6bf3ebb-f17c-4b1e-8b64-bf40bbb74903', 'x-ms-ests-server', - '2.1.11774.11 - NCUS ProdSlices', + '2.1.11829.4 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AgLl5mOR37hHt2qBo8wndaY; expires=Thu, 24-Jun-2021 18:08:09 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1BwAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:11 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrur1S5024wIbSqxoLJ-UuK8StAJKzusIfuLIa0vWZx_4UCJ-JX7efD5IGxO_h5x7I0TEeDutuL4nj1AEvy2eEpJxBhuwPZp0UuzSRiTz-xEhXe6uJR0Y6OzUjmqGuzmFQEA4pwhhb7xYol1aEo744giXylfBkDtQfull10YoqNKkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrKIFvcmsbrEaoAqLx3QGbJEgVoV2ZS_NvV46o1Qc4tf-zIIpBi7RXQN4IjfgnkI_YbPQWOWammTgJ9LMLQiR7jttDvIimKAE2pztR19yz8BpVEbfnvhbiOlkWKbgtQF9-GNC1CSm0S8fE1w0Y3-wFIZEHxpIouwFG-C8N0taedRMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 25 May 2021 18:08:08 GMT', + 'Fri, 25 Jun 2021 19:34:11 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,26 +58,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'fd92d85a-5382-4c9d-ae43-b448c6b21800', + '9ceda81a-917e-4982-bafb-50a78eac5c00', 'x-ms-ests-server', - '2.1.11774.11 - NCUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AgLl5mOR37hHt2qBo8wndaY; expires=Thu, 24-Jun-2021 18:08:09 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1BwAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:11 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr5EkWISFjiyFwVts-cV4Ikf1_T7991qTuB-TcctiN3tT5tS6yOezPQj73L20r0Pqf5BXQOQVvor4WdjITPLpid_7eQi1YkcXJPuWL-j3uI8Pa-Xn4LTunG_it4Fjt5LrbG5WXQ4ARcgyMOe0MpDNn3pz-TZ3PZ6b0qqCHpqIkp2QgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrM6OOVMTwdGGV9iNqpgDaEH5-VH3QpGIJgPsd3JZ4cuYI8z662cf1rNdw7pQA2WoV90D-T6Yz0RO6Wm7CuAixmD1kULAdOfQdOCxXK42KCdhH4mwfH9ZVTCcTBU7lw-Ev9g-0LNFtZ2yE6g6CVqO9Jaal_ki3airUsx2DvawPS98gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 25 May 2021 18:08:08 GMT', + 'Fri, 25 Jun 2021 19:34:11 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&client-request-id=2ed3e40f-c664-41ed-bd59-f570cdf4245b&client_secret=azure_client_secret") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=bba23bce-f357-4f18-ad5c-51cbe296e00a&client_secret=azure_client_secret") + .reply(200, {"token_type":"Bearer","expires_in":86398,"ext_expires_in":86398,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', @@ -93,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'bf6c6319-726d-4c2f-897c-ad88c29d1c00', + 'f75e896d-b4c4-4e8a-8d17-6ea660865900', 'x-ms-ests-server', - '2.1.11774.11 - WUS2 ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AgLl5mOR37hHt2qBo8wndaZz_bg1AQAAAAk0P9gOAAAA; expires=Thu, 24-Jun-2021 18:08:09 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1BwAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:12 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 25 May 2021 18:08:09 GMT', + 'Fri, 25 Jun 2021 19:34:11 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/languages', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","countryHint":"us"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","countryHint":"us"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","countryHint":"us"},{"id":"3","text":"I didn't like the last book I read at all.","countryHint":"us"}]}) + .post('//text/analytics/v3.1/languages', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","countryHint":"us"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","countryHint":"us"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","countryHint":"us"},{"id":"3","text":"I didn't like the last book I read at all.","countryHint":"us"}]}) .reply(200, {"documents":[{"id":"0","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"1","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"2","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"3","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]}],"errors":[],"modelVersion":"2021-01-05"}, [ 'Transfer-Encoding', 'chunked', @@ -120,13 +120,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', 'x-envoy-upstream-service-time', - '16', + '8', 'apim-request-id', - 'db41d0ba-2607-45e0-a92a-b7b2d2ab292a', + 'c5f149cf-529e-4933-bf1e-3d59325a95f9', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Tue, 25 May 2021 18:08:09 GMT' + 'Fri, 25 Jun 2021 19:34:11 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.js index 4e45a0bdbc1c..74f26fc8f65c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "16263dc922adb8d63d54605e66f0f667"; +module.exports.hash = "34a686d31604ca12247f82344cf7f08a"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,24 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '533ba965-494f-4dfa-90e9-da3d44388000', + 'cd5a626e-d001-49f8-93a0-6ada3c7ecc00', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.8 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:28 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:13 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr-vdMwMGlsrHQxQWCzBivmP9ovUO9NHjgCdidRhDC2jvONhHSM2LpgdTQNn_OxkyPGrI63bCY7f5_GOfunX6wtjNvmKPuTdaNYPIsIW4AI42L8HQ3h5WoTo_MT48ylLXxsM5VKl_dUKdIHhPd2puREX8M0PNsZF1eT3aAgap9wCggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrwbCpTQymeTt0nPBEY-iefB1ilYrUy_6hVjc4-dHkXgmWhilbrHTmWBHnKjypMS9mDrnHou_F27Poqox9jbLkZ3-HW4neXX8PFAtc1Sxk78RNvcqMnzmZZaP7sfnwyhI6oZ21kgkrtxedVluNIwa-0iLM9_WCqxx2Dxxt1vb9oeYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:28 GMT' + 'Fri, 25 Jun 2021 19:34:12 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,35 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '2ea6dec1-bb0d-4e0c-baa2-1bf4371e5a00', + '97388d79-6103-488d-a26f-595cb0937300', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:28 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:13 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrnS05TsyumMjsevK77Nxy79DL9ecesMoiyzRLHyYFdLKIGAELJMV0l9dA4y0vjuityn55aq6WlJyUXFJYx5z9R_zcXW2eYMQgQo4OuNwepuEMm4SzFvGqn8eK2DFlHQMhj8Tf3l4V9GiymPp6yawGpIUNs6vQJj1Fc6nmqecEOwQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrUmlZ5Wkb44om4vfaZXBBhSduaSJe6o5sQt15Y_OsCZ548qdbS3z3qjp1Y2FR_wKw-0mDppltHYcVVvYDNGWjzo6_KJ0fRVUgVIXinODOEATngnvrPuN0PBcAPPDO2g0cr6_oDSgV3HkLDZN_EXVLpeCsFslZfRmCfiVFz5p_1aogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:28 GMT', + 'Fri, 25 Jun 2021 19:34:12 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=bec7b040-1f27-492b-ae78-a6d70bb0bfa5&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,23 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '74c31071-9533-4e7e-92e2-c81a46ff5300', + 'a9a1e068-3c7e-4040-b4a3-69525da66e00', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:28 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:13 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:28 GMT' + 'Fri, 25 Jun 2021 19:34:12 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/languages', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","countryHint":""},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","countryHint":""},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","countryHint":""},{"id":"4","text":"I didn't like the last book I read at all.","countryHint":""},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","countryHint":""},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","countryHint":""}]}) + .post('//text/analytics/v3.1/languages', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","countryHint":""},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","countryHint":""},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","countryHint":""},{"id":"4","text":"I didn't like the last book I read at all.","countryHint":""},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","countryHint":""},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","countryHint":""}]}) .reply(200, {"documents":[{"id":"1","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"2","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"3","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"4","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"5","detectedLanguage":{"name":"Spanish","iso6391Name":"es","confidenceScore":0.99},"warnings":[]},{"id":"6","detectedLanguage":{"name":"Spanish","iso6391Name":"es","confidenceScore":1},"warnings":[]}],"errors":[],"modelVersion":"2021-01-05"}, [ 'Transfer-Encoding', 'chunked', @@ -125,11 +122,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '15', 'apim-request-id', - '62620517-3737-457f-992b-626cb8f81f52', + '9df324a2-2bd6-4621-9af3-ec0a2c8b723b', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:27 GMT' + 'Fri, 25 Jun 2021 19:34:13 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.js index 5fbb82ed8c04..cd1c231a37c3 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "27c876f96d5d42dba122be735631d519"; +module.exports.hash = "ef69fca0065615995d37fba2821ced2e"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,26 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '0bea503c-550f-468e-a281-76119ea08100', + '2c5b06ff-7fc4-4517-a111-cb912c0d0500', 'x-ms-ests-server', - '2.1.11654.25 - NCUS ProdSlices', + '2.1.11829.8 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:20 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CAAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:12 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrRAV7RxkTySCN8HRE528yfDxbcK_4h_Q1Lui_3ZCwmwCyv_nMXR-7qxnUHAygkUZfI7xKTNpC81a45Gebl5q9wFKPFdacEDUEns6X9i656YvFUHlR6upCOKUyObULD0MJjJzGCBGTrkpssJ-DSyuxn-JaZuCWyGp4W3Lh4UP8ImsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrLNLYWmArPqHDuB5OLw9tFGMBndLGmDEGqCi-We7p_VB98BR8WbbCyB04-VK6ZWPx4f85O64mB-zXNppwreYLkUMfkDZZSyuxvLDxtxgX1-AHE-llfSnr-OqIH1C-NpZ4Kyw7q772YehxAA-DEX2HxhAwfHe1Tx4VKNQ3nB5oVsEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:20 GMT', + 'Fri, 25 Jun 2021 19:34:12 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,28 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6e319f75-8e43-4e3e-8461-03eb2de9cc00', + 'b7dd8c02-11f5-499e-bdfc-a9fd2ad07400', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:20 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CAAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:12 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr38u4tgBWzFGuALQU1IyCddGvgOjJy2yfaxVTcIuK8oghtfm6WOUKeDJpb6Ai57JecGbZIyXj0z4E14pGZ0IrZjLJrWoaOZbGgudXYl--871LWgz3JPDaDh7WNjVrwORxMKjI0tTwneNlM07Nfeq5CIAo0MKuSgmIOV62qVFx2OIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrLKBCX4-5V2QP9nMPf0pgLnPGnb6V3rQ1Ga0F1OqlDriOx_ds6aALi76MVdXWTxJFlzxqFHJQi_fuBKHE3uTmBj3QAIjtucltEaKyHziNlEzjQ-TisJ_eXrmMZYnaDLyQUe5dE-Pv37f9bljmHJ_-VEmqxM4Z_Ay_Jzm0IQOq8rQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:20 GMT', + 'Fri, 25 Jun 2021 19:34:12 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=5421753e-a4d7-4496-86a0-005a2ab97206&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '74c31071-9533-4e7e-92e2-c81a29fe5300', + '1e233fee-f232-4e03-820f-8a8c4c996e00', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:20 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:13 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:20 GMT', + 'Fri, 25 Jun 2021 19:34:12 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/languages', {"documents":[{"id":"0","text":"I use Azure Functions to develop my service.","countryHint":""}]}) + .post('//text/analytics/v3.1/languages', {"documents":[{"id":"0","text":"I use Azure Functions to develop my service.","countryHint":""}]}) .reply(200, {"documents":[{"id":"0","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":0.95},"warnings":[]}],"errors":[],"modelVersion":"2021-01-05"}, [ 'Transfer-Encoding', 'chunked', @@ -123,13 +120,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '7527', + '7', 'apim-request-id', - '84b237f0-92ef-41d5-a1e5-e879794aed23', + '5a1cbb61-d71c-4e73-9879-8cfdf5c59dc3', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:27 GMT' + 'Fri, 25 Jun 2021 19:34:13 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.js index 5a83b0549700..ce14b08bdfab 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.js @@ -1,5 +1,5 @@ let nock = require('nock'); -module.exports.hash = "c5bad94a95a602fedec2a75f527ce06b"; +module.exports.hash = "0f2053daa7f89a4ab190012374379df9"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.js index e5b1a1f13659..b1813f66327c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "9f0b8fbcb12634c8a28db7dd2756a690"; +module.exports.hash = "b5935ccd1f790970d86fe93b4a0414a9"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,26 +23,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'fd199a35-9252-4f26-8fbf-8a878ae32d00', + '1a9341fe-d51a-43f2-bedc-f5b295e1cd02', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.4 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:28 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:13 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr9bYPH0Q-SUUJEdyRyyncwgd1alGk97gTsdE_QVLKO87R-k5AjrSEANma9Fqun2e_Dz2MIvCoge2-4uq0fZw7l-Ky9AQOoddq2ugIOZN8-oguUY_CKCHINnEYHQhBrxZh0ffiiAtiUMdfzOxopbFLNWKnySxP0QWLkyLx5Mw3HqMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrXrtdck7U5MkgNU_CAMzpKQ5kkVj7nzlTYgBbuS-tCJgVBK7ZfX5ko6arZSg6S2s3-GKnSAWYPnMRfE2eGMYKGLw1GxbTulGiEb7EweE_aorx6nCsh6lnFVzeBG9SuevBPcCo8uYHkUWTbKx2lILzTmpugPYiYxiu2jAWV9GmT9sgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:28 GMT' + 'Fri, 25 Jun 2021 19:34:12 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', + 'Content-Length', + '1753', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -58,28 +60,23 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '428c50f7-d2da-402a-a895-3212ca9a5200', + '1e233fee-f232-4e03-820f-8a8c71996e00', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:28 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:13 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrbmA64xG2HEhrxZCEoMzkK9GKnFfWTe0lj_L8HC7RfwMEI2bFVDwqoct90yh4S4nGFpnVv36Y1c-zvcrk7fGf7X-T98c0y2LW_2IrZ3A0vl87mVc8yynnoZAJbujYuEdUG0mr88K_rNgyWIXN55bwqfKw_EpmUFmZBIi8ixtN61sgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrDtQZ6PU3VROOlqS_aHSUVYICJUoiMUfBnY8Xso76OGJG9y29KrIFl0KvKHZZ_ghpnjYiusn8rRSeTiOMYtHDX3RvVBSmNBYRI0znJbrOltLdxSk1eOB9NI9Y1jUo--x9fWABTwMErX_SmdjwcGkborAy3p_ITHlrmypA5_iTtfwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:28 GMT', - 'Content-Length', - '1651' + 'Fri, 25 Jun 2021 19:34:12 GMT' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=3a6041c7-dc76-4e3a-96d4-6382c74d1e2b&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -98,23 +95,23 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'd8df8829-77a8-46cc-a784-90ab95cac800', + '9ceda81a-917e-4982-bafb-50a7deac5c00', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1BwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:28 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:13 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:28 GMT' + 'Fri, 25 Jun 2021 19:34:13 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/languages', {"documents":[{"id":"0","text":"hello","countryHint":"invalidcountry"}]}) + .post('//text/analytics/v3.1/languages', {"documents":[{"id":"0","text":"hello","countryHint":"invalidcountry"}]}) .reply(200, {"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":"2021-01-05"}, [ 'Transfer-Encoding', 'chunked', @@ -123,11 +120,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '8', 'apim-request-id', - 'd57507a9-d99c-4aa2-b393-5b3e5282df9e', + '81605791-f7b5-4375-b263-af533a270197', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:28 GMT' + 'Fri, 25 Jun 2021 19:34:13 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.js index 5e3edc0549a5..2963fe795f0f 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "27ed5157c6090c01e0f5c97db9f0a3ab"; +module.exports.hash = "ff532ec002c3a730a118f602c709956e"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,30 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '1f3fe492-bf63-499c-8cc9-b5f7f08e9a00', + '9ffcadce-d8ed-42b9-9389-fb61fdab0200', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.8 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DAAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:28 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrac4qYNmwHjhgjSYB7Hgnjfe8oFiQm1kQVEAVPb2PIXRiOa-OGLCcVzviEAcH1ulYmnzaA3C6niem0AUMxSuQCsjBU1zu88ixhQeyf64NbgSi_S_IMvWlXLZgMtGo2j4ISVlGVMuCPUQg3Inqtbf24ykUT7wzY8Ra_TzE0i-YX-8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrY_a1mjEtizQ8TDzW-_5YCwalh37ZDp_hfcLMlmKdr6m9hutgGRwxRIQhMS21T5uhqCYNtNoPbXvO0o5jiKlm0azqCprKZUV1JzeiN7CCkyXLYp6pEiQu8s_9C0qN5hoZcuHGaUx_F9TJC6c5JSA_i1WKV53BZ19C64s5a9XTGrcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:46 GMT', + 'Fri, 25 Jun 2021 19:34:27 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,33 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'b6a65474-742c-4d60-a8b1-d5d3209a6000', + '9d80f76e-26fc-421e-9776-d8e3f1825b00', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DAAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:28 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrQjfexe5A2hvN5k7DyQFezTwsMW_w8u6rINl5Fi36cFJYTFQ1RUvddHK4-tm2pLhH7a9Vcm_WIr_PbfFJkK1Y7d_GGM3oXsY-ZVIz-B6m58FvrXT2Kx2nnlrHC828DIsLxlQEgQ_f71HSC1nGG-8Pn3qZIYMvRZWadHZ5-ep0riogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrxmurKBdrMPmhlmuFRhcVrA2jF_AqsIAfWhLn8YKJTHozeTy8sSkRyClAuGWTESLJqKwUrla3waO0OzI5QUOF0mi3HHNzMklhSw3uTxdXjhvpTCGK81Y4V2LCVWYhql6jMBr42XwiNFHrrT5hKY9A3MFPuyYPQcCRWnqZpmL2ckUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:46 GMT' + 'Fri, 25 Jun 2021 19:34:27 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=d3be93db-e534-48cf-9247-4dc12b8bed73&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,24 +93,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '74c31071-9533-4e7e-92e2-c81ac5015400', + 'c2c46a2d-caf1-495a-b60f-6d20376e7100', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:28 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:46 GMT' + 'Fri, 25 Jun 2021 19:34:27 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/keyPhrases', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"I didn't like the last book I read at all.","language":"en"},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) - .reply(200, {"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"}, [ + .post('//text/analytics/v3.1/keyPhrases', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"I didn't like the last book I read at all.","language":"en"},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) + .reply(200, {"documents":[{"id":"1","keyPhrases":["wonderful trip","Space Needle","Seattle"],"warnings":[]},{"id":"2","keyPhrases":["entire trip","Seattle","Space","Needle"],"warnings":[]},{"id":"3","keyPhrases":["movie","Saturday"],"warnings":[]},{"id":"4","keyPhrases":["last book"],"warnings":[]},{"id":"5","keyPhrases":["Los","caminos","Monte","Rainier"],"warnings":[]},{"id":"6","keyPhrases":["mucho tráfico","carretera","ayer"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -123,13 +120,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6', 'x-envoy-upstream-service-time', - '20', + '54', 'apim-request-id', - 'fe8f4d48-2fc9-48f5-bba4-3897d2563a8d', + '6ac2c67c-438e-4b32-932a-6913fa8c626b', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:46 GMT' + 'Fri, 25 Jun 2021 19:34:27 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.js index 804d2a463aaa..33deb5d2e6f6 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "5ac1175b640ac7edc02566360c0d7edd"; +module.exports.hash = "ad87a0e6d3e4602e10fad4d7f20878a3"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,30 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '185baee8-f0f9-4159-8ab9-da55de307200', + '35870af7-0be5-4723-a569-ef3e16380100', 'x-ms-ests-server', - '2.1.11654.25 - NCUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1CwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:44 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CwAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:27 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrmD8Q51hckpS_amNkKe8mXMDZISU4Mj3B522RksaYYfNa3lLLHM4YffF0heuFcHb6jlfE8yrKBII1XHlv7fyDQPOTGVrwGIYMP8KhcoZtNX0mkoQL7jwDbZIFCDFOvggFQvCd1q4SCuK0lYxh1tJooMw_F5tlnICDz8pr5OguUqsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr2VCl0EGbc5DYGS6D-q1rMtWu1tFdjtHE2yoZ6qRA_oLZQLWsX0j9_asUY1bQJxJNBZI99TihmuLcACh9VSsA0sOyuQKx-dVIHRB2Kl5Vwr2IcQU65SKPDm9xAsCERz4Uyb0lyQaGJahLS3c4wv3q1TcT0O_0WgmchZH7scTKSYAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:44 GMT', + 'Fri, 25 Jun 2021 19:34:26 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,31 +58,32 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '428c50f7-d2da-402a-a895-3212629d5200', + 'f75e896d-b4c4-4e8a-8d17-6ea6ca885900', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1CwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:45 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CwAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:27 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrXrL4nfBWhg2yjEiMT73zM2x8RG5FX7PEmihuAAUZKYprHgn6NZ-t34HZFZ4PA74TAWreHyxWrpnYZ6Jwk6F2MeiARR0UVPMsup9gXwsjJMwCSRwreB68DBiWW8V8RjzxlUIlUA3ib1O6VivvEq3KLtuh-EFPR50DXhpM6h9HgEwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrAtifGdmRz__pOrFEnRkhtWaGFE4kfILfN17PsLhQzRjMyLImRK9gj3zfXoK4QrYnbCD6zzitfqG0MvQuWnKPDPmyQGzlI-FPO48atnJdEPLFpW9bfX0FQMcKqJBKEmuK8_bvdaPBDaqrXn0ZvzirChMq2uyNQUjmnaMh_GyqjscgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:44 GMT' + 'Fri, 25 Jun 2021 19:34:26 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=8d082774-9836-4094-8873-6eeac47f476d&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', + 'Content-Length', + '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -96,26 +95,24 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '85f09191-d1fd-4fd7-9a80-0d91d2846200', + '493aab2b-fb42-40cd-a2d0-93f564705a00', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1CwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:45 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CwAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:27 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:45 GMT', - 'Content-Length', - '1331' + 'Fri, 25 Jun 2021 19:34:26 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/keyPhrases', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) - .reply(200, {"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"}, [ + .post('//text/analytics/v3.1/keyPhrases', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) + .reply(200, {"documents":[{"id":"0","keyPhrases":["wonderful trip","Space Needle","Seattle"],"warnings":[]},{"id":"1","keyPhrases":["entire trip","Seattle","Space","Needle"],"warnings":[]},{"id":"2","keyPhrases":["movie","Saturday"],"warnings":[]},{"id":"3","keyPhrases":["last book"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -123,13 +120,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', 'x-envoy-upstream-service-time', - '19', + '23', 'apim-request-id', - '2c0ca4c2-0677-4b49-9ce7-0fd541a5f344', + 'bfd2de31-b6bd-42b1-9b37-8c81bd5a07c3', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:45 GMT' + 'Fri, 25 Jun 2021 19:34:26 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.js index 11750d6d61ff..ad790153550c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "389eb7bacd0c1c7db09fec04718f986f"; +module.exports.hash = "c75abe4f2185017d992d99f9801ed2b0"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,30 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'ea2e4a6f-387a-45fb-b791-a97d7b31a000', + 'f6aee343-698d-46aa-a583-7b1b184c0600', 'x-ms-ests-server', - '2.1.11654.25 - NCUS ProdSlices', + '2.1.11829.8 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1CgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:44 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:26 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrLTieJPaO6BMDg06AoyrBgzovRBZhwbiD7HqNMEno7RbyoHLxk_ExH1HtnSkaneblTevzNvF0VXXN8l89XkSLD78jul22uJxgn_fV_zOCSQwom9zK41JDKeN8apl9Xao4BwzhwnPBeRTB1tEJnQdAvaGtaP12hxRB1GC0wSc6MR8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrQpHPLt-umy_B3PGA8aWFlErs_-Va6ObICfFd0lF7UIBc2Lx0BIc1bGlf8k95IiZsZoX9kpix-eY-dRAh8B7MctGhSiTa-lSuZu3JqTJX_gunAGL2GSXcfzn8Cut7JfO2I0C3UTNDQJGAjFgMYXjzcsptxAORq4umZz7XwTCfkisgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:44 GMT', + 'Fri, 25 Jun 2021 19:34:25 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,33 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '428c50f7-d2da-402a-a895-32124a9d5200', + '9d80f76e-26fc-421e-9776-d8e3b7825b00', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1CgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:44 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:26 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrHUSwuG6pPZPrnE38j3uKxhzlTTemd9ot5D9nPAzMtrhkfBie5rGY-mPHEdNYN-fkUn9NJDPBl5cu6coQ-8qxhcIXw2pimXhjI3KdX_Batp0Xf49rveNG6Mo5kyZPaBibZN7Yg540KaSoYXVn9-KyBcUG8QyAtjlJMmL9RWQ5Ch8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrPdn9YwiDg0a8HL6ipi01nnkhUXXKfzlx45N9WAPBUqq3DcSS79aHoMa0YNcqyPEhk_zbfNX0we61zD0ARRXawXt-INeinU23jRvhseAUWFo9jmMMM2R0Y0okweSlYVGtW15oaZElXJexfx6s-pJEdxVhWr6CBf8O8KPQjwqrKcogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:44 GMT' + 'Fri, 25 Jun 2021 19:34:26 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=6953effd-fef7-48c9-94b1-3d6c834b93cd&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,24 +93,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '36779b91-cc05-4719-a9c1-efc9ea9e5a00', + 'b7dd8c02-11f5-499e-bdfc-a9fd6fd27400', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1CwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:44 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CwAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:26 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:44 GMT' + 'Fri, 25 Jun 2021 19:34:26 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/keyPhrases', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) - .reply(200, {"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"}, [ + .post('//text/analytics/v3.1/keyPhrases', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) + .reply(200, {"documents":[{"id":"0","keyPhrases":["wonderful trip","Space Needle","Seattle"],"warnings":[]},{"id":"1","keyPhrases":["entire trip","Seattle","Space","Needle"],"warnings":[]},{"id":"2","keyPhrases":["movie","Saturday"],"warnings":[]},{"id":"3","keyPhrases":["last book"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -123,13 +120,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', 'x-envoy-upstream-service-time', - '23', + '22', 'apim-request-id', - '6a2ab49b-44c3-4bb9-aca8-fe66066c9740', + 'a01b6eef-174d-4cf8-a91d-f82bc2e85e14', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:44 GMT' + 'Fri, 25 Jun 2021 19:34:26 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.js index 8d211ebf68e3..5ca4232a9555 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.js @@ -1,5 +1,5 @@ let nock = require('nock'); -module.exports.hash = "491bb7c809dfa728e7e2947cbe0f7643"; +module.exports.hash = "1da9dde1005954f5437f8bb9acccb669"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.js index 8c849ee1bb1e..85a3731e7f5d 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "59ee5a608efaa642bf83c6e654966f55"; +module.exports.hash = "07ba90642ab2e400b301dc4c52ba2470"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,26 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'c605f7e6-8635-47f9-a396-bd8053a48c00', + 'bfd74a97-a739-43cc-8ac4-27a4ec210400', 'x-ms-ests-server', - '2.1.11654.25 - SCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1CwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:45 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CwAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:27 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrT-u7doRHtcm-zFJojWcEsD6Ta155D_unWgcy3r5-ESkc4olHYGBlOvIdKIdz7HX0KEXlnO6M-Hf_Evuqbj39Vqnmvr_4E_LUAcX_JPZO0s846cUwu_NlUyaJt9NOQ3jbDPChNFnuvFqXkNOOrAysv_xHGqQlhPrsQmOboSZ1hWEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrN6Mho5Il370YvewXjNnv7AJK2ejF5ACxkylLZBpo7SoRKBSOYPsR2XgtIHeSNpbrlmqNC1DmgAFyJCPimo7zHJS_rKcE6kkR-VqRcepum_XNAOkzYcq5rrQp0vk3Tb9v7QQha6GZxqSnXFTs3hfcW1bRoAKdMgz1KwDd1wB1kHcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:45 GMT', + 'Fri, 25 Jun 2021 19:34:27 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,35 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'd8df8829-77a8-46cc-a784-90abb4cdc800', + '493aab2b-fb42-40cd-a2d0-93f57f705a00', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1CwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:45 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CwAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:27 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrX_Q_kTIcxpPZLaMutFLAqLLcr0Up0mlxYthFhx97uabEnfAfTCWm0h-QeVO2ZW-KJ_v9gwjZr4lqn0yDOoIeg9wfuQfV5I6TKvnPNCldajK39oEbc9vBvSC9aee05b6JplDoyrh_EHQitExNJTpBMWcUNssvhcAbGip8lqCAyfYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevretfKdNKxXc-Ni9Q97z8bdwI0gHELs_1DdTcwBHbCM0OEEU2fitXU0fmuUlsrmgSm9TT0rRoNac-hvH8AVnu2xdQdlmHrYPO4UCLwiQcbLPfBiWdNkoBKbS-F_SZSnYC8JaqF8g2Rb9tB0oTFIvk1Of_RvgiGDik9Gu9yXjTOGVsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:45 GMT', + 'Fri, 25 Jun 2021 19:34:27 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=1de5f2da-1124-4c0f-afb3-4a5d2c89a9e3&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,36 +93,38 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '29a193e4-4207-4b4e-982a-fd82d17c5e00', + '9d80f76e-26fc-421e-9776-d8e3e4825b00', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:45 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DAAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:28 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:45 GMT' + 'Fri, 25 Jun 2021 19:34:27 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/keyPhrases', {"documents":[{"id":"0","text":"This is some text, but it doesn't matter.","language":"notalanguage"}]}) - .reply(200, {"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. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2020-07-01"}, [ + .post('//text/analytics/v3.1/keyPhrases', {"documents":[{"id":"0","text":"This is some text, but it doesn't matter.","language":"notalanguage"}]}) + .reply(200, {"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,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2021-06-01"}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '8', + '10', 'apim-request-id', - '9d7be82c-67e1-4fe7-b730-07c35abe4368', + '1601639f-cc9c-4c34-ba8c-47ea6b4a5c74', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:45 GMT' + 'Fri, 25 Jun 2021 19:34:27 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_reports_warning_for_long_words.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_reports_warning_for_long_words.js deleted file mode 100644 index c2c787e3536a..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_reports_warning_for_long_words.js +++ /dev/null @@ -1,135 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "783964c4be736d8ac5a56d1736651183"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Length', - '980', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2def30e9-6555-4d7b-ad79-8f15fb8c5200', - 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:45 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrHIFfFhAPp1ulRAXFRi-_NKM2-oX1AhXJ-37J0VnZRwEMBDevYSqSbeZRt6kRI2D3k5-DPnnI_esQK7Srxln5pxG_T6FXhlo7y-NBHlRTo5azPNrEWqrSeafVYn5YSqjG11NUpe38WSpjWzTCiw5Pm--yqPXEJJtznP8guoYmTFcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Wed, 12 May 2021 19:06:45 GMT' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Length', - '1651', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '36779b91-cc05-4719-a9c1-efc91b9f5a00', - 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:45 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr8p4UaT5Dnvgw3jBRPoQedpjzwlg0wvvTajo-C_30gfWv1QmePiMDssdVEMUjrGy4iAr8AYRlkxm7sOG8rvfzkxGqjwu6xJoyt-Kzd_ty-6cxxYkogcqHDt1pzbmkvkAVkvq5Uz9TKLsboHfND4luLdJfyQ3XjkDO9PrvncOvu9cgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Wed, 12 May 2021 19:06:45 GMT' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ - 'Cache-Control', - 'no-store, no-cache', - 'Pragma', - 'no-cache', - 'Content-Length', - '1331', - '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', - 'd8df8829-77a8-46cc-a784-90abd1cdc800', - 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:46 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Wed, 12 May 2021 19:06:45 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/keyPhrases', {"documents":[{"id":"0","text":"Hello world, thisisanextremelymassivesequenceoflettersthatislongerthansixtyfourcharacters.","language":"en"}]}) - .reply(200, {"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"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '19', - 'apim-request-id', - 'ae4a6d3f-60a3-498b-a9ce-74b8f18ef0fd', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:06:45 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.js index 5ad50dcc79f0..8eb93436c823 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "ae4b5eb565929dbf9fccab5f03b339d9"; +module.exports.hash = "23549fef03bb60ac4471d7a0e28e0946"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,26 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'e1823a5b-c143-4603-862a-4108c2608600', + '493aab2b-fb42-40cd-a2d0-93f5b36f5a00', 'x-ms-ests-server', - '2.1.11654.25 - NCUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1CQAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:38 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:23 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrRv9VpD33PpY67iLPasuIrUOF6iU7HcEROWZWEGg9zSokkmrXLuSb4R_2ZoEUqrl9Jt38VEULOCmauOrv_8FSp1GmsSyEawgH2O9t71JlMwsTb_BWnJACIVZfjLwKKmC3NjQuyybAm_M1VMoqxJelnGHu68vf0xt7XTvY8B2_icYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrRutKxLNRcCwPEDzQiQkYerrvXBTMo2yv3CuPqqzSwlhwxTirnB4xM5f3xmfkfwoujqTr_1S9fMLu42QPOoT5eZOCJ5eSD5PO3SLDWciijI3oFHXpmAzOQiNqHcupR8Zj426KXdra3qLP7sSTw3dEqm216NfoV8R9hwzf-93jiPsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:38 GMT', + 'Fri, 25 Jun 2021 19:34:22 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,35 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '53fd7af7-fe14-4c5c-908f-d54fca025600', + '9d80f76e-26fc-421e-9776-d8e324825b00', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1CQAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:38 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:23 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrTE8TP6WdXET3QrFP9PaJIRHNMLyUxKqfDbStA5YLS1WqIFYoIbKL1Aqpc3PnxUQrTNHklVwNmo-DYPK3PSW_LgqMc0m7OBQlVqvs6PaxpTO9oUJj9s9--uPcl8-ZarzqozF5QcwF6MJ_4nf4JlDflJSoO8LwNUIa0tf8dPxGCXMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrSpACu45ulrsfdBEOg9bCkwtYoyHRq145re_zY22lgJ93GSu0ESqfsZZ_L-znktgzFJhCupVtvhr0w0qtC1KsUqV_eLUblGarsKyBzyimOfEhm2PMjCdQdgjzF5NUoZcp1P7DEscOTA6HhTCcWser7UHHVC_9EIpFrFBXUo5HgmwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:38 GMT', + 'Fri, 25 Jun 2021 19:34:22 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=c56be497-b8e7-4f6c-bc85-bed67737746d&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,25 +93,27 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'effc2a94-f558-4e23-9dd5-8d2bbbee6000', + '97388d79-6103-488d-a26f-595cd2957300', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1CgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:38 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:23 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:38 GMT' + 'Fri, 25 Jun 2021 19:34:22 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/general', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"5","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) + .post('//text/analytics/v3.1/entities/recognition/general', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"5","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) .query(true) - .reply(200, {"documents":[{"id":"1","entities":[{"text":"Seattle","category":"Location","subcategory":"GPE","offset":26,"length":7,"confidenceScore":0.98},{"text":"last week","category":"DateTime","subcategory":"DateRange","offset":34,"length":9,"confidenceScore":0.8},{"text":"Space Needle","category":"Location","offset":65,"length":12,"confidenceScore":0.73},{"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.99}],"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.92}],"warnings":[]},{"id":"5","entities":[{"text":"carretera","category":"Location","offset":3,"length":9,"confidenceScore":0.68},{"text":"ayer","category":"DateTime","subcategory":"Date","offset":60,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + .reply(200, {"documents":[{"id":"1","entities":[{"text":"trip","category":"Event","offset":18,"length":4,"confidenceScore":0.65},{"text":"Seattle","category":"Location","subcategory":"GPE","offset":26,"length":7,"confidenceScore":1},{"text":"last week","category":"DateTime","subcategory":"DateRange","offset":34,"length":9,"confidenceScore":0.8},{"text":"Space Needle","category":"Location","offset":65,"length":12,"confidenceScore":0.95},{"text":"2","category":"Quantity","subcategory":"Number","offset":78,"length":1,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"trip","category":"Event","offset":42,"length":4,"confidenceScore":0.79},{"text":"Seattle","category":"Location","subcategory":"GPE","offset":50,"length":7,"confidenceScore":1},{"text":"Space Needle","category":"Location","offset":90,"length":12,"confidenceScore":0.94}],"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.74}],"warnings":[]},{"id":"5","entities":[{"text":"carretera","category":"Location","offset":3,"length":9,"confidenceScore":0.84},{"text":"ayer","category":"DateTime","subcategory":"Date","offset":60,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5', 'x-envoy-upstream-service-time', - '5061', + '2573', 'apim-request-id', - '9ec5f716-5943-429c-aad6-fd3629d7745e', + 'f5e95719-1ac2-4452-a99c-3d2d00d4a3f8', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:43 GMT' + 'Fri, 25 Jun 2021 19:34:25 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.js index fb209d280263..c2931a84af5c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "ec93a478ea19e39c25082ab06b464128"; +module.exports.hash = "83584ef1a3c2eeae474a1cfee3684ba8"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,30 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '1371c947-ee41-421a-bea5-836c2254d200', + '254a8a73-4200-46d5-8043-c75507330600', 'x-ms-ests-server', - '2.1.11654.25 - WUS2 ProdSlices', + '2.1.11829.8 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1CAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:35 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:22 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrwxhNU3Kww5yL7gGmZXsieE4AVHLCW8dHmx94h4oLgM14sxRiAhjSEBSpaF9UFSo92Mmc4QoGXLfN2zHbxRuNlhn9cbRl-0Jhc3VHjncipkVxnGKedd_r_uRR23c7b387ZG9WsvGlnoucR7K0BsV1OiVWVB5J7hxMcZjzmvI9_zwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr6TWOHkS9wjVMgYGIL_8c8PwBcLEn4DK2NQ0IPNa63XAnE4oeYC4kGYeq8B-0ywaFg0JLLozQYu-AX9yKqk9CIsp8C_GNug_HlTRwWA_frLz5Mz9jYg7p8Kt2_5Ti5qMd5ESQtkUEnuaii7GuseARVhNLm7_RaWMqtdIv_chyozogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:35 GMT', + 'Fri, 25 Jun 2021 19:34:21 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,33 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'b6a65474-742c-4d60-a8b1-d5d300986000', + 'b7dd8c02-11f5-499e-bdfc-a9fddbd17400', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1CAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:35 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:22 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrlK2rX9J7h13i2DIZgBtyy4Wthim-cgeeXn6rTPuMA-BXdl7q-tli9PaguW-CcZ_8nx7OYGLyAPGwonPAKmIIVvl27tyDDpPX_e_KwdAeRcEoU52Ofevj_8k5JTihbuPztRnhztciCBBTqg3ehzPV_qsOts7yLHVQyn-eHsvo1Z4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrBYLVysUPWRRUcp0LU6zJdXlti1W4E-2OtsWbZ60QaI4dDzuZx9U1CHizhuR73j1ty4OgzigscjpnH7jSXPyeGEPPCz9Wc0MViB0Ni7-X64jKiVXjensRvsiehgAvaExlPwMYdxtnrHwI7eFkji2ZuYdUzF1kd4Tq0S-aQVZKMe0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:35 GMT' + 'Fri, 25 Jun 2021 19:34:21 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=d1724a6f-0065-4d12-9115-4fe93f8080ec&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,25 +93,27 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6d13d50f-9cbe-403f-876d-4ed3b9055b00', + '8fe8fb0d-d1a1-431d-a7c5-a9190d656900', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1CQAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:35 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:22 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:35 GMT' + 'Fri, 25 Jun 2021 19:34:21 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/general', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/general', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) .query(true) - .reply(200, {"documents":[{"id":"0","entities":[{"text":"Seattle","category":"Location","subcategory":"GPE","offset":26,"length":7,"confidenceScore":0.98},{"text":"last week","category":"DateTime","subcategory":"DateRange","offset":34,"length":9,"confidenceScore":0.8},{"text":"Space Needle","category":"Location","offset":65,"length":12,"confidenceScore":0.73},{"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.99}],"warnings":[]},{"id":"2","entities":[{"text":"Saturday","category":"DateTime","subcategory":"Date","offset":25,"length":8,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"book","category":"Product","offset":23,"length":4,"confidenceScore":0.6}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + .reply(200, {"documents":[{"id":"0","entities":[{"text":"trip","category":"Event","offset":18,"length":4,"confidenceScore":0.65},{"text":"Seattle","category":"Location","subcategory":"GPE","offset":26,"length":7,"confidenceScore":1},{"text":"last week","category":"DateTime","subcategory":"DateRange","offset":34,"length":9,"confidenceScore":0.8},{"text":"Space Needle","category":"Location","offset":65,"length":12,"confidenceScore":0.95},{"text":"2","category":"Quantity","subcategory":"Number","offset":78,"length":1,"confidenceScore":0.8}],"warnings":[]},{"id":"1","entities":[{"text":"trip","category":"Event","offset":42,"length":4,"confidenceScore":0.79},{"text":"Seattle","category":"Location","subcategory":"GPE","offset":50,"length":7,"confidenceScore":1},{"text":"Space Needle","category":"Location","offset":90,"length":12,"confidenceScore":0.94}],"warnings":[]},{"id":"2","entities":[{"text":"Saturday","category":"DateTime","subcategory":"Date","offset":25,"length":8,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"book","category":"Product","offset":23,"length":4,"confidenceScore":0.93}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', 'x-envoy-upstream-service-time', - '2564', + '129', 'apim-request-id', - '353c65d9-ee6c-456e-892f-f09455f46a5a', + '63814f5e-edf4-4deb-b7bd-83f4ca7db533', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:37 GMT' + 'Fri, 25 Jun 2021 19:34:22 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.js index 168f93c3f41a..b6c24153c32d 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "0c08bccb7e5989aaea6172c502d882ef"; +module.exports.hash = "7fb8abf5b43b82fbe7da1ad591b70f07"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,30 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '4086f93b-2614-4ec7-9743-d54ff7f35f00', + 'b05ecb4d-c8c5-4f8b-a4fe-c02c9776dd00', 'x-ms-ests-server', - '2.1.11654.25 - EUS ProdSlices', + '2.1.11829.8 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1CAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:29 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:14 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrqvLEzSfggs2g7fLAUkEqoYKbqnrsnM-EfDE1ZR0slfZfxfyFoVjL40ko0SvF4BlB0PiYxppZgOVE8AIfJ2qYBavhQs9UNXZMK6OqglPx9Sq8tcXXoeqb7JiGi5Z98VsWxGaPTcTWgfrsJCCwxazRlkBoyk827834VbpjdWmJysogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrJ3ACEMIDOg027Gc6tX-elIpyNnX-8yV8hPJThBf85k2Zy8SLkxrGgC59dBdgVaQ0k9lhtQX5LuAxHQWop9-xuDzhbyrRydfyG6yHXgrh2CbNn5T-7_MSK11NA-aZvn_6pErUTn7RdkhBgduvHbV7hJzDC44cFWpIPBbRgGfHaQogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:29 GMT', + 'Fri, 25 Jun 2021 19:34:13 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,33 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6e319f75-8e43-4e3e-8461-03eb1cebcc00', + '46746596-f429-4925-82fd-aa7944e97000', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1CAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:29 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:14 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr8Qtc9tv5IURJyisun6wJSFj5CM7CMcOrk0tbSsyxjH9y_KrhumyI0XozP10EaKAXhZAsAhDgbNUjlxFJU_pQadlsqZQoGlWHO0P5jw6tuItgM9D3GQ2CCrgUg8ewcclmcZQlzx4sCjmILAuDM_cH_BSLCGmSybgH0C_B2qGv3yggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrluu-6DzcjjoIj-0NvL3h2vh-8dECHeMIYzWDCm3HQ5JYlj35GKIhWfT7zOgIIrJ3oGPU_CmBzjokDT5H7isHFKlQDIcay__MJGfcGu7k4Trr2XWWiP5iQySkooFjsKv8v2SVQpldgbjwY49UM8siJ5ZmiUg2p19RDmAHOFd9YhMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:29 GMT' + 'Fri, 25 Jun 2021 19:34:13 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=cb397d5f-ca76-4a7a-9de8-b295cce8119b&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,25 +93,27 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '428c50f7-d2da-402a-a895-3212e89a5200', + 'f75e896d-b4c4-4e8a-8d17-6ea6a8865900', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1CAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:29 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:14 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:29 GMT' + 'Fri, 25 Jun 2021 19:34:13 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/general', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/general', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) .query(true) - .reply(200, {"documents":[{"id":"0","entities":[{"text":"Seattle","category":"Location","subcategory":"GPE","offset":26,"length":7,"confidenceScore":0.98},{"text":"last week","category":"DateTime","subcategory":"DateRange","offset":34,"length":9,"confidenceScore":0.8},{"text":"Space Needle","category":"Location","offset":65,"length":12,"confidenceScore":0.73},{"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.99}],"warnings":[]},{"id":"2","entities":[{"text":"Saturday","category":"DateTime","subcategory":"Date","offset":25,"length":8,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"book","category":"Product","offset":23,"length":4,"confidenceScore":0.6}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + .reply(200, {"documents":[{"id":"0","entities":[{"text":"trip","category":"Event","offset":18,"length":4,"confidenceScore":0.65},{"text":"Seattle","category":"Location","subcategory":"GPE","offset":26,"length":7,"confidenceScore":1},{"text":"last week","category":"DateTime","subcategory":"DateRange","offset":34,"length":9,"confidenceScore":0.8},{"text":"Space Needle","category":"Location","offset":65,"length":12,"confidenceScore":0.95},{"text":"2","category":"Quantity","subcategory":"Number","offset":78,"length":1,"confidenceScore":0.8}],"warnings":[]},{"id":"1","entities":[{"text":"trip","category":"Event","offset":42,"length":4,"confidenceScore":0.79},{"text":"Seattle","category":"Location","subcategory":"GPE","offset":50,"length":7,"confidenceScore":1},{"text":"Space Needle","category":"Location","offset":90,"length":12,"confidenceScore":0.94}],"warnings":[]},{"id":"2","entities":[{"text":"Saturday","category":"DateTime","subcategory":"Date","offset":25,"length":8,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"book","category":"Product","offset":23,"length":4,"confidenceScore":0.93}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', 'x-envoy-upstream-service-time', - '5105', + '7563', 'apim-request-id', - 'd84baab7-f5d2-46e0-9672-991a01523558', + '8d0a5792-4404-4808-a90d-f673a5ca8bb9', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:34 GMT' + 'Fri, 25 Jun 2021 19:34:21 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.js index 9d26451a982d..bdf6414878cb 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "e5f6837e5bfae1feedae851efe0d69df"; +module.exports.hash = "0029a0cad6c6f82703376540f0bd3d32"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,26 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '89afec39-0b41-46c3-8710-a230e0b58600', + '709023c5-ddda-4aca-aec9-ad98984d3a00', 'x-ms-ests-server', - '2.1.11654.25 - SCUS ProdSlices', + '2.1.11829.8 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1CgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:44 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:26 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrJj-vcwG9XTMU4j-gMCb5YxXJeXZVqia9tinHdG_LYefQYtyRJoxLH0lwZE0_yQspB-bKeUVmST6txUTMehT2W1hc0MXST1D5Hk11BdJjqAQV218SDu39bBROiG_DnJTEerYbU-wO1wDjRjpVxvtcUnOVynGkJ4tm4y9k5mx2K0ggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrYmnfgcpeMKjrH6skCkb3n7dyOWAgZvjmSQF9hbRkESDjyZSvI4G5IvY4vBqUC9pJdR7Ml2UtRDpxOGp1OBnqKC9Ep_UM6A7qD4oOWxJci5GOoA2VqQcjQovPEw2NBtwvZvPtRsu_AzaHGYPP55241-zs6PHUwgOozjFD15XRtH4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:43 GMT', + 'Fri, 25 Jun 2021 19:34:25 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,28 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '4a103786-0d77-407a-b76a-a2893324d400', + '9d80f76e-26fc-421e-9776-d8e39f825b00', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1CgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:44 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:26 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrjCLp0tvhvHxHwEgfVKG0UJghe0wAGPvh_xf4BSdgj7j5pURlPmALM34eWwy74WeTqWWIzhQn2-gtjBPrWwu0QLILz8BHmmPw2HU7NgyaFa0UC865r_zKsDykKqzzfv7jWbNzQFrP3bfzPDDjD31EEKMgNSw_lDcORY9gtcbUBOkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrXxLaqbRvXGtDI83DERcHqOm0uBCxskXkbcyqRy7wfSZmNSm5M8V5s2vLm8xbtEPc52cKa1cGPpbt_eHqdKKpu8SMSQUym07k6na3Eqh7IrfkWzgFOpdVnGqFu11z3n5IwvE_viH1RQPkG0BEMiBPfWxegB3a7h3PjmWgyNyaWIggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:44 GMT', + 'Fri, 25 Jun 2021 19:34:25 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=059f9da5-d5b5-4ab9-a33e-171420344134&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '992d1a63-daeb-4e71-a072-889792b66100', + 'a9a1e068-3c7e-4040-b4a3-6952e5a86e00', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1CgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:44 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:26 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:44 GMT', + 'Fri, 25 Jun 2021 19:34:25 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/general', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"I didn't like the last book I read at all.","language":"en"},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) + .post('//text/analytics/v3.1/entities/recognition/general', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"I didn't like the last book I read at all.","language":"en"},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) .query(true) .reply(400, {"error":{"code":"InvalidRequest","message":"Invalid document in request.","innererror":{"code":"InvalidDocumentBatch","message":"Batch request contains too many records. Max 5 records are permitted."}}}, [ 'Transfer-Encoding', @@ -122,13 +119,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '11', + '4', 'apim-request-id', - 'd9b3ad65-66ec-41f8-82ed-dd3147fb15c8', + 'b4df21f8-a307-496b-b52c-d091ef13a665', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:44 GMT' + 'Fri, 25 Jun 2021 19:34:25 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.js index b228fd3daea2..1185910205a2 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.js @@ -1,5 +1,5 @@ let nock = require('nock'); -module.exports.hash = "d2635e129140da089556ba764cfc0888"; +module.exports.hash = "bbec3f3747719fefd0480adad1387e7d"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.js index 22fde964860b..53281a378cd4 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "27d0310d285fe930d29d601dd509a876"; +module.exports.hash = "d15e29b1e7c287a6a7f9f4eb38f2a277"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,30 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '9b8f7ec3-c151-4e59-83cf-df81e1ceb700', + 'a37f3c46-0c58-4bce-ab57-1e6862fb0100', 'x-ms-ests-server', - '2.1.11654.25 - NCUS ProdSlices', + '2.1.11829.8 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1CQAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:38 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:22 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrI0irNGlAkaPGueyths9suIU6XMYzTdfXfF2ozGa_7GVdOPk2ocybSSOvjSI_PRBOPZwvYlCieaJBwo-dzuh3ser_ESaje6ubSzM9s6wX235PwvL3wp2tuAav9JXZA-NsH81o4u98sArL8zzA6lk9WUEU0fjBcoLP6ulf1SKiC1EgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrcwhRYFzeVvjS4Fc23a9AwFYwg3lTWZyxGir94V89yKd7G49DRjPaXJtTjaQ8hPzP9y0iGCfBKUVYODpAvwET-mKIMtyVmsLQ_li1LNt0CpiOgGnbuZCnkWiWcFk7zzpaQPkP_DFq7D4IDL6J6wQpuK9S26r2rAYGjDhis1WO7TcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:38 GMT', + 'Fri, 25 Jun 2021 19:34:22 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,33 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6d13d50f-9cbe-403f-876d-4ed341065b00', + 'a9a1e068-3c7e-4040-b4a3-695239a86e00', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1CQAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:38 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:22 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr7N5m7ARiGPO6TFdmiqjTzbdEnRQcbGkzc2brdsuHOx0P4jHYwgneSxIDS4dGpZefSt2j2vrQV_XBwPWWYB4Z5Ex6tNwLgBOOtt3w0mMlpJ4NyJuDT0J1RSmmX8EMgq6FBVvujwqo2EJ7ajgcxz_XTcLkIDEZXcwz26qAgcCEYDkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrhfrrlELwrVe3gbJC1P4kQmJwdVfhczqYArs3UnYA3zgU3zcM5nuyBSo7-pXsoWsseIOhEfhIKCtauEoeOouJTRTmAb2Oov-NGcUdpvbzeQAvWXYhDggCaZHSYb5WITFPv_5z2QiW8sZxlf6X9pGXa9rXpf56OZvqfAoR4TtvEkEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:38 GMT' + 'Fri, 25 Jun 2021 19:34:22 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=02c1a23b-c238-44a0-9448-45ee19e80f74&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,37 +93,39 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6e319f75-8e43-4e3e-8461-03ebd5eccc00', + 'a9a1e068-3c7e-4040-b4a3-69523da86e00', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1CQAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:38 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:23 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:38 GMT' + 'Fri, 25 Jun 2021 19:34:22 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/general', {"documents":[{"id":"0","text":"This is some text, but it doesn't matter.","language":"notalanguage"}]}) + .post('//text/analytics/v3.1/entities/recognition/general', {"documents":[{"id":"0","text":"This is some text, but it doesn't matter.","language":"notalanguage"}]}) .query(true) - .reply(200, {"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. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}, [ + .reply(200, {"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. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-06-01"}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '11', + '5', 'apim-request-id', - '47e9592f-536f-4271-9a52-1ef8d55eb0cb', + 'b54535f5-c311-4be4-86c2-c0c3861e33a3', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:37 GMT' + 'Fri, 25 Jun 2021 19:34:22 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.js index 0639b957e165..b48fb210978c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "35e18a02175d22045fa5f41101995d68"; +module.exports.hash = "9063fb3ac884b0e8a06b081f163417b9"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,26 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '8a976f3f-d981-4ca3-b3b0-d5debc375400', + '1bb627a9-05b8-4bc0-a12c-6313f3956701', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.4 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:31 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:46 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrSgHOqKZK082VRAXCOo-Qh9bm4Z4r5zwzHlVng17CnmGxIHjlJU4Av52lGd6PFcXcSrfLxaBV7MGEVMj-vnNbiLhb4eCj4_Raez7AO_S9uyFw_KvtTn4jLnJAlSaIbh6-roGU1p4EGUVwlwQsUoQb5eAsHI-pcUMZ4kYZ8FRe3pwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrIGAuUBcEHKrHxx85a43928T8BIKDbvq6uBiUZ3X6fJHngvnHOXlB9PQS0X9R6OmhOJRr8egyRkeqtodU-ZVyqyvFEjXDreAMAzuUdGGvEzG7aoOe2h7T3AzxxZysJigXdI4XzgmpgP0JO5fJ1nBG7VH-0cw45AgFlyGauezQPgEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:31 GMT', + 'Fri, 25 Jun 2021 19:34:45 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,35 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '4a103786-0d77-407a-b76a-a289952bd400', + '46746596-f429-4925-82fd-aa79e4ef7000', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:32 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:46 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrprKarU7dD-yIu6zOcn6224NtDGt_9itIokCB1p7WUtT_9amz1K4TXQZ_lynA7qcpywsnQS_rAbH-Z42x6VuhipTw0tHpQHOQyZjD5KxW2_zQEIAKVvIksP_TlJ8TIZhEJeEldIeLpjKkB2IeFYVdgyyb3HnTYx0z-KroLlMtRk4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr4Sg78D18-N7aquEKgmNE2mKECBiw7fUTd2H6jhuSehswaT_acALpno6p2Faa2zuz1n4qH8699sTpUX-YBR_bDlXcqTHJ7rLuKPF3555Y4IPmlssZdsJrfyTmWY5S5zIUMdozFSViiyWq5reYJXMgKnLCL5tetYy3rT9Wseen-cQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:31 GMT', + 'Fri, 25 Jun 2021 19:34:45 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=4d51a6a2-84dd-4e34-904e-2244d675decf&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,25 +93,27 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '36779b91-cc05-4719-a9c1-efc9fca65a00', + 'c19e3cf4-d853-423c-83e5-5de356626200', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:32 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:46 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:31 GMT' + 'Fri, 25 Jun 2021 19:34:45 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/linking', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"5","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) + .post('//text/analytics/v3.1/entities/linking', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"5","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) .query(true) - .reply(200, {"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"}, [ + .reply(200, {"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":"2021-06-01"}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5', 'x-envoy-upstream-service-time', - '7846', + '245', 'apim-request-id', - '7e4f73f7-e0ab-438c-be1b-b30b4a2909ba', + '2f206f1f-c83d-45ef-9ddc-5eea5e0e32ad', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:39 GMT' + 'Fri, 25 Jun 2021 19:34:46 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.js index 8504085531d3..320aa9c983ae 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "1ae4872d1a05bb91b39f70b77a0c95a6"; +module.exports.hash = "40df1b35e0e23c65c61cb7f625d8c956"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,30 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '7a8e30f9-dbbe-4cd2-9f0d-171401b5f600', + '688e9797-474e-40f1-9aa7-634019d80500', 'x-ms-ests-server', - '2.1.11654.25 - WUS2 ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DQAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:19 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:45 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr_R_Qn1dGPdsnZfYnBqwKAY7dQB329miNeEzwz2pVXgXDuEvi_g43Cmr9PDB0K6W0hnow52PdrfXPTy59ToXiprMJIqhW2ZFXJIvTtfA2-5UxRxCqn-kHnd5I-IityxGckSUw1vhq3ez-VWPyTqVjZLNv21Qt3z1sdvKyjNGIbPwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr4qIjj3MPIe8XCeJjZfhUYLD4oyNMq2KB4JggQQWnCPbWgHSQMIS7QP0rBl7cOq_PprRaOIyWBYsW5td5EPvheugsoIOeZHcp34gVutEWiXBSl2nsb14OUvIXerOd322mt8uEvDy28pMn_jW7_ToluGUpO_ExKekCLJ_nzirAIHYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:19 GMT', + 'Fri, 25 Jun 2021 19:34:44 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,33 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6e319f75-8e43-4e3e-8461-03eb03f4cc00', + 'a9a1e068-3c7e-4040-b4a3-6952d8ac6e00', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DQAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:19 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:45 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrh5NMsgrbEiupFogR_-kx4773rsbrRyQezKG36e8PtN8mwCuRTlrvxafvc1o9em6QD_FEYbywu119huFSp4ywNmhEuN8Ty_-lk3YHDVgPR8ndC2ucaG7vVYFEqGGg2Dughlwz8gGCH0VN0RxglQuBd6K-kwoFDAkcZANMJjU1r-4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrV2OBiguT8d5Wqc7nkSAvIWhVGPoyM1qQlc38B4FLAy8YLQiIXaB3VpN7hi2Mc43L9-8Q8mid2J6JdJx3S-1fWUMQr9AchFOqmJ7pUad8daMQytte6wnGfQC3vgVk2AGDr2ba3N1tZNuj8uXNPhlapYyJfDVLGI81H4BSBwty6eEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:19 GMT' + 'Fri, 25 Jun 2021 19:34:44 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=a87fad07-b10b-480a-888d-bb991e041f3d&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,25 +93,27 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'dac8c720-7f5b-4daa-a8aa-ada5271a5600', + '97388d79-6103-488d-a26f-595c1b9a7300', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:19 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:45 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:19 GMT' + 'Fri, 25 Jun 2021 19:34:44 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/linking', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) + .post('//text/analytics/v3.1/entities/linking', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) .query(true) - .reply(200, {"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"}, [ + .reply(200, {"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":"2021-06-01"}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', 'x-envoy-upstream-service-time', - '11610', + '17', 'apim-request-id', - '3e30f003-41d8-4b3e-9154-8654712292ba', + '52edc0ee-66bf-472d-b63b-98a326a21fe2', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:30 GMT' + 'Fri, 25 Jun 2021 19:34:45 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.js index e83f68b1065b..ca8428f9cd97 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "c5448d099331477e0ec40a2578c949b0"; +module.exports.hash = "fd9441430a75f4afcd27d4647131a0f0"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,30 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'ff111c0e-8114-493e-a8a9-b87830b68700', + '65f28b2f-924c-460b-b740-c73871570400', 'x-ms-ests-server', - '2.1.11654.25 - SCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DQAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:05 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:44 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr-rPTMO4Eo1oBmPblRawQh2UpPM6n6Lx44b485iqE0PiPOSXS1LtorEeE6pTVjSiOeuBAru8u6T9t4L5Aj3kfXkADZEdTq2BviuyTPtTWkJxIrW81vThhlmrsyMAK2iE-_-KlVeo71IOD1iDMz4Jj1dp3UdhC5QzJ9WriQolk8Y4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrZoXEkQt3_kCQd013lY63y7wADVo8Xlf_cb69_couWHYuf5Mteg65BDEx181b1UJh_IwE_n9M1LO4j9s_GCKVRdDCiuY77DNoqWFvVT7l46Dx09mrtkAc3VCaA7_O9B89_GAH1yNDRSJdypyizk7zwrW10dzNuKKiGG-oJNqPY14gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:05 GMT', + 'Fri, 25 Jun 2021 19:34:44 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,26 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6e319f75-8e43-4e3e-8461-03ebb9f1cc00', + 'c19e3cf4-d853-423c-83e5-5de31c626200', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DQAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:06 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:44 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrzUU5ScUBOjgOrbE0PFsG2MZ3RxdZDaGUffE5rCERyKjtdVu84msFDEGYlzF22erHaqgPFpIC0HAbh1AH12Ke5HZCUko9HJGSuzxXpyOJ2cyIiYJDGBQT3Awdesy_77yNI744zHqRtUHyuYTeQ4uPZLrmahKNnl50KMV1IIzjMJMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrxRzJo8-x99uCkre__y0SWtk_3tQ6v6fekdov1MwD8vVx2huKCal8XsNSM1hLsfMjB8chfeYa0IVkEvjWH42jLTvarNyFmHh2nrjXGgN2HQCfVS3YiKWZJDlva5REviDKevjzHYsAs-GIWtn0DoZPLpugJDZ5VUkRTbtipA3FbgAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:05 GMT' + 'Fri, 25 Jun 2021 19:34:44 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=622d2897-a263-41d8-989c-af94dfa4f425&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,27 +93,27 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'a94baaa3-2e20-4683-8e1e-ea7aa546c500', + '8fe8fb0d-d1a1-431d-a7c5-a919d3696900', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DQAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:06 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:45 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:06 GMT', + 'Fri, 25 Jun 2021 19:34:44 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/linking', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) + .post('//text/analytics/v3.1/entities/linking', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) .query(true) - .reply(200, {"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"}, [ + .reply(200, {"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":"2021-06-01"}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', 'x-envoy-upstream-service-time', - '12887', + '31', 'apim-request-id', - '31bdde95-6126-4d1e-a535-aee8ba528273', + '0d7330ae-3f63-4e64-b1f2-2697efd4adba', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:19 GMT' + 'Fri, 25 Jun 2021 19:34:44 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.js index d7d038065bcf..95c4c20e22a0 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "e5f6837e5bfae1feedae851efe0d69df"; +module.exports.hash = "0029a0cad6c6f82703376540f0bd3d32"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,28 +23,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '57551ad4-7490-48db-a64b-12de5ff39700', + '321e8ae2-2520-4ddf-bf6a-9894bbe30300', 'x-ms-ests-server', - '2.1.11654.25 - SCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:40 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:46 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrHL2sTASx7vcmzIlboCkLDUyX58gKtOmIG-TbKaSpwwYO1WPCmHwbOiSMuEtG5-OVpzpobjEw80nnaEruDWQpRj8KqxfJrUTBkl7-X6G_QoPy3gOOMMrj52MR8UVTIVZViW-P-lebZQKvAJQxi4BvHvNmjjRM9prG5RKwK6UjtUQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrp3EaEzuG7KnBDtxTftPzv8lAS9V0F7gBFG8qJCeeQZwOyFfdTXZilNA0jQfreN1M34ZX0o9IvahmCApiMlL971rCTjFLgHvN5IrBxq4JYO3Wl9wReS8rRtKeeFaJ9_hl6be6MBrV_h4LYDJUFulTxh17zizKsNgsnHNq6Gm1LnggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:39 GMT', + 'Fri, 25 Jun 2021 19:34:46 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', + 'Content-Length', + '1753', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -58,28 +60,23 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '36779b91-cc05-4719-a9c1-efc96fa85a00', + '5d543b59-2435-4161-9c9e-e9236a657100', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:40 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:46 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevryz74G9eF3swt_NZLwH0VxGqiPe53vpPE_UZ16iNL6I3Ail9ImkUuNm1TPcq6XZOtVSVHOhF90-nOnI29uAfV3mZpMNFluP3JFhfeYOBKNp_TToY7bgJyRxkJ5Sn6Zqp4nOXWXqskio_1o34whJBSsk09bMHcxSDpgtoImH3ANkMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr1kHxyVcxkLBKr1aytRxWzcwaxB08kt-EhFk6EQs6EXyYtzKwdVorTWRBOjbprqI22yF30PbmXHuzmZVTPcuwQF2SQ-P4JoAvqSY5WNUcHQg9UQPONHMOkSVpo9d-G4pK8tjUzhvNZoLQQgQ49j074y5j35RlmPfW5hXWycA6SHwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:40 GMT', - 'Content-Length', - '1651' + 'Fri, 25 Jun 2021 19:34:46 GMT' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=006f9fac-d9e8-42b6-b1ad-2ffac3be3359&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '85f09191-d1fd-4fd7-9a80-0d913d8f6200', + 'b7dd8c02-11f5-499e-bdfc-a9fd44d67400', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:40 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:46 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:40 GMT', + 'Fri, 25 Jun 2021 19:34:46 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/general', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"I didn't like the last book I read at all.","language":"en"},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) + .post('//text/analytics/v3.1/entities/recognition/general', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"I didn't like the last book I read at all.","language":"en"},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) .query(true) .reply(400, {"error":{"code":"InvalidRequest","message":"Invalid document in request.","innererror":{"code":"InvalidDocumentBatch","message":"Batch request contains too many records. Max 5 records are permitted."}}}, [ 'Transfer-Encoding', @@ -124,11 +121,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '6', 'apim-request-id', - '9c9f5098-c621-43ed-a095-c0a35aead83d', + '94825aa6-0c3f-4b17-a279-fa970f1e02a7', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:39 GMT' + 'Fri, 25 Jun 2021 19:34:46 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.js index 13fee5f6dcb5..b70a1257a453 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.js @@ -1,5 +1,5 @@ let nock = require('nock'); -module.exports.hash = "942072e116577f1a6b3763ea3a73281d"; +module.exports.hash = "a18c30f77c1c7c0ed35bbd9a51da7e8d"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.js index 6bdeec6d3615..305e8fa586d3 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "22c8065f2a2eab6ec27fa48e21f5bfdd"; +module.exports.hash = "fad55cf856722b5497b225d29f822c2b"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,26 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '282052c6-1514-45fc-bddf-3f74498f6200', + '7fccad9a-0bd6-4fb6-bddc-6fe686c48501', 'x-ms-ests-server', - '2.1.11654.25 - NCUS ProdSlices', + '2.1.11829.4 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:31 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:45 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrsmzogbZaROBll1Q9F5XQGl_KmgMDTibZ4Cq80-HJKpYPNedGB0I4ZN_jxlLhg6fPKyFFIFxa-9gBQU3uCYLksHMTShWPspymSd0vYIqTLfmyvYeeX4fTx0O_cmhQBwf9LrnPXs2RCts-QQ2RalDOCtBKZJXJipYEyoEk1F-lh-kgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrqB09_q2gyo0Zs53Eg-ejy_LaB9Hm0zhMIdlRVStiTOZcOGNCQbCFSYST2ZSPvi-jEDVY0LRu-B8rjTLE5P7X9xr_rBZbwCbL72Y0k6cKlKcAGWy-Q48D536wiSWOCmWAfHmDs0ThBfAp77AgH38pYOnI_kHuIygcHQMgyXhVedIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:31 GMT', + 'Fri, 25 Jun 2021 19:34:45 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,28 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6e319f75-8e43-4e3e-8461-03eb26f6cc00', + '493aab2b-fb42-40cd-a2d0-93f55e735a00', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:31 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:45 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrr7ZfjYvf55St_d60vbxbUO1bT7Ay0f8nilB8mq9xV_Jbi0eYMkN3jblLuVOduhS__ErayE0a7iFU7aYGWBKBxk7l3BpsgKat-XqoiNCHMeUQR0DU-UxEySDg51Z3O4L6Uf5lfQJM7TN9THbXZZ2V6dPyLaSd1Qmkl2BMiF8f8VMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr1mzrSZN74aElfxDg4NFUj7NWIhS4PWo2oicS1_YvR7IMxfKFPjGxbocGyfVdPug9XmD6nf0UrD8UUDCtL4AmkHTQW5XSC-u5_VGEBv2lhmSvn6R8LAiXzuqlCalPr-aW24QtsfnCAuIPQI1AqapRuw8TzJvNwaVld-ZxgOw2yC4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:31 GMT', + 'Fri, 25 Jun 2021 19:34:45 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=44ba95e7-b593-4655-abfe-cfc19d7f299c&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,39 +93,39 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '2ea6dec1-bb0d-4e0c-baa2-1bf402285a00', + '546b154e-3691-42e1-a17e-80b9c84e6700', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:31 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:46 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:31 GMT', + 'Fri, 25 Jun 2021 19:34:45 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/linking', {"documents":[{"id":"0","text":"This is some text, but it doesn't matter.","language":"notalanguage"}]}) + .post('//text/analytics/v3.1/entities/linking', {"documents":[{"id":"0","text":"This is some text, but it doesn't matter.","language":"notalanguage"}]}) .query(true) - .reply(200, {"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2020-02-01"}, [ + .reply(200, {"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-06-01"}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '3', 'apim-request-id', - 'b8229653-aafd-440d-b5aa-9c427ed14b78', + '02a8cb7a-3e2c-4ff4-b176-c025146ecae3', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:31 GMT' + 'Fri, 25 Jun 2021 19:34:45 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.js index 77246d99cdc3..8f2d4cb85f4c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "3c1cf732cfecf4dacdcf927da139b2c2"; +module.exports.hash = "0503abe68a40b8eb9a93ee2d07ce5d93"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,26 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '00eb2077-abe5-4149-a734-5fe8caad8d00', + '77291fdc-5d3f-4497-a825-9aad9dd15901', 'x-ms-ests-server', - '2.1.11654.25 - EUS ProdSlices', + '2.1.11829.4 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:59 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:43 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrm4qArX8XiMdKknq2WXVeJXA0GaualxdZn309vKq9692V5eIYK4c5FEvYfdG-9i6pHQZJLTSFHkCcH_m1YwPLyqXOh4XIBd3e3B5A_fCR7mfc5NBFU9416-JgfWWj5dyXjAqYADPh-bq7xgRExkYlbMNZEtnUR73EDD-l_cLUkmMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrM1-PDUH9qTbtYEZ2s8oYIvnvUO44r__n1s8AAArrf9dgCgxsJwQ0bIz3qTtskDT6m0KOOVrBp1KiuwCm8B_b1ks3ZnIwcDBBEVCW8MnAqhaFMpDBCsllupNV5aE1anFS4bpSBZrWuKrnWFoi-CxI0G1Zpw72iZ1aQiRHCXuKnEQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:59 GMT', + 'Fri, 25 Jun 2021 19:34:42 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,28 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6d13d50f-9cbe-403f-876d-4ed3420a5b00', + '703b39c0-f313-4374-a6f6-9fd0c7fb5c00', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:59 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:43 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr6yz9qSnWM46kYuDk48qN0rqQOCIqWi54HsLYya4J4pJ_pzdi38NPrajOd_wsilyewzApyrNy1YOWv7aL_xbec3uSdckwbjBOWvBGUYECj8iUJG-pdEtHNizD1yB15UqCbXSXY6F0-Lr3YLHROe4gvLaT7fAkTRdG5CthDVGaioIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrZXpDp8xlzx1BF5YhYGwSB7OlceDyTg98Ng-rnJW3yjIUdEKr5WQQjPrsltsuMM1ymlqEBqTxuKfN0HfRrfMICrSsAWfwO1nVCzTFLaxm7MYf4yJNhuMlxCjK97j6zRbB5Rxjqn52p9W6nCNLqN6P1met1CZFwyKHLlgQ9_2JrPUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:59 GMT', + 'Fri, 25 Jun 2021 19:34:42 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=fa2cd892-aa86-4aa4-9894-98e3e99d2723&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6d13d50f-9cbe-403f-876d-4ed34f0a5b00', + '9d80f76e-26fc-421e-9776-d8e375855b00', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:59 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:43 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:59 GMT', + 'Fri, 25 Jun 2021 19:34:42 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"I work at Microsoft and my phone number is 333-333-3333","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"I work at Microsoft and my phone number is 333-333-3333","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"I work at ********* and my phone number is ************","id":"0","entities":[{"text":"Microsoft","category":"Organization","offset":10,"length":9,"confidenceScore":0.95},{"text":"333-333-3333","category":"PhoneNumber","offset":43,"length":12,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '5046', + '36', 'apim-request-id', - 'bea8184f-0a3d-4bea-8252-d8fb24ee8251', + 'ff734f69-8d9f-4fb2-8be1-238499d27dc4', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:03 GMT' + 'Fri, 25 Jun 2021 19:34:43 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.js index cf9c48de2985..46a9690bf33e 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "26ecdf3c4e59ab5814b305f792e378bb"; +module.exports.hash = "e022d94350f7224141f9cd7cdfdf4cc3"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,26 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'ae23e601-dd1f-43b9-ab4a-3d3a54060200', + '8837df7b-2964-4342-a91f-e2e70b6aa100', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.8 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:04 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:43 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr3qi3ijr7BP5-Zh9WpfEJlt4fEKgRrV0iThrqCZIsfjOhLrXbz--nvMc_5GII5sV01b0bxA03UcIRAxqqoXkQUefABnPeuPqDgkBWomZ3GiR_PjPMPtQo6lLkGkgZDZssArqozE8sWCpFc0l5uvYKLZJZUosxQmSyZ9_YXq5L2JogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrRBfBt49ZJ62bt6OBob_ifdF5bzxp6wzNtZo_nObbWi8tS7tQLCChCJBPCUF9CxOGCbzKcN4A9zfnPOHf7Cc-8avpoShH34iSXt9YVijZfstmXgcjQlrkhFuNoHYDIegWacYFYjJJknk3NTXnY1ZB4f4Did4RvDTOvrTw1GxblcogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:04 GMT', + 'Fri, 25 Jun 2021 19:34:43 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,29 +58,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'd8df8829-77a8-46cc-a784-90ab9cd0c800', + '9d80f76e-26fc-421e-9776-d8e380855b00', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:04 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:43 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr7O9x43s4kGXChygzsITnAWmhOCZuE4SVWNmlaCWlfgZEx6l7wC_MUANxMJZF9850fUkaUc9bKDsTrRJogsxmAjZLrM02mAzTahJlyea1noWok8Wqfo6Qr7kiPF9UJXtKSAS_Siyoc9yPeirMp4GADjgT737w2nAz8PvyW2l6NV0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrd3EXWvKkEMGTkA3pEZ8qx8b9l-v9FvMZuxaMvVxQPmcrqYVkZYtB3gdJkXVU_BGqGBKGIb07vjSVqzOM3iYReEGsmIxYVcdsmuVEqCLc_3lmyi2m0vU2RtgB7hYzp11-UWJ5TW8wUiQjbLdWgpNNLhBSIIJwT0Z8eG5eSpOETpQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:04 GMT', + 'Fri, 25 Jun 2021 19:34:43 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=18fa4128-f123-4d9c-b269-c6bc4899e525&client_secret=azure_client_secret") + .reply(200, {"token_type":"Bearer","expires_in":86398,"ext_expires_in":86398,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', @@ -96,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'a94baaa3-2e20-4683-8e1e-ea7a7646c500', + 'c2c46a2d-caf1-495a-b60f-6d2099717100', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DQAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:05 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:44 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:04 GMT', + 'Fri, 25 Jun 2021 19:34:43 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"Patient name is Joe and SSN is 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"Patient name is Joe and SSN is 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"Patient name is Joe and SSN is ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":31,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '101', + '27', 'apim-request-id', - '5ac66f29-5b81-42dc-be12-257219f5bdf3', + '4d0b7de3-1c99-47d0-8646-3426d5558422', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:04 GMT' + 'Fri, 25 Jun 2021 19:34:43 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.js index 31b9781d71ca..5e9330ca991c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "d8b8d1cfbcd4254f122b3b32edc99bf2"; +module.exports.hash = "c102b5dfd1ffe2c563f80ba16ae00455"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,26 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '576d32a2-72c6-422f-b518-a9ed1f01bc00', + '30a5f1cd-5d57-4e4b-ac41-c5d834660700', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.8 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:58 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:40 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrd3cY20Dbe2OoVGHTVKyryPcNyUAaGrEQwJ4vQ-nnDUKZUk9bjrs_2-n8aOo5SGbug5Wnwb42bA1_BCaG2_tr5XG6hF9jSg2ScRbgggTovjKbXinBtL-9FnADVcjEIOwnRcaQfsDF2Z_Gn6b4MdQxPfvLtK6mafo1y0GCYvjtOecgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrK0uLqV20Vc0Jrg-VIj3yRIgM05zGf3FoJIBFCK-PyZhTqTr7yuy63CrYH5eJjO41aAIjaxQq1RlK4sNhK0p-Sn8OJHYsJGY1j3pKAxc3whhBisCDw56ogKCgHLZ2L9Qlq99zJGatncPysPeorSHnpVvKdzy4RP2qV7nYOzFtXIogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:58 GMT', + 'Fri, 25 Jun 2021 19:34:39 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,28 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'a94baaa3-2e20-4683-8e1e-ea7a7c45c500', + '60255122-4f99-4912-bd79-4b9125706000', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:58 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:40 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrpPQRoDVDS7Fl4EXkN_kqMsQ3mZedCqLS9lii6r-fH_dkSmKdIHR-tE2rVRHAx3IQi_-k5kn7soPp2dGd_y15j9EVZgrj5lq_vdIoTbySUU9_IkMXEdeJPpgOo6CQhjTAoCZsx2Rsa0Iyxh0h7arHdMLnmIOcpBeVt3jcKwGPlTwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrEcO8Co2EfPGonMmp7ez3bqUdDRvH1LPdkDVZ8JXPAqtkm0JSevCfwALJn7e5KPN2_Xtd2FY_Tr1Ge-h0lkuUYTm5wMFMyNIQ1a9-91Kdx4onRnDRRchddP4kbwNHZkOl9od-UhowdQb_t9HdOykwvDgaxaO_qY5uZoNF1JCXPvEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:58 GMT', + 'Fri, 25 Jun 2021 19:34:39 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=77f47f63-9610-478e-a275-6aad14a2beca&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'effc2a94-f558-4e23-9dd5-8d2b52f26000', + '493aab2b-fb42-40cd-a2d0-93f592725a00', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:59 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:40 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:58 GMT', + 'Fri, 25 Jun 2021 19:34:39 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"5","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"5","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!","id":"1","entities":[{"text":"last week","category":"DateTime","subcategory":"DateRange","offset":34,"length":9,"confidenceScore":0.8}],"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":[]},{"redactedText":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","id":"4","entities":[],"warnings":[]},{"redactedText":"La carretera estaba atascada. Había mucho tráfico el día de ****.","id":"5","entities":[{"text":"ayer","category":"DateTime","subcategory":"Date","offset":60,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5', 'x-envoy-upstream-service-time', - '95', + '2546', 'apim-request-id', - '9643b2f8-d155-4f6b-ac43-7b3730d25d12', + '71e330bd-c716-41da-985e-fbdf4a021f6c', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:58 GMT' + 'Fri, 25 Jun 2021 19:34:42 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.js index fb5a6f34ba21..96285c26aa25 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "3f114f7ea97d3418acc612def114d1ba"; +module.exports.hash = "4e3cd609c00a705d03d31f2bf28dfaa2"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,24 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '571ce9b7-93da-4592-a19b-1303a0331d02', + '95aa2c09-f74d-4316-ace0-5ec77ecd3700', 'x-ms-ests-server', - '2.1.11654.25 - WUS2 ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:49 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:34 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr9vFJJggjRlteFECrwsqOooDtF4i8NUb1_wSuA73r0LUm6rImvDdmE10bpIsYcpRH_yVRW7DIvoEtzI9tMqNvM43nv_MR8WmfeyZpLy3zSy8I2NfuxO2e7pnIkCwayKjdrrgu9nFq0QQwFdAaR9MibQLzxMibNqQKN55u1uFUHcIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrAAEKUBy1RSw0HAoGiXKPipc5Ozx0v6Twt3lNhGxyKa8kcRaBnJMMLXONYLMXp03ARaTTWgUY4AKR0UJp03nhf7xHKJzu73kjtgg5bSSVhQKFMOU1o5xyx4Y-VIWob7wXrgz4C2xTlSjKih7KDvoy5Linxbukf8oLqZmQR3nEMcQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:49 GMT' + 'Fri, 25 Jun 2021 19:34:33 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,35 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '29a193e4-4207-4b4e-982a-fd82997d5e00', + '8fe8fb0d-d1a1-431d-a7c5-a9197d676900', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:50 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:34 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrrDCdAyiYoW5ZUifYFTIQ9WZVTugr3-e4LZcnwEb1n5E9zpetL_sS6gTGGKoCn5EFw30fAGKOksdMYYF9kwFS7yNSGJCSZ-EAf9dd7-BlPqlYUQ-GzfSwVitLHOunVVa5IV_UZNbj0eYHvsYGiPZG6IHhudEyiYXFWX81FWSoF28gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr4iinGwWg46QDE3a8aHrqjddGcX2t0YZO-Z9IHLD3BNTmRifKelXCozQMVPs9WzhOACir7sxeVG4eep7wVxvkrhuoihJfGPcnqR3f_rceXEkrIwScyBnB5X2QFHyJYNcxn8rcjr2EWeUNJy64VLQdMUJCIyGE3OdYQJ15pVnwYxwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:49 GMT', + 'Fri, 25 Jun 2021 19:34:33 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=97c29406-d47c-47db-897c-d1058d4b63ca&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,23 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '74c31071-9533-4e7e-92e2-c81a5b025400', + '7f6441d7-2d0f-4f80-bf15-34dc206d5600', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:50 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:34 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:50 GMT' + 'Fri, 25 Jun 2021 19:34:33 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!","id":"0","entities":[{"text":"last week","category":"DateTime","subcategory":"DateRange","offset":34,"length":9,"confidenceScore":0.8}],"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":"2021-01-15"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', 'x-envoy-upstream-service-time', - '2538', + '2563', 'apim-request-id', - '132902e9-bb72-4422-a39c-3104683aa6bb', + '0bb0c906-0dbc-4c30-b82d-bef34ba18137', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:52 GMT' + 'Fri, 25 Jun 2021 19:34:37 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.js index 6bf702e592d4..2dc68b81ec28 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "da3de759c5be0855db687cef98b06854"; +module.exports.hash = "fcd73fcb0c4205d92a523635756d6383"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,24 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '8e4f51d5-3255-4ac7-8b43-81ea57737b00', + '5a8a4f62-c987-4a89-b7c7-054dfbc20200', 'x-ms-ests-server', - '2.1.11654.25 - EUS ProdSlices', + '2.1.11829.8 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:47 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:29 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrp2wn_6Dp7BDT0RqFjvTLZ38UpJwZVVX-xWzjS-pPDEtXpxDjns6K2_IA21YVliWumMvRCdMZXTWWnSm_BNS0aSg1MdKJw3XbFOyatz3UkGFdDEvrJ9g1aoU4RftFrWNV6ro4zI2YQGAGkvLg9NQw1-eD3OQ-GIPzRbNiW692t9cgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrZwf0fuHpr-QHZYn_QdifV0VJz7es8JUWluFiSRxzQN8-yTfeBXSVYIoHdLqzz4SyhIVlFlt7juENJCygof8bI1Vbjs6HiNBVTuidasD6bykxBC1DTe6taQw576TBxAz1Xh0Jo_5NEMgXgcXj0Dq_n1baEaFvjSakjYFEvIZ-CYQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:46 GMT' + 'Fri, 25 Jun 2021 19:34:28 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,35 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '74c31071-9533-4e7e-92e2-c81adf015400', + '9d80f76e-26fc-421e-9776-d8e30d835b00', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:47 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:29 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrUl5LAO3BsqL2H21B94TBAH1ZCfNxbT7RP7i4Ef31KDMtz4d3lXYPgGo1U4gg5pAQsERQjVM4F0Fxs7KA4AD_00znWiKJJhSPUXFCEUu4tfahkmfRkHlrfMoLPVTGLUKoXgQzmK0KzpPd07g0HjgVIr5-PlMc29WnQigCIehxPPQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrTQJ-xT0_zXLpSaWzAskFlb8XGvKwr8zsitFVymlX9DkxLfrdCM3v5LoPPr-RhzTbksThnv4JMoFF3V9ygEuMwUv7LI61G80-ic47HSbSiCSKoBYQh1iItl7Qmq-NPdoHi1-n5jXVBspeGJBvOuE52XBFaunSoaTBla2dgV8fUO0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:47 GMT', + 'Fri, 25 Jun 2021 19:34:28 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=886896b1-1046-408e-84d8-a0108e4f750a&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,23 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '992d1a63-daeb-4e71-a072-889712b76100', + 'c2c46a2d-caf1-495a-b60f-6d205d6e7100', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:47 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:29 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:47 GMT' + 'Fri, 25 Jun 2021 19:34:28 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!","id":"0","entities":[{"text":"last week","category":"DateTime","subcategory":"DateRange","offset":34,"length":9,"confidenceScore":0.8}],"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":"2021-01-15"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', 'x-envoy-upstream-service-time', - '2548', + '5038', 'apim-request-id', - '6a80386a-f7f5-4507-a5c9-5c99d25851fb', + '4914c5e9-aa68-41c7-88b5-62121ec0f27e', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:49 GMT' + 'Fri, 25 Jun 2021 19:34:34 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.js index c3ad8d5f7c5f..4df1487fe440 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "4ea23e2ae9763bda04a09e42e2ff4aec"; +module.exports.hash = "630be62a5cda2962b4bbaad3db24f9e1"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,26 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'ec0d39df-a7ae-4247-b603-3945b9cfc700', + '8f647f21-1b20-4f61-9c6f-51e082310200', 'x-ms-ests-server', - '2.1.11654.25 - NCUS ProdSlices', + '2.1.11829.8 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:52 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:37 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrjf-DAXEKtptx-M8gFmYKHDflT0E3cWwxcDvrTQU-BmIpLlAYF3Uk9izz5vJ-3MfT3bScbUDhpJpCKtkJFM6WCRkKWGNcHZvRXndtSHpmwkd7opoajphlK054O9VVQ0iPDFnA0cVY8eAGI05mXBRjOQ4Zhbt2k_wNel6u2-fqBukgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrlw3MtDylhhyczxqyDOxEU-5nIEGFVTv5oLSq3-gplJKS4RAAQP6dG-SajS4JpIN0vk3TrUMoM-A_v7_dSwHPHlKixkU3dI5wUlRy4RjayfqiZ33j3420kBprG8HWlbgPh4s1xLxMkLBKks264w82zgaEqnHjQj5I7RB0rH_cIPEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:52 GMT', + 'Fri, 25 Jun 2021 19:34:36 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,35 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'b6a65474-742c-4d60-a8b1-d5d34e9b6000', + '493aab2b-fb42-40cd-a2d0-93f5f8715a00', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:53 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:37 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrS7RCJE85J6kH7H1q-MDrpsab6i5PvY6wOH9vsFbugvdZo-JlkqpQnQuYO8usvNgaQ8ChjwbqcOXSDL-47er3Ysg_M00f5uRQ2z3WArjAmG-ArS1uqDNODsP88hNEFj7OoJaUnfgM5GJHHMjrIvF9bc_A-BHr6AMkYBJ-IulOE94gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrWGUnHgyzK-vkpAV07bp6fB1nfmC5jKh0wwCAi-agK7D3m-Vpsw_sgzCmP8yf3MmUciG4lSyIfUHHjFeB57qsXZRAGMBRydUzsbkOhn8dwyLu9BgEi2DvqI1eG_qnfV7kBxGTkizi2TRdOW94y0HqSWjWUrUlruxoyKCU8C1FokkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:52 GMT', + 'Fri, 25 Jun 2021 19:34:36 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=3b46bcfe-b206-4c8a-bd0b-699e2936350c&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,23 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6d13d50f-9cbe-403f-876d-4ed306095b00', + '1e233fee-f232-4e03-820f-8a8c339e6e00', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:53 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:37 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:53 GMT' + 'Fri, 25 Jun 2021 19:34:36 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"Your Social Security Number is 859-98-0987.","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"Your Social Security Number is 859-98-0987.","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"Your Social Security Number is ***********.","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":31,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '5050', + '2539', 'apim-request-id', - 'd6ce3b6c-f008-4cc5-a606-9873f4057056', + '7d7c5f34-16e5-4086-995c-8d12ad4387b3', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:57 GMT' + 'Fri, 25 Jun 2021 19:34:39 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.js index c29826faed8f..7cb7a2287596 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "79af028152909c5f1eafb4311ea88989"; +module.exports.hash = "ab91690f5ef35c8898e38f3c835cbc21"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,6 +10,8 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', + 'Content-Length', + '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -23,26 +25,24 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '35e26fb5-3835-4f9d-bf73-f950c9200500', + 'a16eba03-859f-409d-8fb1-ddfe4ee15100', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:28 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrszpIoKelACwkWcK23ItOU0wVVN_mXPRrRnPqtzkavvCep8AkRBTv9XscZPwoPI5vOH3obQtTGdS8fEHqzsFUYQBHbM7ifLAsxARePAoQiq3ITkjYj_ShxAwjphvVZ_6oB40f5cpob6umShES8OAG6XJTL6KFQa7W1PdKvKJGcBEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr8U-3Mh2QLv5wFJF96vZCmxiAX2v3NaGt1vhMMli6tWkmkEJYKietIo9oJ5O1ZEd4RjNqVKDeI53DN3kS7fahCVQ8SHnrxdRnvw2NxRX2FerD73j2SIH8-R91MkxoGptq4XP-tOzE-gMOvx5fneRfNQFXOl94Kfysy7OXMHEo1HIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:46 GMT', - 'Content-Length', - '980' + 'Fri, 25 Jun 2021 19:34:27 GMT' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,35 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '4a103786-0d77-407a-b76a-a2899324d400', + '493aab2b-fb42-40cd-a2d0-93f5a2705a00', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:28 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrOYq04sRwBnEQbqtJBUf_Eo6d3LUbZncQMKMDn3D39c9LXKOaUIAgApD-eQFCBkObZUMf0kSdr6EafoG-PNIT0tVpDfFmcxkJ4mow4v8TCsrhZnQ3eIbsM9QcHZmlXHJ-0ZSVbc4T3WaaA9pFLzB1LIZwRB7c-MF_8Qj_BVpLJCsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrd_ZIZxvxG1-qYhUkRozFpohF-XLxcOdxh3vIh1xXFEmg8uL-kUIvMXzKm6ZvuMGdowmrgbQKS7pKOEXGjIa60Y0qzDCWk2fSELXkRnczzbMT3EhSVQbHFhwHAonzOnHwhMSSS6H6dZ7dLWosvOTphgoxWaxNrxUDX7gVGT4A2IggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:46 GMT', + 'Fri, 25 Jun 2021 19:34:28 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=b945d1f9-fcc9-4e30-a630-31ce444000a0&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,23 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '36779b91-cc05-4719-a9c1-efc9489f5a00', + '7f6441d7-2d0f-4f80-bf15-34dc466c5600', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:28 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:46 GMT' + 'Fri, 25 Jun 2021 19:34:28 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[]}) .query(true) .reply(400, {"error":{"code":"InvalidRequest","message":"Invalid Request.","innererror":{"code":"MissingInputRecords","message":"Missing input records."}}}, [ 'Transfer-Encoding', @@ -122,13 +119,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '10', + '7', 'apim-request-id', - '9ed1f804-df9e-4dc0-b51e-51cad22d55e3', + '47d75803-dacc-4a5e-8940-e1050ccc4f3c', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:46 GMT' + 'Fri, 25 Jun 2021 19:34:28 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.js index b8f0a5d72790..f951a7b7d31c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "9a0fb15dc6f7df15feb0ad16fd33485f"; +module.exports.hash = "ccbce5fd6d6bbc1f2ea2f7507f99ae07"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,26 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'c21553e8-db35-4f23-9519-5647269fe900', + '004c4e93-0a25-488f-b214-89edb4ab0200', 'x-ms-ests-server', - '2.1.11654.25 - WUS2 ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DQAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:05 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:44 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrav_XX8Aod05l9cUSifyShHDEvC-dTRVEZ7tZkjc7saR3Gt_Gt335usYUXa0qrJ5kZz5IefYujpNC4obAncjcP4xpomSJrRivW6X7FXbob4L7YRYoPnCis5ni-Ai0rsCwjGW93_Q_N8VcN9r0BzenejG5q9uXUgt_lCWbyWeXLXsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrBqJcmVHl_inpfIVbvNDex_ePD03FzlIQz7qCgUjjFDOmGESjT2wCmq3vCgT8a9SS03ybon2SSlDzcQZEVEA-MbgHkGR5ynch0y6b6IsH37IBDut8oh4O6xs3-0T-cEGxBPxVj1GUZ68fzpLKv5I4H4tLKXTJPOLMC_XZ9J0ZCD8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:05 GMT', + 'Fri, 25 Jun 2021 19:34:43 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,28 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'd8df8829-77a8-46cc-a784-90abb8d0c800', + 'f75e896d-b4c4-4e8a-8d17-6ea6c38b5900', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DQAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:05 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:44 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr9Mt9dLL9IqRewaLJ-FT9tVzyxFnaXxU1AD1GG2ZRk62qplJAz46epCUsjdwn48nERMXSlBls7JFJqWbdg0EL9V2o0fFBvZFsQSLv-X-ppI70CJpu9j7t7WQq-4xm1GzoS3FPnLKefkxhrl9KR-h_K_m_8QWFcxnccImBeUqtlFsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrKVvzZPuKtKMAk7A-B-ajV35ACaFn0erl2TOlrrj9DlV1v-VlQXvx0CvCcRNTtK-sgsOGfWqNoJ3SePC3T8BtFwSHQIsw6jsy3cRfZm-hSvg4_ZRZBPsbKifJxizVhoZ17rhqbJTz4_LGUMjPvTS2GOCoye3EIVcMYk5gpbM8aNQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:05 GMT', + 'Fri, 25 Jun 2021 19:34:43 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=2a7f7f6b-c773-4b8b-9932-d691ec1bdd89&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '85f09191-d1fd-4fd7-9a80-0d91a0886200', + '46746596-f429-4925-82fd-aa7995ef7000', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DQAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:05 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:44 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:05 GMT', + 'Fri, 25 Jun 2021 19:34:43 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"Patient name is Joe and SSN is 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"Patient name is Joe and SSN is 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"Patient name is *** and SSN is ***********","id":"0","entities":[{"text":"Joe","category":"Person","offset":16,"length":3,"confidenceScore":0.79},{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":31,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -124,19 +121,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '33', + '26', 'apim-request-id', - 'fa49982f-b585-4e80-a80c-5b1fe6def0ba', + '584900bf-56d4-4b4c-a038-cbeffe1a7efa', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:04 GMT' + 'Fri, 25 Jun 2021 19:34:44 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"Patient name is Joe and SSN is 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"Patient name is Joe and SSN is 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"Patient name is Joe and SSN is ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":31,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -146,13 +143,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '66', + '62', 'apim-request-id', - '3b24fb3d-f9f2-49f6-9d02-5e4e3ea0c1d9', + '8ff9532e-bb28-4728-87e1-821e8b835925', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:05 GMT' + 'Fri, 25 Jun 2021 19:34:44 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.js index 30dcd33f5999..0493ef24c705 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "6806fbbaedd6f5fa7f13442920c5eb8f"; +module.exports.hash = "7a84168b9a25f213e63eae0d9e947364"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,28 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'fcb920a6-f76f-4a37-a69f-1b766106ed00', + '392a226c-1b06-4292-8509-188d81960100', 'x-ms-ests-server', - '2.1.11654.25 - NCUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:58 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:40 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrwgsoXVv_JEzvV8xnGbCLRqlqde8CVvWhcMaU8jdcN0eBSmSpXh1mZsJdjcsRBeAJIuoIM-SHHOUce2cPslk2NghevBTnIxUOjaa6f_j4lS5Z9_MUz7vxqCBt-Zar9FZLEdkDjB-M8IqONS4I6PeC6ojU9ZeEfr5z1aiAiwKYnmIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrECdKoyxitXGSmFBS8bIrV0zl4lqM7KB8f-lnRqF7XpJ35oWb2231SjuhmXPPpbHhP7hF5oGQ6h6YBpAoyqsJbTOBE_TXlxZZfpKPxV9V1Syv4ovo44PnwnhpOkmodUvezjPBmvpRKMs2viwCu6mFB_kfseZTEQcbmMruOpGhnjYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:58 GMT' + 'Fri, 25 Jun 2021 19:34:39 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,33 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'd8df8829-77a8-46cc-a784-90aba2cfc800', + '97388d79-6103-488d-a26f-595c16997300', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:58 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:40 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevra5EyUsYAqqnlnCHbukMQJfeY1Cyv0ZcUwQidX4_1jDUXl7Pbu6O8saakfCPSKBlVYmybO6Mau5cjz2xXsIJjqxOF72s0IgI_ZRiLNRxOIb0caT0ckqU3yVqeO8UmEgUBCepXBdW3HtFnYJ9JfM64dLtWDG3a79akZg3P6ztrJo0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrF3EPH30o6kUru_MezZWV4biu1HmHd_y5gx1CpOFD0BQ7uGBkJweo7DyFELGafeWywrYYxXs-7r2ZabppF3IyloP_d7p5QPMwt-GaDilzSZtKuXDuIHXa01JsKV7ZIFQX6dwWzBxMs9S4cgUmTk1NXrvcOVqur1gX7Vb0_28OnZYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:58 GMT' + 'Fri, 25 Jun 2021 19:34:39 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=afa92766-fa14-43a5-9e45-1e9c08483e7b&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,23 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6d13d50f-9cbe-403f-876d-4ed3190a5b00', + 'a9a1e068-3c7e-4040-b4a3-6952baab6e00', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:06:58 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:40 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:06:58 GMT' + 'Fri, 25 Jun 2021 19:34:39 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"This is some text, but it doesn't matter.","language":"notalanguage"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"This is some text, but it doesn't matter.","language":"notalanguage"}]}) .query(true) .reply(200, {"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,pt-BR,pt-PT,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -122,13 +119,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '16', + '2', 'apim-request-id', - '254b4001-285a-4309-8b1c-51b963243042', + 'a8d01398-0182-4ef9-8573-1ec7ff769073', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:58 GMT' + 'Fri, 25 Jun 2021 19:34:40 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.js index 376bceb3dd38..f711e56f874a 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "e5cda0607de11d8f629bac112d3a425c"; +module.exports.hash = "5bf2e604e0628fd3b31f70ada6ce84f6"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,28 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'c0f648bd-c8bc-46e9-8204-c6e0b5c9d900', + 'd486c693-d012-4e6d-a094-1406d18eab00', 'x-ms-ests-server', - '2.1.11654.25 - SCUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:47 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1AwAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:17 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrCXQ3kNnmqamtFOrq0LrclMi2K6TVjZUTMDVWYRtcq43DqDTX9ruepVjUoEoSFNO9pDsGLfq_oItaZTAQ1nGkXE8RE1EdkOwJt0Imw_jI_y41p3M6l56ZvmJLYYYMaZecit8Xxo1HFAvjt532bEeM1ThtoRZPzfZeYPzJBkXbryggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevriTCcUh33FBM6NFRRBGbRiUJTiDvzWfzfciULc4uAnfsKgk-LFgMFpDgnm_ouANpa5mNMmZOpWKmEOYxHuW4xvD3boL8Wvy3axy7zSb0a3_Dw227y0I69PtaMGuwQW8lD3eKIxz1bamlVk92MvcXRmjurnBQojuzCFwRksw1aGZUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:46 GMT' + 'Tue, 29 Jun 2021 21:09:16 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,26 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '53fd7af7-fe14-4c5c-908f-d54f180e5600', + '58d79bc5-3030-4871-8772-cc5bd7861201', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:47 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1AwAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:17 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr2gnOYeaOP3K5n4r_YYYjwsrUiKVJxDE-kF1gIv2tE3Xii7cEgmUvFj3uRPOMofgbls0ut_va9s2qnU90ReBu6cd_mjKe2ubWGslLXt4f4O6sEgUhLxDMAP0sLJ2opjhRiO-8-WlFXjkji4O0CGLuvbid91godmYUjXOJjtWnQ0AgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr9kIGbhfg2gR0G_wb5wBTQx55cAr1U8WVTwdKeXa8awUKSvtHifhR0Rb-t1qLu0H1phw22eJNX4mjweuWlbMM-Nyhjfq2pg22qlvLsaCs7AW0SyKFZFz5pJXI7RrNDvuqdRn-NY8InuvGPVLmjsOx_vmetVoRx2rGPDryAC_DUusgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:47 GMT' + 'Tue, 29 Jun 2021 21:09:16 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=a8075ec3-148a-4ef4-ba50-80bf9fb56e54&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6e319f75-8e43-4e3e-8461-03ebdff8cc00', + 'ef774fe4-b4dc-4a74-a261-962904024501', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:47 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1BAAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:17 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:47 GMT', + 'Tue, 29 Jun 2021 21:09:16 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"año SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":9,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '29', + '35', 'apim-request-id', - '6eefe5b4-a823-4f1d-8e4a-a50381e56ad2', + '0b9cbb03-a4f3-4147-8c53-cc4f104e3c78', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:46 GMT' + 'Tue, 29 Jun 2021 21:09:16 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.js index 38a419739ede..28f5573116d0 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "f04e7bfbdce2e55eb2c968ca3c3803c5"; +module.exports.hash = "0f494b4e64cd921825d9a4e50c6dbda1"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,26 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '796bd28e-34ed-45d4-8002-931898f95400', + '018e0026-3571-4c62-9405-769847410b00', 'x-ms-ests-server', - '2.1.11654.25 - EUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:47 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1BAAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:17 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrpYlaRAiQFofObDb-AMkLU3ToA8l_ajIk6ljUdxhXUsLs6AdiiEXc0-0bab_t0v9yqwgjvk5UEb_162m58-qNCBjlThctk-3HTQ_Xx7mazdW3QNMvBVf__xJr5AG9oJTwI5DikFcIRnP-BJ5M_4p9acuWbzkSkkWxDu0cJmZxNnIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrV87bR74K5lCdHMD9YkotpleQqdKL2crG34cGqxMtkHey6vGnp62nA-jTjnu1rV6SQXi7i-ZhRmo4amxsFUH1m8BeH905ima1C2wiq8NJzVK1iiufiyorKdzAkHTJ_0eXe4WiYzTSJiqxJ0doX9ZR_XjbZAUVirdKHOI96s3Hgn8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:47 GMT', + 'Tue, 29 Jun 2021 21:09:16 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,28 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '74c31071-9533-4e7e-92e2-c81a130b5400', + '6fc79073-90df-4932-b2e6-8a6bf8945601', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:47 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1BAAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:17 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrmaUGMgDCWH1Jafnqo_mRuyamwqH8iKyxf9tdmWJF_gVsId9Cr3YgV3uRGnhSlRLyx-aJEG8YctTfbDQiFkvYJNFZEdd_Q6b40r_-n1Tsh1fiUKU0KpcM-aqQ67NWpg0wUU2j_17GVM7JGAGy4ThZ5NT34x8Rt_8qTNIx3EXucR0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrX6hFiWbU0yqD2pX1yfooDE77JA2uL8Gj0Um1C-fGoFPhd0Zf_ysHIORN2JgQlAAZDNiAXy8RK6e5Oiut-KkIzYlM0gtJ1FuHqFluyKouLsxeHd5XnJlf4cooY0yY3xxNQlQd1yx6GpJa4rFSg4rbJz8DZQgWyw3M63LwI79zzbEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:47 GMT', + 'Tue, 29 Jun 2021 21:09:16 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=ec4633f3-b8c0-4a8f-9a0c-b305f57bea55&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'effc2a94-f558-4e23-9dd5-8d2bacfb6000', + '8359fa8c-10a6-40b0-a1e6-c64df92b2c01', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:47 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1BQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:17 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:47 GMT', + 'Tue, 29 Jun 2021 21:09:16 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"año SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":10,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '54', + '27', 'apim-request-id', - '20c47c44-2d1c-42a2-85e8-d893677cd8a9', + 'a639b51d-54ed-4205-b793-c5573aa3fcf5', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:47 GMT' + 'Tue, 29 Jun 2021 21:09:17 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.js index 0d23a6a6e09d..818662247559 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "e2e0cfbc5479a10c73ec5ae8ac794a9f"; +module.exports.hash = "8bfa650b81f420a536e37e515893d93e"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,26 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'a481dd77-d799-42d8-adec-a8b888b39900', + '7ee02cb2-4da9-4bd6-8eff-1475d9bb0201', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.8 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:40 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKk; expires=Thu, 29-Jul-2021 21:09:06 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr9YI0VIDxXlXpgl3aoV3AwjzJG5HRIFb5Kcdb6hRNOYgRdrp08NTip2QrMVk3ABDZxF7jbLTj5cIdYcLPOTHKaaqRStzFYYWwV0mzRV85UF0Xk2ghPKBvagpkY1FLg6UJaxbpRT-qMw23BVr032p5xCnynxymwbktU-dzDK3iZw4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrRt1Mamqhc-QhRTRLad-9zYcJjl9-nJiii9Co2xnls8AoxHeWynsCYUokQKq0TAW4kxHHNZZGKwaW775uRMufraxKlhLS8_OWY_NReUrvgrMd5HbBbdOsoLREhdh-0g5Za56pTlQI04isASNtHNG-L6jZSy5bdZKddc4oi0Pr6pAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:40 GMT', + 'Tue, 29 Jun 2021 21:09:05 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,28 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '74c31071-9533-4e7e-92e2-c81a040a5400', + '2e60ad9f-7cc3-4fbf-9e12-dd907c895501', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:40 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKk; expires=Thu, 29-Jul-2021 21:09:06 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrT4L3jhGapPDdeI8zgtWitUWyx0IptcwuTy_WTRlaNZxEB9xH4h1d3TXPwP9UGPnmV7UmELsRs1bpuzeyCiywCbz_7xBzl6fcUur33sKpVIpYMm6vETWJpvmuHoSPJVx-ueVLYl2LDgVLjcCjMfdLt81K98MA74V8fsO4oEBXc4ogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrKZyeagqSUxk-TCp6OXJouYaALdxQOUB_6XAMgqPdnHRs0N5WzSrFEnQcqbRwIy8WyVs4Ia2rAOMJyOjxz4PQlCDmYzfI1701ZKT6qzhVlcm89yuSCo50TcMUn-NZl-XAMyofNQv_PKElRBlhgGUaQUV8PPRbBBbVI6JoBlsnF9ogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:40 GMT', + 'Tue, 29 Jun 2021 21:09:05 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=6b984b18-3438-4a1d-8e1e-e5079808e502&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '29a193e4-4207-4b4e-982a-fd825a865e00', + '22b8e306-839a-4592-ae63-e08ed6ae4f01', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:40 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1AQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:06 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:40 GMT', + 'Tue, 29 Jun 2021 21:09:05 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"👩 SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"👩 SSN: 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"👩 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '5041', + '7546', 'apim-request-id', - 'e3bf2cd9-aeb5-4e98-a168-66b73283b869', + '92ec7c68-6e60-4b25-8df7-ea782fd22549', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:45 GMT' + 'Tue, 29 Jun 2021 21:09:15 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.js index 1c4638e3ceeb..06acbf1eef11 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "508ac4229bd40db46a3a675632f870ea"; +module.exports.hash = "8ae61a024f008f240e95480d720e5a8f"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,26 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '5ac60c51-d78c-4e1d-9125-ac6dc7dd0000', + '984e6511-2c5c-4be9-8bb9-58056c8c3100', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:45 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1AQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:15 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr7MaoWVZsb0Ws8LTDP3Wn42LQM3NG3BSaYnPLmwbnh1RaeVSyX5GczRH4G1sWdSe9xLUuqI6opquMsK4wNDYUz51ChnWfo8NmjIEiscyNOV6-0pFagq-LFuHlHKjlFAk9-05_VOse-_ZmMNAigSAQvtNUT_pF5NQ5qHoGnwQSdvogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrZSGLTyfOCEz2Gz6qKyTYLdVvbERtxAC5EFMXoz04NpW2iMwpYY714rgnY4sxI8qH_mfN72WORAC78-Xa7FgnDLdwNy7n6NHjWibV4pjFyz-Mxsne7Kf341dgMZbjYhXLClpkpX9EJ1MoqqdRN3tnkA-oIKSQjcg_MvnxlrZ5vq4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:45 GMT', + 'Tue, 29 Jun 2021 21:09:14 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,28 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '85f09191-d1fd-4fd7-9a80-0d9160906200', + '6fc79073-90df-4932-b2e6-8a6b89945601', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:45 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1AQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:15 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrcUiGUfz2Atg8Zbc9bsh-E6P5Q4EqQtZJlUO8fg9U1BMWhPIZQzSs-7_CcXqydJL68vyAmCM8diKeRQ2LL0k6Ainp1JPUmndva_tjNt9WtF9vSp6NTzm9U_95z5qRPX0zvXmAZpoNjGTbqvDaBsO0Zl9fOqjSxgHE4gvVV2YrZy0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr12_IaD3ycf2iJ9JlNVggvbNS4zlBkdq4pZbKf1faZzmwBaerueFbv-plfZc7nlmM8PhM5LPt4-y-Ee5aaLrR6juIDLximJEJhPXhrAXI92R2Og_C5JlTotfJ2TJdxnH5hY6n98U0omu2hcbCe6BqajOQLbydoMnnrE6_Lm6ruS4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:45 GMT', + 'Tue, 29 Jun 2021 21:09:14 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=582776d3-96b1-4af4-903b-4da89a7b9090&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '428c50f7-d2da-402a-a895-321231a75200', + '22b8e306-839a-4592-ae63-e08eddb04f01', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1AQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:15 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:45 GMT', + 'Tue, 29 Jun 2021 21:09:15 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻 SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻 SSN: 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"👩🏻 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":10,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '52', + '37', 'apim-request-id', - '9e986b0f-c557-46cd-9c84-c3860ca20d8b', + 'c71b4c30-eac6-4719-9ce0-c9ff5ed9e1f7', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:45 GMT' + 'Tue, 29 Jun 2021 21:09:15 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.js index b17dfb444296..76a54957b4d6 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "1c1535bec6daffca9d3607bf2cc112e5"; +module.exports.hash = "3c85f6e020029eb63af79a1fb11eb3b9"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,28 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '110de198-8fb5-40a4-9d49-4a449c480400', + '260da653-3436-4c38-a650-3f2c01bc6c01', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1AQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:16 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrNZB5WC89fwj2-XkbuyiQ-aLOnCX0AT30QmhLaG3BJmDaiabw24nmHyERiMVm2Hkse_z7ICjK51xH21-ZTCbZgsXoNFZ4W73yhavNllD5PV2iBYIromkx6kJ7qO09hpR_JWalP159RU8t1Le-Mx7yUUzlYbWuSuTBaAtL_kzgiZ0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr_VgVfl26u5jzG7cpdxfCymC5w5rM7rlxvH7YYCjJFoU35GK7C1z7FOQ_9BW_KILHLKfNdtsfdWNZ3JBxoHUI4-IvhGKWu-39PKUq4MKZpmCCQbINRL1h-awNP81p747RDsfaTwvbmV48kSXuHF4WQ_os0ejxPacuYdf6k0mbnIwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:46 GMT' + 'Tue, 29 Jun 2021 21:09:15 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,26 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6d13d50f-9cbe-403f-876d-4ed3a8125b00', + '9fcd3b94-85f8-49ba-9f7f-934760830d01', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1AQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:16 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrciXAkB3uMM8QTFm1NcBk1EwuRpOLhn6qQG9XNpY-Kb89y9m1_z7s6NjgDaA2sam2DYvW9SyMPYfisEQvcnIDA-6EVWQEK9CjE1NOwOJABPM6z_jfeXtMsyj22IcJJbNazVWzTmH80cPb2lXQr__Sn8sTxWpUdSqYnn_ZYPS1VzIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrWDlj27IM21n_67dVIety5n_EN5Q9CjRQz7HORnhLN8B9HwR4wFGLZLzgL8en5EDlZtQhzU3NRgSUsmhWXVp8oG9hFJEEDgoPedtlCL4k92TGae3WnyJDiCX0lfqrleGT2ILGgIgYLQwY2zTxXu3se-bVIRoqZFizldAxpI-jefMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:46 GMT' + 'Tue, 29 Jun 2021 21:09:15 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=4e1c16ac-6da3-410e-9860-c2f01c0ba8c8&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '36779b91-cc05-4719-a9c1-efc980a95a00', + '5942818c-6aff-4466-990a-c8d64d165701', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1AgAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:16 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:46 GMT', + 'Tue, 29 Jun 2021 21:09:15 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"👩‍👩‍👧‍👧 SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"👩‍👩‍👧‍👧 SSN: 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"👩‍👩‍👧‍👧 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":17,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '53', + '38', 'apim-request-id', - 'f3aa6380-4953-42db-9a39-1a8c1fecf8e3', + '4c4c92cb-c81d-4a81-9b46-8b10957085a6', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:45 GMT' + 'Tue, 29 Jun 2021 21:09:16 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_wit_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_wit_skin_tone_modifier.js index 2800ad502253..1fafbdc77f79 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_wit_skin_tone_modifier.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_wit_skin_tone_modifier.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "75b16f84f55c97b531319ad8e5eaef05"; +module.exports.hash = "d608400bb61b4dcbcb0e6a1c9134135f"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,24 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '8e37394f-29d8-46c7-a038-c1322e000100', + 'a662d5f6-6dd7-4026-ab2d-4d66c7003b00', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1AgAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:16 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrSKdtfAFY0qN72zNIcmksP1d5A1bNDpNz_0OpPX76gE-DM3SXYxgt7btmzk-Gc3N_dYv-qxGwU0cFe2C4yaHL-vZGNP3euDp3KqwkWoJOU_LQrx6FzyNrVVPNCacmfpZpd13PIc0FCqIZJ7bTsTydYoU_u8l1F1bA7bLP6tI73wAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr-HZKqENIMrcqe-VpI41kRCiPIrU0C6BV71oFidDO1-u7322_ynKyTE5I2nFcpBvqgRQ5H-V8TfbF1irggqiQD01nncXrbiwybShot6fQkvQH_p4JiHbL3Uek_fHFmRcjxIiRzcEZaxYWoDy6eyWjgC9FKhA1gRNEIJ03sajkpfcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:46 GMT' + 'Tue, 29 Jun 2021 21:09:15 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,28 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '85f09191-d1fd-4fd7-9a80-0d9186906200', + '6614c87c-7b25-4e3b-be59-8c46f0035f01', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1AgAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:16 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrBlAvI8sNsWoLknOS0Wv8rh-hxNoH8dKp5WCvChP3HsXo64iA4uUsHx5ba7VZH52ZmEtiDbKS5ozRJW1yP6mdfWk0e--xH2OdJeCdzXArtho2bNR3BzKfwxJORoZf1NGQZUUJFFCD1qTfFKoJtSWBNGj7HvTl7nvRTmHY_G_7RFUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevruOJFGTgjVyorhabmM7ZKYpJKU8kU6Btl-hzCx2QgaNluBvo9JfI4YFUv8lNdTR6fzThKJOfcEy3yf5e2UZHULNldGBvwhrb2n4YiGBTv6GgrUXQnUl36ngYcY8soGGE-PHF7QhhHQL_YBA85XtrFU7ocgHvYw5x1a31LHJhWxrUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:46 GMT', + 'Tue, 29 Jun 2021 21:09:15 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=aacb3a82-646f-4b3b-bb29-8ddf0760fc92&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -98,23 +95,23 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'a94baaa3-2e20-4683-8e1e-ea7aad4cc500', + '1b6ac7d4-5196-4131-9751-af8bfcbc0d01', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1AwAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:16 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:46 GMT' + 'Tue, 29 Jun 2021 21:09:15 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":25,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '53', + '75', 'apim-request-id', - '18214c29-a9fa-4acc-b6f8-7405506285d0', + '7ec5f5d3-0bcb-4c03-8946-cce9ce5141a3', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:46 GMT' + 'Tue, 29 Jun 2021 21:09:16 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.js index 345c1fa62b16..f95782b903cc 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "599330abd590c2960b5a9ae0b18f770e"; +module.exports.hash = "1ad6b9965c6e725eee13801e249e18ff"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,30 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '718f7e7b-83ed-43b5-9217-259ca7b09f01', + 'e92e5692-8a07-4d9a-82c7-76bb9c610e00', 'x-ms-ests-server', - '2.1.11654.25 - EUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:47 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1BQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:17 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrXkS52cciXiEagLSDMRfWuTxkZ4yjf4vpB8hjzI9EelL8ugaDGUN_GXmvFc6k3-yRSU64TQvZrIUB7g4HYs7zZKKsATlkAHcykHjOIepdtap7WKUsTQzRFI_ZvvVr3xStiuxJ_U-M7Y2Mm5CzaTx64eXDI67g9OG3UHPnH080JRYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrM0YIuZBzhDQIlAs7poRP7-8gubryJc9GQVnNiixz9wuMU6yh3s9mMhKCNIE3FrCnNqx45b77Y31gMGE9GEmzOYqjgYi03g3_5hFe-AkCV2l1ZgH00JEV5KVoGN7OYKzX3fc_Th79eBIZDaTbxiqHR2BiA4HAa30R-oPPvytbPzsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:47 GMT', + 'Tue, 29 Jun 2021 21:09:16 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,26 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'a94baaa3-2e20-4683-8e1e-ea7ad44cc500', + '1b6ac7d4-5196-4131-9751-af8b26bd0d01', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DgAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:48 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1BQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:17 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrwhvbmByidBf12GYYOZxSqGSaXc_jMzT6KUup5RotOBXKLEREvc5PuYUulHGtJkRLmV9maFF10i2mHv8KJ3xiTHxnelEPo_Vs0C8vr9IAHxJKl1lX4GzF0-fvII1YNJjXUlRLAlADWfwFp8otrXrNLfONXHC47DclzxUz9XXPC-0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrjTBb6SYkDyWzDrXx_BU-YnYDP7ldAhiYo4Ajj3lKFRuug7uz5PwM3EdNoIXYonCkys43tHCUCrR9hySTsuf292RQSSWteBM7fx8Xxupxm2cL5yebU5UqGbOkvJjm6T5FOSoHjay1MyihuijH67a1P7H24lunP1bddTQbXFmTlBwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:47 GMT' + 'Tue, 29 Jun 2021 21:09:16 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=3675d84a-ba92-4864-9018-06504dccde9e&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'b6a65474-742c-4d60-a8b1-d5d33aa46000', + '1b6ac7d4-5196-4131-9751-af8b2fbd0d01', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:48 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1BQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:18 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:48 GMT', + 'Tue, 29 Jun 2021 21:09:17 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"아가 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '55', + '34', 'apim-request-id', - '2db98a70-a865-4bb1-a8b3-e65a3ee5caf6', + 'fa9f2c20-9a57-4d34-a889-9c3fd6c2dcfc', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:47 GMT' + 'Tue, 29 Jun 2021 21:09:17 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.js index 6b85ee9b6cf7..1441a644495f 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "599330abd590c2960b5a9ae0b18f770e"; +module.exports.hash = "1ad6b9965c6e725eee13801e249e18ff"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,26 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '067f1f49-1863-4cdc-ba39-ee0dfa310100', + 'cdd63f77-f696-46e1-958e-07fc82d07701', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:48 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1BQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:18 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrCkMQi2-4PhE8ewRwRP8GDqJ8E2Ivafu2sPcdVmUkD-zADTPXcnXBl-lc3QNZEG3VZTmQxcKZF1DmwWT4yrsoHdFGm4OlLhngkC6nmw6sDcXrLLB54OPAhd7-ZrzDjsIuk4F6px3PXcLQep9-Sl5aQVwohmg2B1wRIkXg8TKAqmUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrDACyFmefFkLaBHnCGVXINuyGGrPfaRo3ut3DAlIQ97irrtcCJRF0mkYNdMqR-mHjBHG-mi7Pypk9KtNOrsJMci9NSEegiCJ7ZbtZzvPDAblE0byCU8RGFE4QKvkfQrQd9W3VyNmY1ySoZ_RfBWWUvBngdLrjuijoK5WQuTkI83MgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:48 GMT', + 'Tue, 29 Jun 2021 21:09:17 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,28 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '53fd7af7-fe14-4c5c-908f-d54f5c0e5600', + 'f0f9d77a-d74a-4c90-8c91-5ae5f44a4801', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:48 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1BQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:18 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrLAVV-rW3LBax-PJOQERq39-ybL-G5n_c70aOhzZVQ4naMpo-cMhqNhzGNaRA8o_VFZxhJvRXGNs1yxvgQDlbexVQ5_dlGhcZomgSRA7SmbdvGkxj8A7dHebWkH90U58MT8wv54kCVtzVzWDG488JqBTUdy3OxByZsH3T1dxTUEkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevruDgsarFc4Uf1qpPqJsWx0Q32a4aIucbSgPKMcm9TtihAvYiOCaiTb-qNPMJV8ofdfxFGAPgZ0UTQ7m-i4e3VSpfP2rvT9rHqbINnRIqwAXgdz9PzQadd0wiI-Dk2A7rE4KjdIf927UkZuTLv_uH5aHM143a-JSOdr0L8v4yV-JQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:48 GMT', + 'Tue, 29 Jun 2021 21:09:17 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=23eef2a7-3dd6-42f9-a9dd-b239802e09e5&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6e319f75-8e43-4e3e-8461-03eb18f9cc00', + '6fc79073-90df-4932-b2e6-8a6b2a955601', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:48 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1BgAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:18 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:48 GMT', + 'Tue, 29 Jun 2021 21:09:17 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"아가 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '74', + '56', 'apim-request-id', - 'f5d8696b-0016-4e68-8076-a891195b3051', + '8b7ef000-10b8-4bb6-82f6-b673f76aa67f', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:48 GMT' + 'Tue, 29 Jun 2021 21:09:18 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.js index b13a65653e55..257667f9b852 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "ffba72cb5e232f6ec7b3614165564600"; +module.exports.hash = "54fd02130ea13f400927c60587190bde"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,26 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '31942512-f6f3-447e-a5e9-61ef1e120000', + '688ffa8b-c754-4bab-b8e0-5e6269025f00', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:48 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1BgAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:18 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr-WBXViwSaSVw3dPNdgV0pREEhWD2nCDRxS5wTMCLNjgSf8NGhP7IhIo-_85xwXG9ahU1hBkVi_g7EkaxzJ8DV4a6-GhbMcE6985vx-nERFHtF_C3EV92LV7IlXEnDMKCnWn7EJE5JHGyc7Lg5qct8XHq63p8fnzVUzKcEb5VthcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevryuKioMkgG1ngSOdbyvf8wcdhzqt0u-eO8QTfABQSumQbzpt1dtU35qH0Bgfx1WjiXNRyn2Lfk12x8mzMi1TFjwQwbHvgZKfHGJliw7TKR8g9udeN3VyQbYGFYefPCkRoyIOijR8L-ywZCQcpjF-B_V97L458GIXr_OOfmZ-M7lUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:48 GMT', + 'Tue, 29 Jun 2021 21:09:17 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,28 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'a94baaa3-2e20-4683-8e1e-ea7af44cc500', + 'f0f9d77a-d74a-4c90-8c91-5ae50d4b4801', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:49 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1BgAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:18 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrTr8MglIL-sxR7AImyVygEd7vEOr9nQbrNjXfZYEC50rKT6FLl6eoVyQRFM60_VtJzbnYri3Z4jPnhmqRNjih2Zw4bw_ws2YJ93yvLwMAaqM1p5GGgBXB5mosy70sfgiMYmdTkSk3xmTHMr6QkM8CzGtzsL_xMGjyZmK8wHzrHPIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrRXopvlGJA1aA8kQIsbRHw_Kx4c0661iuCd_sPlcWJg4vae2994nxPFImnM44-biILZmeumffYBeOFM1oamcQUwP_paMAHd1q-cA64jhQ1gw803prw5L_F_gR8vCuo7lN704nlcKzK4Gbt1H_qmZLxwuLFE1vGh6g7c20XLTQoPAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:48 GMT', + 'Tue, 29 Jun 2021 21:09:17 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=16b8ea81-3796-4c78-818e-b01b5297b19b&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6e319f75-8e43-4e3e-8461-03eb33f9cc00', + '9fcd3b94-85f8-49ba-9f7f-9347ef830d01', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:49 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1BwAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:18 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:49 GMT', + 'Tue, 29 Jun 2021 21:09:17 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":121,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '324', + '248', 'apim-request-id', - 'ce3280df-2ca4-44de-8dee-718ecdbd2f62', + '132feab0-7d7b-4b01-ab29-f67c74b02a30', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:48 GMT' + 'Tue, 29 Jun 2021 21:09:18 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.js index 20177e3309f1..5a1bdbd5df42 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "b4dc17e644d79d90899d1add75036378"; +module.exports.hash = "89a51aa4719dd90f068e5b56f6377757"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,24 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '9a7bcbaf-dfa8-4636-b0c1-fab661d20c00', + '1e79b4ee-f606-4af8-a5e4-c28de7a53b00', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u9z_bg1AwAAAB0TNtgOAAAA; expires=Thu, 17-Jun-2021 19:57:27 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:24 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrI68zdiHMVdGZAYhygx14HP3p-NKIEGUVh9l4Qf6B9sJjMgvRLGpc0hn1gks7KK5JB55pfKTxzo5Fsb3kUcHTHatJvdn3OggCu_oG1pNhX7rYrOs3obrHsDIReI_9F2skvNmHD-QMBTyIH83uRWG7VLF6SZwjwgKpc6c0sT80C5ogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrrR0p9_QizyyskK3T6TPlCfqB8mY10pb3KuHof4dd6h8HCnBKi_nEq9T-pSFrxYSPFTwcjOGLSj7NUOVDjzi-0WA0qzzuOJMrnYJ6HM1W3R6Kkm6zfs89tBUoFI_ft6-YSrAhtUrSxT5BiiCaoHh73hLM6FFdCJjVn3Ko5zWrACEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:27 GMT' + 'Tue, 29 Jun 2021 21:09:23 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,32 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '2fdb0cb9-f517-4962-94d0-38ca20a22a00', + '8359fa8c-10a6-40b0-a1e6-c64d1d2d2c01', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u9z_bg1AwAAAB0TNtgOAAAA; expires=Thu, 17-Jun-2021 19:57:27 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:24 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrsBzbnfNC0iIOjy2JMzONHOjoPxpzZK6SWjfgCbYTDBSA7k3wZCxFoDGp7iwR71RyvGbwBbvrkGL4d1bTUFSvhk47K0m7xEHKwizc4JmN_IbJA4o9PO5a1gADc9QxZYDe3lTJFj-aHGLRU1GMgxIluApERmOOWpVdZ-jjhkyYStIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevre-iegJ4ec_Owsk2lwzQvXJg0rUhjcnoFX3t8LUVlcg5w1Fx2UjPd36RIa6YcBg1pculUPeQQ1HEFdnszlrsZwnNwqIoqEqfvsrmz0GJYjnifpjgp78zwNq85iMvw1i9nhRhk8ZEjfN9pznui9297nz4gFdCVHs5zFEXC1-YJ61YgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:27 GMT', + 'Tue, 29 Jun 2021 21:09:23 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=93ec2406-56f0-491b-b37b-143d1e6e7c18&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=d1c711a3-2353-4a81-a54b-d0d3e5869915&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -95,23 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'e27fc70e-67c9-4965-a3c5-2cb2f1fc0b00', + '8359fa8c-10a6-40b0-a1e6-c64d222d2c01', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u9z_bg1BAAAAB0TNtgOAAAA; expires=Thu, 17-Jun-2021 19:57:27 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:24 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:27 GMT' + 'Tue, 29 Jun 2021 21:09:23 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"año SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":9,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -121,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '5037', + '34', 'apim-request-id', - 'f2c7cdda-d90a-4648-80fb-a4ff29f5b2f9', + 'b296f371-0525-40fd-86dd-e0e102941a81', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Tue, 18 May 2021 19:57:32 GMT' + 'Tue, 29 Jun 2021 21:09:24 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.js index 703c6b9e4c5f..6eae49e169b1 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "ee234d413d8c4eab29027616b16805d7"; +module.exports.hash = "1d119e0985c97360d15d4d8824690d99"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,28 +23,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '22c21829-16fb-4833-add1-646b6b602800', + '65658a10-7c50-4f84-b23a-97036f1da501', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u9z_bg1BAAAAB0TNtgOAAAA; expires=Thu, 17-Jun-2021 19:57:32 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:25 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrwjQngkRLsVaymisye_n27_YIy78XBkS9NgFhrpUMXeGjwPXLkthJ7-o8cg0CJcUvqm1b7RKes9Cx4kg4VU6L0DWCgkej3Mnt_SiDSIrv8IZ797udT7iNIbMhUrpPA3LyM54oW9nmfWqfYUusobC_6wIp9fxIRxM3y75OGdA7KKogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr8RKEg6yFgd_NCH3v-OB8wUhIZ8wLKPtIynb9tiXhlpnnHlkgN0QtlkZA5KilrhGoR_UkhvDDva4jb8SvdIgk3NPPey7O_SYyFMaD4o60_JKZfRPcKmO0fAJej82zC_t00ZdyW4UXcd3wnGqq6c-ubIUIcpxTzhw0nj8QhgBTTkcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:32 GMT' + 'Tue, 29 Jun 2021 21:09:24 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Length', - '1651', + '1753', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,23 +60,23 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '1599e2b7-8ceb-4ae3-83b9-3e22c5140a00', + '9f982048-e8b9-4f55-889c-0cd91e7e0a01', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u9z_bg1BAAAAB0TNtgOAAAA; expires=Thu, 17-Jun-2021 19:57:32 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:25 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrbMM5F06vn8y7J7Iez2mpU9UaHQ8MMKiAkKUDfwVxrWtqZ22aDvclLRhXuyY0B-b7Tdmml_GUDFm4oAfDv2MCnWegbKPN2GjiErFQXm2PoM1bJRzd7p8KMrH3TK4X41RZf9Lmw-z52dNZUyMd4Q-IpcU-1FupSmykJFK6DDQjlN4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrWeOqsBi2xNdCH1MJnVEgYNdJRFLclvPFwx_kbpPL-lJ3vIb__DIY02LQLU3CIoVRjM0SnSRmBQpGafQuGe7qRizrPnJgXawqH7_lYc8zWJFrUA1M0lKnvwcldpjtYHIP08EXiIT3vle4HHr6_VEU3pNn9GY3bPNVNL2NrqfAIBogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:32 GMT' + 'Tue, 29 Jun 2021 21:09:24 GMT' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=ff7097f7-92d2-44c3-9abe-3236c734cd4a&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=f3791e3b-a1fd-46cc-b889-38c149a6ad79&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -93,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '55892324-3f5a-4fd7-8e10-47d477781b00', + '6fc79073-90df-4932-b2e6-8a6b64965601', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u9z_bg1BAAAAB0TNtgOAAAA; expires=Thu, 17-Jun-2021 19:57:32 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:25 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:32 GMT', + 'Tue, 29 Jun 2021 21:09:24 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"año SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":9,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -121,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '49', + '35', 'apim-request-id', - 'd48fd0a5-2e29-4569-8170-518140955c59', + '27a2afc3-89d0-45cc-993a-0d76e01978a5', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Tue, 18 May 2021 19:57:32 GMT' + 'Tue, 29 Jun 2021 21:09:24 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.js index 4f8a123eba90..71fe9ae66311 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "2a7d350ec08f01e67b1f176d615f0b3f"; +module.exports.hash = "83521e8e248437ee2888e1997b206de7"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,28 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '9ed5ed27-6426-4b86-855d-a15904631300', + '4a91a014-4c57-41f4-9438-b76ad0538100', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u8; expires=Thu, 17-Jun-2021 19:57:17 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DAAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:23 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrADOsyjCngIWXBk_eMIt7fai-PRkaD5L5VBtvA6Gbf9y5vbIW8IHmlHXivOIYKFQWocvD-SQr_ZJXYtmUYNWkbYowsLtGdt54VCLwKa_GV0wvizchdkqzUxu_qLBf92bXoz85Xp3XpRA8ygk9V0PBdEefx5AM4nCkOawdYtvefLsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrl2uxYaxJud7BNygvAqK9CkKvPXAiMW3hNA5XTndeGkigsuXSCIEiKIQCdSQ8gXFWuDTLaw_m65M26EwOH1DpHaUUWSkd9orwOs5ZChBikOKhAzsBNmMGC854OmNwX7uu4KROoUjRgR7qQGS620iX19_Whgc2km8JZNitdo6ZrfEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:16 GMT' + 'Tue, 29 Jun 2021 21:09:22 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,30 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '5068b5c4-fa7f-439a-bfa1-386b32311400', + '6614c87c-7b25-4e3b-be59-8c4696055f01', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u8; expires=Thu, 17-Jun-2021 19:57:17 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DAAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:23 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr96_YYoogXIg4x0sFECDR87haLEiz61IJZpeotiMaBrAvAv6LLy6SxD-f3dbfQQ783MeAwJ3G19OgVSj3vjPCuMt_tLmQtiW58z6SDuZ6MT5dpGYCYrf8B0b9t3HcQ9fgJ6l3zlK_HBGsLQhS0MuBZJ5BxF5-ghRpTiCnBM13GXogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr9TiK7gJ7FmYz8DjU-BQoq-e7LoHA4Go2wIDEglINyDmH68lexJtxy3VfACcSFauIc6i55a47UjtTjrAEW43vfIOFzkA-k1EXXsDCArqRoFD5_5IGc_qTzWynp0kiNEX_6tPcDxTueQZpFKedwwreJHR1HcFqk7hW0pwuUHExWDggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:17 GMT' + 'Tue, 29 Jun 2021 21:09:22 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=ba8c1155-9bce-4841-9206-da2e642430f4&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=a50975c1-c150-4e64-b5fc-eda957111fd2&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -95,23 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '55892324-3f5a-4fd7-8e10-47d408761b00', + '22b8e306-839a-4592-ae63-e08ec5b24f01', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u9z_bg1AQAAAB0TNtgOAAAA; expires=Thu, 17-Jun-2021 19:57:17 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DAAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:23 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:17 GMT' + 'Tue, 29 Jun 2021 21:09:22 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"👩 SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"👩 SSN: 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"👩 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":7,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -121,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '5042', + '59', 'apim-request-id', - '5dbc92b5-a7af-4bd3-81f3-5794a7d02f0c', + '12022158-0d5e-42f4-9346-5b66cea75589', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Tue, 18 May 2021 19:57:23 GMT' + 'Tue, 29 Jun 2021 21:09:22 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.js index 87f24f68d5fa..2b143d4e505f 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "5aa467af311d59c44591784dfb836c97"; +module.exports.hash = "38e0c461acfe3ddca957670d86bdac0d"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,28 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '400a0ea5-d593-4c8b-bb44-7a2c18001a01', + '6e1c46a5-813b-48cb-ae5a-3b908a4ac600', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u9z_bg1AQAAAB0TNtgOAAAA; expires=Thu, 17-Jun-2021 19:57:23 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DAAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:23 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrrokThyuHMm445yKedm41KzDPxBRo1jilrGMUVTAh_hFmLLZfu7fwh9hYfCA1Qh4I3Vgxlw1aH4dyKNPIJaM5tsNGuF1i_BC3LdZTVftaF-JAX8vd3Y-aWxz0Y4SPJ1XlbCyNZE-DcGyUF2-vI0sWq5jB62VOzpLE1HI7AGyybXggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrBhKzyRnjFre2B_Xi1AADWVLvJvfmU8S9-T3jrfsbhFfmcFk0Nee5ZWoYIZfF6wleq97cUiezLdggPlUEGUg5PR9kNmBWox3_TkXYgO3TNR136nktPwVyHqRvRyM5AL8xxB2sJGLQF33P9YCeMDaYbkSjkRuUr_Iwm29hqjSYEPIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:23 GMT' + 'Tue, 29 Jun 2021 21:09:22 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,30 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'fa2cf1f3-4432-4d86-a2ae-3b757c0d5501', + 'ef774fe4-b4dc-4a74-a261-96293c034501', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u9z_bg1AQAAAB0TNtgOAAAA; expires=Thu, 17-Jun-2021 19:57:23 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DAAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:23 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrdi7MQf06mVI5T0hDgv31l4cYlIyInhlbjJpa-Uw60KamXdCcqw78C0vqmIIQFyg5RgntvQ8S8MpNgkwMX8Rf19DDXBYbWj0lVErZdiirLnbNLkQsSQ3gY4DoDeHK_4TkA7ClleY1dMtsjulGW4xJixnsLZJpFHWENCQsrhsXOwsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrqfUpcs6sFX20DVaH6fimZ5QfLxqYd8DnKziR3Zmumoj8eTAm4nWtjiUBeN3trSonlIkrxwkJrmWOWpD9T7BRnR40RelpmHJdjBjj_hcz3lAb2gcy_V1XHVNbKai8qMwxGMlPH-UTZ4k4H4ml8_wuMLAmpiP1x2-ihzHm3WuE510gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:23 GMT' + 'Tue, 29 Jun 2021 21:09:22 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=14b4bc5f-5f4f-42ad-8b42-ad474e972f13&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=5029a66f-095d-408a-9327-4c08323cb8dc&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -95,23 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '1599e2b7-8ceb-4ae3-83b9-3e225b130a00', + '5942818c-6aff-4466-990a-c8d6bd175701', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u9z_bg1AgAAAB0TNtgOAAAA; expires=Thu, 17-Jun-2021 19:57:23 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DAAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:23 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:23 GMT' + 'Tue, 29 Jun 2021 21:09:22 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻 SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻 SSN: 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"👩🏻 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -121,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '2568', + '34', 'apim-request-id', - 'aed92e31-c827-44fd-b404-9631050a25df', + 'bca0599b-790e-4f13-adc9-6d6764ada6b8', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Tue, 18 May 2021 19:57:26 GMT' + 'Tue, 29 Jun 2021 21:09:23 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.js index 4a177a65d466..f5519ce959bd 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "fa12da6e9e07c2cacc94d685159a7cff"; +module.exports.hash = "f9f7157c7614ec76faec095e88df709e"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,24 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '813b8fb5-2cbf-456f-af7f-e181ef390e00', + '76a84bdf-c7ba-4026-bb70-fbc61e032901', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u9z_bg1AgAAAB0TNtgOAAAA; expires=Thu, 17-Jun-2021 19:57:26 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DAAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:23 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrru8Z4IB4f4LmP6jNiFo4Fd5_vTVT3WDmMgdJkR2ecStiHaOa96Psn-lHFQJQRpkFVB7fqjPwmDieY9s_m5AhmOaw_KXRVUVjw4VwDMrNq22CCAQH-iGv_8YCWnPzPwidrAu9D3JZiXDtxCSR-fAD-8oLgdnb4Ch-tZDchRs8m9IgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrXs3aAh1YQeCnk9ZTRm8rhIc_CqlzhAlP7R3cirlZTFjvSjQ1MRGXh1f2arlB7hgmopLifpn1Ur9cdBgUxjLnDPqq4aozcPR6GG6AjVWnMDM1ZjKKrPa-tniwLNTA9LU-42EXXyqSJNiRUP7d2munLUDB70Cq28sJzyxdcvutx7wgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:25 GMT' + 'Tue, 29 Jun 2021 21:09:22 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,25 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '1599e2b7-8ceb-4ae3-83b9-3e22c1130a00', + '8359fa8c-10a6-40b0-a1e6-c64dfa2c2c01', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u9z_bg1AgAAAB0TNtgOAAAA; expires=Thu, 17-Jun-2021 19:57:26 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DAAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:23 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrd2tF3AOZUMQFJX8lwaLSylRy4ARAz6LjyQrgAX0qQJwn4dS40Qg1HWbjGcToNbg4oG_5Xz4BrXZINkxUWdeTFgzse-EZ4rPmYoasfRnv0ECC32uhQiVgHP9FmZH_qunM6jemR5kUK_6_dn-0nUHpBM9S5Vp8wc46Vk5gpEXyUKIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrDEmeML662T100_kDi03ZoQvpO_ddlTPnom_vEEmmWBKgzx2c9kx9cNah3TVCt2RBDpSF41OBx9zoL4en1iCvpcN5yaw_jQN7dnEf6-zC4lUVa-ohzX1JytmZyZWp-M1UXUmExl08Hq2bInAUksfE-IJ_D69sjAg2pITjKusEy10gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:26 GMT', + 'Tue, 29 Jun 2021 21:09:22 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=fb1a15e6-82a9-450b-b7e7-06ef4783a5a9&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=79020e55-b6b6-4992-b379-4999bbd1cec7&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -93,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '1599e2b7-8ceb-4ae3-83b9-3e22c4130a00', + '6fc79073-90df-4932-b2e6-8a6b2f965601', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u9z_bg1AgAAAB0TNtgOAAAA; expires=Thu, 17-Jun-2021 19:57:26 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DAAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:24 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:26 GMT', + 'Tue, 29 Jun 2021 21:09:23 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"👩‍👩‍👧‍👧 SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"👩‍👩‍👧‍👧 SSN: 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"👩‍👩‍👧‍👧 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":13,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -121,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '77', + '55', 'apim-request-id', - 'c5fd35d6-5aeb-446c-a6af-5c6e197faa49', + '0ba8fc85-e23c-4431-b418-88543b70107b', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Tue, 18 May 2021 19:57:26 GMT' + 'Tue, 29 Jun 2021 21:09:23 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_wit_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_wit_skin_tone_modifier.js index 00c87be0def1..323e86475825 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_wit_skin_tone_modifier.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_wit_skin_tone_modifier.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "b14f1d01366f6dcee6f700ee4a06846c"; +module.exports.hash = "83e235083503e938867e37c3a69e1f27"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,28 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'af7b719b-c1a1-490e-a8fb-316920c50d00', + '94db4d2b-34d5-4539-adb4-382107b00d00', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u9z_bg1AgAAAB0TNtgOAAAA; expires=Thu, 17-Jun-2021 19:57:26 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DAAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:24 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrKa7FnjF9w-x12LdmS9_DO_MsptaV-_z5iIGllXkzHq8xlnzCZvEYSjR8cv--zl5hQHKtxfnDoAw_SAx_wAp5ZtBgGC24vTfa97BKOE84D_vkHALZw8jMaib5anZ6CzMWKxwWfzrHhjGyg-YxYtgYiSFi_BLut1-q02kEeGaTTJkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrURox-FJWB9FuMzDIMKEF5SKAL8zjqxcctUvB-NDfm0YJqsgwyn1JrFzq0nW0ZrrZZqVOVJe4dsFBY7CmVPQ_s6VJN0t9IhJPsMD4LPnSD409NJj1-mkHfX-9SqlL27JAtR5_HMi0A5uiQXaJrRm5yN8pP1niCnmHgDXXMPXj8wIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:26 GMT' + 'Tue, 29 Jun 2021 21:09:23 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,30 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '1599e2b7-8ceb-4ae3-83b9-3e22d2130a00', + 'b6951844-4170-4f7d-baa7-92c1cd714301', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u9z_bg1AgAAAB0TNtgOAAAA; expires=Thu, 17-Jun-2021 19:57:26 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DAAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:24 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrIDCqNZMG5YtjZSgWgO0QcxdWNsGA8x9I3f_nhcT4aJXn9mm5MAgQD2-HI65sPX7sJmmM0R83wYmIvI1aUVW7PvaF002RvoF1Quwp95UH3cDurxrZsCpljMyDwZDBGDnu6-9aoat1CoYeodUcrzcaWfAt37QO0H-rB8qq7OrEdqAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrIqbb_3k-fu-vhQOBAEkSrXsGd5ZQecARd8oILRpkzBorqFxEkhiKTCEm0QT2bVIuGbta_Al07nkxJF7Q1sYo3oXMRDYJpbsi5spQzhB72-PSLhJMKGu83uVXjHx21hRrq9DHRWQZQa3O5Au3qTFr5nzwcY4u3bI2vHSzm3BFg58gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:26 GMT' + 'Tue, 29 Jun 2021 21:09:23 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=e2f32def-d153-4aa2-90cc-d1936e8d4d63&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=a3ed8156-3c0d-4726-80c2-77fc5c6e0489&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -95,23 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '5068b5c4-fa7f-439a-bfa1-386b93321400', + 'b6951844-4170-4f7d-baa7-92c1d2714301', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u9z_bg1AwAAAB0TNtgOAAAA; expires=Thu, 17-Jun-2021 19:57:27 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:24 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:26 GMT' + 'Tue, 29 Jun 2021 21:09:23 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":17,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -121,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '54', + '39', 'apim-request-id', - '28868ed2-c765-401d-95f0-3333ee60de31', + 'f2bc4126-9038-41f7-b678-2b3c7217986f', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Tue, 18 May 2021 19:57:27 GMT' + 'Tue, 29 Jun 2021 21:09:23 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.js index ed410fcc964a..1c89539aad62 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "cc408f44636982603a1816bb4bc97355"; +module.exports.hash = "80f00807f4e5acb097b5d87cf6797700"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -25,26 +25,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'c4ab00bf-a378-4593-b3c0-ad73a1bc0d00', + '1b89954b-6558-4aac-941c-2343c9361e01', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u9z_bg1BAAAAB0TNtgOAAAA; expires=Thu, 17-Jun-2021 19:57:33 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:25 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrJ9YktUwU_VEMLP0_efO9eFZX9T6vKq9iRxy5_tT2EogD-TT-G9TTII9v7tkATimIUOHDsIZF7ZcI7dCXuDU4V9NdE6RjTF5kEW3xTE6pG7xyRs4sMszR7N4T4F-o_GGOX-8mo_htS9CSh_jYVPLsx465NVkEaihnvWEHmJ8tySAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrTfWYegurM19giI_EcHquBvpOU9k61hyFW1uKqAliwIz_oksxoxKCDeKjeS4PkPwenHkDL0F1fdvpuwiJYVe9xVWw_OLYPL_nnCYbx0y9RO31mEI-8h-up1L77z8Y64_cFOtsN6Vl0ibX_JE_AXoK7rZPJ7jt6gWsgLr76ZjnOIUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:32 GMT' + 'Tue, 29 Jun 2021 21:09:24 GMT' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', + 'Content-Length', + '1753', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -58,32 +60,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'fa2cf1f3-4432-4d86-a2ae-3b75140f5501', + '8359fa8c-10a6-40b0-a1e6-c64d352d2c01', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u9z_bg1BAAAAB0TNtgOAAAA; expires=Thu, 17-Jun-2021 19:57:33 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:25 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrX-CpO2ilR5U1dAYLp39scXcfYg28jflUW3k74LRViEFZnxvPj3hrt472zMta4dKFSB9rE6QSK9WTl2hv6u-jIWDZUSxrVELs9WOcN4BS893ZDS5sWViS5zSUrqYSFUFYVhHZQ68-QllyYGQqEsjzCEMJPQtQzYjCndCyD7XX3U4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrYaJ_UmZ-ysZkepBDisIu9p8jlDxbvnwcQlLm69Bdq_Xu_PvZMxJENFU8ODs8UlNihz9klXedQ8LP7SSK3klt-KBQkw9xy96jK0VmzSzGzQwyXS1ElFmP0eqV1gWk62FiCvoqMcXA7_WbkJYcvWxJ2TRQaSYgBLL9_6xV5VueM9ggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:32 GMT', - 'Content-Length', - '1651' + 'Tue, 29 Jun 2021 21:09:24 GMT' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=035dfdd3-e30d-47cd-9f97-d9c5e9cca344&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=8ba5d546-0ffe-408e-8896-0a80f12dc339&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -95,23 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '5068b5c4-fa7f-439a-bfa1-386b7a331400', + 'b223425b-649f-4ade-ab87-791f82f63f01', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u9z_bg1BAAAAB0TNtgOAAAA; expires=Thu, 17-Jun-2021 19:57:33 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DgAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:25 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:33 GMT' + 'Tue, 29 Jun 2021 21:09:24 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"아가 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -121,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '57', + '31', 'apim-request-id', - 'f55cbd31-b539-4aa6-9d9b-adcdbb7f2550', + 'e1711803-530b-4d63-a61a-c0c0a8924177', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Tue, 18 May 2021 19:57:33 GMT' + 'Tue, 29 Jun 2021 21:09:24 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.js index 6ad2ee0368bd..c27af5e4499d 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "cc408f44636982603a1816bb4bc97355"; +module.exports.hash = "80f00807f4e5acb097b5d87cf6797700"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,28 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '1017975c-08f3-48f4-bffa-ebd7080cc100', + '52570443-2dc8-4f67-a51e-edb2539bd700', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u9z_bg1BAAAAB0TNtgOAAAA; expires=Thu, 17-Jun-2021 19:57:33 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DgAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:25 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrGVqPdLDlpKaRHjMFTKFZYDnsJbkXne9NkloZ6dqGKRqigduiIZ_z9zcb5K0RXszxOxP6XixkoQ28O2_KO980WlPydEjEgGcdMwQlZphr8TpJ0hQEFfLIR5JG2ySSXZfBSIbClB_V2MeG9kTuEYCNgN01-co48P7SXL5N2tGZv_4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrgri3qpPn5CD0l5GJIUhN5K8MIoxTOd0Tlz63a1698Ngt_g-L7hC43WVdd-Mz-GYzML5sLn4wvvPWt0DsTjh-oJvUL9lc4b19QbOCS9wut9BNHVRlv9xFGL5MxQXXtop93JwFnBlaE9oiWgImc5fXhLxz4H3FKw7LmIdunghw9wYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:33 GMT' + 'Tue, 29 Jun 2021 21:09:24 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,23 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'fa2cf1f3-4432-4d86-a2ae-3b75210f5501', + '9fcd3b94-85f8-49ba-9f7f-93475e850d01', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u9z_bg1BAAAAB0TNtgOAAAA; expires=Thu, 17-Jun-2021 19:57:33 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DgAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:25 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrIaGZds_VgJHvT6WUc8JTjJQpPoJonaY-cE8zba7SEIrUnmhqqxxFooxZ78uBR94oLpo32d2yrDBL8UUI6N3MPQZEDdjlV1m8cIFdGNm6E8LGfg037oxySaxhNFzCmQiD7eJuIspQlooGFu0Y-Y3Qw4svxBZ9o0pCqzV1wcYEeGIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrQFQv-1yrumX2Numci6cUIPc76qwnAn5uV2YLxcRz86jxslYZ2e8yIZcHbTxEi1NDHqOdPnVTkSbZ2kWVLSdlCTCG7ADtfflaxdiqJlrcrv1i0HVYCQwT1SR1sKumhtVhyNkg1zjsTJVbimhU2X5rz3UB-nhehx9wMP-w8vyvnVkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:33 GMT' + 'Tue, 29 Jun 2021 21:09:24 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=48cb3deb-0433-4c12-8f1a-e7e2faa7284e&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=afe27445-a873-4b07-a660-9688fc799d75&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -93,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '0c12bf2d-e769-4532-b622-06dd06962900', + 'f0f9d77a-d74a-4c90-8c91-5ae5e34c4801', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u9z_bg1BQAAAB0TNtgOAAAA; expires=Thu, 17-Jun-2021 19:57:33 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DwAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:25 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:33 GMT', + 'Tue, 29 Jun 2021 21:09:25 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"아가 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -121,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '56', + '59', 'apim-request-id', - 'a14c44a6-713c-463c-bd54-63df072c963f', + 'c05a0a63-7cff-49fd-a690-ff4d74531f20', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Tue, 18 May 2021 19:57:33 GMT' + 'Tue, 29 Jun 2021 21:09:25 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.js index 03db5761d410..fbf092b05f57 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "dd6a5c70d22d14ddb45e8ee746c36996"; +module.exports.hash = "3d8f5ff2696a159219b33712bbe0cd93"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,6 +10,8 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', + 'Content-Length', + '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -23,26 +25,24 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'b676716b-2cfc-4af7-b382-c8a762524a00', + '58d79bc5-3030-4871-8772-cc5b67881201', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u9z_bg1BQAAAB0TNtgOAAAA; expires=Thu, 17-Jun-2021 19:57:33 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DwAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:26 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrLqIChWZYddxopyzy8BZbwBBNKTysS-9EdryrCSyj5wdK8Q1PStnC1V6bSyx71rD3Ih-_dyJIw_0gQOT-zfuygse8VNiGJdIh9ZI3ghROIF9Ds4H4xJgjpgIkH_6qfafUbK1FLzXvjjnSGiBolC5_PNLSXhrEnJr856f8ijIdpEEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrUKswQpKbK9iuYTeM5biRE-W6eefA_puThGnI2JGBE5Gtw3i0yj4r1nPWL-yFs1PFOm0CbFS7t-v9i83qU96WkfPlwVu1jj_48ZNPhCcaJy6hvG4aJ_p-tY1Gh1fZJRs8yAW-0aAqwRMhbMzCmMz8eifmoFjqKxuJYi8EFINFNnIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:33 GMT', - 'Content-Length', - '980' + 'Tue, 29 Jun 2021 21:09:25 GMT' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,25 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '2fdb0cb9-f517-4962-94d0-38ca4fa32a00', + 'b223425b-649f-4ade-ab87-791fa4f63f01', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u9z_bg1BQAAAB0TNtgOAAAA; expires=Thu, 17-Jun-2021 19:57:34 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DwAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:26 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrRCkm9nHxSoggmCTfxa10QlZeZ_YK4nXASjFpdfkm33AragW3MykVNfFEQld7Tr4IL1KAhS6S2pOz6Z6IQRq4oR9tyoeefG-W7W8lUm6oUrR8H7UdgcmKrCLcyikRy7DsbJSDM2__4Uy4Pg8DXWUWfwsAuqhfVzAa66R8cL1YnrggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr0sJHCwdryZR6yigLMJe3te9RvK5vJ367u8Li5YsmuD3U0aRcckwjos6vwr8jGzNWSXEahz_q-2V566fHj4KDROR1CXS_BUgNNqlmRcTQTUwYKVylNFYfY2WtCUTkPpsqWHRGY92hML1aawnMib4LOQ8VOX4MLOM1pfZK8nVQUPIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:33 GMT', + 'Tue, 29 Jun 2021 21:09:25 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=1cfd63c3-0aa0-4ecd-bebc-2a818d18698c&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=deab05a1-76b9-413c-93dd-a5663270a5d7&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -93,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '7cb453c5-4555-4615-87f1-596bd1ad5e00', + '0ac405da-01a2-4cfb-91c4-1645fe390001', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u9z_bg1BgAAAB0TNtgOAAAA; expires=Thu, 17-Jun-2021 19:57:34 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1EAAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:26 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:33 GMT', + 'Tue, 29 Jun 2021 21:09:25 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":9,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -121,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '138', + '233', 'apim-request-id', - '1b6f9a80-14ea-46bc-97e8-29c52882c07c', + '0cde660f-b5a2-492b-8c8c-05367e504da4', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Tue, 18 May 2021 19:57:34 GMT' + 'Tue, 29 Jun 2021 21:09:25 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_emoji_with_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_emoji_with_skin_tone_modifier.js deleted file mode 100644 index 18d53fe9ee15..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_emoji_with_skin_tone_modifier.js +++ /dev/null @@ -1,136 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "f1ba6aecf3f85afc7098f87135cf0c72"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Length', - '980', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'a82310fc-a57c-4352-aae6-ef4f43a86c00', - 'x-ms-ests-server', - '2.1.11654.25 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:54 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr2l3--u5HsjIv0_OhajzfZziPCgFLDPgJYWTRwvGG7XqsFjH4GfsgTeHVkH_mRAAHrKy1FtGa7EBBDZlRSZUChMV2vCRe4bUdhH083O6_6vCEApnJcIQLstvVBL-azKGfUFxxfKY5ZIrpVKWyvrlBuZwYPS_lkiahHvLgeFkvFM4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Wed, 12 May 2021 19:07:54 GMT' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Length', - '1651', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '2ea6dec1-bb0d-4e0c-baa2-1bf4642b5a00', - 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:54 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr5lc50OIls712kUv5x2_T-1Ks0Rolxa0fGIIe_SBHv9B-2l2DJLuqy96VeDVb5hKOaBU1BrILtlnelgw9KN7UylnBmRNbwfyJkZ-OxigWC9gvDbD460-Er3mLZr-XoTwCFpNejtnxP5BP1hbu7noWLuRMg_8WKKFAz_CdyR4C7T4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Wed, 12 May 2021 19:07:54 GMT' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"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', - '6d13d50f-9cbe-403f-876d-4ed332145b00', - 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:54 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Wed, 12 May 2021 19:07:54 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"👩🏻 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '56', - 'apim-request-id', - '0cf6a0e9-0c67-43d9-b140-a7a03b2bf6e5', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:07:53 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_family_emoji.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_family_emoji.js deleted file mode 100644 index c72afb930371..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_family_emoji.js +++ /dev/null @@ -1,136 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "a402378c0870e01c9b7b6f1875e0a302"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Length', - '980', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '8507ff2e-b5ec-4702-8a57-bac622a26e00', - 'x-ms-ests-server', - '2.1.11654.25 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:54 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr98rmbVITiJU9XphAWXt05WXZ7PnhxjuUMGJOQHjmd0ccTRj5x4UMrBsIZ8Itky2-Ll4p_SnAF5XfDVm4P_LhyK1FosVfDWnRQxE4216bG8EGOMZvxm-os3FbiuEM7fUje_8eXhzO37f8b383dkTPdDuhc5950StZGexZbGQ47W8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Wed, 12 May 2021 19:07:54 GMT' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '428c50f7-d2da-402a-a895-3212a0a85200', - 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:54 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevramL3WmebWFFJfytV2_33QL4ZwTFbtAEdf-qyhbYgsaV8jw5RaW4S9PIzpLkcJ6K8DEn_2lMrCj6QY3YR6gSIKuJHqiWzY-acCSEddipDLz8H_c6ciIJQQ6hXuHXlfUdnI0Ecq4ASkE77v4R6Dt5k1cvsOTEZufsQO9a3m9D-nYcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Wed, 12 May 2021 19:07:54 GMT', - 'Content-Length', - '1651' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"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', - '85f09191-d1fd-4fd7-9a80-0d91fd916200', - 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:54 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Wed, 12 May 2021 19:07:54 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"👩‍👩‍👧‍👧 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"👩‍👩‍👧‍👧 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":13,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '77', - 'apim-request-id', - '513716ca-c511-4041-900a-c9b0110d3b4f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:07:54 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_family_emoji_wit_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_family_emoji_wit_skin_tone_modifier.js deleted file mode 100644 index b362f3ca5a1a..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_family_emoji_wit_skin_tone_modifier.js +++ /dev/null @@ -1,136 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "eee455408027c2ef3acc15cb29000eb9"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '6db67f44-7304-4f53-a1dd-4d3576518000', - 'x-ms-ests-server', - '2.1.11654.25 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:55 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrDGOP8RKocpMTKE37jrEr8h6ZVWpeGr8NoWcg24pDkQDP4N_sfeskoRl0satfUlzHTWrbB09ea8uB4zx1-oz0_p_POMCSPy4aL_8_nEJzgSjYALp20PdyhSQwaTSii59UCEs2xDl_tLPS5z9nK5_9E3Awy9qwdwQpQ8cvxjX4OZogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Wed, 12 May 2021 19:07:54 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Length', - '1651', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '74c31071-9533-4e7e-92e2-c81a280c5400', - 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:55 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr-3M_H7YIBELhOaN4opCy63B7IHzksLSRx2nKGg2XAWk4mHEhY14a7WH9WZZBZJRGaNYmhXICUjdZM78F5aT4cODM12RDmXiTzbIY6Re2w8Y8QCaukHLbAvQMxqOfLswZ4vIUmrcnGTOfZwaNvJrWxeqq-4fX_6wew5MYxQMWotAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Wed, 12 May 2021 19:07:55 GMT' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"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', - '36779b91-cc05-4719-a9c1-efc908ab5a00', - 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:55 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Wed, 12 May 2021 19:07:55 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":17,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '36', - 'apim-request-id', - '8293f249-459e-4ac7-a836-9e68a96dde1b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:07:54 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_korean_nfd.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_korean_nfd.js deleted file mode 100644 index 3cf77964dfde..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_korean_nfd.js +++ /dev/null @@ -1,136 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "d06190b0bf0ce0844d2eeca875e76e18"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Length', - '980', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '7c718808-50fc-409c-9e1b-5effe4610600', - 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:56 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrXU_vsUcrcqYyTG4q3wg6UzeHu0eolhtqYEj25fJpjZwk-YsuRlKJnsEIW4IZgcbcqmGHNfUUcvjhKL2DGEmj9w4yx1EupZ_pbqAjjC3lqyOaVKHV0F6GmXjk1eXxqqyVBknCfoTZoxeHloMgJnzRmktZwpJ2Jf5e7SEugZNlVHUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Wed, 12 May 2021 19:07:56 GMT' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '29a193e4-4207-4b4e-982a-fd8218895e00', - 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:56 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrXwPcIXpJOw21r5Jp4QK4eTVyBOKC5O5i4pLjIsllde1FV6d3Bk97XOSeotHeENhF9JmXUvcnHnxVcOewGaVeh0XacPkIbcV8rd8h-3txGR0cKyemEybiAJvN_UjLLlEalYc4qj0ZLGG33AFTZl0dFRy2KSvgPpugfr5ZoCfKmVYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Wed, 12 May 2021 19:07:56 GMT', - 'Content-Length', - '1651' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") - .reply(200, {"token_type":"Bearer","expires_in":86398,"ext_expires_in":86398,"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', - '992d1a63-daeb-4e71-a072-889775c46100', - 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:57 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Wed, 12 May 2021 19:07:56 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"redactedText":"아가 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '77', - 'apim-request-id', - '3e31a8b6-24a1-4266-84fc-3748b383438b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:07:57 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.js index 6299e795f384..04d5dbac0539 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "c6050dc9ffc3b922255fc53bc2200087"; +module.exports.hash = "75554aece4db56a794c8fd18e29f84aa"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,30 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '7507f7f0-1e1d-4b21-94ae-309fa4947500', + '3ebb228f-346b-44c5-8024-34c457504c01', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:51 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1CQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:20 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr11iE623YDGrOAxqP4lOMfCY3ftYi0xUqbBb124hh1Kd5kgwsWQprDk7khZRXHgxX6jDCl32od2QmQrymGaCyOmrAVFP76aXntlIRnnP8iqkRBM_nssm0-NzOSdHVG5p-OFoo8jELDXd5pLTVbTmlfB8lo-qT7NS822JR5s0_xdkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrLFtZ49sUc7LgquJRfdn44UjdOIW-iFmbgY-uPuA1vXd-wFQKZFHZTxLsPgYDvVz5gQHtuy03pOKCbe6qyHzKkLWnRz8ThoIqdRZaQBLsHz_pp9UnlVikPG95pT7qfkOxoR5pTsxtkXUV6ZrvK7ewDAwixUAPI-qCFNsFKY2BQBQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:51 GMT', + 'Tue, 29 Jun 2021 21:09:19 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,33 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '2ea6dec1-bb0d-4e0c-baa2-1bf4e32a5a00', + '6614c87c-7b25-4e3b-be59-8c46f2045f01', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:51 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1CQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:20 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrbYTwM35PRtwIuhtbDq43i0PYJs4RpECQjscATwkRgdHdAPGBpqUUdRPx08pczFCx6LmyYhaQ6_EXsgDZ4IXydZpAwo-e7JydUSUNsEFeGuwaZoHkDJcKmGS3ue6up1czn1tYpM00ofmeDI0kKnojt00QQFSvxXJloTsLX6qsWWkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrJ9UOJ1DMgQlKR2_xgDEfjMv33Bj_G52Czo8rTbhRtZlLKZZmHrqxJ0e3se2Ut3JmBlftiTdOVypNfLWBxuC8gVo6d3VRjMqpcCzizvQu1FG5aK3UQ49mG_-D_KPZbCGqMIwqPpLrBfGf9FcX5vHU_Iry7rYha9G2-pLNdG1j9DwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:51 GMT' + 'Tue, 29 Jun 2021 21:09:19 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=a3e1df0e-ff86-4fe4-be96-b277d65fb55b&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,23 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6e319f75-8e43-4e3e-8461-03eb8ef9cc00', + 'd702b7d8-438f-409b-a0b1-50a8bee15101', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:51 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1CgAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:21 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:51 GMT' + 'Tue, 29 Jun 2021 21:09:20 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"año SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":9,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '55', + '48', 'apim-request-id', - '5f0e58dd-8048-48ca-94f0-09bceb0ef9fb', + 'ea203c9c-8a68-4c5a-9393-9c9e9109fc31', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:51 GMT' + 'Tue, 29 Jun 2021 21:09:20 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.js index 545c88730ddd..e6be527190ab 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "13907b34ff65c5c5b51f4f4b8e11a36d"; +module.exports.hash = "29c8e9f857f7d02d5af8c0102f103450"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,28 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '8e67d787-4a99-4be8-a999-06dab7b37700', + '738576c1-1f51-4774-870e-8c886ccef300', 'x-ms-ests-server', - '2.1.11654.25 - EUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:51 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1CgAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:21 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrGsC6nuGVywl5mtO2ZJ8vJ0efeoQ-eZT7gqb5vKoCVkSENesIjn188NwzZGovjaswwL1SYovvVbvn3okJZTEkvs3T-t89aZ9dOa3lC0XJFjgS6g2miHv9TBPaXAcp77rO0CnYOvs9NRRlxuPfbvbhrvFIAZ0BX25n9WcFYIWHyGIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevro-IiDQbavJ3STZQB-h6DTqxTha6fp3hGU1wKHwjMlxBD3wxLi-UWWHFkCHybJPcQUFCb5_LJ97Q1bCf56hDGDILdVUj8xPR71yH6ed56GcoxN2n15k0bJx2-U_sgiT0iOCTz84ok1IiPZdEQOpdtT1vHb-nWybubT3nzGZwrsqsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:51 GMT' + 'Tue, 29 Jun 2021 21:09:20 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,26 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '4a103786-0d77-407a-b76a-a289452ed400', + '22b8e306-839a-4592-ae63-e08e40b24f01', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:52 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1CgAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:21 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrGUfqZGiw7MeuhRERflbHlps5NXFnVQ4VDTocdvuiICkOYi_HpUQQGXZzHJjuAwUfmxmYXljiE7KFTH5DdoQrX4rtv6P5eNb-EX6yrH8bJGQpSbUjb-R8vudfO5tlVAHRo17J5PDV8Pa1upgGDixrWE9qh3kDabO8rDWyadYNo8wgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrOCA_Hl_sy359lm3woqZf_vpCJ-IS7l_mV5ixBsYUSCrrJOHCrX8uotzmdL5bs_39RghbIBLOxd7yo2sstQmr7CEqt0dUNDd-KFRaePf46VhUhfloeVpKTLO-6vTvBrkq_UFW40p703f6HRjYqNCH8IYvulmJzSGQYj5YsWBOMI0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:51 GMT' + 'Tue, 29 Jun 2021 21:09:20 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=9daf4f6a-fcc1-4730-bd43-1f79ba2f870d&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'b6a65474-742c-4d60-a8b1-d5d3fba46000', + '6614c87c-7b25-4e3b-be59-8c4619055f01', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:52 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1CwAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:21 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:51 GMT', + 'Tue, 29 Jun 2021 21:09:20 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"año SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":10,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '36', + '28', 'apim-request-id', - '71fbbe04-af70-4aa1-ae2f-9217066f15e6', + '64a36505-6839-41fb-b205-eda0e4a63892', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:51 GMT' + 'Tue, 29 Jun 2021 21:09:20 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.js index 0bd02f567ca9..33e0c55d0b13 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "361565427190c36bc16585873215f876"; +module.exports.hash = "12b6a334f86fe91d41114a8211ae608e"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,30 +23,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'db539be7-249f-4efa-b821-5e81a0354501', + '5ed6318d-aa34-4d8c-93ba-9c43adf0d200', 'x-ms-ests-server', - '2.1.11654.25 - EUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:49 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1BwAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:19 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrPQZkKzyi38qoRvlLrjSd3gIAdxaSbEgXCq5pmBfILtqfIczF3bSpLAx-FtyIg-T_lCdfdoYqEdEKPKQQAKV6sWOePy58KJ9wlZRWhuqjD9yVyGwAtEzWTHKMuXGjXliOJvf67dfk8Fvref90YPHDa2ur3VjsAWsDp9ThPB748xEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrmIbi9GbH9C3QPo68ifZ47XFoEtJQ82AQHWPzLN9LdgFb7qUTyYqJ9gyJ49JO7pQzX_5GUoYruVwMNQjSyTH4TO0HBAzm5TkKCVK63wgJWyOaFE5HjC5ZPFPWbge6GJ-0Md-OoPAVWwDeF1tAK8AvOOYEZkLLxzqZl_oEqzdy53ggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:49 GMT', + 'Tue, 29 Jun 2021 21:09:18 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Length', - '1651', + '1753', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,26 +60,23 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'dac8c720-7f5b-4daa-a8aa-ada5171f5600', + 'ef774fe4-b4dc-4a74-a261-962963024501', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:49 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1BwAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:19 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrSd11aOoBYlrRn7T-Oymn1HZ1qVvY_yGObmFYiBZj5dJUZznaZqeOIAM37HmDpC7lLUFRYQybWlkyo0x9LZ2CET4CLr-GQXgjsScUFIikthZmfx7BZsnXUWSMD6rsvEsew060ldrGvLa3QVim7snx_3xDpDZ_1meqIo7YI2jL0vogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrcceCusxu4DY731iMIhKcgbX_TvDfc9s7Yj4YuhQIbVr4eJvUbjh25u_QHWHPUU6cJtvDCG8mA8GwiucLisweI1kNGJ01ZInw3p7sy-5tNXaAEMhaNhCA4BP0dRwfP67pFII4roMmUc2mEx0C409eAtWLVf_SqzHr1sIkDQ5dK20gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:49 GMT' + 'Tue, 29 Jun 2021 21:09:18 GMT' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=2fef20bc-91b5-4764-91c5-d43a16ce2961&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6d13d50f-9cbe-403f-876d-4ed352135b00', + '2e60ad9f-7cc3-4fbf-9e12-dd90be8c5501', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:49 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1CAAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:19 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:49 GMT', + 'Tue, 29 Jun 2021 21:09:18 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"👩 SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"👩 SSN: 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"👩 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":7,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '55', + '36', 'apim-request-id', - 'd31744cf-7647-4561-81b4-6fd99bcdbb62', + 'b456aadf-74e0-4096-a867-993a56bd7ec0', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:49 GMT' + 'Tue, 29 Jun 2021 21:09:19 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.js index ab88cc73344c..c2afa581e56e 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "15ca518914ea3a2871ae553d599e89d8"; +module.exports.hash = "7c8d4de95da91bbbef328a9fd5fde2f1"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,30 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '2267d579-1dd8-4bb4-8552-f678d8889d00', + '30322d13-1965-49d2-a868-a7d556d40a00', 'x-ms-ests-server', - '2.1.11654.25 - EUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:50 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1CAAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:19 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrbAlWlMTWOxx5828RPiCMYVyWDB00I3MptSlDgBLfVMUWFqpLUW6n96xnJsLCSy4fvJ01dzfWnFH1zstzDBrmpJR0ruHicA91T6FUNCHoyxcf52M69v3Ear2iAwLWSMAsX-RylI46YKt-eCkvREOflYxYbZAzmTL4gfQ_5HmAgNcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrxja1OngTRfr3GeXHQU8F_tITpRwxarcH0YcHw1hsLJLO6-XDWVsoaX4sATA0HVRgkooDantPI8Z6IQR2yKDmQ8B9O2qbJrquI2aC9PAy51Og2So-4Oc7npyf_6lPq72Wywjj2ed1ddgyH2p-52HxBLIxfXyCSwBFoDka-eDNKV0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:49 GMT', + 'Tue, 29 Jun 2021 21:09:18 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,33 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '4a103786-0d77-407a-b76a-a289f92dd400', + '58d79bc5-3030-4871-8772-cc5b3e871201', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:50 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1CAAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:19 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrtZMJJ9APp2IZSiay8r46ijdjdKFjP6sTRt9_34Px89PbrMoTSvR7wCCqJPweo5c3zb2dZa1iFKC2DMJR1oUu2EvoNXM4R2Vyg7xXoD51pWfIbvZtlBRa0REwpSrMy2xg7zJiCqwnTGIl8UubQbCRKVMTy7Nrcp8mT8dTBTDYgYEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrJa70beNWP6Tnyf6OO79zBs5RkTUm3Kw5NiWswIhcR6khZAl0Drwxv8afT0KFx_bcyf05j2piDM_3pV6s8avhILENQtPv7YYnzCLJocyL6WIekGD7lVM_neLTqbzFyyHJpJOTweto6YsXO8izxkyrHucCdch8UwDISL4gwb2OFnIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:50 GMT' + 'Tue, 29 Jun 2021 21:09:18 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=06a76d9b-dd89-4a6f-94aa-e32d8945df96&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,23 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6e319f75-8e43-4e3e-8461-03eb60f9cc00', + '11002d59-d7ef-4cb4-aebb-0867490c0401', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:50 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1CQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:19 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:50 GMT' + 'Tue, 29 Jun 2021 21:09:18 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻 SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻 SSN: 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"👩🏻 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '53', + '54', 'apim-request-id', - 'dae8756a-a356-4f40-a512-0b0a1ba11207', + 'df6a1aa4-cf2d-4cfc-93c2-5adad87ed0d8', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:49 GMT' + 'Tue, 29 Jun 2021 21:09:19 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.js index 4146db12542d..47aebe69877f 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "9743f76c8d3ad3533c3df1316c7da3fe"; +module.exports.hash = "6e5e53c2e27941c69921ae711a3d42b5"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,26 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'a35cef9e-34e0-466a-8d96-fc31978ddb00', + '1a10b2f9-6f92-417b-85d0-6c2c988e3b01', 'x-ms-ests-server', - '2.1.11654.25 - WUS2 ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:50 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1CQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:20 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrPNGjdEK2VfSCHdkJUpf87AxokY1vX1pQtfhLMrSjvZnf0jKqzlw_7V36Nhqb5luWrOngDx0A0pY30liafJ1i5yGymdZHLyDuZALjRvfu8eVYxCgftvDPCGnyKLOdgj6JGHYIVHYCsF34Jpq4YqixAfcO_yd96hbRxE3dh4X-JgQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrTz8p0oT1a9KP2uHGBGVnmc3dLNZABIgIugKIg0su4GYg76OGuyWtV8O36uLo_sNlm2cZaDQA76ftPlQwIg04jQW7VWjGqYEQIuAa2UDAU6PF2vryCAHb7D9gLawE6tSLGL9k5NEkgzlsa76Vc6yL3F8otgHDaYHPMjjjuISou08gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:50 GMT', + 'Tue, 29 Jun 2021 21:09:19 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,28 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '428c50f7-d2da-402a-a895-3212f3a75200', + '9fcd3b94-85f8-49ba-9f7f-93473f840d01', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:50 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1CQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:20 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrpPi7f1SkITWKQQKvmcTBxE711TceThG5xtJrixeAx0uC4QOWngeWVE7GuoEKiiFB6lbU32L5QCcG0a4X7yafGT79O277T621QQ15lDtKBfiUl-5GmUecvAwrZvyBQdMRUG7qIfj9p5jijSQf0Wi0EkiugopMRZNhOn0ETtoyEJ0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr6f2bRJ1OzhONUy_R-pQrjLjl5GHRLnIvbgQG2st-fKsEnDDFO0fMPI1g_3VJef8-OcLHFDo6cs8vYEpHROKakafhpBZs-GPtwxEBaKbfkUhipoAOs5HceTxMX-YyjV8tWbA_2rg3L27yXptIWN3ttG97u5t6NCMIaujL3Oqq9ZEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:50 GMT', + 'Tue, 29 Jun 2021 21:09:19 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=d19af2d3-d58d-45b9-b419-15ee2c10a4cb&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '74c31071-9533-4e7e-92e2-c81a9c0b5400', + '2e60ad9f-7cc3-4fbf-9e12-dd90f28c5501', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:50 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1CQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:20 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:50 GMT', + 'Tue, 29 Jun 2021 21:09:19 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"👩‍👩‍👧‍👧 SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"👩‍👩‍👧‍👧 SSN: 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"👩‍👩‍👧‍👧 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":13,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '105', + '36', 'apim-request-id', - 'b3b80b08-b177-4264-83e9-de594d08cf73', + '42378b22-c6de-412b-88f9-cdcee43ca2c0', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:50 GMT' + 'Tue, 29 Jun 2021 21:09:19 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_wit_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_wit_skin_tone_modifier.js index 94ed80d82b5f..2acd322eabaa 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_wit_skin_tone_modifier.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_wit_skin_tone_modifier.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "1781f722bf7f0bcffd5c407c036c427e"; +module.exports.hash = "d2d93f114abe1fa04b62c793fc5dc2c9"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,26 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '8aefb721-2e84-43f4-916f-3f5711c5aa00', + '9def48e5-773e-43e1-90cd-8688c37d3501', 'x-ms-ests-server', - '2.1.11654.25 - NCUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:51 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1CQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:20 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrzGMhyzaA5ih4nQDzQV6mRdbUxS00IgLuylekbtxdJDYB0Jz6VnVagWx1Xhmsue5vL61kZm9FbKwSQJggnISX7gVqDOGTzVEkrI2PUBRywy3sptIAuphxuZsZ_pGPVyqNiq6scKBkUIr_CuZBMrChQjChUcwSSyX87ptA-yEyazYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrGaCo0UwGOcuXVnMaLT-ff9f6VmyOQlfYC9J3A3W3xhxZib_1iqtkd0vTObCo5EhAYPH05HxZGh6SeScBC5tk7neji-jaHemKRfyT6G55N1QJHKud4prprZtXA0fnTTzCqSG4M-2JPJizQ0EujHgJZEhwmPO1wahLJTucZU4pi2YgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:50 GMT', + 'Tue, 29 Jun 2021 21:09:19 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,28 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'b6a65474-742c-4d60-a8b1-d5d3d4a46000', + '9f982048-e8b9-4f55-889c-0cd97a7d0a01', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:51 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1CQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:20 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrcYdWxA7T0H2l19R3q556Bj6ApSNts9gNgHHsatrFQdTuAcL5QWlV9Y4Ve96ztxknjVkkZsXo01wvju3q5vPmAoSNa_usCuJFHY0pbmYlarrkkjCVdxYG_zq206hf1c5KgUlmvi8CKa1pX7zjJtKASJZS0slGUmOPqhgKG5ChcdUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrtHq_Wob_1xrI1W8-G_3mLSVEBFcNq_7XMDj6u-yLbmHO188_OL6MlYxSi9uijLEJU3zSKVQnH0P-0eyYTp-XhyRi4FHQXfB769OfFL0kbocHFK2MY-ORsNZT1eTt2vDuMCHsQlQuGB-eookClp5VOPGNSGfAIptUVYHRVoiwNyYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:51 GMT', + 'Tue, 29 Jun 2021 21:09:19 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=2f5988a1-b021-4247-a8e8-83b3fef16672&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '85f09191-d1fd-4fd7-9a80-0d914d916200', + '22b8e306-839a-4592-ae63-e08e0bb24f01', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:51 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1CQAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:20 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:51 GMT', + 'Tue, 29 Jun 2021 21:09:19 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":17,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '71', + '38', 'apim-request-id', - 'b86bce19-2e98-4e75-8539-87bfab3d6b8d', + '56868574-1e6b-4f3f-867c-7159079f4c81', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:50 GMT' + 'Tue, 29 Jun 2021 21:09:20 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.js index 7d7fa12eee90..840926d0929f 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "36e4bb0c286d54cc6fa2655a861b4568"; +module.exports.hash = "f91e444e2f56aecc8a364f85827407d8"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,28 +23,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '463b2e60-8b5d-48aa-b547-934f5f255b00', + '30a2f84e-a0ef-4518-9d41-fd6e04370601', 'x-ms-ests-server', - '2.1.11654.25 - SCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:52 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1CwAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:21 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrRUaYraT4kibodlJELcFZ2jUu3b4xHgNzKMpZ_QZak_SUv_z-BmF4m_6E9-RDep2YBUWmZ9QJA5h2P1O4XBWFhVdO4gJ3-x6qarc48mtz1gZV8MNm8i8D3sBxPTM5kO5B7oV3UPmqm3u33IoqOpiW1sNKr0DN2rMVyOBLh09cBqIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevry-pXk6yjhvNXcHAitNAS6EgXicLI_81rFYwCaY_4d5R1AqUJh6RgAY1rb-YATU1WGqrq-tHHhiwYuK78MV66uE8k4FPmI9O7rTZ41NksUU2G8pM2gQ7SpIM7_uLATXoNsuvsouLmrsBez9xxFLdGfyv9ShPSkLAruVB4rtADHO4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:52 GMT', + 'Tue, 29 Jun 2021 21:09:20 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', + 'Content-Length', + '1753', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -58,28 +60,23 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6e319f75-8e43-4e3e-8461-03eba2f9cc00', + 'ef774fe4-b4dc-4a74-a261-9629dd024501', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:52 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1CwAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:21 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevriIbuAc5_5Hga-i7ejnGcDoX8d_-ucT2qvKYY_L144kR7f7gZmykjJd6I7_oVn3CFB56NDPXweU_He8UDN2urYH6Zdga9SWQRc3mOlYTLy-SNGZt2Mlo1NtM6aIeNoGrdQqttlZHQea6n2gG1FCtjXU90BpwTINP3Y6fhRiqe_48gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr0tzf-uxqRn0ouVnkvbGme1MC19fXLQe6YcXE8Kw84mVlsypseewbriFkPFlWEdqEy4n1F8xv3q0bsI7EaIehOYZCA7pG_G8iYPvvhnF_Ru3Cpxh-Rng9fCn8XFj8De2szaD17SsFPoKE3kaxjikd3XsC34vP99w4H8-Od_E8UrsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:52 GMT', - 'Content-Length', - '1651' + 'Tue, 29 Jun 2021 21:09:20 GMT' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=823fcf39-e73c-4087-b8e6-93edf2e24542&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '29a193e4-4207-4b4e-982a-fd8258885e00', + '58d79bc5-3030-4871-8772-cc5bab871201', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:52 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DAAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:21 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:52 GMT', + 'Tue, 29 Jun 2021 21:09:20 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"아가 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '54', + '33', 'apim-request-id', - 'e749dfe3-d64f-4b1c-8397-df342fce6d5a', + '4d777e39-005d-4530-973e-104f43a6ad56', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:51 GMT' + 'Tue, 29 Jun 2021 21:09:21 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.js index 3adaeaf6ddc9..1af25a45227e 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "36e4bb0c286d54cc6fa2655a861b4568"; +module.exports.hash = "f91e444e2f56aecc8a364f85827407d8"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,24 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '1582f65c-fac4-493c-ae38-2f911c2d8100', + '86a0d4ed-4327-4ad9-9beb-cffae039e200', 'x-ms-ests-server', - '2.1.11654.25 - NCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:52 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DAAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:22 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrV5m2umc16a2YMG0MckeWLKRCzTmvHOlxFs3Yy5RMBpIjycjYHY0kCrOcxeQexH2F5I0RHFQkc5kfm3ydhClyRKYg3nU0w6KPOdQbDA9OqEBbVIZpaX4_Cb7Xx9CJhELF27FtpMMPvEWw9wJh3mScrDwm_B-SIoucG0CiBJL3qa4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrrf-BOAMb-z_c1qlkdk0KeJZESwuqtgvkDpRCsRm3D2t1Y-hG81Ns9bDCMQUTyaJabEDglj80r1giplAniNvdQTB8hjEx7E91NDqs_bw_ApPxrfZ5__yqNRrGp81iKVr9UAMw1naD5-JGdCSL-GyX1bIfh363ee1LtEqCGL9DrZ4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:52 GMT' + 'Tue, 29 Jun 2021 21:09:21 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,35 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '36779b91-cc05-4719-a9c1-efc9abaa5a00', + '2e60ad9f-7cc3-4fbf-9e12-dd906f8d5501', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:52 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DAAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:22 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevraxTxOgMSEBmK1sZCjvjbMYavfdXzdPXe_eAE78Rbk3prpg4VN-YhOBUoBIxwpNxj34naFOuUEbDyKTTeWJq8KD8Rr5GqVz_BRfpHrUtbbNe_Z0iLDjTYhjjixPvIGbs5gKrBW5cVMK47MDFK5sjtR49-rQ9sClqmHLIPBHpHrhsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrcdTcZIRYsVt3XD6doP9nlZ4iGIGWbdjVJw--vaJtzPwkraQBgn-Bn0Ke0L76fIaPXLyHo4RkIbUwIhyeZ7DJ10I0ubtnHxB3fbl7g_7l-TfzAb7rrubrlex2rPkOCVLZ21etFMfIPSJZMebklqUQhEkkLSSMtn6qkzfWGp2isXIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:52 GMT', + 'Tue, 29 Jun 2021 21:09:21 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=a2b32ebe-4ee1-484a-b8af-f707ea770065&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,23 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'd8df8829-77a8-46cc-a784-90abbcd8c800', + 'ef774fe4-b4dc-4a74-a261-9629f6024501', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:52 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DAAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:22 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:52 GMT' + 'Tue, 29 Jun 2021 21:09:21 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"아가 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '32', + '56', 'apim-request-id', - 'e2ca6431-a225-40dd-a912-81fb92e0258f', + '1fe5071e-2201-4e4a-9c4e-912ee2b4621d', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:52 GMT' + 'Tue, 29 Jun 2021 21:09:21 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.js index 995ec844bc21..613aab6229b1 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "27af0e438808a2d4ccbb0a7a3dc63e25"; +module.exports.hash = "c88cafad4fdf81af74bb9cc82d9b2af9"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,26 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '23d42d07-3411-457f-80c3-6b12d67a0300', + 'c59d3f76-3d55-411d-9230-fedd4c096d01', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:53 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DAAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:22 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrYHcaPW5TQGta41HJ5M5576EDlBrZ2b_zOoGDS9mv8K2pzvTzXPXDXz5zLjx-VO1QC-PASUC4dgB6LP5lyEyGDqkwzjavu-RVrUXCgwvWERbd8335XLFgi0aAvPyCclUO_Y1s4GG-aWyOVXcc4O81CQEMfoRPKcJW1FnEfipUnrIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrhijJN2CsURCNhWtdJrp31Ypr-1vzwVUrdZul9ZasvUMWlWnOkqp0Vvyjei0y4XttTSnzrP_96cpO1WO0skOoPU2iWigy-uJmlT-vvg1nUOhbgR_hC6BmAHkz3YWTHn5dYib4TdoxhChzT3jQJrUq-jYTPhSrVPuhKiOp0Ws0KbkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:52 GMT', + 'Tue, 29 Jun 2021 21:09:21 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,28 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '29a193e4-4207-4b4e-982a-fd8276885e00', + 'b6951844-4170-4f7d-baa7-92c157714301', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:53 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DAAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:22 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrxkyvlrzSCYYvBHAsQ0U74DFwJ71b5NZ8lpFh2obRw-nVM7vzujFTHIRj08GknmKclz65efcbjFDPrCzsdvlIo5fZW6k7tf8KZnz5OxC483T1EijX6kVzOr6x-wHwNGcD1bxGCLR5vnBywoDWLAzmmopciKx_Fl6FPobDWqaRjiUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrbu0jTGRkJqqqDPdLQBeC9K3nYxq3YstItRwevCGZDDpMB-16eSCqFHzgDHkbctCQvl6eI3kNwHeW40b5RMX5fSTDxtsCllWFWzSnb2qian-kqH6IEoJAmM1-X4BwngrmZ8gyrjMwLxl9R7bcRQiTFKIHmmECqGCsbyDPWoL3PG4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:53 GMT', + 'Tue, 29 Jun 2021 21:09:21 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=088dd854-5f83-485d-ab95-3db721384400&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,25 +93,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6e319f75-8e43-4e3e-8461-03ebc3f9cc00', + '8359fa8c-10a6-40b0-a1e6-c64dc92c2c01', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:53 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhDZ7IDtLClLmzbEbxz9mKlz_bg1DAAAAPKCbdgOAAAA; expires=Thu, 29-Jul-2021 21:09:22 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:53 GMT', + 'Tue, 29 Jun 2021 21:09:21 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987","language":"en"}]}) .query(true) .reply(200, {"documents":[{"redactedText":"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":121,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', @@ -124,13 +121,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '241', + '237', 'apim-request-id', - '2b385ed2-0d72-46a2-9269-08e76ee02113', + '849722d6-5211-4f62-98ab-d154ae592afb', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:52 GMT' + 'Tue, 29 Jun 2021 21:09:22 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.js index ea4b8ecc97aa..6afc8555d7d5 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "77442288e32e345307a8d0a86fb3c0d9"; +module.exports.hash = "b049e4ddfd7c51daa804a404b9c3e1d8"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,28 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '185baee8-f0f9-4159-8ab9-da5526677200', + 'd9bb3ecc-f1cc-491e-b8de-0dcb63640500', 'x-ms-ests-server', - '2.1.11654.25 - NCUS ProdSlices', + '2.1.11829.8 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:11:07 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:39:04 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrd9CEghoBSt0SflWhkIuBbzPAr2LHsMIFVrr8r8-MWl23CkIPnFvSuy0aylxAyKaSvk336kKGbvFMOaJH4v1ODsfI4o3tN_-TiyOHmLyWcKbUAuBX5PA2_jUU0gvYQyUSU49LwPEheR1Y-OA78QvfSY6nEcCMYpvu36j-nckwTX0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrK0A9LuTEoQgX15BjzQhYJHd6rfa815CU5A47WEXLvQR2-lbVj9dBCng67cRHgpJFXlnALT_yrfoOLg9BIS_RYUol3sdHP7uIoG93uiHyyTWKGeLHQMvlptX-FRDVrH144KEVQonyh66_qeXm6rB-V_A7Ad2QN9onkskhIHvZ4fogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:11:06 GMT' + 'Fri, 25 Jun 2021 19:39:04 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,26 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'dac8c720-7f5b-4daa-a8aa-ada5a93c5600', + 'c19e3cf4-d853-423c-83e5-5de3418a6200', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:11:07 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:39:04 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevreVjXR2kppe4XIPQhBpyubxyzGXTNzkfhrxna74jeLPipyXG40l28lmrFFO9QHxM7UAiNiG15D1McYIuYnjfhhuC_LEAgGIkGks-7vvm1O54QukA_nu3DycTBgtBuy3yL_eKhLNR4jIK7LbOBBGZ4bI-Pfy5ztdNqos5s0lYnOqIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrc2YX7YCtjLcjVOL9xeNHxJ95taY1LpHAb8junK8JlGN7tf77EwMlkKCQOBGiZlNc83wyoxvf8f6BCwLiX3_OFMUC2fKXIlzxeMn1U3uzxEOD67NgSd7E4UasGka-an-lzKFq9az-Dr-9ZqFu9geg0_e2HjeWPpDfR_ujjkiSBv8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:11:06 GMT' + 'Fri, 25 Jun 2021 19:39:04 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=ca9b6787-34ee-4871-8fb9-1bebd8ec8f4d&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,106 +93,126 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '36779b91-cc05-4719-a9c1-efc94dcb5a00', + 'c19e3cf4-d853-423c-83e5-5de3448a6200', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:11:07 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:39:04 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:11:06 GMT', + 'Fri, 25 Jun 2021 19:39:04 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/analyze', {"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]},"analysisInput":{"documents":[{"id":"1","text":"","language":""},{"id":"2","text":"I did not like the hotel we stayed at. It was too expensive.","language":"english"},{"id":"3","text":"","language":"en"}]}}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"1","text":"","language":""},{"id":"2","text":"I did not like the hotel we stayed at. It was too expensive.","language":"english"},{"id":"3","text":"","language":"en"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) .reply(202, "", [ 'Transfer-Encoding', 'chunked', 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/737bb0cf-b8d8-405d-b1b0-86b5110e4cd4', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/9c4886cb-9e26-458d-adf5-7534b0175503', 'x-envoy-upstream-service-time', - '166', + '293', 'apim-request-id', - 'b3950b62-ce2b-4907-ade6-9f53edd65b2d', + '592c49c7-6184-45ad-8056-3bd34f0fdbbf', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:11:07 GMT' + 'Fri, 25 Jun 2021 19:39:04 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/737bb0cf-b8d8-405d-b1b0-86b5110e4cd4') + .get('//text/analytics/v3.1/analyze/jobs/9c4886cb-9e26-458d-adf5-7534b0175503') .query(true) - .reply(200, {"jobId":"737bb0cf-b8d8-405d-b1b0-86b5110e4cd4","lastUpdateDateTime":"2021-05-12T19:11:07Z","createdDateTime":"2021-05-12T19:11:07Z","expirationDateTime":"2021-05-13T19:11:07Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:07Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"9c4886cb-9e26-458d-adf5-7534b0175503","lastUpdateDateTime":"2021-06-25T19:39:05Z","createdDateTime":"2021-06-25T19:39:05Z","expirationDateTime":"2021-06-26T19:39:05Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '8', + '7', 'apim-request-id', - '7aeb2497-5441-496f-9e08-95819d6f9c03', + '0a884fa8-93ed-4ec0-9eba-2f4f80a7a5ee', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:11:07 GMT' + 'Fri, 25 Jun 2021 19:39:04 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/737bb0cf-b8d8-405d-b1b0-86b5110e4cd4') + .get('//text/analytics/v3.1/analyze/jobs/9c4886cb-9e26-458d-adf5-7534b0175503') .query(true) - .reply(200, {"jobId":"737bb0cf-b8d8-405d-b1b0-86b5110e4cd4","lastUpdateDateTime":"2021-05-12T19:11:07Z","createdDateTime":"2021-05-12T19:11:07Z","expirationDateTime":"2021-05-13T19:11:07Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:07Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"9c4886cb-9e26-458d-adf5-7534b0175503","lastUpdateDateTime":"2021-06-25T19:39:05Z","createdDateTime":"2021-06-25T19:39:05Z","expirationDateTime":"2021-06-26T19:39:05Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '7', + '6', 'apim-request-id', - '20c66c9f-0a49-4133-a4ef-58121f7be489', + 'e4130e04-05ee-4d5e-bbaa-7e62988cfb64', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:11:07 GMT' + 'Fri, 25 Jun 2021 19:39:04 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/737bb0cf-b8d8-405d-b1b0-86b5110e4cd4') + .get('//text/analytics/v3.1/analyze/jobs/9c4886cb-9e26-458d-adf5-7534b0175503') .query(true) - .reply(200, {"jobId":"737bb0cf-b8d8-405d-b1b0-86b5110e4cd4","lastUpdateDateTime":"2021-05-12T19:11:09Z","createdDateTime":"2021-05-12T19:11:07Z","expirationDateTime":"2021-05-13T19:11:07Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:09Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"9c4886cb-9e26-458d-adf5-7534b0175503","lastUpdateDateTime":"2021-06-25T19:39:05Z","createdDateTime":"2021-06-25T19:39:05Z","expirationDateTime":"2021-06-26T19:39:05Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '8', + '13', 'apim-request-id', - '0fd0257b-1b2c-4f34-b1ac-7fc4dea48375', + 'fae48fdd-54ff-4154-9f13-e28182cc4658', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:11:09 GMT' + 'Fri, 25 Jun 2021 19:39:06 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/737bb0cf-b8d8-405d-b1b0-86b5110e4cd4') + .get('//text/analytics/v3.1/analyze/jobs/9c4886cb-9e26-458d-adf5-7534b0175503') .query(true) - .reply(200, {"jobId":"737bb0cf-b8d8-405d-b1b0-86b5110e4cd4","lastUpdateDateTime":"2021-05-12T19:11:09Z","createdDateTime":"2021-05-12T19:11:07Z","expirationDateTime":"2021-05-13T19:11:07Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:09Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"9c4886cb-9e26-458d-adf5-7534b0175503","lastUpdateDateTime":"2021-06-25T19:39:05Z","createdDateTime":"2021-06-25T19:39:05Z","expirationDateTime":"2021-06-26T19:39:05Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '11', + 'apim-request-id', + '1a9a3b7b-427c-4599-956a-8125398c5128', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:39:08 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9c4886cb-9e26-458d-adf5-7534b0175503') + .query(true) + .reply(200, {"jobId":"9c4886cb-9e26-458d-adf5-7534b0175503","lastUpdateDateTime":"2021-06-25T19:39:05Z","createdDateTime":"2021-06-25T19:39:05Z","expirationDateTime":"2021-06-26T19:39:05Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -203,111 +220,231 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '6', 'apim-request-id', - 'ae3b9048-abed-40f2-95ad-c124f931610b', + '43f11ad4-24b1-4bca-9daa-57f8f07f1f73', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:39:10 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9c4886cb-9e26-458d-adf5-7534b0175503') + .query(true) + .reply(200, {"jobId":"9c4886cb-9e26-458d-adf5-7534b0175503","lastUpdateDateTime":"2021-06-25T19:39:05Z","createdDateTime":"2021-06-25T19:39:05Z","expirationDateTime":"2021-06-26T19:39:05Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + 'f738ba47-d82d-4199-ad53-7bfd93894af8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:39:13 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9c4886cb-9e26-458d-adf5-7534b0175503') + .query(true) + .reply(200, {"jobId":"9c4886cb-9e26-458d-adf5-7534b0175503","lastUpdateDateTime":"2021-06-25T19:39:05Z","createdDateTime":"2021-06-25T19:39:05Z","expirationDateTime":"2021-06-26T19:39:05Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '2ece8de8-9036-47fd-a579-d0363aeabe8c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:39:15 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9c4886cb-9e26-458d-adf5-7534b0175503') + .query(true) + .reply(200, {"jobId":"9c4886cb-9e26-458d-adf5-7534b0175503","lastUpdateDateTime":"2021-06-25T19:39:05Z","createdDateTime":"2021-06-25T19:39:05Z","expirationDateTime":"2021-06-26T19:39:05Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '13', + 'apim-request-id', + '06b5a996-dfea-4966-9cea-4e0514031caa', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:39:17 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9c4886cb-9e26-458d-adf5-7534b0175503') + .query(true) + .reply(200, {"jobId":"9c4886cb-9e26-458d-adf5-7534b0175503","lastUpdateDateTime":"2021-06-25T19:39:19Z","createdDateTime":"2021-06-25T19:39:05Z","expirationDateTime":"2021-06-26T19:39:05Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:19.298235Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '77', + 'apim-request-id', + '24d147e5-d942-4ffb-ac6a-5a0a5ee2304c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:39:19 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9c4886cb-9e26-458d-adf5-7534b0175503') + .query(true) + .reply(200, {"jobId":"9c4886cb-9e26-458d-adf5-7534b0175503","lastUpdateDateTime":"2021-06-25T19:39:19Z","createdDateTime":"2021-06-25T19:39:05Z","expirationDateTime":"2021-06-26T19:39:05Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:19.298235Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '81', + 'apim-request-id', + '6e71eb27-9145-4975-84d6-b5d75671e9c5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:39:21 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9c4886cb-9e26-458d-adf5-7534b0175503') + .query(true) + .reply(200, {"jobId":"9c4886cb-9e26-458d-adf5-7534b0175503","lastUpdateDateTime":"2021-06-25T19:39:19Z","createdDateTime":"2021-06-25T19:39:05Z","expirationDateTime":"2021-06-26T19:39:05Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:19.298235Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '98', + 'apim-request-id', + 'b2165167-ae6a-49fb-9139-9db3160121b9', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:11:12 GMT' + 'Fri, 25 Jun 2021 19:39:23 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/737bb0cf-b8d8-405d-b1b0-86b5110e4cd4') + .get('//text/analytics/v3.1/analyze/jobs/9c4886cb-9e26-458d-adf5-7534b0175503') .query(true) - .reply(200, {"jobId":"737bb0cf-b8d8-405d-b1b0-86b5110e4cd4","lastUpdateDateTime":"2021-05-12T19:11:13Z","createdDateTime":"2021-05-12T19:11:07Z","expirationDateTime":"2021-05-13T19:11:07Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:13Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:13.4682658Z","name":"NA","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"9c4886cb-9e26-458d-adf5-7534b0175503","lastUpdateDateTime":"2021-06-25T19:39:25Z","createdDateTime":"2021-06-25T19:39:05Z","expirationDateTime":"2021-06-26T19:39:05Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:19.298235Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:25.1537991Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '46', + '140', 'apim-request-id', - 'db74ae1e-6dd3-4411-b738-fa62c8293aa2', + 'd1fbb056-b655-4ce9-ad2b-894f70084eb1', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:11:14 GMT' + 'Fri, 25 Jun 2021 19:39:26 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/737bb0cf-b8d8-405d-b1b0-86b5110e4cd4') + .get('//text/analytics/v3.1/analyze/jobs/9c4886cb-9e26-458d-adf5-7534b0175503') .query(true) - .reply(200, {"jobId":"737bb0cf-b8d8-405d-b1b0-86b5110e4cd4","lastUpdateDateTime":"2021-05-12T19:11:15Z","createdDateTime":"2021-05-12T19:11:07Z","expirationDateTime":"2021-05-13T19:11:07Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:15Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:15.0695624Z","name":"NA","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:13.4682658Z","name":"NA","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"9c4886cb-9e26-458d-adf5-7534b0175503","lastUpdateDateTime":"2021-06-25T19:39:25Z","createdDateTime":"2021-06-25T19:39:05Z","expirationDateTime":"2021-06-26T19:39:05Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:19.298235Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:25.1537991Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '93', + '123', 'apim-request-id', - 'e76bc963-6cca-44ba-a866-92c3b3841972', + '3a02696f-99ee-4e59-9e67-1622517bf2e8', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:11:16 GMT' + 'Fri, 25 Jun 2021 19:39:28 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/737bb0cf-b8d8-405d-b1b0-86b5110e4cd4') + .get('//text/analytics/v3.1/analyze/jobs/9c4886cb-9e26-458d-adf5-7534b0175503') .query(true) - .reply(200, {"jobId":"737bb0cf-b8d8-405d-b1b0-86b5110e4cd4","lastUpdateDateTime":"2021-05-12T19:11:15Z","createdDateTime":"2021-05-12T19:11:07Z","expirationDateTime":"2021-05-13T19:11:07Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:15Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:15.0695624Z","name":"NA","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:13.4682658Z","name":"NA","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"9c4886cb-9e26-458d-adf5-7534b0175503","lastUpdateDateTime":"2021-06-25T19:39:25Z","createdDateTime":"2021-06-25T19:39:05Z","expirationDateTime":"2021-06-26T19:39:05Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:19.298235Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:25.1537991Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '89', + '217', 'apim-request-id', - 'a56dfcdc-ea76-4839-87ff-0e98b61d001a', + '43cbc8f5-38eb-498a-9911-8bb86bd63116', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:11:18 GMT' + 'Fri, 25 Jun 2021 19:39:30 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/737bb0cf-b8d8-405d-b1b0-86b5110e4cd4') + .get('//text/analytics/v3.1/analyze/jobs/9c4886cb-9e26-458d-adf5-7534b0175503') .query(true) - .reply(200, {"jobId":"737bb0cf-b8d8-405d-b1b0-86b5110e4cd4","lastUpdateDateTime":"2021-05-12T19:11:20Z","createdDateTime":"2021-05-12T19:11:07Z","expirationDateTime":"2021-05-13T19:11:07Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:20Z"},"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:20.0636142Z","name":"NA","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:15.0695624Z","name":"NA","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:13.4682658Z","name":"NA","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"9c4886cb-9e26-458d-adf5-7534b0175503","lastUpdateDateTime":"2021-06-25T19:39:32Z","createdDateTime":"2021-06-25T19:39:05Z","expirationDateTime":"2021-06-26T19:39:05Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:32.4798818Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:19.298235Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:25.1537991Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '144', + '182', 'apim-request-id', - 'f922f6c5-df8f-472a-87a5-53907ad8d764', + 'fb67730c-983c-410f-a0f3-bebb48eca23b', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:11:20 GMT' + 'Fri, 25 Jun 2021 19:39:33 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/737bb0cf-b8d8-405d-b1b0-86b5110e4cd4') + .get('//text/analytics/v3.1/analyze/jobs/9c4886cb-9e26-458d-adf5-7534b0175503') .query(true) - .reply(200, {"jobId":"737bb0cf-b8d8-405d-b1b0-86b5110e4cd4","lastUpdateDateTime":"2021-05-12T19:11:20Z","createdDateTime":"2021-05-12T19:11:07Z","expirationDateTime":"2021-05-13T19:11:07Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:20Z"},"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:20.0636142Z","name":"NA","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:15.0695624Z","name":"NA","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:13.4682658Z","name":"NA","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"9c4886cb-9e26-458d-adf5-7534b0175503","lastUpdateDateTime":"2021-06-25T19:39:32Z","createdDateTime":"2021-06-25T19:39:05Z","expirationDateTime":"2021-06-26T19:39:05Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:32.4798818Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:19.298235Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:25.1537991Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '137', + '191', 'apim-request-id', - '89a81abc-3022-45ec-a11f-eaa7dc3662be', + '7bec1942-de68-4ad1-9276-2c3525eacc1b', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:11:20 GMT' + 'Fri, 25 Jun 2021 19:39:34 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_bad_model.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_bad_model.js deleted file mode 100644 index b2f021c5082a..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_bad_model.js +++ /dev/null @@ -1,133 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "f7c2a025f3252fd55de7e0be937d33f1"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Length', - '980', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '4bfcb63f-0e17-45be-83b6-88fa6ffa3301', - 'x-ms-ests-server', - '2.1.11654.16 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AqwSL5iwq3FMvRRYf4lJ8n4; expires=Thu, 03-Jun-2021 21:48:05 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrMrBqcqZdY3ZTAfy77dVeu70oRinbdmgyOu47N3cKEkHlV7WqtxaxnnISEKBVYRHKqTJJUCL1vnq8QFhfx4wN4dV2Fkxqe67LpaCOCz8_psZD0g3hgz3FSrYCn8EBLnHzXui5M4sKJp9YiD8DuxfVikRVhGD8lZ956AUEx-NbvWggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Tue, 04 May 2021 21:48:04 GMT' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Length', - '1651', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '3e30f03d-dc63-424e-93aa-a385fc3e0b00', - 'x-ms-ests-server', - '2.1.11654.25 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=AqwSL5iwq3FMvRRYf4lJ8n4; expires=Thu, 03-Jun-2021 21:48:05 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrD3OumB9k2CeZeJmQdhtM3lA7Dc5Q3hUuDQRQjW5y6SoLWDRJnj_xsIgTI23sjEMMwibuzGTJ1lKaTczEH6_YWBAHh9ywipMiVxFtj7t7mtFYv4LtSE5nhCUagpqCHTKOYVkKevOXraN5kICD9kV2t5jlgy_NwSCOEc1awkX46a8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Tue, 04 May 2021 21:48:05 GMT' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"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', - '52b4d36a-9351-4877-abc7-a6b1aeee0c00', - 'x-ms-ests-server', - '2.1.11654.25 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AqwSL5iwq3FMvRRYf4lJ8n5z_bg1AQAAABS4I9gOAAAA; expires=Thu, 03-Jun-2021 21:48:05 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Tue, 04 May 2021 21:48:05 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/analyze', {"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"bad","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"bad","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"bad"}}]},"analysisInput":{"documents":[{"id":"1","text":"This should fail because we're passing in an invalid language hint","language":"en"}]}}) - .reply(400, {"error":{"code":"InvalidRequest","message":"Job task parameter value bad is not supported for model-version parameter for job task type KeyPhraseExtraction. Supported values latest,2019-10-01,2020-07-01."}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '065808ff-4d07-45ca-a04d-5e0c9ffcf8c7', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Tue, 04 May 2021 21:48:05 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.js index 50c5de8e5ceb..3df65755ed0d 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "7afb4f2d7eb782f85d1b0f338f00606a"; +module.exports.hash = "28b46fe46c0398ac35b3cb4483489f27"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,6 +10,8 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', + 'Content-Length', + '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -23,26 +25,24 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'eba489bd-b104-4177-851b-35471cf67d00', + 'de70a577-c290-4369-8503-4d71ce116301', 'x-ms-ests-server', - '2.1.11654.25 - EUS ProdSlices', + '2.1.11829.4 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:10:29 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:38:26 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrLHWtX7wXL6NFeUX2bjf0T8TSSzt5xyGXUFylfz0CSN7zWyd8CjoEpqYV6Sv19ucR8Ks4Yd_zkFzomfGkkvrVCBLp1kr8dP7p7MfAXIoQBWcFjAFtwmpJ5bX0VJjwv5-6N0Yt9-Toxs_G0S9YHQJ6xW5vHFvmRGLtVbaKSYh5EtwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrpJ5s7s78IDcL_3tK78PpmfxiTVtwKtFVDWKS_3PmTCq23UGiSxcrRs7Ew-PJftlQ84QJpLtJU10S40G2HG-EH0dNiR_e3tAA1vQRbcJFWaIljLwoH9WWM3UN2-VYmjAYOht42nrqXkaRbG1V4ZkrW-S9hOzSxPwKUFMUcyC_UJEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:10:29 GMT', - 'Content-Length', - '980' + 'Fri, 25 Jun 2021 19:38:25 GMT' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,35 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '36779b91-cc05-4719-a9c1-efc94ac55a00', + 'f75e896d-b4c4-4e8a-8d17-6ea694ab5900', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:10:29 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:38:26 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr1Ni2jmsWAL_kvCBA6Od6KAWaUyPhPNajRV3iH6d_Ps-yMs_WELXFA9WuqQMSTaqRBYDvTosVyvgB63ZfUxD-EslUbEwYeLhw7UonMP63rzOoYnf8686b9lF5YglP4sVTwQzGkhB7iEq4PHwPmvSGC7W1RaJgtiau3I_fi1SRYw8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrvFUUJP4PKsZYNascgF0fOjKJDW9dVqEXn1ejlAIRV-S6DBfe_mFHPPZ8CGh3BSGsiyHkbJ73OkQWa7646cVwlUW6hYRjr3eB4Z0MCs5C4mG-eZZljAwrdyEZKB0oNuRxc4vPufxHExb6sEArXZhFpejsQyZ08EuAy2QaBhQV-mkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:10:29 GMT', + 'Fri, 25 Jun 2021 19:38:25 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=0070354f-b2cd-421b-88ea-ee6266cb0610&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,36 +93,38 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'd8df8829-77a8-46cc-a784-90aba5f1c800', + '46746596-f429-4925-82fd-aa79b7177100', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:10:29 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:38:26 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:10:29 GMT' + 'Fri, 25 Jun 2021 19:38:25 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/analyze', {"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]},"analysisInput":{"documents":[{"id":"0","text":"","language":"en"}]}}) - .reply(400, {"error":{"code":"InvalidRequest","message":"Invalid document in request.","innererror":{"code":"InvalidDocumentBatch","message":"Missing input documents."}}}, [ + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"0","text":"","language":"en"}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]}}) + .reply(400, {"error":{"code":"InvalidRequest","message":"Invalid document in request.","innererror":{"code":"InvalidDocumentBatch","message":"Document text is empty."}}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '33', + '5', 'apim-request-id', - '09df9fe0-1bc9-4e80-83e4-8f494e45c6aa', + '01c106b5-990a-432c-b7ce-afa7438cb21d', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:30 GMT' + 'Fri, 25 Jun 2021 19:38:25 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.js index 44bac92dab4c..e6ef1f88784d 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "ccddc3208686f2cb4637a8eea81e70fb"; +module.exports.hash = "555792f3517ec51d7745afe8b6b42f91"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,28 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '0b027b67-8a4f-4022-91b9-9651ab486b00', + '8fbf650b-4fb0-44ce-b647-c6462cd00500', 'x-ms-ests-server', - '2.1.11654.25 - NCUS ProdSlices', + '2.1.11829.8 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:13:26 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:41:09 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrIfTVmbiYqCMKXCCCBT93IDSKRQ_HFTintl2beAp2bg4VSPvno08wFcJvHKsDU5AJ-GLB0tP_zDFSRt7cosF1NVM1yLJf3wOLd86lfoESPK4eZL9eZVBHLCfRfkiM5qBVb6tpmnEvMGbZdYRhyH9FUOAmthkkK-eteAmReRYkXzIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrxQHchUAZc1BqyXemGUksIZR0W1w2gK5DtgkxWbtkBHaW88_LvEEp-gIiGTXeqEub8_NKGE6W1LpZo9Kq_hpJ9AC3yoY9BiwA0WNsO7nzUHS93prA538HZiutA_VarCQ4Q4UKWwOa7I4W7mIlj7dpIq8V6b9WzDtxvPaKi5a-x8UgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:13:26 GMT' + 'Fri, 25 Jun 2021 19:41:09 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,33 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '74c31071-9533-4e7e-92e2-c81ae53c5400', + '493aab2b-fb42-40cd-a2d0-93f5fba95a00', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:13:26 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:41:09 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevraGkeHAUVml3eYYzzO9HFiVqbir6CWZ5Lz8YwesIWbERdh11GYtoBiJ89L-xf0WQ8X_x3EywghStSoEV0jM4kMTZyX58Cgl-te7nXlBN7l5c9tWKZsDVgJriXwnuZ6LerErq99liKiq6cXwuV3-zVGj6o_l6xwVBsy237cNE0anMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr6EOxGimCwfh1jp-8Pbja-tXR8puoUMKPxka_-j5vTPZmRzPhjN6Bgou00UjFYQG6tK0RyYqObU5hHL1P-x1IOxrCdsHyAV4OVoeIv7tLrQ2ePPfwilcvw0fiCNnVKMOYCp3MNjan-taK-R4VrGTw7QiD6caOL-Os8VfLLA9aFCsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:13:26 GMT' + 'Fri, 25 Jun 2021 19:41:09 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=73e26acc-5d26-4cbd-9fa7-47307009b702&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,44 +93,46 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6e319f75-8e43-4e3e-8461-03ebed31cd00', + 'b7dd8c02-11f5-499e-bdfc-a9fd12217500', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:13:26 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:41:09 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:13:26 GMT' + 'Fri, 25 Jun 2021 19:41:09 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/analyze', {"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]},"analysisInput":{"documents":[{"id":"1","text":"I will go to the park.","language":""},{"id":"2","text":"I did not like the hotel we stayed at.","language":""},{"id":"3","text":"The restaurant had really good food."}]}}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"1","text":"I will go to the park.","language":""},{"id":"2","text":"I did not like the hotel we stayed at.","language":""},{"id":"3","text":"The restaurant had really good food."}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) .reply(202, "", [ 'Transfer-Encoding', 'chunked', 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/483756ec-6e7a-4ba5-a9c6-e9a719c79792', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/fd720dc5-72b2-484e-b3fb-bc8b7d423b3c', 'x-envoy-upstream-service-time', - '126', + '334', 'apim-request-id', - '05751922-aadb-4dcf-b426-76c43079bcda', + 'a294cf86-21b0-49ff-8d70-9f86d4999e69', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:25 GMT' + 'Fri, 25 Jun 2021 19:41:08 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/483756ec-6e7a-4ba5-a9c6-e9a719c79792') + .get('//text/analytics/v3.1/analyze/jobs/fd720dc5-72b2-484e-b3fb-bc8b7d423b3c') .query(true) - .reply(200, {"jobId":"483756ec-6e7a-4ba5-a9c6-e9a719c79792","lastUpdateDateTime":"2021-05-12T19:13:26Z","createdDateTime":"2021-05-12T19:13:26Z","expirationDateTime":"2021-05-13T19:13:26Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:26Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"fd720dc5-72b2-484e-b3fb-bc8b7d423b3c","lastUpdateDateTime":"2021-06-25T19:41:09Z","createdDateTime":"2021-06-25T19:41:09Z","expirationDateTime":"2021-06-26T19:41:09Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -143,39 +140,39 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '8', 'apim-request-id', - '6f4c1ce3-b738-4719-bf03-b596d3a7345a', + 'b49b751d-4d79-45e5-a6ff-4336796d62b0', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:25 GMT' + 'Fri, 25 Jun 2021 19:41:09 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/483756ec-6e7a-4ba5-a9c6-e9a719c79792') + .get('//text/analytics/v3.1/analyze/jobs/fd720dc5-72b2-484e-b3fb-bc8b7d423b3c') .query(true) - .reply(200, {"jobId":"483756ec-6e7a-4ba5-a9c6-e9a719c79792","lastUpdateDateTime":"2021-05-12T19:13:26Z","createdDateTime":"2021-05-12T19:13:26Z","expirationDateTime":"2021-05-13T19:13:26Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:26Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"fd720dc5-72b2-484e-b3fb-bc8b7d423b3c","lastUpdateDateTime":"2021-06-25T19:41:09Z","createdDateTime":"2021-06-25T19:41:09Z","expirationDateTime":"2021-06-26T19:41:09Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '7', + '6', 'apim-request-id', - '7df1ce63-18c9-4d79-8910-5b04f9b6707b', + '87138c8b-6a57-444a-9f84-13365236b1e4', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:25 GMT' + 'Fri, 25 Jun 2021 19:41:09 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/483756ec-6e7a-4ba5-a9c6-e9a719c79792') + .get('//text/analytics/v3.1/analyze/jobs/fd720dc5-72b2-484e-b3fb-bc8b7d423b3c') .query(true) - .reply(200, {"jobId":"483756ec-6e7a-4ba5-a9c6-e9a719c79792","lastUpdateDateTime":"2021-05-12T19:13:27Z","createdDateTime":"2021-05-12T19:13:26Z","expirationDateTime":"2021-05-13T19:13:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:27Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"fd720dc5-72b2-484e-b3fb-bc8b7d423b3c","lastUpdateDateTime":"2021-06-25T19:41:09Z","createdDateTime":"2021-06-25T19:41:09Z","expirationDateTime":"2021-06-26T19:41:09Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -183,39 +180,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - '52bd0100-141a-48dc-936d-5008da0eec82', + '13eb8e1f-2099-4984-80e0-3fb5ca3406d4', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:27 GMT' + 'Fri, 25 Jun 2021 19:41:11 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/483756ec-6e7a-4ba5-a9c6-e9a719c79792') + .get('//text/analytics/v3.1/analyze/jobs/fd720dc5-72b2-484e-b3fb-bc8b7d423b3c') .query(true) - .reply(200, {"jobId":"483756ec-6e7a-4ba5-a9c6-e9a719c79792","lastUpdateDateTime":"2021-05-12T19:13:27Z","createdDateTime":"2021-05-12T19:13:26Z","expirationDateTime":"2021-05-13T19:13:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:27Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '2175c2e7-38eb-4f4e-a31a-a9e6a23986da', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:13:29 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/483756ec-6e7a-4ba5-a9c6-e9a719c79792') - .query(true) - .reply(200, {"jobId":"483756ec-6e7a-4ba5-a9c6-e9a719c79792","lastUpdateDateTime":"2021-05-12T19:13:27Z","createdDateTime":"2021-05-12T19:13:26Z","expirationDateTime":"2021-05-13T19:13:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:27Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"fd720dc5-72b2-484e-b3fb-bc8b7d423b3c","lastUpdateDateTime":"2021-06-25T19:41:09Z","createdDateTime":"2021-06-25T19:41:09Z","expirationDateTime":"2021-06-26T19:41:09Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -223,191 +200,111 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - 'ee34ea12-3db2-45ab-a09d-98712b999ad8', + '3b9ba745-1c17-4c39-8a86-2c8edac8285a', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:31 GMT' + 'Fri, 25 Jun 2021 19:41:13 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/483756ec-6e7a-4ba5-a9c6-e9a719c79792') + .get('//text/analytics/v3.1/analyze/jobs/fd720dc5-72b2-484e-b3fb-bc8b7d423b3c') .query(true) - .reply(200, {"jobId":"483756ec-6e7a-4ba5-a9c6-e9a719c79792","lastUpdateDateTime":"2021-05-12T19:13:33Z","createdDateTime":"2021-05-12T19:13:26Z","expirationDateTime":"2021-05-13T19:13:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:33Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:33.0244297Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["hotel"],"warnings":[]},{"id":"3","keyPhrases":["restaurant","good food"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"fd720dc5-72b2-484e-b3fb-bc8b7d423b3c","lastUpdateDateTime":"2021-06-25T19:41:15Z","createdDateTime":"2021-06-25T19:41:09Z","expirationDateTime":"2021-06-26T19:41:09Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:15.6501009Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["hotel"],"warnings":[]},{"id":"3","keyPhrases":["good food","restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '46', + '2270', 'apim-request-id', - '72785725-3911-4c0a-8082-40ca902305cb', + '32078881-f8d3-405d-ba18-586e73ac5d66', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:34 GMT' + 'Fri, 25 Jun 2021 19:41:17 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/483756ec-6e7a-4ba5-a9c6-e9a719c79792') + .get('//text/analytics/v3.1/analyze/jobs/fd720dc5-72b2-484e-b3fb-bc8b7d423b3c') .query(true) - .reply(200, {"jobId":"483756ec-6e7a-4ba5-a9c6-e9a719c79792","lastUpdateDateTime":"2021-05-12T19:13:36Z","createdDateTime":"2021-05-12T19:13:26Z","expirationDateTime":"2021-05-13T19:13:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:36Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:33.0244297Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["hotel"],"warnings":[]},{"id":"3","keyPhrases":["restaurant","good food"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"fd720dc5-72b2-484e-b3fb-bc8b7d423b3c","lastUpdateDateTime":"2021-06-25T19:41:16Z","createdDateTime":"2021-06-25T19:41:09Z","expirationDateTime":"2021-06-26T19:41:09Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:16.0067327Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at.","id":"2","entities":[],"warnings":[]},{"redactedText":"The restaurant had really good food.","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:15.6501009Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["hotel"],"warnings":[]},{"id":"3","keyPhrases":["good food","restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '47', + '148', 'apim-request-id', - '22fe198e-2300-4d5d-a81b-b0a1d0e42075', + '8a0f6b33-927e-4d08-a750-31ebd2beeac7', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:36 GMT' + 'Fri, 25 Jun 2021 19:41:19 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/483756ec-6e7a-4ba5-a9c6-e9a719c79792') + .get('//text/analytics/v3.1/analyze/jobs/fd720dc5-72b2-484e-b3fb-bc8b7d423b3c') .query(true) - .reply(200, {"jobId":"483756ec-6e7a-4ba5-a9c6-e9a719c79792","lastUpdateDateTime":"2021-05-12T19:13:36Z","createdDateTime":"2021-05-12T19:13:26Z","expirationDateTime":"2021-05-13T19:13:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:36Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:33.0244297Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["hotel"],"warnings":[]},{"id":"3","keyPhrases":["restaurant","good food"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"fd720dc5-72b2-484e-b3fb-bc8b7d423b3c","lastUpdateDateTime":"2021-06-25T19:41:16Z","createdDateTime":"2021-06-25T19:41:09Z","expirationDateTime":"2021-06-26T19:41:09Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:16.0067327Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at.","id":"2","entities":[],"warnings":[]},{"redactedText":"The restaurant had really good food.","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:15.6501009Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["hotel"],"warnings":[]},{"id":"3","keyPhrases":["good food","restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '49', - 'apim-request-id', - '2cc98c32-bb59-421c-b4a1-502b5246a5a8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:13:38 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/483756ec-6e7a-4ba5-a9c6-e9a719c79792') - .query(true) - .reply(200, {"jobId":"483756ec-6e7a-4ba5-a9c6-e9a719c79792","lastUpdateDateTime":"2021-05-12T19:13:39Z","createdDateTime":"2021-05-12T19:13:26Z","expirationDateTime":"2021-05-13T19:13:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:39Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:39.4762174Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at.","id":"2","entities":[],"warnings":[]},{"redactedText":"The restaurant had really good food.","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:33.0244297Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["hotel"],"warnings":[]},{"id":"3","keyPhrases":["restaurant","good food"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '91', - 'apim-request-id', - '7d1a9a32-522b-4667-9f59-52363f4be623', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:13:41 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/483756ec-6e7a-4ba5-a9c6-e9a719c79792') - .query(true) - .reply(200, {"jobId":"483756ec-6e7a-4ba5-a9c6-e9a719c79792","lastUpdateDateTime":"2021-05-12T19:13:39Z","createdDateTime":"2021-05-12T19:13:26Z","expirationDateTime":"2021-05-13T19:13:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:39Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:39.4762174Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at.","id":"2","entities":[],"warnings":[]},{"redactedText":"The restaurant had really good food.","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:33.0244297Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["hotel"],"warnings":[]},{"id":"3","keyPhrases":["restaurant","good food"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '85', - 'apim-request-id', - 'a10b96b7-6c92-4894-9d58-55afb47aaa0c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:13:43 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/483756ec-6e7a-4ba5-a9c6-e9a719c79792') - .query(true) - .reply(200, {"jobId":"483756ec-6e7a-4ba5-a9c6-e9a719c79792","lastUpdateDateTime":"2021-05-12T19:13:39Z","createdDateTime":"2021-05-12T19:13:26Z","expirationDateTime":"2021-05-13T19:13:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:39Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:39.4762174Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at.","id":"2","entities":[],"warnings":[]},{"redactedText":"The restaurant had really good food.","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:33.0244297Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["hotel"],"warnings":[]},{"id":"3","keyPhrases":["restaurant","good food"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '92', - 'apim-request-id', - 'a49c30c5-78d4-479a-a8d4-c72475ffd95a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:13:45 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/483756ec-6e7a-4ba5-a9c6-e9a719c79792') - .query(true) - .reply(200, {"jobId":"483756ec-6e7a-4ba5-a9c6-e9a719c79792","lastUpdateDateTime":"2021-05-12T19:13:39Z","createdDateTime":"2021-05-12T19:13:26Z","expirationDateTime":"2021-05-13T19:13:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:39Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:39.4762174Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at.","id":"2","entities":[],"warnings":[]},{"redactedText":"The restaurant had really good food.","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:33.0244297Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["hotel"],"warnings":[]},{"id":"3","keyPhrases":["restaurant","good food"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '79', + '125', 'apim-request-id', - 'abf15b25-aa58-458d-8328-dfb79db0531e', + '13f89cbd-4bc7-4dad-9418-ccfd05e96b70', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:47 GMT' + 'Fri, 25 Jun 2021 19:41:22 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/483756ec-6e7a-4ba5-a9c6-e9a719c79792') + .get('//text/analytics/v3.1/analyze/jobs/fd720dc5-72b2-484e-b3fb-bc8b7d423b3c') .query(true) - .reply(200, {"jobId":"483756ec-6e7a-4ba5-a9c6-e9a719c79792","lastUpdateDateTime":"2021-05-12T19:13:49Z","createdDateTime":"2021-05-12T19:13:26Z","expirationDateTime":"2021-05-13T19:13:26Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:49Z"},"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:49.4685461Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.95}],"warnings":[]},{"id":"2","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.89}],"warnings":[]},{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.87}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:39.4762174Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at.","id":"2","entities":[],"warnings":[]},{"redactedText":"The restaurant had really good food.","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:33.0244297Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["hotel"],"warnings":[]},{"id":"3","keyPhrases":["restaurant","good food"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"fd720dc5-72b2-484e-b3fb-bc8b7d423b3c","lastUpdateDateTime":"2021-06-25T19:41:23Z","createdDateTime":"2021-06-25T19:41:09Z","expirationDateTime":"2021-06-26T19:41:09Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:23.5625848Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:16.0067327Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at.","id":"2","entities":[],"warnings":[]},{"redactedText":"The restaurant had really good food.","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:15.6501009Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["hotel"],"warnings":[]},{"id":"3","keyPhrases":["good food","restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '126', + '166', 'apim-request-id', - '0541d69d-7b91-48c3-b6f0-89d40cd2fc20', + 'e4bf3eaf-ce7c-41e1-9966-2aec7cca8f38', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:49 GMT' + 'Fri, 25 Jun 2021 19:41:24 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/483756ec-6e7a-4ba5-a9c6-e9a719c79792') + .get('//text/analytics/v3.1/analyze/jobs/fd720dc5-72b2-484e-b3fb-bc8b7d423b3c') .query(true) - .reply(200, {"jobId":"483756ec-6e7a-4ba5-a9c6-e9a719c79792","lastUpdateDateTime":"2021-05-12T19:13:49Z","createdDateTime":"2021-05-12T19:13:26Z","expirationDateTime":"2021-05-13T19:13:26Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:49Z"},"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:49.4685461Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.95}],"warnings":[]},{"id":"2","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.89}],"warnings":[]},{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.87}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:39.4762174Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at.","id":"2","entities":[],"warnings":[]},{"redactedText":"The restaurant had really good food.","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:33.0244297Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["hotel"],"warnings":[]},{"id":"3","keyPhrases":["restaurant","good food"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"fd720dc5-72b2-484e-b3fb-bc8b7d423b3c","lastUpdateDateTime":"2021-06-25T19:41:23Z","createdDateTime":"2021-06-25T19:41:09Z","expirationDateTime":"2021-06-26T19:41:09Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:23.5625848Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:16.0067327Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at.","id":"2","entities":[],"warnings":[]},{"redactedText":"The restaurant had really good food.","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:15.6501009Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["hotel"],"warnings":[]},{"id":"3","keyPhrases":["good food","restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '125', + '199', 'apim-request-id', - '6f40d074-0879-491e-ac16-2b25de246010', + '450504af-4028-4220-8806-c2052add5e35', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:49 GMT' + 'Fri, 25 Jun 2021 19:41:25 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.js index a9355a1dddd4..85805f6860dd 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "6a6ffdd590ec6be51385f0dc5e70165b"; +module.exports.hash = "586a571f3405fc4a91192c8057f26eba"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,28 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'cbcc7ae5-7fa5-4ef0-a6b5-677da6009b00', + '781d4e73-b203-4e1e-9e95-166904772c00', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.8 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:15:06 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:42:58 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrLSFoicP79qdF7eB0ciuEOqc2ZyjEgbav71C_BIP04h1NBaN_Q0rN1lr4Et-ref8ESd6131nUWdnZCagtGmlp725-69u1LxMmPcuvmOUOwrgNOK1IkUNqwQN_XZ-Aa2UJ4a3UkwglLYmSPLCK82A-uTq9kseyv3VZqSKdNibRHt4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrIkR-xtnWZ6EGesL6vnADjeS-BIuvQoSdWhTcUwKoDayz7IQPhw-jtcN5T8gCu_tVEs-ZcPH4Kd7YusqnqHdX0MglC8jt8um3I93DHfghHsVDvpVUZQ6OPki9J1tON65j8w1E0pvnYHWOD1neIOxp5VRuu-xIWnOoeTk_u1NPByEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:15:06 GMT' + 'Fri, 25 Jun 2021 19:42:58 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,33 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'effc2a94-f558-4e23-9dd5-8d2bb74a6100', + 'c2c46a2d-caf1-495a-b60f-6d2023d47100', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:15:06 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:42:58 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrlIpK-A5ZMb8nW1UVJtKeYvKhuCADfxpO6QZ4PlmX7nFR8LqMRj4SNoVfWobOd-zLsESgZ8q4lKP3xyC_VoST4eDgMs7rNs5BIi-KRc6DIfEhknzjozrBDsQfVyJQlSUJWn8ESGzcWepqQiHhn1zkhTQtWxZDagG6_9EfbP7MzFMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrr8zxi7a0GyfinToD0QH6BYVCaiXodVctuIs9CWyroMjdFz0TiFyiN6oRWrOWvzoAcjnkfe5eMtvvhrMJ8FMot1X9JOApJ_y-w7CFNQ6Cp6iefDHwSBRmCpoIMh5p06mPwoBms_jMrgGbkmlm6wMQD54je2pQ16HEi4_ammSWxlIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:15:06 GMT' + 'Fri, 25 Jun 2021 19:42:58 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=e08fc41e-40a7-450f-943c-0b778051b4f4&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,64 +93,46 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'a94baaa3-2e20-4683-8e1e-ea7a9d94c500', + '60255122-4f99-4912-bd79-4b9124c06000', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:15:06 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:42:58 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:15:06 GMT' + 'Fri, 25 Jun 2021 19:42:58 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/analyze', {"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"UnicodeCodePoint"}}]},"analysisInput":{"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987","language":"en"}]}}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987","language":"en"}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"UnicodeCodePoint"}}]}}) .reply(202, "", [ 'Transfer-Encoding', 'chunked', 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/d718b6a6-402f-4fdd-bba4-67b9c2cbdaec', - 'x-envoy-upstream-service-time', - '74', - 'apim-request-id', - '90858333-688c-4395-8e9e-b4339346f2ca', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:15:06 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d718b6a6-402f-4fdd-bba4-67b9c2cbdaec') - .query(true) - .reply(200, {"jobId":"d718b6a6-402f-4fdd-bba4-67b9c2cbdaec","lastUpdateDateTime":"2021-05-12T19:15:06Z","createdDateTime":"2021-05-12T19:15:06Z","expirationDateTime":"2021-05-13T19:15:06Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:15:06Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/67a97613-3afe-4025-ae71-1700c2cd74ce', 'x-envoy-upstream-service-time', - '6', + '138', 'apim-request-id', - 'efd0f4d0-4c98-4c83-9a87-59c320d928ba', + '4e5baa61-68d9-49e9-84c2-72920593b375', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:15:06 GMT' + 'Fri, 25 Jun 2021 19:42:58 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d718b6a6-402f-4fdd-bba4-67b9c2cbdaec') + .get('//text/analytics/v3.1/analyze/jobs/67a97613-3afe-4025-ae71-1700c2cd74ce') .query(true) - .reply(200, {"jobId":"d718b6a6-402f-4fdd-bba4-67b9c2cbdaec","lastUpdateDateTime":"2021-05-12T19:15:06Z","createdDateTime":"2021-05-12T19:15:06Z","expirationDateTime":"2021-05-13T19:15:06Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:15:06Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"67a97613-3afe-4025-ae71-1700c2cd74ce","lastUpdateDateTime":"2021-06-25T19:42:58Z","createdDateTime":"2021-06-25T19:42:58Z","expirationDateTime":"2021-06-26T19:42:58Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -163,19 +140,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '6', 'apim-request-id', - 'e9fdcf4a-37b9-42b7-a866-9b4c6d7c1224', + '5ebc0c48-d340-4ab3-b9d2-b44f429d0dc4', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:15:06 GMT' + 'Fri, 25 Jun 2021 19:42:58 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d718b6a6-402f-4fdd-bba4-67b9c2cbdaec') + .get('//text/analytics/v3.1/analyze/jobs/67a97613-3afe-4025-ae71-1700c2cd74ce') .query(true) - .reply(200, {"jobId":"d718b6a6-402f-4fdd-bba4-67b9c2cbdaec","lastUpdateDateTime":"2021-05-12T19:15:07Z","createdDateTime":"2021-05-12T19:15:06Z","expirationDateTime":"2021-05-13T19:15:06Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:15:07Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"67a97613-3afe-4025-ae71-1700c2cd74ce","lastUpdateDateTime":"2021-06-25T19:42:58Z","createdDateTime":"2021-06-25T19:42:58Z","expirationDateTime":"2021-06-26T19:42:58Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -183,139 +160,59 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - '99008cc1-504d-497a-9033-2c6e9c4280de', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:15:08 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d718b6a6-402f-4fdd-bba4-67b9c2cbdaec') - .query(true) - .reply(200, {"jobId":"d718b6a6-402f-4fdd-bba4-67b9c2cbdaec","lastUpdateDateTime":"2021-05-12T19:15:07Z","createdDateTime":"2021-05-12T19:15:06Z","expirationDateTime":"2021-05-13T19:15:06Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:15:07Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '0e978ecb-337b-4448-9fb2-9a5291fd8c49', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:15:10 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d718b6a6-402f-4fdd-bba4-67b9c2cbdaec') - .query(true) - .reply(200, {"jobId":"d718b6a6-402f-4fdd-bba4-67b9c2cbdaec","lastUpdateDateTime":"2021-05-12T19:15:07Z","createdDateTime":"2021-05-12T19:15:06Z","expirationDateTime":"2021-05-13T19:15:06Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:15:07Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '10', - 'apim-request-id', - '85a4352b-fdb0-451d-aa28-aa1dbec0780b', + 'cc6431a7-6f15-413c-aa1e-8842a1b6fa06', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:15:12 GMT' + 'Fri, 25 Jun 2021 19:42:58 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d718b6a6-402f-4fdd-bba4-67b9c2cbdaec') + .get('//text/analytics/v3.1/analyze/jobs/67a97613-3afe-4025-ae71-1700c2cd74ce') .query(true) - .reply(200, {"jobId":"d718b6a6-402f-4fdd-bba4-67b9c2cbdaec","lastUpdateDateTime":"2021-05-12T19:15:07Z","createdDateTime":"2021-05-12T19:15:06Z","expirationDateTime":"2021-05-13T19:15:06Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:15:07Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"67a97613-3afe-4025-ae71-1700c2cd74ce","lastUpdateDateTime":"2021-06-25T19:43:00Z","createdDateTime":"2021-06-25T19:42:58Z","expirationDateTime":"2021-06-26T19:42:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '4125e0d0-f8b1-486c-b243-e35891396819', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:15:15 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d718b6a6-402f-4fdd-bba4-67b9c2cbdaec') - .query(true) - .reply(200, {"jobId":"d718b6a6-402f-4fdd-bba4-67b9c2cbdaec","lastUpdateDateTime":"2021-05-12T19:15:07Z","createdDateTime":"2021-05-12T19:15:06Z","expirationDateTime":"2021-05-13T19:15:06Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:15:07Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '1ba4fd4f-d97a-4bf6-bfaa-6f2f2bc44897', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:15:17 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d718b6a6-402f-4fdd-bba4-67b9c2cbdaec') - .query(true) - .reply(200, {"jobId":"d718b6a6-402f-4fdd-bba4-67b9c2cbdaec","lastUpdateDateTime":"2021-05-12T19:15:07Z","createdDateTime":"2021-05-12T19:15:06Z","expirationDateTime":"2021-05-13T19:15:06Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:15:07Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', + '6', 'apim-request-id', - '9e215739-7e2e-48a3-92c9-8aac9839ddb8', + '95aa10ef-a52a-41eb-ba51-7b7a2827df44', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:15:19 GMT' + 'Fri, 25 Jun 2021 19:43:00 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d718b6a6-402f-4fdd-bba4-67b9c2cbdaec') + .get('//text/analytics/v3.1/analyze/jobs/67a97613-3afe-4025-ae71-1700c2cd74ce') .query(true) - .reply(200, {"jobId":"d718b6a6-402f-4fdd-bba4-67b9c2cbdaec","lastUpdateDateTime":"2021-05-12T19:15:07Z","createdDateTime":"2021-05-12T19:15:06Z","expirationDateTime":"2021-05-13T19:15:06Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:15:07Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"67a97613-3afe-4025-ae71-1700c2cd74ce","lastUpdateDateTime":"2021-06-25T19:43:00Z","createdDateTime":"2021-06-25T19:42:58Z","expirationDateTime":"2021-06-26T19:42:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '7', + '6', 'apim-request-id', - 'b0b0fe18-aa59-4da7-a396-376f621350db', + '60d8e043-6712-48ca-83e6-23df1a3b859d', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:15:21 GMT' + 'Fri, 25 Jun 2021 19:43:02 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d718b6a6-402f-4fdd-bba4-67b9c2cbdaec') + .get('//text/analytics/v3.1/analyze/jobs/67a97613-3afe-4025-ae71-1700c2cd74ce') .query(true) - .reply(200, {"jobId":"d718b6a6-402f-4fdd-bba4-67b9c2cbdaec","lastUpdateDateTime":"2021-05-12T19:15:07Z","createdDateTime":"2021-05-12T19:15:06Z","expirationDateTime":"2021-05-13T19:15:06Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:15:07Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"67a97613-3afe-4025-ae71-1700c2cd74ce","lastUpdateDateTime":"2021-06-25T19:43:00Z","createdDateTime":"2021-06-25T19:42:58Z","expirationDateTime":"2021-06-26T19:42:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -323,51 +220,51 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - 'c6a3cecf-5003-47ef-ada5-de2fce4e0f34', + '44efb6f5-da8d-425b-9264-e037583421eb', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:15:23 GMT' + 'Fri, 25 Jun 2021 19:43:04 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d718b6a6-402f-4fdd-bba4-67b9c2cbdaec') + .get('//text/analytics/v3.1/analyze/jobs/67a97613-3afe-4025-ae71-1700c2cd74ce') .query(true) - .reply(200, {"jobId":"d718b6a6-402f-4fdd-bba4-67b9c2cbdaec","lastUpdateDateTime":"2021-05-12T19:15:25Z","createdDateTime":"2021-05-12T19:15:06Z","expirationDateTime":"2021-05-13T19:15:06Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:15:25Z"},"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:15:25.3175488Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":17,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + .reply(200, {"jobId":"67a97613-3afe-4025-ae71-1700c2cd74ce","lastUpdateDateTime":"2021-06-25T19:43:05Z","createdDateTime":"2021-06-25T19:42:58Z","expirationDateTime":"2021-06-26T19:42:58Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:43:05.9737779Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":17,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '48', + '58', 'apim-request-id', - 'b4c6d68d-b2d9-4a4c-b35b-0a04d6d9cf39', + '31ee1830-0ebb-42a9-b283-8ca1d36b176f', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:15:25 GMT' + 'Fri, 25 Jun 2021 19:43:06 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d718b6a6-402f-4fdd-bba4-67b9c2cbdaec') + .get('//text/analytics/v3.1/analyze/jobs/67a97613-3afe-4025-ae71-1700c2cd74ce') .query(true) - .reply(200, {"jobId":"d718b6a6-402f-4fdd-bba4-67b9c2cbdaec","lastUpdateDateTime":"2021-05-12T19:15:25Z","createdDateTime":"2021-05-12T19:15:06Z","expirationDateTime":"2021-05-13T19:15:06Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:15:25Z"},"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:15:25.3175488Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":17,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + .reply(200, {"jobId":"67a97613-3afe-4025-ae71-1700c2cd74ce","lastUpdateDateTime":"2021-06-25T19:43:05Z","createdDateTime":"2021-06-25T19:42:58Z","expirationDateTime":"2021-06-26T19:42:58Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:43:05.9737779Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":17,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '34', + '52', 'apim-request-id', - 'd7e1463a-9d06-43c2-9b83-b374690bcd82', + '2c546823-3cde-487d-89b7-dc06912b48e4', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:15:25 GMT' + 'Fri, 25 Jun 2021 19:43:06 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_invalid_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_invalid_language_hint.js index 5b0c96b1ea09..1d9e3b22c45a 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_invalid_language_hint.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_invalid_language_hint.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "1653fe39341db24617e63d9a9a0579d4"; +module.exports.hash = "cd38c4c6eb5d8af4f0f3e496da5ffdf1"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,30 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '37fbd280-e28a-4715-bbf9-13af25221401', + '67898797-6a37-48c7-ae6e-79fc62eb0100', 'x-ms-ests-server', - '2.1.11654.25 - WUS2 ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:14:10 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:42:05 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrvQ9Oaa7y3-vVVn4d2CXSj4LwhV5UHTQyu9OsbTkSLhbRFLWFio9LJQPcIXmgLd9swDuXIAUsBxXMxUviSW7vRwKx5EF7Lg7_BrHM356Hnj67eJPzQutmUcGHYS5dtU7QV4j8kwz4sgb-jB5ij5U70Mn1hXFOhAopt5f4OXAgDgYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrK58olky3C99kx8e8WmO7eBbOaWPwrzW7h7qOBi12FAnfyD59FXegRnNzreGMZaHT7Y1inP0rWx2OTwz5Y8HxBQt7ZX7ykedO2AT7qKwNKwshxSpmpnbsPdudQJETrx2EpbKcDJ9fR5k6MREzw3MrIDaGUoLwj4Q6YwBeFaJjxewgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:14:09 GMT', + 'Fri, 25 Jun 2021 19:42:05 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,33 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '36779b91-cc05-4719-a9c1-efc95bea5a00', + '46746596-f429-4925-82fd-aa79fd3f7100', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:14:10 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:42:05 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrxefNPtmlIRRMHSoajJgkvC4G0Mvrw4N5of_lQMLy92rTIXm6fQ1625y6_POIlGcv1tsyvXip4Bjbnm5iVCgm6WJKQ8xW3UTV7obVHQxFCEsx91Hj9B8n-G5ESHtMxp5PnfjeTEQvDsvI14XqWhTPpb_Q2rmx7ERoy_FG-WF3nSMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrHkWujME5rHvGb3s8e19rKdMQB4pKyZYOcEdvugM7FsGinAtbodRhMFgSXgWKv3l8Mg-UksCV_HzeRKGnrYDvSgeY-kGsFL0MnWn1R7azmzsP_-FkF9O2bgqypOz6F-oHjo58DZkxTWo-YmrYvBcleVeyhAg8jkVlyk9T1B56RTMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:14:10 GMT' + 'Fri, 25 Jun 2021 19:42:05 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=02e17f98-d79a-4564-9f3f-f19cf95c8fb8&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,104 +93,86 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'b6a65474-742c-4d60-a8b1-d5d34be76000', + 'b7dd8c02-11f5-499e-bdfc-a9fdd92c7500', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:14:10 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:42:05 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:14:10 GMT' + 'Fri, 25 Jun 2021 19:42:05 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/analyze', {"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]},"analysisInput":{"documents":[{"id":"0","text":"This should fail because we're passing in an invalid language hint","language":"notalanguage"}]}}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"0","text":"This should fail because we're passing in an invalid language hint","language":"notalanguage"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) .reply(202, "", [ 'Transfer-Encoding', 'chunked', 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/e8a2e504-4e8f-4082-86f6-fcd6ea67dc9b', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/1b13262d-2ea9-4a5c-aa73-40a04452feb6', 'x-envoy-upstream-service-time', - '148', + '509', 'apim-request-id', - 'e820be5a-2ed2-4ea9-b0b0-b87ebc5de8d9', + '038de141-e8a4-4dd3-ade0-c3d0717a296a', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:10 GMT' + 'Fri, 25 Jun 2021 19:42:05 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/e8a2e504-4e8f-4082-86f6-fcd6ea67dc9b') + .get('//text/analytics/v3.1/analyze/jobs/1b13262d-2ea9-4a5c-aa73-40a04452feb6') .query(true) - .reply(200, {"jobId":"e8a2e504-4e8f-4082-86f6-fcd6ea67dc9b","lastUpdateDateTime":"2021-05-12T19:14:10Z","createdDateTime":"2021-05-12T19:14:10Z","expirationDateTime":"2021-05-13T19:14:10Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:10Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"1b13262d-2ea9-4a5c-aa73-40a04452feb6","lastUpdateDateTime":"2021-06-25T19:42:06Z","createdDateTime":"2021-06-25T19:42:05Z","expirationDateTime":"2021-06-26T19:42:05Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '7', + '16', 'apim-request-id', - '00f1a10c-2c7b-4a72-8f70-49dc8187f209', + 'd5d28d0a-4642-4dd8-913c-937b44c38051', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:10 GMT' + 'Fri, 25 Jun 2021 19:42:05 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/e8a2e504-4e8f-4082-86f6-fcd6ea67dc9b') + .get('//text/analytics/v3.1/analyze/jobs/1b13262d-2ea9-4a5c-aa73-40a04452feb6') .query(true) - .reply(200, {"jobId":"e8a2e504-4e8f-4082-86f6-fcd6ea67dc9b","lastUpdateDateTime":"2021-05-12T19:14:10Z","createdDateTime":"2021-05-12T19:14:10Z","expirationDateTime":"2021-05-13T19:14:10Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:10Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"1b13262d-2ea9-4a5c-aa73-40a04452feb6","lastUpdateDateTime":"2021-06-25T19:42:06Z","createdDateTime":"2021-06-25T19:42:05Z","expirationDateTime":"2021-06-26T19:42:05Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - 'fdbe37e2-47a7-4613-98da-0672344b8ad6', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:14:10 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/e8a2e504-4e8f-4082-86f6-fcd6ea67dc9b') - .query(true) - .reply(200, {"jobId":"e8a2e504-4e8f-4082-86f6-fcd6ea67dc9b","lastUpdateDateTime":"2021-05-12T19:14:12Z","createdDateTime":"2021-05-12T19:14:10Z","expirationDateTime":"2021-05-13T19:14:10Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:12Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', + '9', 'apim-request-id', - '0685ced2-0615-4451-835a-a64c0be4275d', + 'a2b914d8-a83b-4ab6-abf9-5652a0d7b55a', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:12 GMT' + 'Fri, 25 Jun 2021 19:42:05 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/e8a2e504-4e8f-4082-86f6-fcd6ea67dc9b') + .get('//text/analytics/v3.1/analyze/jobs/1b13262d-2ea9-4a5c-aa73-40a04452feb6') .query(true) - .reply(200, {"jobId":"e8a2e504-4e8f-4082-86f6-fcd6ea67dc9b","lastUpdateDateTime":"2021-05-12T19:14:12Z","createdDateTime":"2021-05-12T19:14:10Z","expirationDateTime":"2021-05-13T19:14:10Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:12Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"1b13262d-2ea9-4a5c-aa73-40a04452feb6","lastUpdateDateTime":"2021-06-25T19:42:07Z","createdDateTime":"2021-06-25T19:42:05Z","expirationDateTime":"2021-06-26T19:42:05Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -203,191 +180,111 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - '2574f0ed-6eba-4aee-81a2-32982a1d56fa', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:14:14 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/e8a2e504-4e8f-4082-86f6-fcd6ea67dc9b') - .query(true) - .reply(200, {"jobId":"e8a2e504-4e8f-4082-86f6-fcd6ea67dc9b","lastUpdateDateTime":"2021-05-12T19:14:15Z","createdDateTime":"2021-05-12T19:14:10Z","expirationDateTime":"2021-05-13T19:14:10Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:15Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - 'd8dda3b9-09c5-453a-93d9-cd83707aa229', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:14:16 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/e8a2e504-4e8f-4082-86f6-fcd6ea67dc9b') - .query(true) - .reply(200, {"jobId":"e8a2e504-4e8f-4082-86f6-fcd6ea67dc9b","lastUpdateDateTime":"2021-05-12T19:14:17Z","createdDateTime":"2021-05-12T19:14:10Z","expirationDateTime":"2021-05-13T19:14:10Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:17Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:14:17.9131413Z","name":"NA","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '30', - 'apim-request-id', - 'fcbbe0e8-8165-48ed-ade3-1f05cea1571e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:14:18 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/e8a2e504-4e8f-4082-86f6-fcd6ea67dc9b') - .query(true) - .reply(200, {"jobId":"e8a2e504-4e8f-4082-86f6-fcd6ea67dc9b","lastUpdateDateTime":"2021-05-12T19:14:17Z","createdDateTime":"2021-05-12T19:14:10Z","expirationDateTime":"2021-05-13T19:14:10Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:17Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:14:17.9131413Z","name":"NA","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '33', - 'apim-request-id', - '0a5b2d5a-d3e2-4d3d-aa75-7343924e62bc', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:14:20 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/e8a2e504-4e8f-4082-86f6-fcd6ea67dc9b') - .query(true) - .reply(200, {"jobId":"e8a2e504-4e8f-4082-86f6-fcd6ea67dc9b","lastUpdateDateTime":"2021-05-12T19:14:17Z","createdDateTime":"2021-05-12T19:14:10Z","expirationDateTime":"2021-05-13T19:14:10Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:17Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:14:17.9131413Z","name":"NA","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '36', - 'apim-request-id', - '6546c0ca-130e-4ad5-a459-63b84c7b0cb8', + 'e3e0cd1b-0d1b-48c1-8f13-da0a62f21e2f', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:22 GMT' + 'Fri, 25 Jun 2021 19:42:08 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/e8a2e504-4e8f-4082-86f6-fcd6ea67dc9b') + .get('//text/analytics/v3.1/analyze/jobs/1b13262d-2ea9-4a5c-aa73-40a04452feb6') .query(true) - .reply(200, {"jobId":"e8a2e504-4e8f-4082-86f6-fcd6ea67dc9b","lastUpdateDateTime":"2021-05-12T19:14:17Z","createdDateTime":"2021-05-12T19:14:10Z","expirationDateTime":"2021-05-13T19:14:10Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:17Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:14:17.9131413Z","name":"NA","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"1b13262d-2ea9-4a5c-aa73-40a04452feb6","lastUpdateDateTime":"2021-06-25T19:42:07Z","createdDateTime":"2021-06-25T19:42:05Z","expirationDateTime":"2021-06-26T19:42:05Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '31', + '50', 'apim-request-id', - '47ea94c2-bb2c-4574-98ee-4d2dae8d956b', + 'afb3a8b4-b276-4136-8f28-7b94c7296f41', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:24 GMT' + 'Fri, 25 Jun 2021 19:42:10 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/e8a2e504-4e8f-4082-86f6-fcd6ea67dc9b') + .get('//text/analytics/v3.1/analyze/jobs/1b13262d-2ea9-4a5c-aa73-40a04452feb6') .query(true) - .reply(200, {"jobId":"e8a2e504-4e8f-4082-86f6-fcd6ea67dc9b","lastUpdateDateTime":"2021-05-12T19:14:17Z","createdDateTime":"2021-05-12T19:14:10Z","expirationDateTime":"2021-05-13T19:14:10Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:17Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:14:17.9131413Z","name":"NA","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"1b13262d-2ea9-4a5c-aa73-40a04452feb6","lastUpdateDateTime":"2021-06-25T19:42:12Z","createdDateTime":"2021-06-25T19:42:05Z","expirationDateTime":"2021-06-26T19:42:05Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:42:12.1377485Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '32', + '49', 'apim-request-id', - 'ab7cad0d-20b1-41e3-9421-e5914d27f51b', + 'be8fe767-94a2-46de-b69f-61d62d00e241', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:26 GMT' + 'Fri, 25 Jun 2021 19:42:12 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/e8a2e504-4e8f-4082-86f6-fcd6ea67dc9b') + .get('//text/analytics/v3.1/analyze/jobs/1b13262d-2ea9-4a5c-aa73-40a04452feb6') .query(true) - .reply(200, {"jobId":"e8a2e504-4e8f-4082-86f6-fcd6ea67dc9b","lastUpdateDateTime":"2021-05-12T19:14:17Z","createdDateTime":"2021-05-12T19:14:10Z","expirationDateTime":"2021-05-13T19:14:10Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:17Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:14:17.9131413Z","name":"NA","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"1b13262d-2ea9-4a5c-aa73-40a04452feb6","lastUpdateDateTime":"2021-06-25T19:42:14Z","createdDateTime":"2021-06-25T19:42:05Z","expirationDateTime":"2021-06-26T19:42:05Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:42:12.1377485Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:42:14.2847544Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '31', + '76', 'apim-request-id', - '4d420db4-70cd-4574-9cb1-d89f85dcd794', + '4b5b2d72-d615-47cf-aee4-d9bc177ce028', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:28 GMT' + 'Fri, 25 Jun 2021 19:42:14 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/e8a2e504-4e8f-4082-86f6-fcd6ea67dc9b') + .get('//text/analytics/v3.1/analyze/jobs/1b13262d-2ea9-4a5c-aa73-40a04452feb6') .query(true) - .reply(200, {"jobId":"e8a2e504-4e8f-4082-86f6-fcd6ea67dc9b","lastUpdateDateTime":"2021-05-12T19:14:29Z","createdDateTime":"2021-05-12T19:14:10Z","expirationDateTime":"2021-05-13T19:14:10Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:29Z"},"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-12T19:14:29.5125226Z","name":"NA","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:14:29.5817366Z","name":"NA","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:14:17.9131413Z","name":"NA","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"1b13262d-2ea9-4a5c-aa73-40a04452feb6","lastUpdateDateTime":"2021-06-25T19:42:14Z","createdDateTime":"2021-06-25T19:42:05Z","expirationDateTime":"2021-06-26T19:42:05Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:42:12.1377485Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:42:14.7169405Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:42:14.2847544Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '77', + '136', 'apim-request-id', - '55a5b61f-621b-491f-a757-8c0e0e9f3d40', + 'a4ee706a-6745-477b-9f69-01621d21d13b', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:30 GMT' + 'Fri, 25 Jun 2021 19:42:16 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/e8a2e504-4e8f-4082-86f6-fcd6ea67dc9b') + .get('//text/analytics/v3.1/analyze/jobs/1b13262d-2ea9-4a5c-aa73-40a04452feb6') .query(true) - .reply(200, {"jobId":"e8a2e504-4e8f-4082-86f6-fcd6ea67dc9b","lastUpdateDateTime":"2021-05-12T19:14:29Z","createdDateTime":"2021-05-12T19:14:10Z","expirationDateTime":"2021-05-13T19:14:10Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:29Z"},"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-12T19:14:29.5125226Z","name":"NA","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:14:29.5817366Z","name":"NA","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:14:17.9131413Z","name":"NA","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"1b13262d-2ea9-4a5c-aa73-40a04452feb6","lastUpdateDateTime":"2021-06-25T19:42:14Z","createdDateTime":"2021-06-25T19:42:05Z","expirationDateTime":"2021-06-26T19:42:05Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:42:12.1377485Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:42:14.7169405Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:42:14.2847544Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '81', + '128', 'apim-request-id', - 'd20bdd40-99eb-4a07-ad0f-dfdcb765f34f', + '0a0f5723-c5b5-49b8-99dc-2708a596a7a2', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:31 GMT' + 'Fri, 25 Jun 2021 19:42:16 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_malformed_actions.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_malformed_actions.js index a374ea0169e9..9b06068c6503 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_malformed_actions.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_malformed_actions.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "fb9a741739e8b2ed1e073e86cdbc9127"; +module.exports.hash = "fdbacce056d3180da0a43c0748bb1396"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,28 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'eea3993b-15ef-4580-bd43-494991702c00', + '3ddadd18-722c-479e-97f7-144d572f8d01', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u9z_bg1BgAAAB0TNtgOAAAA; expires=Thu, 17-Jun-2021 19:57:34 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AuMMF6jcGdFJnJVgWcEL7Tk; expires=Fri, 30-Jul-2021 19:34:34 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrrzZtBnuGfkxrJgA2tyOwGFzSIcTq2Pb1zWmCUYSG2FYw5CSjePdkF_11szsd8OoR_6RQ-gG25-GzYjwU6mk2qkj0a7MhJgLAtY_8zuW3BG2pnuNAZYOlGHsxwV-iV3yz37ci2Oc-pwhpgSiiNclSgbmzQSc8VZc1LqUE0B1Rn38gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrMeifOugiF0UwsgXL4sRIRxNFA65nqZN-Y3VDem2Y4CPQgwnEMv_2oGgZN9z1OlCBISnFJG3mdtnajoBHCs9nQ6Zg_Nni98JuFY4PNzasf5CHFy9CqS_4af6fRhw6Odf_cMXPheCrwMJQpXUYPM4t7X4rGOu6YHPmt0riEu0MtrUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:34 GMT' + 'Wed, 30 Jun 2021 19:34:33 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,23 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '5068b5c4-fa7f-439a-bfa1-386bae331400', + '5bb8c626-a444-4156-8364-1ce73ba86301', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u9z_bg1BgAAAB0TNtgOAAAA; expires=Thu, 17-Jun-2021 19:57:34 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AuMMF6jcGdFJnJVgWcEL7Tk; expires=Fri, 30-Jul-2021 19:34:34 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrrcuKqVA_5OaFji7chJD4Khvhs38kYTE34x_ikAEQ_rVZk37tyaJKN88uR30y078ljkgsgGCPw5VDlu-bwgvQx3RQWUrZZKkDxZ8pOWjLgMBQkSBQjFBuBRhEOH3lbeqJ2SlZ1EogSdpfBq_HbiO22Sa9EEqrKFULjHkLOcW4KIkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr09K4lyq3rL1A2GrHHR8MySMcWIdplcWjXMI7_oqPelnxIOuhjjnE3dq3WcXMLWiPuLH4okXAeIT94iOG7jrHscYsJ-KsALTD4Q59hXXYIOgKvVxouLN54dPRoNYUkYf2N172ddzwmxyhak9bUS6VUrCd_aUVAaPaztxiXJyZpNogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:34 GMT' + 'Wed, 30 Jun 2021 19:34:33 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=5db3664b-05dc-4949-8463-ecaff5ce39d2&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=18200db6-2847-4d36-9543-2debb36e9e3e&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -93,38 +93,38 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '1599e2b7-8ceb-4ae3-83b9-3e220b150a00', + '5bb8c626-a444-4156-8364-1ce740a86301', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AozCHw2PCkpEmcGVqxl18u9z_bg1BgAAAB0TNtgOAAAA; expires=Thu, 17-Jun-2021 19:57:34 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AuMMF6jcGdFJnJVgWcEL7Tlz_bg1AQAAAEm-btgOAAAA; expires=Fri, 30-Jul-2021 19:34:34 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 18 May 2021 19:57:34 GMT', + 'Wed, 30 Jun 2021 19:34:34 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/analyze', {"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"bad","stringIndexType":"Utf16CodeUnit"}},{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}},{"parameters":{"model-version":"bad","stringIndexType":"TextElement_v8"}}]},"analysisInput":{"documents":[{"id":"1","text":"I will go to the park."}]}}) - .reply(400, {"error":{"code":"InvalidRequest","message":"Job task parameter value bad is not supported for model-version parameter for job task type PersonallyIdentifiableInformation. Supported values latest,2020-07-01,2021-01-15."}}, [ + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"1","text":"I will go to the park."}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"bad","stringIndexType":"TextElement_v8"}}]}}) + .reply(400, {"error":{"code":"InvalidRequest","message":"Invalid parameter in request","innererror":{"code":"InvalidParameterValue","message":"Job task parameter value bad is not supported for model-version parameter for job task type PersonallyIdentifiableInformation. Supported values latest,2020-07-01,2021-01-15."}}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '4', + '503', 'apim-request-id', - 'c1e303cd-4dc1-4251-9cb8-2b80b02bac5a', + 'ab2b132f-84dc-41f6-a2fb-3514c9217948', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Tue, 18 May 2021 19:57:34 GMT' + 'Wed, 30 Jun 2021 19:34:36 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_multiple_actions_per_type_are_disallowed.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_multiple_actions_per_type_are_disallowed.js new file mode 100644 index 000000000000..08c9c8b35f31 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_multiple_actions_per_type_are_disallowed.js @@ -0,0 +1,5 @@ +let nock = require('nock'); + +module.exports.hash = "d1c43b9d04e7f9e2d9e2bac6086a994c"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_operation_metadata.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_operation_metadata.js index 4fee4e2c425c..b28c8a11006c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_operation_metadata.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_operation_metadata.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "e02332145f6c6188b35b4758067b255f"; +module.exports.hash = "204756a0ef7bb31d61c833d32a9152fa"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,24 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'd535d18f-7aea-4f52-b8d4-96378f776000', + '58f6765b-386b-4101-b208-81cc8e420600', 'x-ms-ests-server', - '2.1.11654.25 - SCUS ProdSlices', + '2.1.11829.8 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:14:57 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:42:49 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr7bV89qRMMMxvoIaTo-Ug1QH1MekSsnB5uiwKctDQ5eICc5AwG9-N-mIOtyt3UBwUl20yejbSIXBYNL5MKmKJ4IMaKNhGsL2wGmviu3IU4mvkH7-8oWd80TmkfV1Hj0fGZzuGYaH2lst5j9T1S_l02u8D9UjR1mcpIpRHAXigRbMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr7hByEXTtvFUMZfzmJnVjePGVQnDNSMLjVoWSQIVlCcE-4LGKm4eujjlBkoFkfT4nbJkAOLnn3Rw5qE1tt5UKB6A8DuC_FoSOVRM1sf5P3ghq_6-7zNKU-lr4hS3fnTD0orMi-XBWGAocky42T8wwd7rXIhC4fkda6cScccSIRp4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:14:57 GMT' + 'Fri, 25 Jun 2021 19:42:48 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,35 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '36779b91-cc05-4719-a9c1-efc978f25a00', + '703b39c0-f313-4374-a6f6-9fd050495d00', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:14:57 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:42:49 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrb0IynuvWJH04cGXEyZhA4vHgfPyWoOcINX_ot_KBqdbaRjr4rtSCTOF4j-KZFUWtDZCmpRlRhsnFLCzkIbH2ZaIy2rBS32PFFWs9qB35a-feSTDMJGLTcGxa3pgQoA77GFUcvet8Lql6omX9h1LS3FLfqo8uGzPsdc28jo9LUd4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrLXI0XVxjp4EcIDpf0848xeZj4_IxvZiDHnwWudBwgGtRbflBi7vILIkuPENklLr4LO6wNvfg99maY7aVDpKdwXj1S3MmBb74g97EJ75IRI5IEHDQ32NYxlZn2v2LtE1tfQW_5IJaaOaQQSr3Ie0bTZB7P03fOLSQY9Qxa2HSciYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:14:57 GMT', + 'Fri, 25 Jun 2021 19:42:49 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=4185a731-b8ff-4584-8125-9687a40d8d9c&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,64 +93,66 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '29a193e4-4207-4b4e-982a-fd821dd35e00', + 'c2c46a2d-caf1-495a-b60f-6d2051d27100', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:14:57 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:42:49 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:14:57 GMT' + 'Fri, 25 Jun 2021 19:42:49 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/analyze', {"displayName":"testJob","tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]},"analysisInput":{"documents":[{"id":"1","text":"I will go to the park."},{"id":"2","text":"Este es un document escrito en Español."},{"id":"3","text":"猫は幸せ"}]}}) + .post('//text/analytics/v3.1/analyze', {"displayName":"testJob","analysisInput":{"documents":[{"id":"1","text":"I will go to the park."},{"id":"2","text":"Este es un document escrito en Español."},{"id":"3","text":"猫は幸せ"}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]}}) .reply(202, "", [ 'Transfer-Encoding', 'chunked', 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/8039d582-2137-494a-bf55-5a021edb69fb', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/94709fa1-1ba9-4718-adc2-953577650a89', 'x-envoy-upstream-service-time', - '87', + '182', 'apim-request-id', - '9e41fa09-48e9-431d-9aeb-0190d1f2d162', + 'e26038c1-a625-487f-8bcf-3c5c9819383e', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:57 GMT' + 'Fri, 25 Jun 2021 19:42:48 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/8039d582-2137-494a-bf55-5a021edb69fb') + .get('//text/analytics/v3.1/analyze/jobs/94709fa1-1ba9-4718-adc2-953577650a89') .query(true) - .reply(200, {"jobId":"8039d582-2137-494a-bf55-5a021edb69fb","lastUpdateDateTime":"2021-05-12T19:14:57Z","createdDateTime":"2021-05-12T19:14:57Z","expirationDateTime":"2021-05-13T19:14:57Z","status":"notStarted","errors":[],"displayName":"testJob","tasks":{"details":{"name":"testJob","lastUpdateDateTime":"2021-05-12T19:14:57Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"94709fa1-1ba9-4718-adc2-953577650a89","lastUpdateDateTime":"2021-06-25T19:42:49Z","createdDateTime":"2021-06-25T19:42:49Z","expirationDateTime":"2021-06-26T19:42:49Z","status":"notStarted","errors":[],"displayName":"testJob","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '7', 'apim-request-id', - '413e24b1-b860-412c-8033-6e9ed1d941d0', + 'fdb1ae9f-6a93-4f60-8687-8b7713a3ced5', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:57 GMT' + 'Fri, 25 Jun 2021 19:42:48 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/8039d582-2137-494a-bf55-5a021edb69fb') + .get('//text/analytics/v3.1/analyze/jobs/94709fa1-1ba9-4718-adc2-953577650a89') .query(true) - .reply(200, {"jobId":"8039d582-2137-494a-bf55-5a021edb69fb","lastUpdateDateTime":"2021-05-12T19:14:57Z","createdDateTime":"2021-05-12T19:14:57Z","expirationDateTime":"2021-05-13T19:14:57Z","status":"notStarted","errors":[],"displayName":"testJob","tasks":{"details":{"name":"testJob","lastUpdateDateTime":"2021-05-12T19:14:57Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"94709fa1-1ba9-4718-adc2-953577650a89","lastUpdateDateTime":"2021-06-25T19:42:49Z","createdDateTime":"2021-06-25T19:42:49Z","expirationDateTime":"2021-06-26T19:42:49Z","status":"notStarted","errors":[],"displayName":"testJob","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -163,91 +160,91 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - 'd4a924de-af1a-4a47-b0a2-26dfea13346c', + 'f43019c2-741e-4e66-93b3-6b096fcce6d1', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:57 GMT' + 'Fri, 25 Jun 2021 19:42:48 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/8039d582-2137-494a-bf55-5a021edb69fb') + .get('//text/analytics/v3.1/analyze/jobs/94709fa1-1ba9-4718-adc2-953577650a89') .query(true) - .reply(200, {"jobId":"8039d582-2137-494a-bf55-5a021edb69fb","lastUpdateDateTime":"2021-05-12T19:14:59Z","createdDateTime":"2021-05-12T19:14:57Z","expirationDateTime":"2021-05-13T19:14:57Z","status":"running","errors":[],"displayName":"testJob","tasks":{"details":{"name":"testJob","lastUpdateDateTime":"2021-05-12T19:14:59Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"94709fa1-1ba9-4718-adc2-953577650a89","lastUpdateDateTime":"2021-06-25T19:42:50Z","createdDateTime":"2021-06-25T19:42:49Z","expirationDateTime":"2021-06-26T19:42:49Z","status":"running","errors":[],"displayName":"testJob","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '11', 'apim-request-id', - 'a8ef4129-6c70-4bd9-9176-7aa8c3eb701f', + '2675d276-cf6f-4b2e-82f4-44a2beea7c88', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:59 GMT' + 'Fri, 25 Jun 2021 19:42:50 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/8039d582-2137-494a-bf55-5a021edb69fb') + .get('//text/analytics/v3.1/analyze/jobs/94709fa1-1ba9-4718-adc2-953577650a89') .query(true) - .reply(200, {"jobId":"8039d582-2137-494a-bf55-5a021edb69fb","lastUpdateDateTime":"2021-05-12T19:14:59Z","createdDateTime":"2021-05-12T19:14:57Z","expirationDateTime":"2021-05-13T19:14:57Z","status":"running","errors":[],"displayName":"testJob","tasks":{"details":{"name":"testJob","lastUpdateDateTime":"2021-05-12T19:14:59Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"94709fa1-1ba9-4718-adc2-953577650a89","lastUpdateDateTime":"2021-06-25T19:42:50Z","createdDateTime":"2021-06-25T19:42:49Z","expirationDateTime":"2021-06-26T19:42:49Z","status":"running","errors":[],"displayName":"testJob","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '5', 'apim-request-id', - 'f9a7b041-4947-4cb8-b378-cb32aa99feab', + 'da5aceae-6e8d-4d91-8c08-beacff2a8f00', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:15:01 GMT' + 'Fri, 25 Jun 2021 19:42:52 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/8039d582-2137-494a-bf55-5a021edb69fb') + .get('//text/analytics/v3.1/analyze/jobs/94709fa1-1ba9-4718-adc2-953577650a89') .query(true) - .reply(200, {"jobId":"8039d582-2137-494a-bf55-5a021edb69fb","lastUpdateDateTime":"2021-05-12T19:14:59Z","createdDateTime":"2021-05-12T19:14:57Z","expirationDateTime":"2021-05-13T19:14:57Z","status":"running","errors":[],"displayName":"testJob","tasks":{"details":{"name":"testJob","lastUpdateDateTime":"2021-05-12T19:14:59Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"94709fa1-1ba9-4718-adc2-953577650a89","lastUpdateDateTime":"2021-06-25T19:42:50Z","createdDateTime":"2021-06-25T19:42:49Z","expirationDateTime":"2021-06-26T19:42:49Z","status":"running","errors":[],"displayName":"testJob","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '8', 'apim-request-id', - '628b4186-16d3-49ef-b417-84979e9444d8', + 'ffa3e312-6d4b-4cab-9692-8921c149576e', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:15:03 GMT' + 'Fri, 25 Jun 2021 19:42:55 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/8039d582-2137-494a-bf55-5a021edb69fb') + .get('//text/analytics/v3.1/analyze/jobs/94709fa1-1ba9-4718-adc2-953577650a89') .query(true) - .reply(200, {"jobId":"8039d582-2137-494a-bf55-5a021edb69fb","lastUpdateDateTime":"2021-05-12T19:15:04Z","createdDateTime":"2021-05-12T19:14:57Z","expirationDateTime":"2021-05-13T19:14:57Z","status":"succeeded","errors":[],"displayName":"testJob","tasks":{"details":{"name":"testJob","lastUpdateDateTime":"2021-05-12T19:15:04Z"},"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:15:04.8241978Z","name":"testJob","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + .reply(200, {"jobId":"94709fa1-1ba9-4718-adc2-953577650a89","lastUpdateDateTime":"2021-06-25T19:42:56Z","createdDateTime":"2021-06-25T19:42:49Z","expirationDateTime":"2021-06-26T19:42:49Z","status":"succeeded","errors":[],"displayName":"testJob","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:42:56.0831466Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '54', + '65', 'apim-request-id', - 'c2e23cb5-ba16-4fdb-9cf4-322f6cbe719f', + 'ed2c4b21-a67b-4570-a548-9151533530ee', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:15:05 GMT' + 'Fri, 25 Jun 2021 19:42:57 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.js index a57ad61e03fa..e95a76c0dd43 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "eb3bf399cb76c760be167ce7c7b1b8ab"; +module.exports.hash = "ce68d594d903ed92dd603e6d0dc15d1d"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,24 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'c7dabe23-5a25-432a-b531-7e5a390d0400', + '543f5f8a-186d-4dba-9edc-d50fc51b5400', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.8 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:12:32 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:40:04 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrFOMgfUck6ZEhH-mZAi9Ujml7KbdDIeReToe53oeZ8FynMR8i9ZdP98Vl2z9r98AupxvnPoTu73hbUEqWTeXaBMegqMSon9Z4tc9AJLJSEDe2sUdXSu9qRELE8XqkBcm2-5Jw1VIHU0CH7nxAm7p7HzN_oTv7HosOMaUjLnhWGbsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr0AlJ7NP9JkFCuftq0J16-Iwno14CcJ7xZMYEXbIUgB0I3FjQkdagSrxj2FsMtY4pLmR-2UFokXHJZLaAfj8Oq5oWPG76ew0YLKwyahIt4Bm1Knh-7Ev08tZRBTzVHMqzWIiVPUl0qSwCdXAPr8N3PCTxYBR1jqaEL9Y7d33hE-MgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:12:31 GMT' + 'Fri, 25 Jun 2021 19:40:03 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,33 +58,32 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '74c31071-9533-4e7e-92e2-c81a7e345400', + '1e233fee-f232-4e03-820f-8a8c24dd6e00', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:12:32 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:40:04 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrIzZ41xRejgg1oENTqdBGAhCN4Ugx0sdhK2xFsYoR6XINlD0erddqJPuMtGFSoy2UGw1SQOAx5lqh80L3zrk__2occqq-knhfQN5gis9E8mv_FuxStAeBCXgHSuxK1BEG1BoPMjK5eTgGyRawjaOSvrQ0_79Dq5Lw9jDZzC6TP_YgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrm_kVENvLEUCLzC1msDCBFY1b4TD083v1KK5YJEXilxCT5rrO5uzoM83RuLtR_FwNFNidqzW8SdJAz5b8AlImI7XFNF_yisUspatPZFt3GvWFsSUUGb9gfSSezBlQSsdJnB78mo1BLjAVLrQE6Ycg8CxCqOzWg6g67HZUTGK-1qIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:12:31 GMT', + 'Fri, 25 Jun 2021 19:40:03 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=d4fecfb4-dea9-4a65-900d-2145ea8f7ad4&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', + 'Content-Length', + '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -96,66 +95,44 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'b6a65474-742c-4d60-a8b1-d5d34ad66000', + 'c19e3cf4-d853-423c-83e5-5de3fe936200', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:12:32 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:40:04 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:12:31 GMT', - 'Content-Length', - '1331' + 'Fri, 25 Jun 2021 19:40:03 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/analyze', {"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]},"analysisInput":{"documents":[{"id":"56","text":":)"},{"id":"0","text":":("},{"id":"22","text":"w"},{"id":"19","text":":P"},{"id":"1","text":":D"}]}}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"56","text":":)"},{"id":"0","text":":("},{"id":"22","text":"w"},{"id":"19","text":":P"},{"id":"1","text":":D"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) .reply(202, "", [ 'Transfer-Encoding', 'chunked', 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/449b24fd-694c-4a9c-9bd8-3fe571a94ecd', - 'x-envoy-upstream-service-time', - '173', - 'apim-request-id', - '2a0e9caa-c21b-4ba7-be58-36ef47373f86', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:12:32 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/449b24fd-694c-4a9c-9bd8-3fe571a94ecd') - .query(true) - .reply(200, {"jobId":"449b24fd-694c-4a9c-9bd8-3fe571a94ecd","lastUpdateDateTime":"2021-05-12T19:12:32Z","createdDateTime":"2021-05-12T19:12:32Z","expirationDateTime":"2021-05-13T19:12:32Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:12:32Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/381cbfcf-90ca-4108-9cd1-528d506cfabe', 'x-envoy-upstream-service-time', - '7', + '327', 'apim-request-id', - 'bcd45c1d-108d-44d3-bfc6-f2ea7374d33f', + '26400ac4-d92f-4567-ba8d-89a5d9f70bc8', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:12:32 GMT' + 'Fri, 25 Jun 2021 19:40:04 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/449b24fd-694c-4a9c-9bd8-3fe571a94ecd') + .get('//text/analytics/v3.1/analyze/jobs/381cbfcf-90ca-4108-9cd1-528d506cfabe') .query(true) - .reply(200, {"jobId":"449b24fd-694c-4a9c-9bd8-3fe571a94ecd","lastUpdateDateTime":"2021-05-12T19:12:32Z","createdDateTime":"2021-05-12T19:12:32Z","expirationDateTime":"2021-05-13T19:12:32Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:12:32Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"381cbfcf-90ca-4108-9cd1-528d506cfabe","lastUpdateDateTime":"2021-06-25T19:40:05Z","createdDateTime":"2021-06-25T19:40:04Z","expirationDateTime":"2021-06-26T19:40:04Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -163,59 +140,39 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - 'a5f2c4aa-9ae1-4afd-97d8-334d421bb136', + '968041b5-253c-44bf-80d4-64c191d23cc2', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:12:32 GMT' + 'Fri, 25 Jun 2021 19:40:04 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/449b24fd-694c-4a9c-9bd8-3fe571a94ecd') + .get('//text/analytics/v3.1/analyze/jobs/381cbfcf-90ca-4108-9cd1-528d506cfabe') .query(true) - .reply(200, {"jobId":"449b24fd-694c-4a9c-9bd8-3fe571a94ecd","lastUpdateDateTime":"2021-05-12T19:12:32Z","createdDateTime":"2021-05-12T19:12:32Z","expirationDateTime":"2021-05-13T19:12:32Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:12:32Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"381cbfcf-90ca-4108-9cd1-528d506cfabe","lastUpdateDateTime":"2021-06-25T19:40:05Z","createdDateTime":"2021-06-25T19:40:04Z","expirationDateTime":"2021-06-26T19:40:04Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - '5d245ae8-6d19-49bc-9398-99a05c9e7198', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:12:34 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/449b24fd-694c-4a9c-9bd8-3fe571a94ecd') - .query(true) - .reply(200, {"jobId":"449b24fd-694c-4a9c-9bd8-3fe571a94ecd","lastUpdateDateTime":"2021-05-12T19:12:32Z","createdDateTime":"2021-05-12T19:12:32Z","expirationDateTime":"2021-05-13T19:12:32Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:12:32Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', + '6', 'apim-request-id', - 'f3b030b7-eb85-48b3-8c8a-a189c0bee493', + '5bb7075f-9414-47d3-8a18-28b8a7a6bbf1', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:12:36 GMT' + 'Fri, 25 Jun 2021 19:40:04 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/449b24fd-694c-4a9c-9bd8-3fe571a94ecd') + .get('//text/analytics/v3.1/analyze/jobs/381cbfcf-90ca-4108-9cd1-528d506cfabe') .query(true) - .reply(200, {"jobId":"449b24fd-694c-4a9c-9bd8-3fe571a94ecd","lastUpdateDateTime":"2021-05-12T19:12:38Z","createdDateTime":"2021-05-12T19:12:32Z","expirationDateTime":"2021-05-13T19:12:32Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:12:38Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"381cbfcf-90ca-4108-9cd1-528d506cfabe","lastUpdateDateTime":"2021-06-25T19:40:05Z","createdDateTime":"2021-06-25T19:40:04Z","expirationDateTime":"2021-06-26T19:40:04Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -223,19 +180,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '6', 'apim-request-id', - 'ce0f5f07-8e0c-4459-a0bb-07f58be4deab', + '5100ae49-5f1a-4142-a424-ca8d7b10b2ed', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:12:38 GMT' + 'Fri, 25 Jun 2021 19:40:06 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/449b24fd-694c-4a9c-9bd8-3fe571a94ecd') + .get('//text/analytics/v3.1/analyze/jobs/381cbfcf-90ca-4108-9cd1-528d506cfabe') .query(true) - .reply(200, {"jobId":"449b24fd-694c-4a9c-9bd8-3fe571a94ecd","lastUpdateDateTime":"2021-05-12T19:12:38Z","createdDateTime":"2021-05-12T19:12:32Z","expirationDateTime":"2021-05-13T19:12:32Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:12:38Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"381cbfcf-90ca-4108-9cd1-528d506cfabe","lastUpdateDateTime":"2021-06-25T19:40:05Z","createdDateTime":"2021-06-25T19:40:04Z","expirationDateTime":"2021-06-26T19:40:04Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -243,131 +200,111 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - '942f4510-2307-46b2-95a4-c4f90bf85ff6', + '36882acb-41b2-4d43-9369-71ebae3a3d6a', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:12:40 GMT' + 'Fri, 25 Jun 2021 19:40:09 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/449b24fd-694c-4a9c-9bd8-3fe571a94ecd') + .get('//text/analytics/v3.1/analyze/jobs/381cbfcf-90ca-4108-9cd1-528d506cfabe') .query(true) - .reply(200, {"jobId":"449b24fd-694c-4a9c-9bd8-3fe571a94ecd","lastUpdateDateTime":"2021-05-12T19:12:40Z","createdDateTime":"2021-05-12T19:12:32Z","expirationDateTime":"2021-05-13T19:12:32Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:12:40Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:12:40.9856295Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"56","keyPhrases":[],"warnings":[]},{"id":"0","keyPhrases":[],"warnings":[]},{"id":"22","keyPhrases":[],"warnings":[]},{"id":"19","keyPhrases":[],"warnings":[]},{"id":"1","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"381cbfcf-90ca-4108-9cd1-528d506cfabe","lastUpdateDateTime":"2021-06-25T19:40:05Z","createdDateTime":"2021-06-25T19:40:04Z","expirationDateTime":"2021-06-26T19:40:04Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '122', + '10', 'apim-request-id', - '6b433666-76bd-44d2-ac1a-bea74e9b7e38', + '9b68deda-ba4a-4498-9423-253e068ddca2', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:12:42 GMT' + 'Fri, 25 Jun 2021 19:40:11 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/449b24fd-694c-4a9c-9bd8-3fe571a94ecd') + .get('//text/analytics/v3.1/analyze/jobs/381cbfcf-90ca-4108-9cd1-528d506cfabe') .query(true) - .reply(200, {"jobId":"449b24fd-694c-4a9c-9bd8-3fe571a94ecd","lastUpdateDateTime":"2021-05-12T19:12:40Z","createdDateTime":"2021-05-12T19:12:32Z","expirationDateTime":"2021-05-13T19:12:32Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:12:40Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:12:40.9856295Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"56","keyPhrases":[],"warnings":[]},{"id":"0","keyPhrases":[],"warnings":[]},{"id":"22","keyPhrases":[],"warnings":[]},{"id":"19","keyPhrases":[],"warnings":[]},{"id":"1","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"381cbfcf-90ca-4108-9cd1-528d506cfabe","lastUpdateDateTime":"2021-06-25T19:40:13Z","createdDateTime":"2021-06-25T19:40:04Z","expirationDateTime":"2021-06-26T19:40:04Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:12.0939197Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":":)","id":"56","entities":[],"warnings":[]},{"redactedText":":(","id":"0","entities":[],"warnings":[]},{"redactedText":"w","id":"22","entities":[],"warnings":[]},{"redactedText":":P","id":"19","entities":[],"warnings":[]},{"redactedText":":D","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:13.3399992Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"56","keyPhrases":[],"warnings":[]},{"id":"0","keyPhrases":[],"warnings":[]},{"id":"22","keyPhrases":[],"warnings":[]},{"id":"19","keyPhrases":[],"warnings":[]},{"id":"1","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '5095', - 'apim-request-id', - '37baf764-667b-4e3c-8518-9a3ace130644', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:12:49 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/449b24fd-694c-4a9c-9bd8-3fe571a94ecd') - .query(true) - .reply(200, {"jobId":"449b24fd-694c-4a9c-9bd8-3fe571a94ecd","lastUpdateDateTime":"2021-05-12T19:12:45Z","createdDateTime":"2021-05-12T19:12:32Z","expirationDateTime":"2021-05-13T19:12:32Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:12:45Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:12:45.4418621Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":":)","id":"56","entities":[],"warnings":[]},{"redactedText":":(","id":"0","entities":[],"warnings":[]},{"redactedText":"w","id":"22","entities":[],"warnings":[]},{"redactedText":":P","id":"19","entities":[],"warnings":[]},{"redactedText":":D","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:12:40.9856295Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"56","keyPhrases":[],"warnings":[]},{"id":"0","keyPhrases":[],"warnings":[]},{"id":"22","keyPhrases":[],"warnings":[]},{"id":"19","keyPhrases":[],"warnings":[]},{"id":"1","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '144', + '173', 'apim-request-id', - 'eaf049be-321e-443b-9386-65b046cb6a9b', + 'c9e95a89-d7a7-4adb-b3ff-d36a2254ea73', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:12:52 GMT' + 'Fri, 25 Jun 2021 19:40:13 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/449b24fd-694c-4a9c-9bd8-3fe571a94ecd') + .get('//text/analytics/v3.1/analyze/jobs/381cbfcf-90ca-4108-9cd1-528d506cfabe') .query(true) - .reply(200, {"jobId":"449b24fd-694c-4a9c-9bd8-3fe571a94ecd","lastUpdateDateTime":"2021-05-12T19:12:45Z","createdDateTime":"2021-05-12T19:12:32Z","expirationDateTime":"2021-05-13T19:12:32Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:12:45Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:12:45.4418621Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":":)","id":"56","entities":[],"warnings":[]},{"redactedText":":(","id":"0","entities":[],"warnings":[]},{"redactedText":"w","id":"22","entities":[],"warnings":[]},{"redactedText":":P","id":"19","entities":[],"warnings":[]},{"redactedText":":D","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:12:40.9856295Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"56","keyPhrases":[],"warnings":[]},{"id":"0","keyPhrases":[],"warnings":[]},{"id":"22","keyPhrases":[],"warnings":[]},{"id":"19","keyPhrases":[],"warnings":[]},{"id":"1","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"381cbfcf-90ca-4108-9cd1-528d506cfabe","lastUpdateDateTime":"2021-06-25T19:40:13Z","createdDateTime":"2021-06-25T19:40:04Z","expirationDateTime":"2021-06-26T19:40:04Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:12.0939197Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":":)","id":"56","entities":[],"warnings":[]},{"redactedText":":(","id":"0","entities":[],"warnings":[]},{"redactedText":"w","id":"22","entities":[],"warnings":[]},{"redactedText":":P","id":"19","entities":[],"warnings":[]},{"redactedText":":D","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:13.3399992Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"56","keyPhrases":[],"warnings":[]},{"id":"0","keyPhrases":[],"warnings":[]},{"id":"22","keyPhrases":[],"warnings":[]},{"id":"19","keyPhrases":[],"warnings":[]},{"id":"1","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '146', + '149', 'apim-request-id', - 'ab152b6e-0982-4db7-a867-06a4c87ec25e', + '1b1f29e5-2e27-4a65-9f73-3ee30799f32a', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:12:54 GMT' + 'Fri, 25 Jun 2021 19:40:15 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/449b24fd-694c-4a9c-9bd8-3fe571a94ecd') + .get('//text/analytics/v3.1/analyze/jobs/381cbfcf-90ca-4108-9cd1-528d506cfabe') .query(true) - .reply(200, {"jobId":"449b24fd-694c-4a9c-9bd8-3fe571a94ecd","lastUpdateDateTime":"2021-05-12T19:12:55Z","createdDateTime":"2021-05-12T19:12:32Z","expirationDateTime":"2021-05-13T19:12:32Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:12:55Z"},"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-12T19:12:55.8638531Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"56","entities":[],"warnings":[]},{"id":"0","entities":[],"warnings":[]},{"id":"22","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:12:45.4418621Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":":)","id":"56","entities":[],"warnings":[]},{"redactedText":":(","id":"0","entities":[],"warnings":[]},{"redactedText":"w","id":"22","entities":[],"warnings":[]},{"redactedText":":P","id":"19","entities":[],"warnings":[]},{"redactedText":":D","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:12:40.9856295Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"56","keyPhrases":[],"warnings":[]},{"id":"0","keyPhrases":[],"warnings":[]},{"id":"22","keyPhrases":[],"warnings":[]},{"id":"19","keyPhrases":[],"warnings":[]},{"id":"1","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"381cbfcf-90ca-4108-9cd1-528d506cfabe","lastUpdateDateTime":"2021-06-25T19:40:17Z","createdDateTime":"2021-06-25T19:40:04Z","expirationDateTime":"2021-06-26T19:40:04Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:17.0422251Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"56","entities":[],"warnings":[]},{"id":"0","entities":[],"warnings":[]},{"id":"22","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:12.0939197Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":":)","id":"56","entities":[],"warnings":[]},{"redactedText":":(","id":"0","entities":[],"warnings":[]},{"redactedText":"w","id":"22","entities":[],"warnings":[]},{"redactedText":":P","id":"19","entities":[],"warnings":[]},{"redactedText":":D","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:13.3399992Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"56","keyPhrases":[],"warnings":[]},{"id":"0","keyPhrases":[],"warnings":[]},{"id":"22","keyPhrases":[],"warnings":[]},{"id":"19","keyPhrases":[],"warnings":[]},{"id":"1","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '192', + '289', 'apim-request-id', - '5c129afe-e838-41a3-b8ce-6e61cf141b93', + '012ffda0-f60c-4d26-ba66-97957989dae7', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:12:56 GMT' + 'Fri, 25 Jun 2021 19:40:17 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/449b24fd-694c-4a9c-9bd8-3fe571a94ecd') + .get('//text/analytics/v3.1/analyze/jobs/381cbfcf-90ca-4108-9cd1-528d506cfabe') .query(true) - .reply(200, {"jobId":"449b24fd-694c-4a9c-9bd8-3fe571a94ecd","lastUpdateDateTime":"2021-05-12T19:12:55Z","createdDateTime":"2021-05-12T19:12:32Z","expirationDateTime":"2021-05-13T19:12:32Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:12:55Z"},"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-12T19:12:55.8638531Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"56","entities":[],"warnings":[]},{"id":"0","entities":[],"warnings":[]},{"id":"22","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:12:45.4418621Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":":)","id":"56","entities":[],"warnings":[]},{"redactedText":":(","id":"0","entities":[],"warnings":[]},{"redactedText":"w","id":"22","entities":[],"warnings":[]},{"redactedText":":P","id":"19","entities":[],"warnings":[]},{"redactedText":":D","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:12:40.9856295Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"56","keyPhrases":[],"warnings":[]},{"id":"0","keyPhrases":[],"warnings":[]},{"id":"22","keyPhrases":[],"warnings":[]},{"id":"19","keyPhrases":[],"warnings":[]},{"id":"1","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"381cbfcf-90ca-4108-9cd1-528d506cfabe","lastUpdateDateTime":"2021-06-25T19:40:17Z","createdDateTime":"2021-06-25T19:40:04Z","expirationDateTime":"2021-06-26T19:40:04Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:17.0422251Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"56","entities":[],"warnings":[]},{"id":"0","entities":[],"warnings":[]},{"id":"22","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:12.0939197Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":":)","id":"56","entities":[],"warnings":[]},{"redactedText":":(","id":"0","entities":[],"warnings":[]},{"redactedText":"w","id":"22","entities":[],"warnings":[]},{"redactedText":":P","id":"19","entities":[],"warnings":[]},{"redactedText":":D","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:13.3399992Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"56","keyPhrases":[],"warnings":[]},{"id":"0","keyPhrases":[],"warnings":[]},{"id":"22","keyPhrases":[],"warnings":[]},{"id":"19","keyPhrases":[],"warnings":[]},{"id":"1","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '173', + '252', 'apim-request-id', - 'ba7d6819-ca59-43df-b5af-dd0ff6ca2955', + 'c9252f86-92d0-4c7f-85d4-a089dcf57d52', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:12:57 GMT' + 'Fri, 25 Jun 2021 19:40:18 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.js index 837f42055476..b2df811b49d5 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "93e6ff2798f86850cc02324f8d8428e0"; +module.exports.hash = "0d0220320898553ba2b19148d77076f4"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,26 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6bf0c18c-a6b9-477c-a5f0-f1bb3c060200', + '1a9341fe-d51a-43f2-bedc-f5b28a62ce02', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.4 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:11:21 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:39:34 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevryrJKZ-g8DLk2O9Q_42w68Qp3e7-inbfHmW6IAkk3c_7Y8nbOveZ-EvLurAlrgE47N4a2mTsHxWBgJBQ2WkxbfiOTuH0qdaxXlT8Iw6rWAzmwo64ZrYQcLHKOm0tQqgcK_U5Y3zS6VNuR-60QaYNdwGP2QdWsy-0qMQg1j06V5wIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrDfQgSW9q2sNfNfnFrMsxbsC19tGJxf3soR6_GbrOI2AdfC6ABl2m_IwldBi9ekPF4N18MC8Y_kxTmY7nmoJKYSWbTC80uiMnqIhfITr1YUQ2EHZE4xWD-nzTRwLjV1vBrUCrSvPOn-Z9BO5sII6-G-AOSQ5KLnXYn2R1wlUsY1ggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:11:20 GMT', + 'Fri, 25 Jun 2021 19:39:33 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,28 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '4a103786-0d77-407a-b76a-a289e44ed400', + 'b7dd8c02-11f5-499e-bdfc-a9fde00d7500', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:11:21 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:39:34 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrF7fib15og1jXuUDiCJvxYXfNa2B-NG-UP8VGm8Hhv_C095vFmE9LrZxQ9WXSHsDMP9oYuJyJbSYtbOh6cP_4OMuAz3OZIZyukZnWi6JAiSgblniJSxyoK5cGBoOclUopnw2bv8WM2iQ8QbEdHzBrJfjdve0TpgDcHYvS1wZIKVAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevry5RHFktXD13DPmOCsSamBtC5rcowaoADh37hIEoBxVpQopJLj29e0GIKsFuGJgxWaRMHGUbV2HCTlPg71msEem03oRR0mwsK2nzklIMv7fv3ifrDOU1Si4LGsZ8_6Shw4tHj2WQPIK7AU-DpAXwzZNTrt4AH8T7-YpUObYYwC50gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:11:20 GMT', + 'Fri, 25 Jun 2021 19:39:33 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=39f75db3-400a-435e-9589-57edc146df7c&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,66 +93,66 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '36779b91-cc05-4719-a9c1-efc9bbcd5a00', + '1e233fee-f232-4e03-820f-8a8c39d76e00', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:11:21 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:39:34 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:11:20 GMT', + 'Fri, 25 Jun 2021 19:39:33 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/analyze', {"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]},"analysisInput":{"documents":[{"id":"1","text":"one"},{"id":"2","text":"two"},{"id":"3","text":"three"},{"id":"4","text":"four"},{"id":"5","text":"five"}]}}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"1","text":"one"},{"id":"2","text":"two"},{"id":"3","text":"three"},{"id":"4","text":"four"},{"id":"5","text":"five"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) .reply(202, "", [ 'Transfer-Encoding', 'chunked', 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/dcd43c7c-8a5d-4439-88f3-4cbf8653fa15', 'x-envoy-upstream-service-time', - '184', + '368', 'apim-request-id', - '3bec4cff-78ae-4dee-aaa0-3f1e697f5c85', + '3ecdbf5e-62bb-4b1b-8c4c-fec3cb80f3c3', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:11:21 GMT' + 'Fri, 25 Jun 2021 19:39:34 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') + .get('//text/analytics/v3.1/analyze/jobs/dcd43c7c-8a5d-4439-88f3-4cbf8653fa15') .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:21Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:21Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"dcd43c7c-8a5d-4439-88f3-4cbf8653fa15","lastUpdateDateTime":"2021-06-25T19:39:34Z","createdDateTime":"2021-06-25T19:39:34Z","expirationDateTime":"2021-06-26T19:39:34Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '12', 'apim-request-id', - 'c2748e24-9309-4c14-9b30-a7deaf31ccd8', + '90c18855-7797-4977-bd87-97d1db6bc4b5', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:11:21 GMT' + 'Fri, 25 Jun 2021 19:39:34 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') + .get('//text/analytics/v3.1/analyze/jobs/dcd43c7c-8a5d-4439-88f3-4cbf8653fa15') .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:21Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:21Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"dcd43c7c-8a5d-4439-88f3-4cbf8653fa15","lastUpdateDateTime":"2021-06-25T19:39:34Z","createdDateTime":"2021-06-25T19:39:34Z","expirationDateTime":"2021-06-26T19:39:34Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -163,19 +160,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - '18df6b97-1e62-4ba5-b163-d64db16b6321', + '6ac52025-b34a-415b-a921-8b53def4f6a8', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:11:21 GMT' + 'Fri, 25 Jun 2021 19:39:35 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') + .get('//text/analytics/v3.1/analyze/jobs/dcd43c7c-8a5d-4439-88f3-4cbf8653fa15') .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:22Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:22Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"dcd43c7c-8a5d-4439-88f3-4cbf8653fa15","lastUpdateDateTime":"2021-06-25T19:39:35Z","createdDateTime":"2021-06-25T19:39:34Z","expirationDateTime":"2021-06-26T19:39:34Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -183,399 +180,159 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '8', 'apim-request-id', - '9cdc625d-e4b4-4033-bd2d-caf77ec34ea0', + '78ca4050-75fe-4ca6-bd08-db5c286db09b', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:11:23 GMT' + 'Fri, 25 Jun 2021 19:39:37 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') + .get('//text/analytics/v3.1/analyze/jobs/dcd43c7c-8a5d-4439-88f3-4cbf8653fa15') .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:24Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:24Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"dcd43c7c-8a5d-4439-88f3-4cbf8653fa15","lastUpdateDateTime":"2021-06-25T19:39:35Z","createdDateTime":"2021-06-25T19:39:34Z","expirationDateTime":"2021-06-26T19:39:34Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'e16dfd6b-0222-475d-932c-d5eb1c71da7b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:11:25 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') - .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:28Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:28Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '69', - 'apim-request-id', - 'c739c00e-0105-418c-8078-cffa32be6311', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:11:27 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') - .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:28Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:28Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '107', - 'apim-request-id', - 'dfa0d389-c793-4f5a-9008-f3ff56e72dce', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:11:29 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') - .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:28Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:28Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '77', - 'apim-request-id', - 'b42fe776-62c6-4d00-9ad5-c9f333e10461', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:11:31 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') - .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:28Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:28Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '60', - 'apim-request-id', - 'd51fc945-4c96-4b22-b67c-e8c4adffab95', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:11:34 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') - .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:28Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:28Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '92', - 'apim-request-id', - '4fa4d994-cc86-47fb-ba78-35e9b63003b1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:11:36 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') - .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:28Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:28Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '66', - 'apim-request-id', - '343866d3-aa6e-402f-b35b-d445492ca0d5', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:11:38 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') - .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:28Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:28Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '69', - 'apim-request-id', - '862f9afa-361d-42f9-a15c-242c42cf2b13', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:11:40 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') - .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:28Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:28Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '66', - 'apim-request-id', - 'a913f632-89dc-4599-aad8-d57434c6d3b2', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:11:42 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') - .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:28Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:28Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '80', - 'apim-request-id', - 'fd13597c-af73-459e-9204-f898417645ec', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:11:45 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') - .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:45Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:45Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:45.8004155Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '113', - 'apim-request-id', - '81d0dfeb-2375-45af-b7c5-f2afa263aceb', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:11:47 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') - .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:45Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:45Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:45.8004155Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '136', - 'apim-request-id', - '013690db-1126-449c-b19e-14818e953991', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:11:49 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') - .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:45Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:45Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:45.8004155Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '121', + '6', 'apim-request-id', - '3ace1c78-f479-403b-885d-57ba8ffa9ece', + '02efebc4-bbe5-48e7-a9cd-7822d34e8662', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:11:51 GMT' + 'Fri, 25 Jun 2021 19:39:39 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') + .get('//text/analytics/v3.1/analyze/jobs/dcd43c7c-8a5d-4439-88f3-4cbf8653fa15') .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:45Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:45Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:45.8004155Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"dcd43c7c-8a5d-4439-88f3-4cbf8653fa15","lastUpdateDateTime":"2021-06-25T19:39:35Z","createdDateTime":"2021-06-25T19:39:34Z","expirationDateTime":"2021-06-26T19:39:34Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '163', + '9', 'apim-request-id', - '9664897a-9dd8-4b64-8d0e-b9528d9b0fc0', + 'e2a7771b-48bb-4091-a117-bb2bf6977376', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:11:54 GMT' + 'Fri, 25 Jun 2021 19:39:41 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') + .get('//text/analytics/v3.1/analyze/jobs/dcd43c7c-8a5d-4439-88f3-4cbf8653fa15') .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:45Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:45Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:45.8004155Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"dcd43c7c-8a5d-4439-88f3-4cbf8653fa15","lastUpdateDateTime":"2021-06-25T19:39:43Z","createdDateTime":"2021-06-25T19:39:34Z","expirationDateTime":"2021-06-26T19:39:34Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:41.8293815Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"one","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"two","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"three","category":"Quantity","subcategory":"Number","offset":0,"length":5,"confidenceScore":0.8}],"warnings":[]},{"id":"4","entities":[{"text":"four","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]},{"id":"5","entities":[{"text":"five","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '124', + '94', 'apim-request-id', - '590611a2-d310-4a71-baae-4ca55b9b41dc', + 'eae9eb71-7e14-4f9c-9437-6920a8556e3c', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:11:56 GMT' + 'Fri, 25 Jun 2021 19:39:43 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') + .get('//text/analytics/v3.1/analyze/jobs/dcd43c7c-8a5d-4439-88f3-4cbf8653fa15') .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:45Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:45Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:45.8004155Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"dcd43c7c-8a5d-4439-88f3-4cbf8653fa15","lastUpdateDateTime":"2021-06-25T19:39:43Z","createdDateTime":"2021-06-25T19:39:34Z","expirationDateTime":"2021-06-26T19:39:34Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:41.8293815Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"one","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"two","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"three","category":"Quantity","subcategory":"Number","offset":0,"length":5,"confidenceScore":0.8}],"warnings":[]},{"id":"4","entities":[{"text":"four","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]},{"id":"5","entities":[{"text":"five","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '115', + '76', 'apim-request-id', - '3948bb06-f065-4c2b-869d-0b056d04ded6', + '33bbee40-79c2-4871-b630-ee3b194b279a', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:11:58 GMT' + 'Fri, 25 Jun 2021 19:39:45 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') + .get('//text/analytics/v3.1/analyze/jobs/dcd43c7c-8a5d-4439-88f3-4cbf8653fa15') .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:45Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:45Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:45.8004155Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"dcd43c7c-8a5d-4439-88f3-4cbf8653fa15","lastUpdateDateTime":"2021-06-25T19:39:43Z","createdDateTime":"2021-06-25T19:39:34Z","expirationDateTime":"2021-06-26T19:39:34Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:41.8293815Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"one","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"two","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"three","category":"Quantity","subcategory":"Number","offset":0,"length":5,"confidenceScore":0.8}],"warnings":[]},{"id":"4","entities":[{"text":"four","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]},{"id":"5","entities":[{"text":"five","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '419', + '73', 'apim-request-id', - '53e6c28c-9468-420b-9ebd-e0c03df81eef', + '0a28942b-9a12-4232-bedd-4e170a67d2f0', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:12:00 GMT' + 'Fri, 25 Jun 2021 19:39:47 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') + .get('//text/analytics/v3.1/analyze/jobs/dcd43c7c-8a5d-4439-88f3-4cbf8653fa15') .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:45Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:45Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:45.8004155Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"dcd43c7c-8a5d-4439-88f3-4cbf8653fa15","lastUpdateDateTime":"2021-06-25T19:39:48Z","createdDateTime":"2021-06-25T19:39:34Z","expirationDateTime":"2021-06-26T19:39:34Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:41.8293815Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"one","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"two","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"three","category":"Quantity","subcategory":"Number","offset":0,"length":5,"confidenceScore":0.8}],"warnings":[]},{"id":"4","entities":[{"text":"four","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]},{"id":"5","entities":[{"text":"five","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:48.257419Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '118', + '174', 'apim-request-id', - '8adcfe96-73c2-445d-838f-89bbf23c04ed', + 'be445b58-05aa-42db-9c34-3c7e3dc6aa7a', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:12:02 GMT' + 'Fri, 25 Jun 2021 19:39:49 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') + .get('//text/analytics/v3.1/analyze/jobs/dcd43c7c-8a5d-4439-88f3-4cbf8653fa15') .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:45Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:45Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:45.8004155Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"dcd43c7c-8a5d-4439-88f3-4cbf8653fa15","lastUpdateDateTime":"2021-06-25T19:39:48Z","createdDateTime":"2021-06-25T19:39:34Z","expirationDateTime":"2021-06-26T19:39:34Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:41.8293815Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"one","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"two","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"three","category":"Quantity","subcategory":"Number","offset":0,"length":5,"confidenceScore":0.8}],"warnings":[]},{"id":"4","entities":[{"text":"four","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]},{"id":"5","entities":[{"text":"five","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:48.257419Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '155', + '166', 'apim-request-id', - '34be236e-508f-4f69-8448-09eaadf38c7f', + 'f4fa377a-a90b-41f0-bb75-ee5222f94aa3', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:12:04 GMT' + 'Fri, 25 Jun 2021 19:39:51 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') + .get('//text/analytics/v3.1/analyze/jobs/dcd43c7c-8a5d-4439-88f3-4cbf8653fa15') .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:45Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:45Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:45.8004155Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"dcd43c7c-8a5d-4439-88f3-4cbf8653fa15","lastUpdateDateTime":"2021-06-25T19:39:48Z","createdDateTime":"2021-06-25T19:39:34Z","expirationDateTime":"2021-06-26T19:39:34Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:41.8293815Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"one","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"two","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"three","category":"Quantity","subcategory":"Number","offset":0,"length":5,"confidenceScore":0.8}],"warnings":[]},{"id":"4","entities":[{"text":"four","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]},{"id":"5","entities":[{"text":"five","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:48.257419Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -583,251 +340,111 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '171', 'apim-request-id', - '7653c9d3-49f3-4b2a-928f-e477b50b23ae', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:12:06 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') - .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:45Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:45Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:45.8004155Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '158', - 'apim-request-id', - '421f5ff1-679e-46c9-99cc-7b0ad597805f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:12:09 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') - .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:45Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:45Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:45.8004155Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '151', - 'apim-request-id', - '94ab9e51-7efe-413a-bd05-30098aa06301', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:12:11 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') - .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:45Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:45Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:45.8004155Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '123', - 'apim-request-id', - '008cd626-0596-4cbb-be82-dfeed183839f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:12:13 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') - .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:45Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:45Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:45.8004155Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '128', - 'apim-request-id', - '70c147b1-5a50-482d-b58b-1cd4c2833d29', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:12:15 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') - .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:45Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:45Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:45.8004155Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '111', - 'apim-request-id', - '47a584e1-de8f-412f-8c55-64067ebaddee', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:12:18 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') - .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:45Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:45Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:45.8004155Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '122', - 'apim-request-id', - 'd16d2f51-1a0b-4af9-a9c9-29453f676652', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:12:20 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') - .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:45Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:45Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:45.8004155Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '133', - 'apim-request-id', - '02c7403b-35fc-41fb-9f08-0676bd5470f1', + '867527d6-97a6-47a0-9de9-bec57719c560', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:12:22 GMT' + 'Fri, 25 Jun 2021 19:39:54 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') + .get('//text/analytics/v3.1/analyze/jobs/dcd43c7c-8a5d-4439-88f3-4cbf8653fa15') .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:45Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:45Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:45.8004155Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"dcd43c7c-8a5d-4439-88f3-4cbf8653fa15","lastUpdateDateTime":"2021-06-25T19:39:48Z","createdDateTime":"2021-06-25T19:39:34Z","expirationDateTime":"2021-06-26T19:39:34Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:41.8293815Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"one","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"two","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"three","category":"Quantity","subcategory":"Number","offset":0,"length":5,"confidenceScore":0.8}],"warnings":[]},{"id":"4","entities":[{"text":"four","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]},{"id":"5","entities":[{"text":"five","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:48.257419Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '124', + '166', 'apim-request-id', - 'b09725a6-dd9e-49c0-b82f-aa9760a50c9c', + '1d2640c6-5a3e-40e7-b1a9-a985b22c15e5', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:12:24 GMT' + 'Fri, 25 Jun 2021 19:39:56 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') + .get('//text/analytics/v3.1/analyze/jobs/dcd43c7c-8a5d-4439-88f3-4cbf8653fa15') .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:45Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:45Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:45.8004155Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"dcd43c7c-8a5d-4439-88f3-4cbf8653fa15","lastUpdateDateTime":"2021-06-25T19:39:48Z","createdDateTime":"2021-06-25T19:39:34Z","expirationDateTime":"2021-06-26T19:39:34Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:41.8293815Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"one","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"two","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"three","category":"Quantity","subcategory":"Number","offset":0,"length":5,"confidenceScore":0.8}],"warnings":[]},{"id":"4","entities":[{"text":"four","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]},{"id":"5","entities":[{"text":"five","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:48.257419Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '118', + '197', 'apim-request-id', - 'ce7550c7-7544-449f-b8c5-52cfa919cd9e', + 'f0034346-7eda-4d7b-90ad-a6a77b40c7bf', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:12:27 GMT' + 'Fri, 25 Jun 2021 19:39:59 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') + .get('//text/analytics/v3.1/analyze/jobs/dcd43c7c-8a5d-4439-88f3-4cbf8653fa15') .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:11:45Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:45Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:45.8004155Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"dcd43c7c-8a5d-4439-88f3-4cbf8653fa15","lastUpdateDateTime":"2021-06-25T19:39:48Z","createdDateTime":"2021-06-25T19:39:34Z","expirationDateTime":"2021-06-26T19:39:34Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:41.8293815Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"one","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"two","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"three","category":"Quantity","subcategory":"Number","offset":0,"length":5,"confidenceScore":0.8}],"warnings":[]},{"id":"4","entities":[{"text":"four","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]},{"id":"5","entities":[{"text":"five","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:48.257419Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '183', + '171', 'apim-request-id', - 'edcf528a-7478-4185-b029-340d5dc1ffed', + '2f63a3d0-1ae1-4e30-8a2c-607b6ef48ea2', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:12:29 GMT' + 'Fri, 25 Jun 2021 19:40:01 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') + .get('//text/analytics/v3.1/analyze/jobs/dcd43c7c-8a5d-4439-88f3-4cbf8653fa15') .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:12:30Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:12:30Z"},"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-12T19:12:30.8545567Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"one","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"two","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"three","category":"Quantity","subcategory":"Number","offset":0,"length":5,"confidenceScore":0.8}],"warnings":[]},{"id":"4","entities":[{"text":"four","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]},{"id":"5","entities":[{"text":"five","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:45.8004155Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"dcd43c7c-8a5d-4439-88f3-4cbf8653fa15","lastUpdateDateTime":"2021-06-25T19:40:01Z","createdDateTime":"2021-06-25T19:39:34Z","expirationDateTime":"2021-06-26T19:39:34Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:41.8293815Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"one","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"two","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"three","category":"Quantity","subcategory":"Number","offset":0,"length":5,"confidenceScore":0.8}],"warnings":[]},{"id":"4","entities":[{"text":"four","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]},{"id":"5","entities":[{"text":"five","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:01.9119115Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:48.257419Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '206', + '230', 'apim-request-id', - '1c89b391-3be1-4660-ac05-62ce565a5c86', + 'c59aade7-f6ff-476d-8014-79aced785421', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:12:31 GMT' + 'Fri, 25 Jun 2021 19:40:03 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/00fcfe68-f5ab-4c15-beed-236615f48d28') + .get('//text/analytics/v3.1/analyze/jobs/dcd43c7c-8a5d-4439-88f3-4cbf8653fa15') .query(true) - .reply(200, {"jobId":"00fcfe68-f5ab-4c15-beed-236615f48d28","lastUpdateDateTime":"2021-05-12T19:12:30Z","createdDateTime":"2021-05-12T19:11:21Z","expirationDateTime":"2021-05-13T19:11:21Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:12:30Z"},"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-12T19:12:30.8545567Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"one","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"two","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"three","category":"Quantity","subcategory":"Number","offset":0,"length":5,"confidenceScore":0.8}],"warnings":[]},{"id":"4","entities":[{"text":"four","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]},{"id":"5","entities":[{"text":"five","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:45.8004155Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:28.0518998Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"dcd43c7c-8a5d-4439-88f3-4cbf8653fa15","lastUpdateDateTime":"2021-06-25T19:40:01Z","createdDateTime":"2021-06-25T19:39:34Z","expirationDateTime":"2021-06-26T19:39:34Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:41.8293815Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"one","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"two","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"three","category":"Quantity","subcategory":"Number","offset":0,"length":5,"confidenceScore":0.8}],"warnings":[]},{"id":"4","entities":[{"text":"four","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]},{"id":"5","entities":[{"text":"five","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:01.9119115Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:48.257419Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '175', + '266', 'apim-request-id', - 'b5d60d77-31c3-4c93-8524-30265f496cad', + 'f2036f2b-30fb-4fda-8787-9a04f968309c', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:12:31 GMT' + 'Fri, 25 Jun 2021 19:40:03 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.js index 929858c3cac3..377f6f003eae 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "e9797527b86d3a17b763db0f52fd9c49"; +module.exports.hash = "fcf347f6cb241de657ea5d5a47554eaf"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,28 +23,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'ad2712d7-02f8-446c-8685-8eac0e909a00', + '8188f33f-6a57-4384-8647-026148356600', 'x-ms-ests-server', - '2.1.11654.25 - NCUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:14:31 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:42:17 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevro6V2AcymcV6aoR9DxiLRWChhvhm3JZYdv2cMqvEUw13EoPgttosmVOMN1sds6UTLWF8KPliAXDn4DBqbzrgkrn692_XsQ5l--Z4RxtssqWKpKN-aPFi18kJ_K5DBsRZ4q_5QaUDHlDQPe4VONUZlmfARXX8VWrtU0COnnWy_DPQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr8mt2WpXIR4hiTsB7n_QkvpgGv5O7uPugVIqt53aAQCkm7SQxlv_eA3QkCyTsA32uuywH8wuauyaeMSlhRnNcqGDWUiw6iElex1rkHsjNRTh1AkVNKUCq2xzu8GULLugs2RuMe-tvljcKWVLkaSi2YgQQ36NvVo0lVW2EgvczJ5IgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:14:31 GMT' + 'Fri, 25 Jun 2021 19:42:17 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Length', - '1651', + '1753', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,33 +60,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6d13d50f-9cbe-403f-876d-4ed3d7565b00', + '9d80f76e-26fc-421e-9776-d8e3d0cf5b00', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:14:31 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:42:17 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevroEElP6G5nmuzl8BGP_R4LScm9wucw6bJ1oZXQXVbA9BIM2btlxt5OQhW1JpShRKXKb5n6O40a1IAnHhs_iY7l52piHNy_xLpAjXDArRVbiw8AwVUOzfSAB2YUNmFJU8dGUEXOUJehX7A2ath3RMWHomQz2qjIT1whCfwOVetyhcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrmU0Htg0faIQKnulVUITlaRv-04g865S56I3fKoDt18S1lLHHQr002fccuKE2ZLXuL53RuU9siMxrOyMSfv4ufN78Jd8lByqHnSN1MIl5PfTkGcYzFV41TpCTNGfpS2Ylf1GZNdjBL1JmDy6kzuwKxjwzZ3yS_vJR1fZPbYxsBb0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:14:31 GMT' + 'Fri, 25 Jun 2021 19:42:17 GMT' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=e182fc8c-8808-4679-8728-350c4be18c19&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,64 +93,106 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '428c50f7-d2da-402a-a895-3212f6e55200', + 'b7dd8c02-11f5-499e-bdfc-a9fd502f7500', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:14:32 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:42:17 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:14:31 GMT' + 'Fri, 25 Jun 2021 19:42:17 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/analyze', {"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]},"analysisInput":{"documents":[{"id":"0","text":"random text","language":"en"},{"id":"1","text":"random text","language":"en"},{"id":"2","text":"random text","language":"en"},{"id":"3","text":"random text","language":"en"},{"id":"4","text":"random text","language":"en"},{"id":"5","text":"random text","language":"en"},{"id":"6","text":"random text","language":"en"},{"id":"7","text":"random text","language":"en"},{"id":"8","text":"random text","language":"en"},{"id":"9","text":"random text","language":"en"},{"id":"10","text":"random text","language":"en"},{"id":"11","text":"random text","language":"en"},{"id":"12","text":"random text","language":"en"},{"id":"13","text":"random text","language":"en"},{"id":"14","text":"random text","language":"en"},{"id":"15","text":"random text","language":"en"},{"id":"16","text":"random text","language":"en"},{"id":"17","text":"random text","language":"en"},{"id":"18","text":"random text","language":"en"},{"id":"19","text":"random text","language":"en"},{"id":"20","text":"random text","language":"en"},{"id":"21","text":"random text","language":"en"},{"id":"22","text":"random text","language":"en"},{"id":"23","text":"random text","language":"en"},{"id":"24","text":"Microsoft was founded by Bill Gates and Paul Allen","language":"en"}]}}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"0","text":"random text","language":"en"},{"id":"1","text":"random text","language":"en"},{"id":"2","text":"random text","language":"en"},{"id":"3","text":"random text","language":"en"},{"id":"4","text":"random text","language":"en"},{"id":"5","text":"random text","language":"en"},{"id":"6","text":"random text","language":"en"},{"id":"7","text":"random text","language":"en"},{"id":"8","text":"random text","language":"en"},{"id":"9","text":"random text","language":"en"},{"id":"10","text":"random text","language":"en"},{"id":"11","text":"random text","language":"en"},{"id":"12","text":"random text","language":"en"},{"id":"13","text":"random text","language":"en"},{"id":"14","text":"random text","language":"en"},{"id":"15","text":"random text","language":"en"},{"id":"16","text":"random text","language":"en"},{"id":"17","text":"random text","language":"en"},{"id":"18","text":"random text","language":"en"},{"id":"19","text":"random text","language":"en"},{"id":"20","text":"random text","language":"en"},{"id":"21","text":"random text","language":"en"},{"id":"22","text":"random text","language":"en"},{"id":"23","text":"random text","language":"en"},{"id":"24","text":"Microsoft was founded by Bill Gates and Paul Allen","language":"en"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) .reply(202, "", [ 'Transfer-Encoding', 'chunked', 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/0983681f-45ed-4a66-90bb-5a0fa6cb2646', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/83f4280c-94e2-45ef-bc23-43640f0a2480', + 'x-envoy-upstream-service-time', + '1001', + 'apim-request-id', + '128f09ed-b2a8-45bd-933d-f166139090f5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:42:17 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/83f4280c-94e2-45ef-bc23-43640f0a2480') + .query(true) + .reply(200, {"jobId":"83f4280c-94e2-45ef-bc23-43640f0a2480","lastUpdateDateTime":"2021-06-25T19:42:18Z","createdDateTime":"2021-06-25T19:42:17Z","expirationDateTime":"2021-06-26T19:42:17Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":2,"total":2}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + 'ebcb0ae8-85dc-496a-a3cf-c897aee5cb36', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:42:17 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/83f4280c-94e2-45ef-bc23-43640f0a2480') + .query(true) + .reply(200, {"jobId":"83f4280c-94e2-45ef-bc23-43640f0a2480","lastUpdateDateTime":"2021-06-25T19:42:18Z","createdDateTime":"2021-06-25T19:42:17Z","expirationDateTime":"2021-06-26T19:42:17Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":2,"total":2}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '414', + '69', 'apim-request-id', - '19beff35-8d49-41fc-bde1-e3edf7825868', + 'fd57e4e7-efba-4f49-bf50-88f54f713760', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:31 GMT' + 'Fri, 25 Jun 2021 19:42:17 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/0983681f-45ed-4a66-90bb-5a0fa6cb2646') + .get('//text/analytics/v3.1/analyze/jobs/83f4280c-94e2-45ef-bc23-43640f0a2480') .query(true) - .reply(200, {"jobId":"0983681f-45ed-4a66-90bb-5a0fa6cb2646","lastUpdateDateTime":"2021-05-12T19:14:32Z","createdDateTime":"2021-05-12T19:14:32Z","expirationDateTime":"2021-05-13T19:14:32Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:32Z"},"completed":0,"failed":0,"inProgress":2,"total":2}}, [ + .reply(200, {"jobId":"83f4280c-94e2-45ef-bc23-43640f0a2480","lastUpdateDateTime":"2021-06-25T19:42:20Z","createdDateTime":"2021-06-25T19:42:17Z","expirationDateTime":"2021-06-26T19:42:17Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":2,"total":2}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '12', + '7', 'apim-request-id', - 'cbac06e2-00df-4df1-b3ed-2c14072f2a04', + '90a66932-40d3-46c9-9124-d9536a39814a', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:31 GMT' + 'Fri, 25 Jun 2021 19:42:19 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/0983681f-45ed-4a66-90bb-5a0fa6cb2646') + .get('//text/analytics/v3.1/analyze/jobs/83f4280c-94e2-45ef-bc23-43640f0a2480') .query(true) - .reply(200, {"jobId":"0983681f-45ed-4a66-90bb-5a0fa6cb2646","lastUpdateDateTime":"2021-05-12T19:14:32Z","createdDateTime":"2021-05-12T19:14:32Z","expirationDateTime":"2021-05-13T19:14:32Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:32Z"},"completed":0,"failed":0,"inProgress":2,"total":2}}, [ + .reply(200, {"jobId":"83f4280c-94e2-45ef-bc23-43640f0a2480","lastUpdateDateTime":"2021-06-25T19:42:20Z","createdDateTime":"2021-06-25T19:42:17Z","expirationDateTime":"2021-06-26T19:42:17Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":2,"total":2}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -163,19 +200,39 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - 'b6eb8ee3-9910-48ea-a9ae-f6ca92e3312f', + '435ed09e-01d3-461b-b25d-6b8dbbfa25c7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:42:22 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/83f4280c-94e2-45ef-bc23-43640f0a2480') + .query(true) + .reply(200, {"jobId":"83f4280c-94e2-45ef-bc23-43640f0a2480","lastUpdateDateTime":"2021-06-25T19:42:20Z","createdDateTime":"2021-06-25T19:42:17Z","expirationDateTime":"2021-06-26T19:42:17Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":2,"total":2}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + 'ce97d6e7-15b5-4c74-9316-cb48f0d73530', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:31 GMT' + 'Fri, 25 Jun 2021 19:42:24 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/0983681f-45ed-4a66-90bb-5a0fa6cb2646') + .get('//text/analytics/v3.1/analyze/jobs/83f4280c-94e2-45ef-bc23-43640f0a2480') .query(true) - .reply(200, {"jobId":"0983681f-45ed-4a66-90bb-5a0fa6cb2646","lastUpdateDateTime":"2021-05-12T19:14:34Z","createdDateTime":"2021-05-12T19:14:32Z","expirationDateTime":"2021-05-13T19:14:32Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:34Z"},"completed":0,"failed":0,"inProgress":2,"total":2}}, [ + .reply(200, {"jobId":"83f4280c-94e2-45ef-bc23-43640f0a2480","lastUpdateDateTime":"2021-06-25T19:42:26Z","createdDateTime":"2021-06-25T19:42:17Z","expirationDateTime":"2021-06-26T19:42:17Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":2,"total":2}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -183,151 +240,171 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '8', 'apim-request-id', - '0d77f853-9087-418c-9ed4-b87f02da3c53', + '2ecd63bc-f079-4d07-bae7-ece7b48ebe7d', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:33 GMT' + 'Fri, 25 Jun 2021 19:42:26 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/0983681f-45ed-4a66-90bb-5a0fa6cb2646') + .get('//text/analytics/v3.1/analyze/jobs/83f4280c-94e2-45ef-bc23-43640f0a2480') .query(true) - .reply(200, {"jobId":"0983681f-45ed-4a66-90bb-5a0fa6cb2646","lastUpdateDateTime":"2021-05-12T19:14:34Z","createdDateTime":"2021-05-12T19:14:32Z","expirationDateTime":"2021-05-13T19:14:32Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:34Z"},"completed":0,"failed":0,"inProgress":2,"total":2}}, [ + .reply(200, {"jobId":"83f4280c-94e2-45ef-bc23-43640f0a2480","lastUpdateDateTime":"2021-06-25T19:42:27Z","createdDateTime":"2021-06-25T19:42:17Z","expirationDateTime":"2021-06-26T19:42:17Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":1,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:42:27.3428372Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]},{"id":"2","entities":[],"warnings":[]},{"id":"3","entities":[],"warnings":[]},{"id":"4","entities":[],"warnings":[]},{"id":"5","entities":[],"warnings":[]},{"id":"6","entities":[],"warnings":[]},{"id":"7","entities":[],"warnings":[]},{"id":"8","entities":[],"warnings":[]},{"id":"9","entities":[],"warnings":[]},{"id":"10","entities":[],"warnings":[]},{"id":"11","entities":[],"warnings":[]},{"id":"12","entities":[],"warnings":[]},{"id":"13","entities":[],"warnings":[]},{"id":"14","entities":[],"warnings":[]},{"id":"15","entities":[],"warnings":[]},{"id":"16","entities":[],"warnings":[]},{"id":"17","entities":[],"warnings":[]},{"id":"18","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]},"@nextLink":"https://endpoint/text/analytics/v3.1/analyze/jobs/83f4280c-94e2-45ef-bc23-43640f0a2480?$skip=20&$top=5&showStats=False"}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '10', + '325', 'apim-request-id', - 'c56eb814-19c0-44dc-b1bc-7432149b135c', + 'b84c72ab-4848-40cc-92e7-43c487ec9926', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:35 GMT' + 'Fri, 25 Jun 2021 19:42:29 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/0983681f-45ed-4a66-90bb-5a0fa6cb2646') + .get('//text/analytics/v3.1/analyze/jobs/83f4280c-94e2-45ef-bc23-43640f0a2480') .query(true) - .reply(200, {"jobId":"0983681f-45ed-4a66-90bb-5a0fa6cb2646","lastUpdateDateTime":"2021-05-12T19:14:38Z","createdDateTime":"2021-05-12T19:14:32Z","expirationDateTime":"2021-05-13T19:14:32Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:38Z"},"completed":0,"failed":0,"inProgress":2,"total":2}}, [ + .reply(200, {"jobId":"83f4280c-94e2-45ef-bc23-43640f0a2480","lastUpdateDateTime":"2021-06-25T19:42:27Z","createdDateTime":"2021-06-25T19:42:17Z","expirationDateTime":"2021-06-26T19:42:17Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":1,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:42:27.3428372Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]},{"id":"2","entities":[],"warnings":[]},{"id":"3","entities":[],"warnings":[]},{"id":"4","entities":[],"warnings":[]},{"id":"5","entities":[],"warnings":[]},{"id":"6","entities":[],"warnings":[]},{"id":"7","entities":[],"warnings":[]},{"id":"8","entities":[],"warnings":[]},{"id":"9","entities":[],"warnings":[]},{"id":"10","entities":[],"warnings":[]},{"id":"11","entities":[],"warnings":[]},{"id":"12","entities":[],"warnings":[]},{"id":"13","entities":[],"warnings":[]},{"id":"14","entities":[],"warnings":[]},{"id":"15","entities":[],"warnings":[]},{"id":"16","entities":[],"warnings":[]},{"id":"17","entities":[],"warnings":[]},{"id":"18","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]},"@nextLink":"https://endpoint/text/analytics/v3.1/analyze/jobs/83f4280c-94e2-45ef-bc23-43640f0a2480?$skip=20&$top=5&showStats=False"}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '205', + 'apim-request-id', + 'f2167e73-e4be-4e0b-ba1c-a6f0eb2a7e53', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:42:31 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/83f4280c-94e2-45ef-bc23-43640f0a2480') + .query(true) + .reply(200, {"jobId":"83f4280c-94e2-45ef-bc23-43640f0a2480","lastUpdateDateTime":"2021-06-25T19:42:27Z","createdDateTime":"2021-06-25T19:42:17Z","expirationDateTime":"2021-06-26T19:42:17Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":1,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:42:27.3428372Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]},{"id":"2","entities":[],"warnings":[]},{"id":"3","entities":[],"warnings":[]},{"id":"4","entities":[],"warnings":[]},{"id":"5","entities":[],"warnings":[]},{"id":"6","entities":[],"warnings":[]},{"id":"7","entities":[],"warnings":[]},{"id":"8","entities":[],"warnings":[]},{"id":"9","entities":[],"warnings":[]},{"id":"10","entities":[],"warnings":[]},{"id":"11","entities":[],"warnings":[]},{"id":"12","entities":[],"warnings":[]},{"id":"13","entities":[],"warnings":[]},{"id":"14","entities":[],"warnings":[]},{"id":"15","entities":[],"warnings":[]},{"id":"16","entities":[],"warnings":[]},{"id":"17","entities":[],"warnings":[]},{"id":"18","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]},"@nextLink":"https://endpoint/text/analytics/v3.1/analyze/jobs/83f4280c-94e2-45ef-bc23-43640f0a2480?$skip=20&$top=5&showStats=False"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '232', 'apim-request-id', - 'b0ef8903-6e1a-489e-9b1d-9e1c018ae53e', + 'c89f0e67-b29d-4bc9-946f-23e6cab7c944', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:37 GMT' + 'Fri, 25 Jun 2021 19:42:33 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/0983681f-45ed-4a66-90bb-5a0fa6cb2646') + .get('//text/analytics/v3.1/analyze/jobs/83f4280c-94e2-45ef-bc23-43640f0a2480') .query(true) - .reply(200, {"jobId":"0983681f-45ed-4a66-90bb-5a0fa6cb2646","lastUpdateDateTime":"2021-05-12T19:14:40Z","createdDateTime":"2021-05-12T19:14:32Z","expirationDateTime":"2021-05-13T19:14:32Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:40Z"},"completed":1,"failed":0,"inProgress":1,"total":2,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:14:39.4039874Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["random text"],"warnings":[]},{"id":"1","keyPhrases":["random text"],"warnings":[]},{"id":"2","keyPhrases":["random text"],"warnings":[]},{"id":"3","keyPhrases":["random text"],"warnings":[]},{"id":"4","keyPhrases":["random text"],"warnings":[]},{"id":"5","keyPhrases":["random text"],"warnings":[]},{"id":"6","keyPhrases":["random text"],"warnings":[]},{"id":"7","keyPhrases":["random text"],"warnings":[]},{"id":"8","keyPhrases":["random text"],"warnings":[]},{"id":"9","keyPhrases":["random text"],"warnings":[]},{"id":"10","keyPhrases":["random text"],"warnings":[]},{"id":"11","keyPhrases":["random text"],"warnings":[]},{"id":"12","keyPhrases":["random text"],"warnings":[]},{"id":"13","keyPhrases":["random text"],"warnings":[]},{"id":"14","keyPhrases":["random text"],"warnings":[]},{"id":"15","keyPhrases":["random text"],"warnings":[]},{"id":"16","keyPhrases":["random text"],"warnings":[]},{"id":"17","keyPhrases":["random text"],"warnings":[]},{"id":"18","keyPhrases":["random text"],"warnings":[]},{"id":"19","keyPhrases":["random text"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]},"@nextLink":"https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/0983681f-45ed-4a66-90bb-5a0fa6cb2646?$skip=20&$top=5&showStats=False"}, [ + .reply(200, {"jobId":"83f4280c-94e2-45ef-bc23-43640f0a2480","lastUpdateDateTime":"2021-06-25T19:42:27Z","createdDateTime":"2021-06-25T19:42:17Z","expirationDateTime":"2021-06-26T19:42:17Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":1,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:42:27.3428372Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]},{"id":"2","entities":[],"warnings":[]},{"id":"3","entities":[],"warnings":[]},{"id":"4","entities":[],"warnings":[]},{"id":"5","entities":[],"warnings":[]},{"id":"6","entities":[],"warnings":[]},{"id":"7","entities":[],"warnings":[]},{"id":"8","entities":[],"warnings":[]},{"id":"9","entities":[],"warnings":[]},{"id":"10","entities":[],"warnings":[]},{"id":"11","entities":[],"warnings":[]},{"id":"12","entities":[],"warnings":[]},{"id":"13","entities":[],"warnings":[]},{"id":"14","entities":[],"warnings":[]},{"id":"15","entities":[],"warnings":[]},{"id":"16","entities":[],"warnings":[]},{"id":"17","entities":[],"warnings":[]},{"id":"18","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]},"@nextLink":"https://endpoint/text/analytics/v3.1/analyze/jobs/83f4280c-94e2-45ef-bc23-43640f0a2480?$skip=20&$top=5&showStats=False"}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '218', + '222', 'apim-request-id', - 'f4adea78-c4e3-4c25-b319-fe4c9c77d5e7', + '777c5d4e-51b6-4018-b461-6aa6242371dc', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:40 GMT' + 'Fri, 25 Jun 2021 19:42:35 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/0983681f-45ed-4a66-90bb-5a0fa6cb2646') + .get('//text/analytics/v3.1/analyze/jobs/83f4280c-94e2-45ef-bc23-43640f0a2480') .query(true) - .reply(200, {"jobId":"0983681f-45ed-4a66-90bb-5a0fa6cb2646","lastUpdateDateTime":"2021-05-12T19:14:40Z","createdDateTime":"2021-05-12T19:14:32Z","expirationDateTime":"2021-05-13T19:14:32Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:40Z"},"completed":2,"failed":0,"inProgress":0,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-12T19:14:40.9947506Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]},{"id":"2","entities":[],"warnings":[]},{"id":"3","entities":[],"warnings":[]},{"id":"4","entities":[],"warnings":[]},{"id":"5","entities":[],"warnings":[]},{"id":"6","entities":[],"warnings":[]},{"id":"7","entities":[],"warnings":[]},{"id":"8","entities":[],"warnings":[]},{"id":"9","entities":[],"warnings":[]},{"id":"10","entities":[],"warnings":[]},{"id":"11","entities":[],"warnings":[]},{"id":"12","entities":[],"warnings":[]},{"id":"13","entities":[],"warnings":[]},{"id":"14","entities":[],"warnings":[]},{"id":"15","entities":[],"warnings":[]},{"id":"16","entities":[],"warnings":[]},{"id":"17","entities":[],"warnings":[]},{"id":"18","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:14:39.4039874Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["random text"],"warnings":[]},{"id":"1","keyPhrases":["random text"],"warnings":[]},{"id":"2","keyPhrases":["random text"],"warnings":[]},{"id":"3","keyPhrases":["random text"],"warnings":[]},{"id":"4","keyPhrases":["random text"],"warnings":[]},{"id":"5","keyPhrases":["random text"],"warnings":[]},{"id":"6","keyPhrases":["random text"],"warnings":[]},{"id":"7","keyPhrases":["random text"],"warnings":[]},{"id":"8","keyPhrases":["random text"],"warnings":[]},{"id":"9","keyPhrases":["random text"],"warnings":[]},{"id":"10","keyPhrases":["random text"],"warnings":[]},{"id":"11","keyPhrases":["random text"],"warnings":[]},{"id":"12","keyPhrases":["random text"],"warnings":[]},{"id":"13","keyPhrases":["random text"],"warnings":[]},{"id":"14","keyPhrases":["random text"],"warnings":[]},{"id":"15","keyPhrases":["random text"],"warnings":[]},{"id":"16","keyPhrases":["random text"],"warnings":[]},{"id":"17","keyPhrases":["random text"],"warnings":[]},{"id":"18","keyPhrases":["random text"],"warnings":[]},{"id":"19","keyPhrases":["random text"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]},"@nextLink":"https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/0983681f-45ed-4a66-90bb-5a0fa6cb2646?$skip=20&$top=5&showStats=False"}, [ + .reply(200, {"jobId":"83f4280c-94e2-45ef-bc23-43640f0a2480","lastUpdateDateTime":"2021-06-25T19:42:38Z","createdDateTime":"2021-06-25T19:42:17Z","expirationDateTime":"2021-06-26T19:42:17Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":0,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:42:27.3428372Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]},{"id":"2","entities":[],"warnings":[]},{"id":"3","entities":[],"warnings":[]},{"id":"4","entities":[],"warnings":[]},{"id":"5","entities":[],"warnings":[]},{"id":"6","entities":[],"warnings":[]},{"id":"7","entities":[],"warnings":[]},{"id":"8","entities":[],"warnings":[]},{"id":"9","entities":[],"warnings":[]},{"id":"10","entities":[],"warnings":[]},{"id":"11","entities":[],"warnings":[]},{"id":"12","entities":[],"warnings":[]},{"id":"13","entities":[],"warnings":[]},{"id":"14","entities":[],"warnings":[]},{"id":"15","entities":[],"warnings":[]},{"id":"16","entities":[],"warnings":[]},{"id":"17","entities":[],"warnings":[]},{"id":"18","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:42:38.0240622Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["random text"],"warnings":[]},{"id":"1","keyPhrases":["random text"],"warnings":[]},{"id":"2","keyPhrases":["random text"],"warnings":[]},{"id":"3","keyPhrases":["random text"],"warnings":[]},{"id":"4","keyPhrases":["random text"],"warnings":[]},{"id":"5","keyPhrases":["random text"],"warnings":[]},{"id":"6","keyPhrases":["random text"],"warnings":[]},{"id":"7","keyPhrases":["random text"],"warnings":[]},{"id":"8","keyPhrases":["random text"],"warnings":[]},{"id":"9","keyPhrases":["random text"],"warnings":[]},{"id":"10","keyPhrases":["random text"],"warnings":[]},{"id":"11","keyPhrases":["random text"],"warnings":[]},{"id":"12","keyPhrases":["random text"],"warnings":[]},{"id":"13","keyPhrases":["random text"],"warnings":[]},{"id":"14","keyPhrases":["random text"],"warnings":[]},{"id":"15","keyPhrases":["random text"],"warnings":[]},{"id":"16","keyPhrases":["random text"],"warnings":[]},{"id":"17","keyPhrases":["random text"],"warnings":[]},{"id":"18","keyPhrases":["random text"],"warnings":[]},{"id":"19","keyPhrases":["random text"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]},"@nextLink":"https://endpoint/text/analytics/v3.1/analyze/jobs/83f4280c-94e2-45ef-bc23-43640f0a2480?$skip=20&$top=5&showStats=False"}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '489', + '571', 'apim-request-id', - 'a8844664-03f2-4bfd-96bb-73179f9ac430', + 'ea9e33a8-120f-4583-885b-cbf41db99445', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:43 GMT' + 'Fri, 25 Jun 2021 19:42:38 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/0983681f-45ed-4a66-90bb-5a0fa6cb2646') + .get('//text/analytics/v3.1/analyze/jobs/83f4280c-94e2-45ef-bc23-43640f0a2480') .query(true) - .reply(200, {"jobId":"0983681f-45ed-4a66-90bb-5a0fa6cb2646","lastUpdateDateTime":"2021-05-12T19:14:40Z","createdDateTime":"2021-05-12T19:14:32Z","expirationDateTime":"2021-05-13T19:14:32Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:40Z"},"completed":2,"failed":0,"inProgress":0,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-12T19:14:40.9947506Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]},{"id":"2","entities":[],"warnings":[]},{"id":"3","entities":[],"warnings":[]},{"id":"4","entities":[],"warnings":[]},{"id":"5","entities":[],"warnings":[]},{"id":"6","entities":[],"warnings":[]},{"id":"7","entities":[],"warnings":[]},{"id":"8","entities":[],"warnings":[]},{"id":"9","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:14:39.4039874Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["random text"],"warnings":[]},{"id":"1","keyPhrases":["random text"],"warnings":[]},{"id":"2","keyPhrases":["random text"],"warnings":[]},{"id":"3","keyPhrases":["random text"],"warnings":[]},{"id":"4","keyPhrases":["random text"],"warnings":[]},{"id":"5","keyPhrases":["random text"],"warnings":[]},{"id":"6","keyPhrases":["random text"],"warnings":[]},{"id":"7","keyPhrases":["random text"],"warnings":[]},{"id":"8","keyPhrases":["random text"],"warnings":[]},{"id":"9","keyPhrases":["random text"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]},"@nextLink":"https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/0983681f-45ed-4a66-90bb-5a0fa6cb2646?$skip=10&$top=10&showStats=False"}, [ + .reply(200, {"jobId":"83f4280c-94e2-45ef-bc23-43640f0a2480","lastUpdateDateTime":"2021-06-25T19:42:38Z","createdDateTime":"2021-06-25T19:42:17Z","expirationDateTime":"2021-06-26T19:42:17Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":0,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:42:27.3428372Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]},{"id":"2","entities":[],"warnings":[]},{"id":"3","entities":[],"warnings":[]},{"id":"4","entities":[],"warnings":[]},{"id":"5","entities":[],"warnings":[]},{"id":"6","entities":[],"warnings":[]},{"id":"7","entities":[],"warnings":[]},{"id":"8","entities":[],"warnings":[]},{"id":"9","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:42:38.0240622Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["random text"],"warnings":[]},{"id":"1","keyPhrases":["random text"],"warnings":[]},{"id":"2","keyPhrases":["random text"],"warnings":[]},{"id":"3","keyPhrases":["random text"],"warnings":[]},{"id":"4","keyPhrases":["random text"],"warnings":[]},{"id":"5","keyPhrases":["random text"],"warnings":[]},{"id":"6","keyPhrases":["random text"],"warnings":[]},{"id":"7","keyPhrases":["random text"],"warnings":[]},{"id":"8","keyPhrases":["random text"],"warnings":[]},{"id":"9","keyPhrases":["random text"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]},"@nextLink":"https://endpoint/text/analytics/v3.1/analyze/jobs/83f4280c-94e2-45ef-bc23-43640f0a2480?$skip=10&$top=10&showStats=False"}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '198', + '302', 'apim-request-id', - '89e1417a-3350-4ce0-85d9-9a1443553ee8', + '1b996271-2313-45fa-b32f-c9848d79b8e1', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:43 GMT' + 'Fri, 25 Jun 2021 19:42:38 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/0983681f-45ed-4a66-90bb-5a0fa6cb2646') + .get('//text/analytics/v3.1/analyze/jobs/83f4280c-94e2-45ef-bc23-43640f0a2480') .query(true) - .reply(200, {"jobId":"0983681f-45ed-4a66-90bb-5a0fa6cb2646","lastUpdateDateTime":"2021-05-12T19:14:40Z","createdDateTime":"2021-05-12T19:14:32Z","expirationDateTime":"2021-05-13T19:14:32Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:40Z"},"completed":2,"failed":0,"inProgress":0,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-12T19:14:40.9947506Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"10","entities":[],"warnings":[]},{"id":"11","entities":[],"warnings":[]},{"id":"12","entities":[],"warnings":[]},{"id":"13","entities":[],"warnings":[]},{"id":"14","entities":[],"warnings":[]},{"id":"15","entities":[],"warnings":[]},{"id":"16","entities":[],"warnings":[]},{"id":"17","entities":[],"warnings":[]},{"id":"18","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:14:39.4039874Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"10","keyPhrases":["random text"],"warnings":[]},{"id":"11","keyPhrases":["random text"],"warnings":[]},{"id":"12","keyPhrases":["random text"],"warnings":[]},{"id":"13","keyPhrases":["random text"],"warnings":[]},{"id":"14","keyPhrases":["random text"],"warnings":[]},{"id":"15","keyPhrases":["random text"],"warnings":[]},{"id":"16","keyPhrases":["random text"],"warnings":[]},{"id":"17","keyPhrases":["random text"],"warnings":[]},{"id":"18","keyPhrases":["random text"],"warnings":[]},{"id":"19","keyPhrases":["random text"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]},"@nextLink":"https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/0983681f-45ed-4a66-90bb-5a0fa6cb2646?$skip=20&$top=5&showStats=False"}, [ + .reply(200, {"jobId":"83f4280c-94e2-45ef-bc23-43640f0a2480","lastUpdateDateTime":"2021-06-25T19:42:38Z","createdDateTime":"2021-06-25T19:42:17Z","expirationDateTime":"2021-06-26T19:42:17Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":0,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:42:27.3428372Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"10","entities":[],"warnings":[]},{"id":"11","entities":[],"warnings":[]},{"id":"12","entities":[],"warnings":[]},{"id":"13","entities":[],"warnings":[]},{"id":"14","entities":[],"warnings":[]},{"id":"15","entities":[],"warnings":[]},{"id":"16","entities":[],"warnings":[]},{"id":"17","entities":[],"warnings":[]},{"id":"18","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:42:38.0240622Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"10","keyPhrases":["random text"],"warnings":[]},{"id":"11","keyPhrases":["random text"],"warnings":[]},{"id":"12","keyPhrases":["random text"],"warnings":[]},{"id":"13","keyPhrases":["random text"],"warnings":[]},{"id":"14","keyPhrases":["random text"],"warnings":[]},{"id":"15","keyPhrases":["random text"],"warnings":[]},{"id":"16","keyPhrases":["random text"],"warnings":[]},{"id":"17","keyPhrases":["random text"],"warnings":[]},{"id":"18","keyPhrases":["random text"],"warnings":[]},{"id":"19","keyPhrases":["random text"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]},"@nextLink":"https://endpoint/text/analytics/v3.1/analyze/jobs/83f4280c-94e2-45ef-bc23-43640f0a2480?$skip=20&$top=5&showStats=False"}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '248', + '269', 'apim-request-id', - '65925475-8f58-4079-bc03-dfeb7b9610fd', + 'd67f0a48-d03a-413b-9e04-8125e8c5879d', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:44 GMT' + 'Fri, 25 Jun 2021 19:42:39 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/0983681f-45ed-4a66-90bb-5a0fa6cb2646') + .get('//text/analytics/v3.1/analyze/jobs/83f4280c-94e2-45ef-bc23-43640f0a2480') .query(true) - .reply(200, {"jobId":"0983681f-45ed-4a66-90bb-5a0fa6cb2646","lastUpdateDateTime":"2021-05-12T19:14:40Z","createdDateTime":"2021-05-12T19:14:32Z","expirationDateTime":"2021-05-13T19:14:32Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:40Z"},"completed":2,"failed":0,"inProgress":0,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-12T19:14:40.9947506Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"20","entities":[],"warnings":[]},{"id":"21","entities":[],"warnings":[]},{"id":"22","entities":[],"warnings":[]},{"id":"23","entities":[],"warnings":[]},{"id":"24","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":0.95},{"text":"Bill Gates","category":"Person","offset":25,"length":10,"confidenceScore":0.99},{"text":"Paul Allen","category":"Person","offset":40,"length":10,"confidenceScore":0.99}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:14:39.4039874Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"20","keyPhrases":["random text"],"warnings":[]},{"id":"21","keyPhrases":["random text"],"warnings":[]},{"id":"22","keyPhrases":["random text"],"warnings":[]},{"id":"23","keyPhrases":["random text"],"warnings":[]},{"id":"24","keyPhrases":["Bill Gates","Paul Allen","Microsoft"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"83f4280c-94e2-45ef-bc23-43640f0a2480","lastUpdateDateTime":"2021-06-25T19:42:38Z","createdDateTime":"2021-06-25T19:42:17Z","expirationDateTime":"2021-06-26T19:42:17Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":0,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:42:27.3428372Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"20","entities":[],"warnings":[]},{"id":"21","entities":[],"warnings":[]},{"id":"22","entities":[],"warnings":[]},{"id":"23","entities":[],"warnings":[]},{"id":"24","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":25,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":40,"length":10,"confidenceScore":1}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:42:38.0240622Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"20","keyPhrases":["random text"],"warnings":[]},{"id":"21","keyPhrases":["random text"],"warnings":[]},{"id":"22","keyPhrases":["random text"],"warnings":[]},{"id":"23","keyPhrases":["random text"],"warnings":[]},{"id":"24","keyPhrases":["Bill Gates","Paul Allen","Microsoft"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '126', + '179', 'apim-request-id', - 'f0ab20a2-3eb4-4669-b14c-ac97f39c48ea', + 'ce8fdf4c-6162-48c1-adeb-8cccef0a12aa', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:44 GMT' + 'Fri, 25 Jun 2021 19:42:39 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.js index 37c86739c228..8b474d8cfcb8 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "809d8121a5c80a5f3218f36950f86872"; +module.exports.hash = "53edc15aa669bdf8a052f15fbf8840b3"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,30 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6b76e4cf-8f1b-42e6-b365-ca53ce9c7c00', + 'eef39708-1f69-40d0-a797-f250162e0200', 'x-ms-ests-server', - '2.1.11654.25 - NCUS ProdSlices', + '2.1.11829.8 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:14:44 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:42:39 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr1q_GC2opaE5HTP8iTEWx3VmGo03mDSlVDdHeabRlYzTmM0v1TKhwEAs91Pn9ObD2jr_wbR1FRH1BK6u2sTSWwh_4n1ZhULWPcdo1VUeCtWorcY-a2tXAVap9b6YhIGdcRf9_1bQzopSQxHoQdb0bkDyBDee1QFALzvblwJK4G-IgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrT2x1KUd_EkUGv-blZH8CgFmfxrZBt8NlcV2W7lCWpV5-Veh4_rXDMkiiVcHbFOsKeLbJo61lTRZGhufpTTPbbG7g3j_-W6MzxJdidfuGp6Ko4wAc2XFU7Th5UnN5HDr06oIYKuVv37wyUgOFsV5q0LO8NRWUL8coQMdzcQLjeOUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:14:44 GMT', + 'Fri, 25 Jun 2021 19:42:39 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,33 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '428c50f7-d2da-402a-a895-3212e4e75200', + 'b7dd8c02-11f5-499e-bdfc-a9fde5337500', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:14:44 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:42:40 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrpVKYuOaJqdGhDaTKr1JzfyIuOo3QyBdMoJMKjGs14YzSDNThqoKv1FMUFr74V0vDmcQAnJdewL5Ipwd1rLYd_biHC7gndUm-_iWgoVt69kuKnhghOARS_Of8ZoK2NGHXP4V1HojiJfTVarT7ULBdMo2eajL1dQX39ggltqYIvwogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr8HuOU5AiqIf8MTFb3KCH_h5Ztnl3vj5ZBG63Q4b--Q8YBz_l8ZATKrehogYonFFm3lpovBzqIj0XGo7WQU0W8NsGQZpfHqcf-gLN3Csv0-FKrTUo4Q63g9AbjdvWLFi0jIeo5ECUQaKZZJR6buX4YS3cWvnl7QP-9vZsuGxfsOogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:14:44 GMT' + 'Fri, 25 Jun 2021 19:42:39 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=0e2b91e0-73bf-410c-8838-4927411fa01f&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,124 +93,106 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'a94baaa3-2e20-4683-8e1e-ea7a2b91c500', + 'c2c46a2d-caf1-495a-b60f-6d2089d07100', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:14:44 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:42:40 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:14:44 GMT' + 'Fri, 25 Jun 2021 19:42:40 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/analyze', {"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]},"analysisInput":{"documents":[{"id":"1","text":"I will go to the park."},{"id":"2","text":"Este es un document escrito en Español."},{"id":"3","text":"猫は幸せ"}]}}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"1","text":"I will go to the park."},{"id":"2","text":"Este es un document escrito en Español."},{"id":"3","text":"猫は幸せ"}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]}}) .reply(202, "", [ 'Transfer-Encoding', 'chunked', 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/79e31766-023b-4913-a81d-3e915ba7d573', - 'x-envoy-upstream-service-time', - '196', - 'apim-request-id', - 'db2471d0-025b-45fe-8f71-f4c47d7815b3', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:14:44 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/79e31766-023b-4913-a81d-3e915ba7d573') - .query(true) - .reply(200, {"jobId":"79e31766-023b-4913-a81d-3e915ba7d573","lastUpdateDateTime":"2021-05-12T19:14:44Z","createdDateTime":"2021-05-12T19:14:44Z","expirationDateTime":"2021-05-13T19:14:44Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:44Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/93cb8b3d-3602-4d8b-8f07-9c228910d674', 'x-envoy-upstream-service-time', - '6', + '161', 'apim-request-id', - '70a55ae7-15f4-4847-942e-31da9c7ae290', + 'e601247a-92a3-4672-bf34-d903a78e5535', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:44 GMT' + 'Fri, 25 Jun 2021 19:42:39 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/79e31766-023b-4913-a81d-3e915ba7d573') + .get('//text/analytics/v3.1/analyze/jobs/93cb8b3d-3602-4d8b-8f07-9c228910d674') .query(true) - .reply(200, {"jobId":"79e31766-023b-4913-a81d-3e915ba7d573","lastUpdateDateTime":"2021-05-12T19:14:44Z","createdDateTime":"2021-05-12T19:14:44Z","expirationDateTime":"2021-05-13T19:14:44Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:44Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"93cb8b3d-3602-4d8b-8f07-9c228910d674","lastUpdateDateTime":"2021-06-25T19:42:40Z","createdDateTime":"2021-06-25T19:42:40Z","expirationDateTime":"2021-06-26T19:42:40Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '7', + '5', 'apim-request-id', - '86c137de-6990-443f-bb85-004a1480326d', + '585c2ac0-5366-4e75-b5bf-815cd2c68ccb', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:45 GMT' + 'Fri, 25 Jun 2021 19:42:39 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/79e31766-023b-4913-a81d-3e915ba7d573') + .get('//text/analytics/v3.1/analyze/jobs/93cb8b3d-3602-4d8b-8f07-9c228910d674') .query(true) - .reply(200, {"jobId":"79e31766-023b-4913-a81d-3e915ba7d573","lastUpdateDateTime":"2021-05-12T19:14:45Z","createdDateTime":"2021-05-12T19:14:44Z","expirationDateTime":"2021-05-13T19:14:44Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:45Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"93cb8b3d-3602-4d8b-8f07-9c228910d674","lastUpdateDateTime":"2021-06-25T19:42:40Z","createdDateTime":"2021-06-25T19:42:40Z","expirationDateTime":"2021-06-26T19:42:40Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '9', 'apim-request-id', - 'fa248bc6-e0ad-4e37-990e-0e5dd005fb9f', + '4db1ee70-8492-4d5a-a0ac-ba75357b8dd2', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:47 GMT' + 'Fri, 25 Jun 2021 19:42:39 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/79e31766-023b-4913-a81d-3e915ba7d573') + .get('//text/analytics/v3.1/analyze/jobs/93cb8b3d-3602-4d8b-8f07-9c228910d674') .query(true) - .reply(200, {"jobId":"79e31766-023b-4913-a81d-3e915ba7d573","lastUpdateDateTime":"2021-05-12T19:14:45Z","createdDateTime":"2021-05-12T19:14:44Z","expirationDateTime":"2021-05-13T19:14:44Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:45Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"93cb8b3d-3602-4d8b-8f07-9c228910d674","lastUpdateDateTime":"2021-06-25T19:42:40Z","createdDateTime":"2021-06-25T19:42:40Z","expirationDateTime":"2021-06-26T19:42:40Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '7', + '9', 'apim-request-id', - 'c1dd4f11-ec78-4abb-890a-f7eb5590daf8', + 'c9ee8cb6-c67c-486f-91dc-d366311acd58', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:49 GMT' + 'Fri, 25 Jun 2021 19:42:41 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/79e31766-023b-4913-a81d-3e915ba7d573') + .get('//text/analytics/v3.1/analyze/jobs/93cb8b3d-3602-4d8b-8f07-9c228910d674') .query(true) - .reply(200, {"jobId":"79e31766-023b-4913-a81d-3e915ba7d573","lastUpdateDateTime":"2021-05-12T19:14:45Z","createdDateTime":"2021-05-12T19:14:44Z","expirationDateTime":"2021-05-13T19:14:44Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:45Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"93cb8b3d-3602-4d8b-8f07-9c228910d674","lastUpdateDateTime":"2021-06-25T19:42:40Z","createdDateTime":"2021-06-25T19:42:40Z","expirationDateTime":"2021-06-26T19:42:40Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -223,91 +200,71 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '6', 'apim-request-id', - 'fe63ded5-26d2-4cc3-af76-ce37a5b93a75', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:14:51 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/79e31766-023b-4913-a81d-3e915ba7d573') - .query(true) - .reply(200, {"jobId":"79e31766-023b-4913-a81d-3e915ba7d573","lastUpdateDateTime":"2021-05-12T19:14:45Z","createdDateTime":"2021-05-12T19:14:44Z","expirationDateTime":"2021-05-13T19:14:44Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:45Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '4563716d-ecbb-4a60-886b-ea375aa50a09', + 'c159d360-91e0-4810-b3f0-f9b69883a30c', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:52 GMT' + 'Fri, 25 Jun 2021 19:42:43 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/79e31766-023b-4913-a81d-3e915ba7d573') + .get('//text/analytics/v3.1/analyze/jobs/93cb8b3d-3602-4d8b-8f07-9c228910d674') .query(true) - .reply(200, {"jobId":"79e31766-023b-4913-a81d-3e915ba7d573","lastUpdateDateTime":"2021-05-12T19:14:45Z","createdDateTime":"2021-05-12T19:14:44Z","expirationDateTime":"2021-05-13T19:14:44Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:45Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"93cb8b3d-3602-4d8b-8f07-9c228910d674","lastUpdateDateTime":"2021-06-25T19:42:40Z","createdDateTime":"2021-06-25T19:42:40Z","expirationDateTime":"2021-06-26T19:42:40Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '7', + '9', 'apim-request-id', - '57734d01-0753-4a9e-be20-fe57693b245b', + 'd7cecfe1-e926-4868-93f9-df471e19647a', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:54 GMT' + 'Fri, 25 Jun 2021 19:42:45 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/79e31766-023b-4913-a81d-3e915ba7d573') + .get('//text/analytics/v3.1/analyze/jobs/93cb8b3d-3602-4d8b-8f07-9c228910d674') .query(true) - .reply(200, {"jobId":"79e31766-023b-4913-a81d-3e915ba7d573","lastUpdateDateTime":"2021-05-12T19:14:57Z","createdDateTime":"2021-05-12T19:14:44Z","expirationDateTime":"2021-05-13T19:14:44Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:57Z"},"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:14:57.0461665Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + .reply(200, {"jobId":"93cb8b3d-3602-4d8b-8f07-9c228910d674","lastUpdateDateTime":"2021-06-25T19:42:47Z","createdDateTime":"2021-06-25T19:42:40Z","expirationDateTime":"2021-06-26T19:42:40Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:42:47.0028225Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '53', + '60', 'apim-request-id', - 'a72004dd-23c2-456f-beaf-c2ae402c1b6d', + '10a2c887-41a5-4bae-a45e-bdd0e477468f', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:56 GMT' + 'Fri, 25 Jun 2021 19:42:48 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/79e31766-023b-4913-a81d-3e915ba7d573') + .get('//text/analytics/v3.1/analyze/jobs/93cb8b3d-3602-4d8b-8f07-9c228910d674') .query(true) - .reply(200, {"jobId":"79e31766-023b-4913-a81d-3e915ba7d573","lastUpdateDateTime":"2021-05-12T19:14:57Z","createdDateTime":"2021-05-12T19:14:44Z","expirationDateTime":"2021-05-13T19:14:44Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:57Z"},"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:14:57.0461665Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + .reply(200, {"jobId":"93cb8b3d-3602-4d8b-8f07-9c228910d674","lastUpdateDateTime":"2021-06-25T19:42:47Z","createdDateTime":"2021-06-25T19:42:40Z","expirationDateTime":"2021-06-26T19:42:40Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:42:47.0028225Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '48', + '61', 'apim-request-id', - '57750a60-38ea-43fa-8030-a53dc653e0a4', + '1a8de470-7564-43aa-8d81-5696a88f5477', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:57 GMT' + 'Fri, 25 Jun 2021 19:42:48 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.js index 045249dd9acd..98d2249f25e5 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "32ece8444cc8213472eaf1790731a0c5"; +module.exports.hash = "ce1022e89d106988559f82afe6baea1e"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,26 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'ec0d39df-a7ae-4247-b603-3945f211c800', + '10a9270c-12b3-4982-a090-aec6080ec300', 'x-ms-ests-server', - '2.1.11654.25 - NCUS ProdSlices', + '2.1.11829.8 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:09:49 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:37:14 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrNru6UlMvDLXnr96QA0Ru-QIEbtw5BVmY4P9F8btF2iETUBiBqR4uPkZx0h0JiYd-L0lvz5YZsWDtaOXGFbN8Aor21T6aKZGb7dS6SDBUNSquNUr4VPV_8X3PfyU8pJDzD7rKPkHMYRWmwubFa33N6af1nCealtTFYSm1lKzUCoEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr60tq9nmss264f6A1YuAQzGk0NjIbXp-MZZpnYyJrbTvl4sPe3t94aqf-7tZVUpyYMpbmedEaGdmCEwdyXd1fSIviGDOcQro_TP8VvRxrU9njkw2QT6bFEG2e6y4cqsPfAla8LMhhBAS0GDY1QnZyXhQqPqyVf5PYn9p0hwWSU4AgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:09:48 GMT', + 'Fri, 25 Jun 2021 19:37:13 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,28 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '29a193e4-4207-4b4e-982a-fd821e9d5e00', + 'b7dd8c02-11f5-499e-bdfc-a9fd32f37400', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:09:49 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:37:14 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr1jt-2FEusCsNHigyJV6tZyfjhd5dc6Xlu_2JHEd3VsmYR1BWxya9z6T-pRK16ngjRFTdGv1OUYlK4c6SgJJhZDIINxuVqRNr5Ywn51INfqBfSW16RI8BfnV0GWY-JzVwKJjHAZSXDyBhDuwxLoVgM5pYUqoAxM9ZxZKSy0R3-AQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrS0eyHpQnQDz4TsEOlAkxoXRd-585Zh9_9ZrXBn2l4rWO6aAXs9XzOKqx_RRhHcdanhfF7yfieKW5ZLtQWTaUDMhj5akiRC1IJB_LXzA2DGAGLUb1ikV7W5Ve7Fi5wnCMleVjWWFBWHgAsQkYtB6Y0KQawtkF70cOHPuVfhcjfn8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:09:48 GMT', + 'Fri, 25 Jun 2021 19:37:13 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=5d0f83f0-2c14-4618-8ada-99e7beb9ffad&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,66 +93,66 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '85f09191-d1fd-4fd7-9a80-0d91bfa66200', + '97388d79-6103-488d-a26f-595cc0ba7300', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:09:49 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:37:14 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:09:49 GMT', + 'Fri, 25 Jun 2021 19:37:13 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/analyze', {"tasks":{"entityLinkingTasks":[{"parameters":{"stringIndexType":"Utf16CodeUnit"}}]},"analysisInput":{"documents":[{"id":"0","text":"Microsoft moved its headquarters to Bellevue, Washington in January 1979.","language":"en"},{"id":"1","text":"Steve Ballmer stepped down as CEO of Microsoft and was succeeded by Satya Nadella.","language":"en"}]}}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"0","text":"Microsoft moved its headquarters to Bellevue, Washington in January 1979.","language":"en"},{"id":"1","text":"Steve Ballmer stepped down as CEO of Microsoft and was succeeded by Satya Nadella.","language":"en"}]},"tasks":{"entityLinkingTasks":[{"parameters":{"stringIndexType":"Utf16CodeUnit"}}]}}) .reply(202, "", [ 'Transfer-Encoding', 'chunked', 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/d5d0eb1a-62dc-4546-b8f0-f30e34c67890', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/b8e48c6f-fd80-4bd6-acb7-1fa8e5287ef2', 'x-envoy-upstream-service-time', - '99', + '163', 'apim-request-id', - '915baec2-92fa-4661-b3d5-2055467c3dc5', + 'ff19067f-cdda-4d31-a70c-6106df9c27f5', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:48 GMT' + 'Fri, 25 Jun 2021 19:37:14 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d5d0eb1a-62dc-4546-b8f0-f30e34c67890') + .get('//text/analytics/v3.1/analyze/jobs/b8e48c6f-fd80-4bd6-acb7-1fa8e5287ef2') .query(true) - .reply(200, {"jobId":"d5d0eb1a-62dc-4546-b8f0-f30e34c67890","lastUpdateDateTime":"2021-05-12T19:09:49Z","createdDateTime":"2021-05-12T19:09:49Z","expirationDateTime":"2021-05-13T19:09:49Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:09:49Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"b8e48c6f-fd80-4bd6-acb7-1fa8e5287ef2","lastUpdateDateTime":"2021-06-25T19:37:14Z","createdDateTime":"2021-06-25T19:37:14Z","expirationDateTime":"2021-06-26T19:37:14Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '8', + '7', 'apim-request-id', - 'b474ae77-7b71-46db-ba29-26a7217de464', + '65a8147f-8db1-484d-9880-f62b2abb6509', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:48 GMT' + 'Fri, 25 Jun 2021 19:37:14 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d5d0eb1a-62dc-4546-b8f0-f30e34c67890') + .get('//text/analytics/v3.1/analyze/jobs/b8e48c6f-fd80-4bd6-acb7-1fa8e5287ef2') .query(true) - .reply(200, {"jobId":"d5d0eb1a-62dc-4546-b8f0-f30e34c67890","lastUpdateDateTime":"2021-05-12T19:09:49Z","createdDateTime":"2021-05-12T19:09:49Z","expirationDateTime":"2021-05-13T19:09:49Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:09:49Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"b8e48c6f-fd80-4bd6-acb7-1fa8e5287ef2","lastUpdateDateTime":"2021-06-25T19:37:14Z","createdDateTime":"2021-06-25T19:37:14Z","expirationDateTime":"2021-06-26T19:37:14Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -163,71 +160,71 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - '7e976ccc-1c23-4ba9-be6a-354ee7ca3e45', + 'b317e4cd-c82a-497d-ab47-41d676c79aa9', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:48 GMT' + 'Fri, 25 Jun 2021 19:37:15 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d5d0eb1a-62dc-4546-b8f0-f30e34c67890') + .get('//text/analytics/v3.1/analyze/jobs/b8e48c6f-fd80-4bd6-acb7-1fa8e5287ef2') .query(true) - .reply(200, {"jobId":"d5d0eb1a-62dc-4546-b8f0-f30e34c67890","lastUpdateDateTime":"2021-05-12T19:09:50Z","createdDateTime":"2021-05-12T19:09:49Z","expirationDateTime":"2021-05-13T19:09:49Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:09:50Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"b8e48c6f-fd80-4bd6-acb7-1fa8e5287ef2","lastUpdateDateTime":"2021-06-25T19:37:16Z","createdDateTime":"2021-06-25T19:37:14Z","expirationDateTime":"2021-06-26T19:37:14Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '9', + '7', 'apim-request-id', - '413b7573-7c5b-453e-9492-a38cc3c650b4', + '2e0af1a4-181a-418a-ad7c-88990f0c20ce', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:52 GMT' + 'Fri, 25 Jun 2021 19:37:17 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d5d0eb1a-62dc-4546-b8f0-f30e34c67890') + .get('//text/analytics/v3.1/analyze/jobs/b8e48c6f-fd80-4bd6-acb7-1fa8e5287ef2') .query(true) - .reply(200, {"jobId":"d5d0eb1a-62dc-4546-b8f0-f30e34c67890","lastUpdateDateTime":"2021-05-12T19:09:53Z","createdDateTime":"2021-05-12T19:09:49Z","expirationDateTime":"2021-05-13T19:09:49Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:09:53Z"},"completed":1,"failed":0,"inProgress":0,"total":1,"entityLinkingTasks":[{"lastUpdateDateTime":"2021-05-12T19:09:53.1276855Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"0","entities":[{"name":"Bellevue, Washington","matches":[{"text":"Bellevue, Washington","offset":36,"length":20,"confidenceScore":0.87}],"language":"en","id":"Bellevue, Washington","url":"https://en.wikipedia.org/wiki/Bellevue,_Washington","dataSource":"Wikipedia"},{"name":"Microsoft","matches":[{"text":"Microsoft","offset":0,"length":9,"confidenceScore":0.39}],"language":"en","id":"Microsoft","url":"https://en.wikipedia.org/wiki/Microsoft","dataSource":"Wikipedia"},{"name":"Briann January","matches":[{"text":"January","offset":60,"length":7,"confidenceScore":0.14}],"language":"en","id":"Briann January","url":"https://en.wikipedia.org/wiki/Briann_January","dataSource":"Wikipedia"}],"warnings":[]},{"id":"1","entities":[{"name":"Steve Ballmer","matches":[{"text":"Steve Ballmer","offset":0,"length":13,"confidenceScore":0.92}],"language":"en","id":"Steve Ballmer","url":"https://en.wikipedia.org/wiki/Steve_Ballmer","dataSource":"Wikipedia"},{"name":"Satya Nadella","matches":[{"text":"Satya Nadella","offset":68,"length":13,"confidenceScore":0.9}],"language":"en","id":"Satya Nadella","url":"https://en.wikipedia.org/wiki/Satya_Nadella","dataSource":"Wikipedia"},{"name":"Microsoft","matches":[{"text":"Microsoft","offset":37,"length":9,"confidenceScore":0.36}],"language":"en","id":"Microsoft","url":"https://en.wikipedia.org/wiki/Microsoft","dataSource":"Wikipedia"},{"name":"Chief executive officer","matches":[{"text":"CEO","offset":30,"length":3,"confidenceScore":0.25}],"language":"en","id":"Chief executive officer","url":"https://en.wikipedia.org/wiki/Chief_executive_officer","dataSource":"Wikipedia"}],"warnings":[]}],"errors":[],"modelVersion":"2020-02-01"}}]}}, [ + .reply(200, {"jobId":"b8e48c6f-fd80-4bd6-acb7-1fa8e5287ef2","lastUpdateDateTime":"2021-06-25T19:37:17Z","createdDateTime":"2021-06-25T19:37:14Z","expirationDateTime":"2021-06-26T19:37:14Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityLinkingTasks":[{"lastUpdateDateTime":"2021-06-25T19:37:17.4681781Z","taskName":"EntityLinking_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[{"name":"Bellevue, Washington","matches":[{"text":"Bellevue, Washington","offset":36,"length":20,"confidenceScore":0.87}],"language":"en","id":"Bellevue, Washington","url":"https://en.wikipedia.org/wiki/Bellevue,_Washington","dataSource":"Wikipedia"},{"name":"Microsoft","matches":[{"text":"Microsoft","offset":0,"length":9,"confidenceScore":0.39}],"language":"en","id":"Microsoft","url":"https://en.wikipedia.org/wiki/Microsoft","dataSource":"Wikipedia"},{"name":"Briann January","matches":[{"text":"January","offset":60,"length":7,"confidenceScore":0.14}],"language":"en","id":"Briann January","url":"https://en.wikipedia.org/wiki/Briann_January","dataSource":"Wikipedia"}],"warnings":[]},{"id":"1","entities":[{"name":"Steve Ballmer","matches":[{"text":"Steve Ballmer","offset":0,"length":13,"confidenceScore":0.92}],"language":"en","id":"Steve Ballmer","url":"https://en.wikipedia.org/wiki/Steve_Ballmer","dataSource":"Wikipedia"},{"name":"Satya Nadella","matches":[{"text":"Satya Nadella","offset":68,"length":13,"confidenceScore":0.9}],"language":"en","id":"Satya Nadella","url":"https://en.wikipedia.org/wiki/Satya_Nadella","dataSource":"Wikipedia"},{"name":"Microsoft","matches":[{"text":"Microsoft","offset":37,"length":9,"confidenceScore":0.36}],"language":"en","id":"Microsoft","url":"https://en.wikipedia.org/wiki/Microsoft","dataSource":"Wikipedia"},{"name":"Chief executive officer","matches":[{"text":"CEO","offset":30,"length":3,"confidenceScore":0.25}],"language":"en","id":"Chief executive officer","url":"https://en.wikipedia.org/wiki/Chief_executive_officer","dataSource":"Wikipedia"}],"warnings":[]}],"errors":[],"modelVersion":"2020-02-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '42', + '77', 'apim-request-id', - '6ebafeee-9510-4379-98be-d040e40039cd', + 'aefddef3-28d4-4199-ac4e-57d359fdf9d7', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:54 GMT' + 'Fri, 25 Jun 2021 19:37:19 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d5d0eb1a-62dc-4546-b8f0-f30e34c67890') + .get('//text/analytics/v3.1/analyze/jobs/b8e48c6f-fd80-4bd6-acb7-1fa8e5287ef2') .query(true) - .reply(200, {"jobId":"d5d0eb1a-62dc-4546-b8f0-f30e34c67890","lastUpdateDateTime":"2021-05-12T19:09:53Z","createdDateTime":"2021-05-12T19:09:49Z","expirationDateTime":"2021-05-13T19:09:49Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:09:53Z"},"completed":1,"failed":0,"inProgress":0,"total":1,"entityLinkingTasks":[{"lastUpdateDateTime":"2021-05-12T19:09:53.1276855Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"0","entities":[{"name":"Bellevue, Washington","matches":[{"text":"Bellevue, Washington","offset":36,"length":20,"confidenceScore":0.87}],"language":"en","id":"Bellevue, Washington","url":"https://en.wikipedia.org/wiki/Bellevue,_Washington","dataSource":"Wikipedia"},{"name":"Microsoft","matches":[{"text":"Microsoft","offset":0,"length":9,"confidenceScore":0.39}],"language":"en","id":"Microsoft","url":"https://en.wikipedia.org/wiki/Microsoft","dataSource":"Wikipedia"},{"name":"Briann January","matches":[{"text":"January","offset":60,"length":7,"confidenceScore":0.14}],"language":"en","id":"Briann January","url":"https://en.wikipedia.org/wiki/Briann_January","dataSource":"Wikipedia"}],"warnings":[]},{"id":"1","entities":[{"name":"Steve Ballmer","matches":[{"text":"Steve Ballmer","offset":0,"length":13,"confidenceScore":0.92}],"language":"en","id":"Steve Ballmer","url":"https://en.wikipedia.org/wiki/Steve_Ballmer","dataSource":"Wikipedia"},{"name":"Satya Nadella","matches":[{"text":"Satya Nadella","offset":68,"length":13,"confidenceScore":0.9}],"language":"en","id":"Satya Nadella","url":"https://en.wikipedia.org/wiki/Satya_Nadella","dataSource":"Wikipedia"},{"name":"Microsoft","matches":[{"text":"Microsoft","offset":37,"length":9,"confidenceScore":0.36}],"language":"en","id":"Microsoft","url":"https://en.wikipedia.org/wiki/Microsoft","dataSource":"Wikipedia"},{"name":"Chief executive officer","matches":[{"text":"CEO","offset":30,"length":3,"confidenceScore":0.25}],"language":"en","id":"Chief executive officer","url":"https://en.wikipedia.org/wiki/Chief_executive_officer","dataSource":"Wikipedia"}],"warnings":[]}],"errors":[],"modelVersion":"2020-02-01"}}]}}, [ + .reply(200, {"jobId":"b8e48c6f-fd80-4bd6-acb7-1fa8e5287ef2","lastUpdateDateTime":"2021-06-25T19:37:17Z","createdDateTime":"2021-06-25T19:37:14Z","expirationDateTime":"2021-06-26T19:37:14Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityLinkingTasks":[{"lastUpdateDateTime":"2021-06-25T19:37:17.4681781Z","taskName":"EntityLinking_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[{"name":"Bellevue, Washington","matches":[{"text":"Bellevue, Washington","offset":36,"length":20,"confidenceScore":0.87}],"language":"en","id":"Bellevue, Washington","url":"https://en.wikipedia.org/wiki/Bellevue,_Washington","dataSource":"Wikipedia"},{"name":"Microsoft","matches":[{"text":"Microsoft","offset":0,"length":9,"confidenceScore":0.39}],"language":"en","id":"Microsoft","url":"https://en.wikipedia.org/wiki/Microsoft","dataSource":"Wikipedia"},{"name":"Briann January","matches":[{"text":"January","offset":60,"length":7,"confidenceScore":0.14}],"language":"en","id":"Briann January","url":"https://en.wikipedia.org/wiki/Briann_January","dataSource":"Wikipedia"}],"warnings":[]},{"id":"1","entities":[{"name":"Steve Ballmer","matches":[{"text":"Steve Ballmer","offset":0,"length":13,"confidenceScore":0.92}],"language":"en","id":"Steve Ballmer","url":"https://en.wikipedia.org/wiki/Steve_Ballmer","dataSource":"Wikipedia"},{"name":"Satya Nadella","matches":[{"text":"Satya Nadella","offset":68,"length":13,"confidenceScore":0.9}],"language":"en","id":"Satya Nadella","url":"https://en.wikipedia.org/wiki/Satya_Nadella","dataSource":"Wikipedia"},{"name":"Microsoft","matches":[{"text":"Microsoft","offset":37,"length":9,"confidenceScore":0.36}],"language":"en","id":"Microsoft","url":"https://en.wikipedia.org/wiki/Microsoft","dataSource":"Wikipedia"},{"name":"Chief executive officer","matches":[{"text":"CEO","offset":30,"length":3,"confidenceScore":0.25}],"language":"en","id":"Chief executive officer","url":"https://en.wikipedia.org/wiki/Chief_executive_officer","dataSource":"Wikipedia"}],"warnings":[]}],"errors":[],"modelVersion":"2020-02-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '35', + '65', 'apim-request-id', - '873d4e81-b035-4789-93fa-f4b2b58cec4e', + '133d645e-e378-4ee5-8ff4-78359c68da1b', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:54 GMT' + 'Fri, 25 Jun 2021 19:37:19 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.js index 2ca84c82bbb0..56b520f14aae 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "e9d7a25b93de2198b9d6563ffeb67959"; +module.exports.hash = "d3883c1b02faf3494e22c243c4aaf823"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,30 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '27966f30-19c4-47e0-97a8-e8b817090101', + '143dfa32-6537-4dd4-a6ab-8861b18b0100', 'x-ms-ests-server', - '2.1.11654.25 - WUS2 ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:09:19 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:36:42 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr_nfGiFJ5JuA2F3B6AZ4v4RsnPU85A6UBr1Eeh9rZMcV4Qgesy1Fk1vTj4YIruSMnWDZN0Lid71NSU-etHvTpmqouastC5Wo1rrb58mqyppHjsOvzCXhHckRWgDaTLIUyBOMo-iP7PdEq0LTeVv6pkTn7t3EPWDRv8CCpYJGCG90gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrxei30CjUoZx7SLAqmOmqafHZaTsh-lAarU9CIulgFvKTZjOSgU9zHtmOJkhLlwyuNFMEvJ6VkPRpsLPfG1UeeFc9LTE7KNMz3-KG4HYxVtnQoPE2DA2-F8S5YsknZYgO8sZ_xILXIswA7kSjevJ--9id1v-FSuNk-Xkl9HW7Qz0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:09:19 GMT', + 'Fri, 25 Jun 2021 19:36:41 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,33 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '2ea6dec1-bb0d-4e0c-baa2-1bf4893a5a00', + '60255122-4f99-4912-bd79-4b9190846000', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:09:19 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:36:42 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrVwg0RIWYcLvCJ-8F_MFT4Iwyhqept7IlZ01l73DMnPSGkcIJfroQZwW0-MStAnZLieji_kJS_v2VmbH9HqngKuiffdkpK2aZavvkWsnlqur3YYPCJmm0KuRYJZxIpoghA2fXjVeYSd7MmnIxrAE7xWrkgQGsOyqAeYi7rQCGDCQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrQ44Vjd0f-ycSZVrJ59MZ9oW2DFacuYimv770raeh_wFCvS0X8wRmFTD0xg7OpX9-zoUD0SwP8Nj5MFsZGLZc0qh5cYRxS7Cl33wR6eItJEgQwRvJLMt8RPK9ZVWMniYwsE-RueUmzFJbuDAwcof2qqVA1NtatuVZNU6kKSfhc6EgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:09:19 GMT' + 'Fri, 25 Jun 2021 19:36:41 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=47fca80a-a995-41e7-8d52-25bb44b6e0fe&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,44 +93,66 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'effc2a94-f558-4e23-9dd5-8d2b2b0c6100', + '97388d79-6103-488d-a26f-595cd5b37300', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:09:19 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:36:42 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:09:19 GMT' + 'Fri, 25 Jun 2021 19:36:41 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/analyze', {"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]},"analysisInput":{"documents":[{"id":"1","text":"Microsoft was founded by Bill Gates and Paul Allen on April 4, 1975.","language":"en"},{"id":"2","text":"Microsoft fue fundado por Bill Gates y Paul Allen el 4 de abril de 1975.","language":"es"},{"id":"3","text":"Microsoft wurde am 4. April 1975 von Bill Gates und Paul Allen gegründet.","language":"de"}]}}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"1","text":"Microsoft was founded by Bill Gates and Paul Allen on April 4, 1975.","language":"en"},{"id":"2","text":"Microsoft fue fundado por Bill Gates y Paul Allen el 4 de abril de 1975.","language":"es"},{"id":"3","text":"Microsoft wurde am 4. April 1975 von Bill Gates und Paul Allen gegründet.","language":"de"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]}}) .reply(202, "", [ 'Transfer-Encoding', 'chunked', 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/626267cb-f400-4251-9f2b-1648390fb3e5', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/39bfe474-367c-4013-89c5-826e54a9a612', + 'x-envoy-upstream-service-time', + '324', + 'apim-request-id', + '81f82fde-f3cf-4df3-830d-85977b255b5f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:36:41 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/39bfe474-367c-4013-89c5-826e54a9a612') + .query(true) + .reply(200, {"jobId":"39bfe474-367c-4013-89c5-826e54a9a612","lastUpdateDateTime":"2021-06-25T19:36:42Z","createdDateTime":"2021-06-25T19:36:42Z","expirationDateTime":"2021-06-26T19:36:42Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '96', + '7', 'apim-request-id', - 'eca4fcff-086e-4bc0-a8a6-e2b3db67273a', + '72322ce8-9225-42d0-b741-2a1fec69436f', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:19 GMT' + 'Fri, 25 Jun 2021 19:36:41 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/626267cb-f400-4251-9f2b-1648390fb3e5') + .get('//text/analytics/v3.1/analyze/jobs/39bfe474-367c-4013-89c5-826e54a9a612') .query(true) - .reply(200, {"jobId":"626267cb-f400-4251-9f2b-1648390fb3e5","lastUpdateDateTime":"2021-05-12T19:09:20Z","createdDateTime":"2021-05-12T19:09:20Z","expirationDateTime":"2021-05-13T19:09:20Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:09:20Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"39bfe474-367c-4013-89c5-826e54a9a612","lastUpdateDateTime":"2021-06-25T19:36:42Z","createdDateTime":"2021-06-25T19:36:42Z","expirationDateTime":"2021-06-26T19:36:42Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -143,39 +160,39 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '6', 'apim-request-id', - '8d87d3d3-56b2-4665-a86b-890cf4a45f1c', + '667d5c60-aa26-4991-ac27-b569702a0cac', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:19 GMT' + 'Fri, 25 Jun 2021 19:36:42 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/626267cb-f400-4251-9f2b-1648390fb3e5') + .get('//text/analytics/v3.1/analyze/jobs/39bfe474-367c-4013-89c5-826e54a9a612') .query(true) - .reply(200, {"jobId":"626267cb-f400-4251-9f2b-1648390fb3e5","lastUpdateDateTime":"2021-05-12T19:09:20Z","createdDateTime":"2021-05-12T19:09:20Z","expirationDateTime":"2021-05-13T19:09:20Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:09:20Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"39bfe474-367c-4013-89c5-826e54a9a612","lastUpdateDateTime":"2021-06-25T19:36:44Z","createdDateTime":"2021-06-25T19:36:42Z","expirationDateTime":"2021-06-26T19:36:42Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '7', + '17', 'apim-request-id', - 'f1bc984f-c33f-4fb4-968b-9396e10cd339', + '892898fc-1cb1-433a-b192-6e3b6fd679d3', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:19 GMT' + 'Fri, 25 Jun 2021 19:36:45 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/626267cb-f400-4251-9f2b-1648390fb3e5') + .get('//text/analytics/v3.1/analyze/jobs/39bfe474-367c-4013-89c5-826e54a9a612') .query(true) - .reply(200, {"jobId":"626267cb-f400-4251-9f2b-1648390fb3e5","lastUpdateDateTime":"2021-05-12T19:09:20Z","createdDateTime":"2021-05-12T19:09:20Z","expirationDateTime":"2021-05-13T19:09:20Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:09:20Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"39bfe474-367c-4013-89c5-826e54a9a612","lastUpdateDateTime":"2021-06-25T19:36:44Z","createdDateTime":"2021-06-25T19:36:42Z","expirationDateTime":"2021-06-26T19:36:42Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -183,39 +200,39 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '6', 'apim-request-id', - '894b4a80-7588-4e6e-9c2c-7e74bc5a638e', + 'db858c33-9f29-43e3-903a-366c9cd040e2', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:21 GMT' + 'Fri, 25 Jun 2021 19:36:47 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/626267cb-f400-4251-9f2b-1648390fb3e5') + .get('//text/analytics/v3.1/analyze/jobs/39bfe474-367c-4013-89c5-826e54a9a612') .query(true) - .reply(200, {"jobId":"626267cb-f400-4251-9f2b-1648390fb3e5","lastUpdateDateTime":"2021-05-12T19:09:20Z","createdDateTime":"2021-05-12T19:09:20Z","expirationDateTime":"2021-05-13T19:09:20Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:09:20Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"39bfe474-367c-4013-89c5-826e54a9a612","lastUpdateDateTime":"2021-06-25T19:36:44Z","createdDateTime":"2021-06-25T19:36:42Z","expirationDateTime":"2021-06-26T19:36:42Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '8', + '7', 'apim-request-id', - '6d977a6b-c794-4585-9ebf-0eb1cb9c7eb2', + '62e525c3-29ad-421f-80c7-afda63d1edb3', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:23 GMT' + 'Fri, 25 Jun 2021 19:36:49 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/626267cb-f400-4251-9f2b-1648390fb3e5') + .get('//text/analytics/v3.1/analyze/jobs/39bfe474-367c-4013-89c5-826e54a9a612') .query(true) - .reply(200, {"jobId":"626267cb-f400-4251-9f2b-1648390fb3e5","lastUpdateDateTime":"2021-05-12T19:09:20Z","createdDateTime":"2021-05-12T19:09:20Z","expirationDateTime":"2021-05-13T19:09:20Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:09:20Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"39bfe474-367c-4013-89c5-826e54a9a612","lastUpdateDateTime":"2021-06-25T19:36:44Z","createdDateTime":"2021-06-25T19:36:42Z","expirationDateTime":"2021-06-26T19:36:42Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -223,59 +240,59 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '6', 'apim-request-id', - '35353662-608a-45de-b9e5-57677a465a4b', + '7efaf98c-4e44-482d-865f-16713c91642a', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:25 GMT' + 'Fri, 25 Jun 2021 19:36:51 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/626267cb-f400-4251-9f2b-1648390fb3e5') + .get('//text/analytics/v3.1/analyze/jobs/39bfe474-367c-4013-89c5-826e54a9a612') .query(true) - .reply(200, {"jobId":"626267cb-f400-4251-9f2b-1648390fb3e5","lastUpdateDateTime":"2021-05-12T19:09:20Z","createdDateTime":"2021-05-12T19:09:20Z","expirationDateTime":"2021-05-13T19:09:20Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:09:20Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"39bfe474-367c-4013-89c5-826e54a9a612","lastUpdateDateTime":"2021-06-25T19:36:44Z","createdDateTime":"2021-06-25T19:36:42Z","expirationDateTime":"2021-06-26T19:36:42Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '7', + '9', 'apim-request-id', - '2a66ce89-38f5-4c72-a8a7-026f1af9eaed', + 'ec58c36a-8719-45eb-b1ae-2828e6419402', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:27 GMT' + 'Fri, 25 Jun 2021 19:36:53 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/626267cb-f400-4251-9f2b-1648390fb3e5') + .get('//text/analytics/v3.1/analyze/jobs/39bfe474-367c-4013-89c5-826e54a9a612') .query(true) - .reply(200, {"jobId":"626267cb-f400-4251-9f2b-1648390fb3e5","lastUpdateDateTime":"2021-05-12T19:09:20Z","createdDateTime":"2021-05-12T19:09:20Z","expirationDateTime":"2021-05-13T19:09:20Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:09:20Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"39bfe474-367c-4013-89c5-826e54a9a612","lastUpdateDateTime":"2021-06-25T19:36:44Z","createdDateTime":"2021-06-25T19:36:42Z","expirationDateTime":"2021-06-26T19:36:42Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '7', 'apim-request-id', - '923b84a7-6a16-43d4-9384-e64c160e8fc6', + 'e2216aed-bd39-4f41-9207-068b824ef343', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:29 GMT' + 'Fri, 25 Jun 2021 19:36:54 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/626267cb-f400-4251-9f2b-1648390fb3e5') + .get('//text/analytics/v3.1/analyze/jobs/39bfe474-367c-4013-89c5-826e54a9a612') .query(true) - .reply(200, {"jobId":"626267cb-f400-4251-9f2b-1648390fb3e5","lastUpdateDateTime":"2021-05-12T19:09:20Z","createdDateTime":"2021-05-12T19:09:20Z","expirationDateTime":"2021-05-13T19:09:20Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:09:20Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"39bfe474-367c-4013-89c5-826e54a9a612","lastUpdateDateTime":"2021-06-25T19:36:44Z","createdDateTime":"2021-06-25T19:36:42Z","expirationDateTime":"2021-06-26T19:36:42Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -283,19 +300,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '8', 'apim-request-id', - '190ce0fd-23c9-4c1c-a75b-f9aaad73986c', + 'ba69e88e-7e7a-4141-b399-65f41bddabde', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:31 GMT' + 'Fri, 25 Jun 2021 19:36:56 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/626267cb-f400-4251-9f2b-1648390fb3e5') + .get('//text/analytics/v3.1/analyze/jobs/39bfe474-367c-4013-89c5-826e54a9a612') .query(true) - .reply(200, {"jobId":"626267cb-f400-4251-9f2b-1648390fb3e5","lastUpdateDateTime":"2021-05-12T19:09:20Z","createdDateTime":"2021-05-12T19:09:20Z","expirationDateTime":"2021-05-13T19:09:20Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:09:20Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"39bfe474-367c-4013-89c5-826e54a9a612","lastUpdateDateTime":"2021-06-25T19:36:44Z","createdDateTime":"2021-06-25T19:36:42Z","expirationDateTime":"2021-06-26T19:36:42Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -303,19 +320,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - '33a00aab-20e9-43b9-a56c-9504a2ec5d59', + '5d08ef79-3103-4c80-b9d2-b0d3e0891d44', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:33 GMT' + 'Fri, 25 Jun 2021 19:36:58 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/626267cb-f400-4251-9f2b-1648390fb3e5') + .get('//text/analytics/v3.1/analyze/jobs/39bfe474-367c-4013-89c5-826e54a9a612') .query(true) - .reply(200, {"jobId":"626267cb-f400-4251-9f2b-1648390fb3e5","lastUpdateDateTime":"2021-05-12T19:09:20Z","createdDateTime":"2021-05-12T19:09:20Z","expirationDateTime":"2021-05-13T19:09:20Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:09:20Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"39bfe474-367c-4013-89c5-826e54a9a612","lastUpdateDateTime":"2021-06-25T19:36:44Z","createdDateTime":"2021-06-25T19:36:42Z","expirationDateTime":"2021-06-26T19:36:42Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -323,19 +340,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - '518619ad-1777-4eee-b3ce-e7d1762cb4a3', + '5ff3f629-a7c1-4cbc-a6c2-7c74d09c5846', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:35 GMT' + 'Fri, 25 Jun 2021 19:37:00 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/626267cb-f400-4251-9f2b-1648390fb3e5') + .get('//text/analytics/v3.1/analyze/jobs/39bfe474-367c-4013-89c5-826e54a9a612') .query(true) - .reply(200, {"jobId":"626267cb-f400-4251-9f2b-1648390fb3e5","lastUpdateDateTime":"2021-05-12T19:09:20Z","createdDateTime":"2021-05-12T19:09:20Z","expirationDateTime":"2021-05-13T19:09:20Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:09:20Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"39bfe474-367c-4013-89c5-826e54a9a612","lastUpdateDateTime":"2021-06-25T19:36:44Z","createdDateTime":"2021-06-25T19:36:42Z","expirationDateTime":"2021-06-26T19:36:42Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -343,59 +360,59 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - 'aae562aa-314e-47db-b26b-a337214ae76c', + 'e8ce1fc4-898f-4079-a6f9-5de164598900', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:37 GMT' + 'Fri, 25 Jun 2021 19:37:03 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/626267cb-f400-4251-9f2b-1648390fb3e5') + .get('//text/analytics/v3.1/analyze/jobs/39bfe474-367c-4013-89c5-826e54a9a612') .query(true) - .reply(200, {"jobId":"626267cb-f400-4251-9f2b-1648390fb3e5","lastUpdateDateTime":"2021-05-12T19:09:20Z","createdDateTime":"2021-05-12T19:09:20Z","expirationDateTime":"2021-05-13T19:09:20Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:09:20Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"39bfe474-367c-4013-89c5-826e54a9a612","lastUpdateDateTime":"2021-06-25T19:36:44Z","createdDateTime":"2021-06-25T19:36:42Z","expirationDateTime":"2021-06-26T19:36:42Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '10', + '9', 'apim-request-id', - '68973cf7-f5f4-4fdc-8e5f-dad204a1c007', + '51b3e8a5-ee12-44fe-8516-2e9d5cd44559', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:40 GMT' + 'Fri, 25 Jun 2021 19:37:05 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/626267cb-f400-4251-9f2b-1648390fb3e5') + .get('//text/analytics/v3.1/analyze/jobs/39bfe474-367c-4013-89c5-826e54a9a612') .query(true) - .reply(200, {"jobId":"626267cb-f400-4251-9f2b-1648390fb3e5","lastUpdateDateTime":"2021-05-12T19:09:20Z","createdDateTime":"2021-05-12T19:09:20Z","expirationDateTime":"2021-05-13T19:09:20Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:09:20Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"39bfe474-367c-4013-89c5-826e54a9a612","lastUpdateDateTime":"2021-06-25T19:36:44Z","createdDateTime":"2021-06-25T19:36:42Z","expirationDateTime":"2021-06-26T19:36:42Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '7', + '6', 'apim-request-id', - '7df298e6-794a-4bbd-868c-8b755cbccd24', + '68677ad9-42d8-4074-83c9-f90060d1693f', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:42 GMT' + 'Fri, 25 Jun 2021 19:37:07 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/626267cb-f400-4251-9f2b-1648390fb3e5') + .get('//text/analytics/v3.1/analyze/jobs/39bfe474-367c-4013-89c5-826e54a9a612') .query(true) - .reply(200, {"jobId":"626267cb-f400-4251-9f2b-1648390fb3e5","lastUpdateDateTime":"2021-05-12T19:09:20Z","createdDateTime":"2021-05-12T19:09:20Z","expirationDateTime":"2021-05-13T19:09:20Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:09:20Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"39bfe474-367c-4013-89c5-826e54a9a612","lastUpdateDateTime":"2021-06-25T19:36:44Z","createdDateTime":"2021-06-25T19:36:42Z","expirationDateTime":"2021-06-26T19:36:42Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -403,71 +420,71 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '6', 'apim-request-id', - '5b1a7b82-c452-4b86-8c1c-71a571778ff2', + 'ac67b4c7-3bca-473e-a4f9-0a3e5768af09', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:44 GMT' + 'Fri, 25 Jun 2021 19:37:09 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/626267cb-f400-4251-9f2b-1648390fb3e5') + .get('//text/analytics/v3.1/analyze/jobs/39bfe474-367c-4013-89c5-826e54a9a612') .query(true) - .reply(200, {"jobId":"626267cb-f400-4251-9f2b-1648390fb3e5","lastUpdateDateTime":"2021-05-12T19:09:20Z","createdDateTime":"2021-05-12T19:09:20Z","expirationDateTime":"2021-05-13T19:09:20Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:09:20Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"39bfe474-367c-4013-89c5-826e54a9a612","lastUpdateDateTime":"2021-06-25T19:36:44Z","createdDateTime":"2021-06-25T19:36:42Z","expirationDateTime":"2021-06-26T19:36:42Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '7', + '6', 'apim-request-id', - 'cba8984c-4b55-4a6c-b431-84541ba8d51a', + '10495dec-8e41-4d64-add8-b1acec8b48ba', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:46 GMT' + 'Fri, 25 Jun 2021 19:37:11 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/626267cb-f400-4251-9f2b-1648390fb3e5') + .get('//text/analytics/v3.1/analyze/jobs/39bfe474-367c-4013-89c5-826e54a9a612') .query(true) - .reply(200, {"jobId":"626267cb-f400-4251-9f2b-1648390fb3e5","lastUpdateDateTime":"2021-05-12T19:09:47Z","createdDateTime":"2021-05-12T19:09:20Z","expirationDateTime":"2021-05-13T19:09:20Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:09:47Z"},"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-12T19:09:47.1624984Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":0.96},{"text":"Bill Gates","category":"Person","offset":25,"length":10,"confidenceScore":0.99},{"text":"Paul Allen","category":"Person","offset":40,"length":10,"confidenceScore":0.99},{"text":"April 4, 1975","category":"DateTime","subcategory":"Date","offset":54,"length":13,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":0.97},{"text":"Bill Gates","category":"Person","offset":26,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":39,"length":10,"confidenceScore":0.99},{"text":"4 de abril de 1975","category":"DateTime","subcategory":"Date","offset":53,"length":18,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":0.97},{"text":"4. April 1975","category":"DateTime","subcategory":"Date","offset":19,"length":13,"confidenceScore":0.8},{"text":"Bill Gates","category":"Person","offset":37,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":52,"length":10,"confidenceScore":0.99}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + .reply(200, {"jobId":"39bfe474-367c-4013-89c5-826e54a9a612","lastUpdateDateTime":"2021-06-25T19:37:14Z","createdDateTime":"2021-06-25T19:36:42Z","expirationDateTime":"2021-06-26T19:36:42Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:37:14.1441619Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":25,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":40,"length":10,"confidenceScore":1},{"text":"April 4, 1975","category":"DateTime","subcategory":"Date","offset":54,"length":13,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":26,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":39,"length":10,"confidenceScore":0.99},{"text":"4 de abril de 1975","category":"DateTime","subcategory":"Date","offset":53,"length":18,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"4. April 1975","category":"DateTime","subcategory":"Date","offset":19,"length":13,"confidenceScore":0.8},{"text":"Bill Gates","category":"Person","offset":37,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":52,"length":10,"confidenceScore":1}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '50', + '85', 'apim-request-id', - '56a70355-7789-48e3-9010-d1c517cd94f3', + 'c199801c-d20a-4a42-9248-b5b380e284aa', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:48 GMT' + 'Fri, 25 Jun 2021 19:37:14 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/626267cb-f400-4251-9f2b-1648390fb3e5') + .get('//text/analytics/v3.1/analyze/jobs/39bfe474-367c-4013-89c5-826e54a9a612') .query(true) - .reply(200, {"jobId":"626267cb-f400-4251-9f2b-1648390fb3e5","lastUpdateDateTime":"2021-05-12T19:09:47Z","createdDateTime":"2021-05-12T19:09:20Z","expirationDateTime":"2021-05-13T19:09:20Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:09:47Z"},"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-12T19:09:47.1624984Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":0.96},{"text":"Bill Gates","category":"Person","offset":25,"length":10,"confidenceScore":0.99},{"text":"Paul Allen","category":"Person","offset":40,"length":10,"confidenceScore":0.99},{"text":"April 4, 1975","category":"DateTime","subcategory":"Date","offset":54,"length":13,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":0.97},{"text":"Bill Gates","category":"Person","offset":26,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":39,"length":10,"confidenceScore":0.99},{"text":"4 de abril de 1975","category":"DateTime","subcategory":"Date","offset":53,"length":18,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":0.97},{"text":"4. April 1975","category":"DateTime","subcategory":"Date","offset":19,"length":13,"confidenceScore":0.8},{"text":"Bill Gates","category":"Person","offset":37,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":52,"length":10,"confidenceScore":0.99}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + .reply(200, {"jobId":"39bfe474-367c-4013-89c5-826e54a9a612","lastUpdateDateTime":"2021-06-25T19:37:14Z","createdDateTime":"2021-06-25T19:36:42Z","expirationDateTime":"2021-06-26T19:36:42Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:37:14.1441619Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":25,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":40,"length":10,"confidenceScore":1},{"text":"April 4, 1975","category":"DateTime","subcategory":"Date","offset":54,"length":13,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":26,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":39,"length":10,"confidenceScore":0.99},{"text":"4 de abril de 1975","category":"DateTime","subcategory":"Date","offset":53,"length":18,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"4. April 1975","category":"DateTime","subcategory":"Date","offset":19,"length":13,"confidenceScore":0.8},{"text":"Bill Gates","category":"Person","offset":37,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":52,"length":10,"confidenceScore":1}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '59', + '65', 'apim-request-id', - '5b2fee4f-46ee-461f-8cba-c6db67ebc1e3', + 'e8cfb9b0-bcaf-48ef-a433-79935d8abfbe', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:48 GMT' + 'Fri, 25 Jun 2021 19:37:14 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.js index 8d68180af99a..a2bb2c103429 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "ae79441bf32559a7def951fb3464feb3"; +module.exports.hash = "de35700ea43a39df2d66af7075d93f38"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,26 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'ca68bd03-3afa-447c-87ed-902a30fc5b00', + '168d60e4-0505-4fb8-b645-6b6b9917b000', 'x-ms-ests-server', - '2.1.11654.25 - NCUS ProdSlices', + '2.1.11829.8 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:57 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:56 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr6rFLimWUKOTdAgjwyk2elIF2ur79th8CMJhj7SPRVYVtMXZaevNxjC56GhzYHcTxkcbyiaCAhLxp3HaYXNVQqYGQwNbdSbWUePPt3ojqceU--18X3nenDvZj7V7xdr-O7N1d3XSyCESTVTkJXM5G24o4YO8JaQbOVnjVVY8SdFIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevruksOBQT4wyn67YZBfaszZ5mxSOR8U80-9sBue5DgX5gltxKl4PTSLl5PzeE9qTijrj-GEvoI4sQ4U2EobR_sjyJv2iuaQ8jRxDtq-Ibkx_w0X1CTBTrTP81DZP2sKGnX3mBZcdN4tcvKBH6FbpgZT1UVRvTYmC9ICmK4PsRnZEsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:57 GMT', + 'Fri, 25 Jun 2021 19:34:56 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,28 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '2ea6dec1-bb0d-4e0c-baa2-1bf4102c5a00', + '9d80f76e-26fc-421e-9776-d8e3ba875b00', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:57 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:57 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrQ4GbksdW57pIpzE9OMlST_5YGTEAZIXdGCp1G8hiL08nUi5PFe9DxG2i1-JCEWfvti8it20gSYmOX_myJhn76FN6t3EUaN50qPBObAkXmQB3dSQdxIMdL4SzrBAWK1v8E_6g72ApdUr4y7lYnMtKExUac-XViOWpAfZxd1tLiisgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrehJxaKP4dCYW912eihkaI0RSIP79hdCu3yLS4wwT9wTw5Tx1iiK51GQuxXoWZ4yi_ihBlys-dvohOds6-0gnZsYYYXTMioP6rYqUpIn0db7nocIPZcX_sXMCEAo4fysdjevnetGcC69SwgBvl_uBS1DaWzDgNw-Dgxanr39d220gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:57 GMT', + 'Fri, 25 Jun 2021 19:34:56 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=91692058-85fa-49a0-b16e-fba1a59fcdc5&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,146 +93,86 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '85f09191-d1fd-4fd7-9a80-0d917d926200', + 'a9a1e068-3c7e-4040-b4a3-695222af6e00', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:57 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:34:57 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:57 GMT', + 'Fri, 25 Jun 2021 19:34:56 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/analyze', {"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]},"analysisInput":{"documents":[{"id":"1","text":"Microsoft was founded by Bill Gates and Paul Allen","language":"en"},{"id":"2","text":"Microsoft fue fundado por Bill Gates y Paul Allen","language":"es"}]}}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"1","text":"Microsoft was founded by Bill Gates and Paul Allen","language":"en"},{"id":"2","text":"Microsoft fue fundado por Bill Gates y Paul Allen","language":"es"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]}}) .reply(202, "", [ 'Transfer-Encoding', 'chunked', 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/f064112c-d72f-4227-9688-3165c489148f', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/d5d1b750-78f8-4d47-acea-598ee523e635', 'x-envoy-upstream-service-time', - '196', + '8821', 'apim-request-id', - 'a7faa771-2902-4f81-9996-9f62e443d9da', + 'bd6d9444-d415-42a5-b56b-7cfc1fccf852', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:58 GMT' + 'Fri, 25 Jun 2021 19:35:05 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/f064112c-d72f-4227-9688-3165c489148f') + .get('//text/analytics/v3.1/analyze/jobs/d5d1b750-78f8-4d47-acea-598ee523e635') .query(true) - .reply(200, {"jobId":"f064112c-d72f-4227-9688-3165c489148f","lastUpdateDateTime":"2021-05-12T19:07:58Z","createdDateTime":"2021-05-12T19:07:58Z","expirationDateTime":"2021-05-13T19:07:58Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:07:58Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"d5d1b750-78f8-4d47-acea-598ee523e635","lastUpdateDateTime":"2021-06-25T19:35:06Z","createdDateTime":"2021-06-25T19:34:58Z","expirationDateTime":"2021-06-26T19:34:58Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '9', + '3325', 'apim-request-id', - '65cb2f4f-4367-43b3-8d6c-8cae08d7513f', + 'b47fc656-895f-457b-b2ab-769e89776a83', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:58 GMT' + 'Fri, 25 Jun 2021 19:35:09 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/f064112c-d72f-4227-9688-3165c489148f') + .get('//text/analytics/v3.1/analyze/jobs/d5d1b750-78f8-4d47-acea-598ee523e635') .query(true) - .reply(200, {"jobId":"f064112c-d72f-4227-9688-3165c489148f","lastUpdateDateTime":"2021-05-12T19:07:58Z","createdDateTime":"2021-05-12T19:07:58Z","expirationDateTime":"2021-05-13T19:07:58Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:07:58Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"d5d1b750-78f8-4d47-acea-598ee523e635","lastUpdateDateTime":"2021-06-25T19:35:13Z","createdDateTime":"2021-06-25T19:34:58Z","expirationDateTime":"2021-06-26T19:34:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '10', + '7583', 'apim-request-id', - '944636ed-cf02-40a0-8acb-6a40411fbb30', + 'f5d5d060-e5ea-49e0-971f-59a683047c9f', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:58 GMT' + 'Fri, 25 Jun 2021 19:35:16 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/f064112c-d72f-4227-9688-3165c489148f') + .get('//text/analytics/v3.1/analyze/jobs/d5d1b750-78f8-4d47-acea-598ee523e635') .query(true) - .reply(200, {"jobId":"f064112c-d72f-4227-9688-3165c489148f","lastUpdateDateTime":"2021-05-12T19:07:58Z","createdDateTime":"2021-05-12T19:07:58Z","expirationDateTime":"2021-05-13T19:07:58Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:07:58Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '5be39e3f-e077-4c9e-85be-393403231640', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:08:00 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/f064112c-d72f-4227-9688-3165c489148f') - .query(true) - .reply(200, {"jobId":"f064112c-d72f-4227-9688-3165c489148f","lastUpdateDateTime":"2021-05-12T19:08:06Z","createdDateTime":"2021-05-12T19:07:58Z","expirationDateTime":"2021-05-13T19:07:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:06Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '5122', - 'apim-request-id', - 'bb6c4d15-2dc0-4d15-a8fa-2d76ee6013e7', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:08:07 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/f064112c-d72f-4227-9688-3165c489148f') - .query(true) - .reply(200, {"jobId":"f064112c-d72f-4227-9688-3165c489148f","lastUpdateDateTime":"2021-05-12T19:08:06Z","createdDateTime":"2021-05-12T19:07:58Z","expirationDateTime":"2021-05-13T19:07:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:06Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '9', - 'apim-request-id', - '88f874b3-610c-4f32-9edb-3e5158ee038b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:08:09 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/f064112c-d72f-4227-9688-3165c489148f') - .query(true) - .reply(200, {"jobId":"f064112c-d72f-4227-9688-3165c489148f","lastUpdateDateTime":"2021-05-12T19:08:06Z","createdDateTime":"2021-05-12T19:07:58Z","expirationDateTime":"2021-05-13T19:07:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:06Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"d5d1b750-78f8-4d47-acea-598ee523e635","lastUpdateDateTime":"2021-06-25T19:35:13Z","createdDateTime":"2021-06-25T19:34:58Z","expirationDateTime":"2021-06-26T19:34:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -243,39 +180,39 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - '7fdcc66a-d281-496f-b894-d47d1f7c826c', + 'e4e3b85b-a982-44a3-83b0-f25aae25b822', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:08:11 GMT' + 'Fri, 25 Jun 2021 19:35:18 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/f064112c-d72f-4227-9688-3165c489148f') + .get('//text/analytics/v3.1/analyze/jobs/d5d1b750-78f8-4d47-acea-598ee523e635') .query(true) - .reply(200, {"jobId":"f064112c-d72f-4227-9688-3165c489148f","lastUpdateDateTime":"2021-05-12T19:08:06Z","createdDateTime":"2021-05-12T19:07:58Z","expirationDateTime":"2021-05-13T19:07:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:06Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"d5d1b750-78f8-4d47-acea-598ee523e635","lastUpdateDateTime":"2021-06-25T19:35:13Z","createdDateTime":"2021-06-25T19:34:58Z","expirationDateTime":"2021-06-26T19:34:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '8', + '4531', 'apim-request-id', - '8455a785-a309-4043-9d46-f73aa75828c0', + 'b1b929cb-5057-4049-afd4-6b83e8809f26', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:08:13 GMT' + 'Fri, 25 Jun 2021 19:35:25 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/f064112c-d72f-4227-9688-3165c489148f') + .get('//text/analytics/v3.1/analyze/jobs/d5d1b750-78f8-4d47-acea-598ee523e635') .query(true) - .reply(200, {"jobId":"f064112c-d72f-4227-9688-3165c489148f","lastUpdateDateTime":"2021-05-12T19:08:06Z","createdDateTime":"2021-05-12T19:07:58Z","expirationDateTime":"2021-05-13T19:07:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:06Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"d5d1b750-78f8-4d47-acea-598ee523e635","lastUpdateDateTime":"2021-06-25T19:35:13Z","createdDateTime":"2021-06-25T19:34:58Z","expirationDateTime":"2021-06-26T19:34:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -283,79 +220,59 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '8', 'apim-request-id', - 'f024fbf2-fd30-43b7-b621-7480fdf7c4f3', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:08:15 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/f064112c-d72f-4227-9688-3165c489148f') - .query(true) - .reply(200, {"jobId":"f064112c-d72f-4227-9688-3165c489148f","lastUpdateDateTime":"2021-05-12T19:08:06Z","createdDateTime":"2021-05-12T19:07:58Z","expirationDateTime":"2021-05-13T19:07:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:06Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - 'd2a48a4a-6e49-40fb-8793-7dbbd0be2bcb', + '0c858260-17fa-4c8e-803f-05902c75918f', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:08:17 GMT' + 'Fri, 25 Jun 2021 19:35:27 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/f064112c-d72f-4227-9688-3165c489148f') + .get('//text/analytics/v3.1/analyze/jobs/d5d1b750-78f8-4d47-acea-598ee523e635') .query(true) - .reply(200, {"jobId":"f064112c-d72f-4227-9688-3165c489148f","lastUpdateDateTime":"2021-05-12T19:08:06Z","createdDateTime":"2021-05-12T19:07:58Z","expirationDateTime":"2021-05-13T19:07:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:06Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"d5d1b750-78f8-4d47-acea-598ee523e635","lastUpdateDateTime":"2021-06-25T19:35:13Z","createdDateTime":"2021-06-25T19:34:58Z","expirationDateTime":"2021-06-26T19:34:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '40', 'apim-request-id', - '3fc04e4a-d7ce-4b68-80ca-0da9961a2a5b', + '4c3a83bf-fb27-4b24-b55a-1ff6c5454896', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:08:19 GMT' + 'Fri, 25 Jun 2021 19:35:29 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/f064112c-d72f-4227-9688-3165c489148f') + .get('//text/analytics/v3.1/analyze/jobs/d5d1b750-78f8-4d47-acea-598ee523e635') .query(true) - .reply(200, {"jobId":"f064112c-d72f-4227-9688-3165c489148f","lastUpdateDateTime":"2021-05-12T19:08:06Z","createdDateTime":"2021-05-12T19:07:58Z","expirationDateTime":"2021-05-13T19:07:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:06Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"d5d1b750-78f8-4d47-acea-598ee523e635","lastUpdateDateTime":"2021-06-25T19:35:13Z","createdDateTime":"2021-06-25T19:34:58Z","expirationDateTime":"2021-06-26T19:34:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '7592', 'apim-request-id', - '7c053d69-d343-4a66-a04a-60fbd58c8bc1', + 'd8a1bea4-6088-496c-9fd6-6b57616857b2', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:08:21 GMT' + 'Fri, 25 Jun 2021 19:35:39 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/f064112c-d72f-4227-9688-3165c489148f') + .get('//text/analytics/v3.1/analyze/jobs/d5d1b750-78f8-4d47-acea-598ee523e635') .query(true) - .reply(200, {"jobId":"f064112c-d72f-4227-9688-3165c489148f","lastUpdateDateTime":"2021-05-12T19:08:06Z","createdDateTime":"2021-05-12T19:07:58Z","expirationDateTime":"2021-05-13T19:07:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:06Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"d5d1b750-78f8-4d47-acea-598ee523e635","lastUpdateDateTime":"2021-06-25T19:35:13Z","createdDateTime":"2021-06-25T19:34:58Z","expirationDateTime":"2021-06-26T19:34:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -363,19 +280,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '8', 'apim-request-id', - '2dffaaa8-8c9d-4246-b3a7-ff2650456dfa', + '11fd815f-f947-41c9-bb2a-67eda36792ff', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:08:23 GMT' + 'Fri, 25 Jun 2021 19:35:41 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/f064112c-d72f-4227-9688-3165c489148f') + .get('//text/analytics/v3.1/analyze/jobs/d5d1b750-78f8-4d47-acea-598ee523e635') .query(true) - .reply(200, {"jobId":"f064112c-d72f-4227-9688-3165c489148f","lastUpdateDateTime":"2021-05-12T19:08:06Z","createdDateTime":"2021-05-12T19:07:58Z","expirationDateTime":"2021-05-13T19:07:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:06Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"d5d1b750-78f8-4d47-acea-598ee523e635","lastUpdateDateTime":"2021-06-25T19:35:13Z","createdDateTime":"2021-06-25T19:34:58Z","expirationDateTime":"2021-06-26T19:34:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -383,39 +300,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - 'af881885-e228-434f-9064-74a924d2a590', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:08:25 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/f064112c-d72f-4227-9688-3165c489148f') - .query(true) - .reply(200, {"jobId":"f064112c-d72f-4227-9688-3165c489148f","lastUpdateDateTime":"2021-05-12T19:08:06Z","createdDateTime":"2021-05-12T19:07:58Z","expirationDateTime":"2021-05-13T19:07:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:06Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'f700b578-6535-426e-b941-f397d78732f2', + '9fa8e5cc-58b6-481f-ab17-2cfa03414a63', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:08:27 GMT' + 'Fri, 25 Jun 2021 19:35:43 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/f064112c-d72f-4227-9688-3165c489148f') + .get('//text/analytics/v3.1/analyze/jobs/d5d1b750-78f8-4d47-acea-598ee523e635') .query(true) - .reply(200, {"jobId":"f064112c-d72f-4227-9688-3165c489148f","lastUpdateDateTime":"2021-05-12T19:08:06Z","createdDateTime":"2021-05-12T19:07:58Z","expirationDateTime":"2021-05-13T19:07:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:06Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"d5d1b750-78f8-4d47-acea-598ee523e635","lastUpdateDateTime":"2021-06-25T19:35:13Z","createdDateTime":"2021-06-25T19:34:58Z","expirationDateTime":"2021-06-26T19:34:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -423,111 +320,111 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - 'acc87e17-55e0-4ae9-b7db-32b99f5b696f', + '93bc6462-590d-4811-b37c-f288f9786d51', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:08:29 GMT' + 'Fri, 25 Jun 2021 19:35:45 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/f064112c-d72f-4227-9688-3165c489148f') + .get('//text/analytics/v3.1/analyze/jobs/d5d1b750-78f8-4d47-acea-598ee523e635') .query(true) - .reply(200, {"jobId":"f064112c-d72f-4227-9688-3165c489148f","lastUpdateDateTime":"2021-05-12T19:08:06Z","createdDateTime":"2021-05-12T19:07:58Z","expirationDateTime":"2021-05-13T19:07:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:06Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"d5d1b750-78f8-4d47-acea-598ee523e635","lastUpdateDateTime":"2021-06-25T19:35:13Z","createdDateTime":"2021-06-25T19:34:58Z","expirationDateTime":"2021-06-26T19:34:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '7', + '11', 'apim-request-id', - '59524782-08e7-417e-9427-7d66f92cd181', + 'cbd097fb-7cdb-4580-8896-c08fdf6bd54c', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:08:31 GMT' + 'Fri, 25 Jun 2021 19:35:48 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/f064112c-d72f-4227-9688-3165c489148f') + .get('//text/analytics/v3.1/analyze/jobs/d5d1b750-78f8-4d47-acea-598ee523e635') .query(true) - .reply(200, {"jobId":"f064112c-d72f-4227-9688-3165c489148f","lastUpdateDateTime":"2021-05-12T19:08:06Z","createdDateTime":"2021-05-12T19:07:58Z","expirationDateTime":"2021-05-13T19:07:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:06Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"d5d1b750-78f8-4d47-acea-598ee523e635","lastUpdateDateTime":"2021-06-25T19:35:13Z","createdDateTime":"2021-06-25T19:34:58Z","expirationDateTime":"2021-06-26T19:34:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '11', 'apim-request-id', - '413fc7ee-471c-4bff-989b-e0d7b790d973', + 'd2ab917b-2c19-40fd-9165-03ef7d39bf5d', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:08:33 GMT' + 'Fri, 25 Jun 2021 19:35:50 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/f064112c-d72f-4227-9688-3165c489148f') + .get('//text/analytics/v3.1/analyze/jobs/d5d1b750-78f8-4d47-acea-598ee523e635') .query(true) - .reply(200, {"jobId":"f064112c-d72f-4227-9688-3165c489148f","lastUpdateDateTime":"2021-05-12T19:08:06Z","createdDateTime":"2021-05-12T19:07:58Z","expirationDateTime":"2021-05-13T19:07:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:06Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"d5d1b750-78f8-4d47-acea-598ee523e635","lastUpdateDateTime":"2021-06-25T19:35:13Z","createdDateTime":"2021-06-25T19:34:58Z","expirationDateTime":"2021-06-26T19:34:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '7', 'apim-request-id', - 'b487e41d-54df-4b30-a4a1-0944b1efc5e6', + 'd15557f5-0dd8-4f69-85be-7b73bb76fc2a', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:08:35 GMT' + 'Fri, 25 Jun 2021 19:35:52 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/f064112c-d72f-4227-9688-3165c489148f') + .get('//text/analytics/v3.1/analyze/jobs/d5d1b750-78f8-4d47-acea-598ee523e635') .query(true) - .reply(200, {"jobId":"f064112c-d72f-4227-9688-3165c489148f","lastUpdateDateTime":"2021-05-12T19:08:37Z","createdDateTime":"2021-05-12T19:07:58Z","expirationDateTime":"2021-05-13T19:07:58Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:37Z"},"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-12T19:08:37.6057746Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":0.95},{"text":"Bill Gates","category":"Person","offset":25,"length":10,"confidenceScore":0.99},{"text":"Paul Allen","category":"Person","offset":40,"length":10,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":0.96},{"text":"Bill Gates","category":"Person","offset":26,"length":10,"confidenceScore":0.99},{"text":"Paul Allen","category":"Person","offset":39,"length":10,"confidenceScore":0.99}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + .reply(200, {"jobId":"d5d1b750-78f8-4d47-acea-598ee523e635","lastUpdateDateTime":"2021-06-25T19:35:52Z","createdDateTime":"2021-06-25T19:34:58Z","expirationDateTime":"2021-06-26T19:34:58Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:35:52.9912023Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":25,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":40,"length":10,"confidenceScore":1}],"warnings":[]},{"id":"2","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":26,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":39,"length":10,"confidenceScore":0.99}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '54', + '50', 'apim-request-id', - '9b7d98b2-772b-4da5-bdb4-62794ca2e6d0', + '8bcf9388-8fb9-4af9-b6d1-914827155021', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:08:38 GMT' + 'Fri, 25 Jun 2021 19:35:54 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/f064112c-d72f-4227-9688-3165c489148f') + .get('//text/analytics/v3.1/analyze/jobs/d5d1b750-78f8-4d47-acea-598ee523e635') .query(true) - .reply(200, {"jobId":"f064112c-d72f-4227-9688-3165c489148f","lastUpdateDateTime":"2021-05-12T19:08:37Z","createdDateTime":"2021-05-12T19:07:58Z","expirationDateTime":"2021-05-13T19:07:58Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:37Z"},"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-12T19:08:37.6057746Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":0.95},{"text":"Bill Gates","category":"Person","offset":25,"length":10,"confidenceScore":0.99},{"text":"Paul Allen","category":"Person","offset":40,"length":10,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":0.96},{"text":"Bill Gates","category":"Person","offset":26,"length":10,"confidenceScore":0.99},{"text":"Paul Allen","category":"Person","offset":39,"length":10,"confidenceScore":0.99}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + .reply(200, {"jobId":"d5d1b750-78f8-4d47-acea-598ee523e635","lastUpdateDateTime":"2021-06-25T19:35:52Z","createdDateTime":"2021-06-25T19:34:58Z","expirationDateTime":"2021-06-26T19:34:58Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:35:52.9912023Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":25,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":40,"length":10,"confidenceScore":1}],"warnings":[]},{"id":"2","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":26,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":39,"length":10,"confidenceScore":0.99}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '5111', + '2657', 'apim-request-id', - '7f3c5b71-1fd6-4e86-8c6e-7b94f3c1fd42', + 'e036b07e-03ad-482b-a5cc-863df383a458', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:08:43 GMT' + 'Fri, 25 Jun 2021 19:35:56 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.js index 13a4694f69ec..67c8cc01806a 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "e11c39f6c88215a4be07ccaf3be5564f"; +module.exports.hash = "d7e8054512e98cb5ba9ae070e69b37f0"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,28 +23,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '1bf10047-6b13-4d45-b7e7-d65083ae7d00', + '57bf3406-964a-46bc-816a-997658be0200', 'x-ms-ests-server', - '2.1.11654.25 - SCUS ProdSlices', + '2.1.11829.8 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:08:43 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:35:57 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrOfl2ezjKWWO8PfFWrHKkt8qm9P0e8v8AxJ_UP92tHwxGRTGHNa-r6SAJMlZtsm5obfERhepKdEQZIW9xUV5p7amYiehIMcYPp7UxMbEgx9279pvjSPCr1XCZJzA5rPWlyYWbD9FSkGY23oKnJ8ckaQUJ_zUuRvCQfLJDcmXQqlkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr2lsupO7U1vw1sHWzZRefcFVH88ZqmieeTSUVwcoRwodIyzYD_TdGW_-Qs8sG9ocwvxTj0Ee_KTGHI4HBCibtZPGHZud2i39ekPJEPcvTjy02qnoDshFzEvkNwxCwaG3hNiX9HXg2UC24JgSH3nGcYyJLJxvpmbaO_93yUuy6VtggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:08:43 GMT' + 'Fri, 25 Jun 2021 19:35:56 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Length', - '1651', + '1753', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,26 +60,23 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'effc2a94-f558-4e23-9dd5-8d2bb9056100', + '97388d79-6103-488d-a26f-595c3baa7300', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:08:43 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:35:57 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevroLP1RmnYZO-ChHBHh_pKVt8h0cfSsdrHcSwupXFRtm3-bsIVkobksh9tT-BMhgr5Qxjvx5krEr56ejBmcldoScVD79YCAeDK9hIH033gopU5epj_GN00dslMTKpcFwdJlkhBFVhM2LExgowei4g0yQpZYJluUFhF7Lw3VRKaeTwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevra-K5rSh-QyNaBnIDVJgLO9jUdSbElY1B4XD1CYrR9YnhSmduTCrZ3E8lQt56X8rxIJv0idBpqJrlsXrCUFXFNkgXP8F21F3R_7YCbe8fsRBreHMle3lwspUf7Uo25IX5CMv6VnN1NMxcgn7TWdtatPc-ljh3zy_AceS_8UdtmC0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:08:43 GMT' + 'Fri, 25 Jun 2021 19:35:56 GMT' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=bc7ad80b-c1f6-40de-b27b-5e822f602f9b&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,86 +93,86 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '53fd7af7-fe14-4c5c-908f-d54fd0165600', + '8fe8fb0d-d1a1-431d-a7c5-a919ba786900', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:08:44 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:35:57 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:08:43 GMT', + 'Fri, 25 Jun 2021 19:35:56 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/analyze', {"tasks":{"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]},"analysisInput":{"documents":[{"id":"1","text":"Microsoft was founded by Bill Gates and Paul Allen","language":"en"},{"id":"2","text":"Microsoft fue fundado por Bill Gates y Paul Allen","language":"es"}]}}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"1","text":"Microsoft was founded by Bill Gates and Paul Allen","language":"en"},{"id":"2","text":"Microsoft fue fundado por Bill Gates y Paul Allen","language":"es"}]},"tasks":{"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) .reply(202, "", [ 'Transfer-Encoding', 'chunked', 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/dc379c2d-7a64-4932-af52-1ae8afd152e7', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/3bddae36-e1fe-4dd5-bfba-ba96c1347175', 'x-envoy-upstream-service-time', - '385', + '163', 'apim-request-id', - 'a715356f-1d2f-4c12-9916-862912fe6f65', + '3ef222b4-a8c7-4359-8ae8-e903a4ffe4a4', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:08:43 GMT' + 'Fri, 25 Jun 2021 19:35:57 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/dc379c2d-7a64-4932-af52-1ae8afd152e7') + .get('//text/analytics/v3.1/analyze/jobs/3bddae36-e1fe-4dd5-bfba-ba96c1347175') .query(true) - .reply(200, {"jobId":"dc379c2d-7a64-4932-af52-1ae8afd152e7","lastUpdateDateTime":"2021-05-12T19:08:44Z","createdDateTime":"2021-05-12T19:08:44Z","expirationDateTime":"2021-05-13T19:08:44Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:44Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"3bddae36-e1fe-4dd5-bfba-ba96c1347175","lastUpdateDateTime":"2021-06-25T19:35:57Z","createdDateTime":"2021-06-25T19:35:57Z","expirationDateTime":"2021-06-26T19:35:57Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '8', + '6', 'apim-request-id', - '5aec00da-65f5-4ddd-951a-ad7ba836ea14', + 'c8ef53ab-64d4-453b-8d42-21cc6a5e0f56', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:08:44 GMT' + 'Fri, 25 Jun 2021 19:35:57 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/dc379c2d-7a64-4932-af52-1ae8afd152e7') + .get('//text/analytics/v3.1/analyze/jobs/3bddae36-e1fe-4dd5-bfba-ba96c1347175') .query(true) - .reply(200, {"jobId":"dc379c2d-7a64-4932-af52-1ae8afd152e7","lastUpdateDateTime":"2021-05-12T19:08:44Z","createdDateTime":"2021-05-12T19:08:44Z","expirationDateTime":"2021-05-13T19:08:44Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:44Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"3bddae36-e1fe-4dd5-bfba-ba96c1347175","lastUpdateDateTime":"2021-06-25T19:35:57Z","createdDateTime":"2021-06-25T19:35:57Z","expirationDateTime":"2021-06-26T19:35:57Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '9', 'apim-request-id', - 'f9d98de9-f655-4784-8f6c-b08f8dd22ae5', + '7e5f2704-e129-4843-954a-1c199b2058d8', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:08:44 GMT' + 'Fri, 25 Jun 2021 19:35:57 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/dc379c2d-7a64-4932-af52-1ae8afd152e7') + .get('//text/analytics/v3.1/analyze/jobs/3bddae36-e1fe-4dd5-bfba-ba96c1347175') .query(true) - .reply(200, {"jobId":"dc379c2d-7a64-4932-af52-1ae8afd152e7","lastUpdateDateTime":"2021-05-12T19:08:44Z","createdDateTime":"2021-05-12T19:08:44Z","expirationDateTime":"2021-05-13T19:08:44Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:44Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"3bddae36-e1fe-4dd5-bfba-ba96c1347175","lastUpdateDateTime":"2021-06-25T19:35:58Z","createdDateTime":"2021-06-25T19:35:57Z","expirationDateTime":"2021-06-26T19:35:57Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -183,19 +180,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - '19924bef-65bd-4447-bffd-a35d151102eb', + '09d3cf3f-ef6d-4f8a-a6f5-316cc9eb897a', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:08:46 GMT' + 'Fri, 25 Jun 2021 19:35:59 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/dc379c2d-7a64-4932-af52-1ae8afd152e7') + .get('//text/analytics/v3.1/analyze/jobs/3bddae36-e1fe-4dd5-bfba-ba96c1347175') .query(true) - .reply(200, {"jobId":"dc379c2d-7a64-4932-af52-1ae8afd152e7","lastUpdateDateTime":"2021-05-12T19:08:44Z","createdDateTime":"2021-05-12T19:08:44Z","expirationDateTime":"2021-05-13T19:08:44Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:44Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"3bddae36-e1fe-4dd5-bfba-ba96c1347175","lastUpdateDateTime":"2021-06-25T19:35:58Z","createdDateTime":"2021-06-25T19:35:57Z","expirationDateTime":"2021-06-26T19:35:57Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -203,59 +200,59 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - '045a8cf6-2916-4016-99bf-0c479cb6f765', + '879fe2cc-166e-44f3-8702-f5e3538def0e', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:08:48 GMT' + 'Fri, 25 Jun 2021 19:36:01 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/dc379c2d-7a64-4932-af52-1ae8afd152e7') + .get('//text/analytics/v3.1/analyze/jobs/3bddae36-e1fe-4dd5-bfba-ba96c1347175') .query(true) - .reply(200, {"jobId":"dc379c2d-7a64-4932-af52-1ae8afd152e7","lastUpdateDateTime":"2021-05-12T19:08:44Z","createdDateTime":"2021-05-12T19:08:44Z","expirationDateTime":"2021-05-13T19:08:44Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:44Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"3bddae36-e1fe-4dd5-bfba-ba96c1347175","lastUpdateDateTime":"2021-06-25T19:35:58Z","createdDateTime":"2021-06-25T19:35:57Z","expirationDateTime":"2021-06-26T19:35:57Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '7', + '28', 'apim-request-id', - '895d8f4c-18f2-4fba-bfab-e8f8e2cccecd', + 'e15a837c-31b7-495b-8cc0-30162b33d581', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:08:50 GMT' + 'Fri, 25 Jun 2021 19:36:03 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/dc379c2d-7a64-4932-af52-1ae8afd152e7') + .get('//text/analytics/v3.1/analyze/jobs/3bddae36-e1fe-4dd5-bfba-ba96c1347175') .query(true) - .reply(200, {"jobId":"dc379c2d-7a64-4932-af52-1ae8afd152e7","lastUpdateDateTime":"2021-05-12T19:08:52Z","createdDateTime":"2021-05-12T19:08:44Z","expirationDateTime":"2021-05-13T19:08:44Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:52Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"3bddae36-e1fe-4dd5-bfba-ba96c1347175","lastUpdateDateTime":"2021-06-25T19:35:58Z","createdDateTime":"2021-06-25T19:35:57Z","expirationDateTime":"2021-06-26T19:35:57Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '7', + '13', 'apim-request-id', - '5757f6f3-600e-4a1a-9733-c4621763551e', + '03b1357a-2e4b-48ec-989b-2a71d00dc6d5', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:08:52 GMT' + 'Fri, 25 Jun 2021 19:36:05 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/dc379c2d-7a64-4932-af52-1ae8afd152e7') + .get('//text/analytics/v3.1/analyze/jobs/3bddae36-e1fe-4dd5-bfba-ba96c1347175') .query(true) - .reply(200, {"jobId":"dc379c2d-7a64-4932-af52-1ae8afd152e7","lastUpdateDateTime":"2021-05-12T19:08:52Z","createdDateTime":"2021-05-12T19:08:44Z","expirationDateTime":"2021-05-13T19:08:44Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:52Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"3bddae36-e1fe-4dd5-bfba-ba96c1347175","lastUpdateDateTime":"2021-06-25T19:35:58Z","createdDateTime":"2021-06-25T19:35:57Z","expirationDateTime":"2021-06-26T19:35:57Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -263,19 +260,39 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - '04e47a7f-e180-4291-a42e-01647f7da356', + '7083fb73-7470-4e75-89d4-a373c54f43cd', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:36:07 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/3bddae36-e1fe-4dd5-bfba-ba96c1347175') + .query(true) + .reply(200, {"jobId":"3bddae36-e1fe-4dd5-bfba-ba96c1347175","lastUpdateDateTime":"2021-06-25T19:35:58Z","createdDateTime":"2021-06-25T19:35:57Z","expirationDateTime":"2021-06-26T19:35:57Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '9', + 'apim-request-id', + 'cfbf4d50-5adc-4999-b742-7c300ad9251e', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:08:54 GMT' + 'Fri, 25 Jun 2021 19:36:09 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/dc379c2d-7a64-4932-af52-1ae8afd152e7') + .get('//text/analytics/v3.1/analyze/jobs/3bddae36-e1fe-4dd5-bfba-ba96c1347175') .query(true) - .reply(200, {"jobId":"dc379c2d-7a64-4932-af52-1ae8afd152e7","lastUpdateDateTime":"2021-05-12T19:08:52Z","createdDateTime":"2021-05-12T19:08:44Z","expirationDateTime":"2021-05-13T19:08:44Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:52Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"3bddae36-e1fe-4dd5-bfba-ba96c1347175","lastUpdateDateTime":"2021-06-25T19:35:58Z","createdDateTime":"2021-06-25T19:35:57Z","expirationDateTime":"2021-06-26T19:35:57Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -283,39 +300,39 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '6', 'apim-request-id', - 'eb5da07b-e66a-4761-b6a2-ab4505144ae6', + 'ee1ddb22-17de-4ef1-a904-a8b883a5cf8d', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:08:56 GMT' + 'Fri, 25 Jun 2021 19:36:11 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/dc379c2d-7a64-4932-af52-1ae8afd152e7') + .get('//text/analytics/v3.1/analyze/jobs/3bddae36-e1fe-4dd5-bfba-ba96c1347175') .query(true) - .reply(200, {"jobId":"dc379c2d-7a64-4932-af52-1ae8afd152e7","lastUpdateDateTime":"2021-05-12T19:08:52Z","createdDateTime":"2021-05-12T19:08:44Z","expirationDateTime":"2021-05-13T19:08:44Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:52Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"3bddae36-e1fe-4dd5-bfba-ba96c1347175","lastUpdateDateTime":"2021-06-25T19:35:58Z","createdDateTime":"2021-06-25T19:35:57Z","expirationDateTime":"2021-06-26T19:35:57Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '7', + '6', 'apim-request-id', - 'bd557744-c047-4a3b-a3b6-30a79884d22f', + '48d04857-0b6e-4a6a-b3e1-aba242a75ed9', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:08:58 GMT' + 'Fri, 25 Jun 2021 19:36:13 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/dc379c2d-7a64-4932-af52-1ae8afd152e7') + .get('//text/analytics/v3.1/analyze/jobs/3bddae36-e1fe-4dd5-bfba-ba96c1347175') .query(true) - .reply(200, {"jobId":"dc379c2d-7a64-4932-af52-1ae8afd152e7","lastUpdateDateTime":"2021-05-12T19:08:52Z","createdDateTime":"2021-05-12T19:08:44Z","expirationDateTime":"2021-05-13T19:08:44Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:52Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"3bddae36-e1fe-4dd5-bfba-ba96c1347175","lastUpdateDateTime":"2021-06-25T19:35:58Z","createdDateTime":"2021-06-25T19:35:57Z","expirationDateTime":"2021-06-26T19:35:57Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -323,19 +340,39 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - 'a8461630-94e4-41f7-a3d1-ac7b06344f54', + '9c8c4dc5-ff48-46b0-bf76-f76c9024a5a1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:36:15 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/3bddae36-e1fe-4dd5-bfba-ba96c1347175') + .query(true) + .reply(200, {"jobId":"3bddae36-e1fe-4dd5-bfba-ba96c1347175","lastUpdateDateTime":"2021-06-25T19:35:58Z","createdDateTime":"2021-06-25T19:35:57Z","expirationDateTime":"2021-06-26T19:35:57Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '11', + 'apim-request-id', + 'b4fc98e2-7a85-4662-be9b-c54b650ef8b4', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:00 GMT' + 'Fri, 25 Jun 2021 19:36:18 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/dc379c2d-7a64-4932-af52-1ae8afd152e7') + .get('//text/analytics/v3.1/analyze/jobs/3bddae36-e1fe-4dd5-bfba-ba96c1347175') .query(true) - .reply(200, {"jobId":"dc379c2d-7a64-4932-af52-1ae8afd152e7","lastUpdateDateTime":"2021-05-12T19:08:52Z","createdDateTime":"2021-05-12T19:08:44Z","expirationDateTime":"2021-05-13T19:08:44Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:52Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"3bddae36-e1fe-4dd5-bfba-ba96c1347175","lastUpdateDateTime":"2021-06-25T19:35:58Z","createdDateTime":"2021-06-25T19:35:57Z","expirationDateTime":"2021-06-26T19:35:57Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -343,79 +380,79 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - '598182c4-842f-47d1-bc98-085eadc4c5fa', + '4d5c8467-33ae-4ceb-9d87-2854487a8ae9', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:03 GMT' + 'Fri, 25 Jun 2021 19:36:20 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/dc379c2d-7a64-4932-af52-1ae8afd152e7') + .get('//text/analytics/v3.1/analyze/jobs/3bddae36-e1fe-4dd5-bfba-ba96c1347175') .query(true) - .reply(200, {"jobId":"dc379c2d-7a64-4932-af52-1ae8afd152e7","lastUpdateDateTime":"2021-05-12T19:08:52Z","createdDateTime":"2021-05-12T19:08:44Z","expirationDateTime":"2021-05-13T19:08:44Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:52Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"3bddae36-e1fe-4dd5-bfba-ba96c1347175","lastUpdateDateTime":"2021-06-25T19:35:58Z","createdDateTime":"2021-06-25T19:35:57Z","expirationDateTime":"2021-06-26T19:35:57Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '8', + '10', 'apim-request-id', - '0b809559-d293-4ca9-9494-fdd57b3b6f3e', + '9b5a153f-afe1-436e-a8f6-da66367697d3', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:05 GMT' + 'Fri, 25 Jun 2021 19:36:22 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/dc379c2d-7a64-4932-af52-1ae8afd152e7') + .get('//text/analytics/v3.1/analyze/jobs/3bddae36-e1fe-4dd5-bfba-ba96c1347175') .query(true) - .reply(200, {"jobId":"dc379c2d-7a64-4932-af52-1ae8afd152e7","lastUpdateDateTime":"2021-05-12T19:08:52Z","createdDateTime":"2021-05-12T19:08:44Z","expirationDateTime":"2021-05-13T19:08:44Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:52Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"3bddae36-e1fe-4dd5-bfba-ba96c1347175","lastUpdateDateTime":"2021-06-25T19:35:58Z","createdDateTime":"2021-06-25T19:35:57Z","expirationDateTime":"2021-06-26T19:35:57Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '7', 'apim-request-id', - '103e6150-7b83-408f-9882-a8714a459ce1', + 'ec4f884d-7106-4e76-94c1-81374bdabd9c', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:07 GMT' + 'Fri, 25 Jun 2021 19:36:24 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/dc379c2d-7a64-4932-af52-1ae8afd152e7') + .get('//text/analytics/v3.1/analyze/jobs/3bddae36-e1fe-4dd5-bfba-ba96c1347175') .query(true) - .reply(200, {"jobId":"dc379c2d-7a64-4932-af52-1ae8afd152e7","lastUpdateDateTime":"2021-05-12T19:08:52Z","createdDateTime":"2021-05-12T19:08:44Z","expirationDateTime":"2021-05-13T19:08:44Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:52Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"3bddae36-e1fe-4dd5-bfba-ba96c1347175","lastUpdateDateTime":"2021-06-25T19:35:58Z","createdDateTime":"2021-06-25T19:35:57Z","expirationDateTime":"2021-06-26T19:35:57Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '8', 'apim-request-id', - 'd0d7cf9e-e37c-44ed-95c5-e4bf4ecf4357', + '6c005941-e041-403e-8900-e032d288ea21', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:09 GMT' + 'Fri, 25 Jun 2021 19:36:26 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/dc379c2d-7a64-4932-af52-1ae8afd152e7') + .get('//text/analytics/v3.1/analyze/jobs/3bddae36-e1fe-4dd5-bfba-ba96c1347175') .query(true) - .reply(200, {"jobId":"dc379c2d-7a64-4932-af52-1ae8afd152e7","lastUpdateDateTime":"2021-05-12T19:08:52Z","createdDateTime":"2021-05-12T19:08:44Z","expirationDateTime":"2021-05-13T19:08:44Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:52Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"3bddae36-e1fe-4dd5-bfba-ba96c1347175","lastUpdateDateTime":"2021-06-25T19:35:58Z","createdDateTime":"2021-06-25T19:35:57Z","expirationDateTime":"2021-06-26T19:35:57Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -423,19 +460,39 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - '0580b75e-f774-4aa9-a885-29525932158f', + 'cf93d434-e6c2-4c7f-9fc1-83aeaa4a51f9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:36:28 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/3bddae36-e1fe-4dd5-bfba-ba96c1347175') + .query(true) + .reply(200, {"jobId":"3bddae36-e1fe-4dd5-bfba-ba96c1347175","lastUpdateDateTime":"2021-06-25T19:35:58Z","createdDateTime":"2021-06-25T19:35:57Z","expirationDateTime":"2021-06-26T19:35:57Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '9', + 'apim-request-id', + 'a8415067-8ca6-4de0-b788-d7858f23c635', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:11 GMT' + 'Fri, 25 Jun 2021 19:36:30 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/dc379c2d-7a64-4932-af52-1ae8afd152e7') + .get('//text/analytics/v3.1/analyze/jobs/3bddae36-e1fe-4dd5-bfba-ba96c1347175') .query(true) - .reply(200, {"jobId":"dc379c2d-7a64-4932-af52-1ae8afd152e7","lastUpdateDateTime":"2021-05-12T19:08:52Z","createdDateTime":"2021-05-12T19:08:44Z","expirationDateTime":"2021-05-13T19:08:44Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:52Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"3bddae36-e1fe-4dd5-bfba-ba96c1347175","lastUpdateDateTime":"2021-06-25T19:35:58Z","createdDateTime":"2021-06-25T19:35:57Z","expirationDateTime":"2021-06-26T19:35:57Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -443,39 +500,39 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - 'd1d3cf84-59cc-4b40-9c96-0d42a78786cd', + '6ade4583-0f5e-4224-a10d-ab8dd23a888c', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:13 GMT' + 'Fri, 25 Jun 2021 19:36:32 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/dc379c2d-7a64-4932-af52-1ae8afd152e7') + .get('//text/analytics/v3.1/analyze/jobs/3bddae36-e1fe-4dd5-bfba-ba96c1347175') .query(true) - .reply(200, {"jobId":"dc379c2d-7a64-4932-af52-1ae8afd152e7","lastUpdateDateTime":"2021-05-12T19:08:52Z","createdDateTime":"2021-05-12T19:08:44Z","expirationDateTime":"2021-05-13T19:08:44Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:52Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"3bddae36-e1fe-4dd5-bfba-ba96c1347175","lastUpdateDateTime":"2021-06-25T19:35:58Z","createdDateTime":"2021-06-25T19:35:57Z","expirationDateTime":"2021-06-26T19:35:57Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '9', + '8', 'apim-request-id', - 'd5901c3e-ef2e-4f24-8785-c9b2d677e1ca', + '409b25fe-9144-43c2-a7eb-38c390fee1de', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:15 GMT' + 'Fri, 25 Jun 2021 19:36:34 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/dc379c2d-7a64-4932-af52-1ae8afd152e7') + .get('//text/analytics/v3.1/analyze/jobs/3bddae36-e1fe-4dd5-bfba-ba96c1347175') .query(true) - .reply(200, {"jobId":"dc379c2d-7a64-4932-af52-1ae8afd152e7","lastUpdateDateTime":"2021-05-12T19:08:52Z","createdDateTime":"2021-05-12T19:08:44Z","expirationDateTime":"2021-05-13T19:08:44Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:08:52Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"3bddae36-e1fe-4dd5-bfba-ba96c1347175","lastUpdateDateTime":"2021-06-25T19:35:58Z","createdDateTime":"2021-06-25T19:35:57Z","expirationDateTime":"2021-06-26T19:35:57Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -483,51 +540,51 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - '7f167bd2-7866-4eb9-bc1d-3107b7059fd9', + '485a7443-2f9a-422e-99a6-458720acc28e', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:17 GMT' + 'Fri, 25 Jun 2021 19:36:36 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/dc379c2d-7a64-4932-af52-1ae8afd152e7') + .get('//text/analytics/v3.1/analyze/jobs/3bddae36-e1fe-4dd5-bfba-ba96c1347175') .query(true) - .reply(200, {"jobId":"dc379c2d-7a64-4932-af52-1ae8afd152e7","lastUpdateDateTime":"2021-05-12T19:09:17Z","createdDateTime":"2021-05-12T19:08:44Z","expirationDateTime":"2021-05-13T19:08:44Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:09:17Z"},"completed":1,"failed":0,"inProgress":0,"total":1,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:09:17.5534291Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["Bill Gates","Paul Allen","Microsoft"],"warnings":[]},{"id":"2","keyPhrases":["Bill Gates","Paul Allen","Microsoft"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"3bddae36-e1fe-4dd5-bfba-ba96c1347175","lastUpdateDateTime":"2021-06-25T19:36:38Z","createdDateTime":"2021-06-25T19:35:57Z","expirationDateTime":"2021-06-26T19:35:57Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:36:38.2699285Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["Bill Gates","Paul Allen","Microsoft"],"warnings":[]},{"id":"2","keyPhrases":["Bill Gates","Paul Allen","Microsoft"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '68', + '64', 'apim-request-id', - '5abb6e13-9baf-41f5-9844-12005d1f1ece', + '24f1afad-cc2e-4045-b4f9-ed93912a03d8', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:19 GMT' + 'Fri, 25 Jun 2021 19:36:38 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/dc379c2d-7a64-4932-af52-1ae8afd152e7') + .get('//text/analytics/v3.1/analyze/jobs/3bddae36-e1fe-4dd5-bfba-ba96c1347175') .query(true) - .reply(200, {"jobId":"dc379c2d-7a64-4932-af52-1ae8afd152e7","lastUpdateDateTime":"2021-05-12T19:09:17Z","createdDateTime":"2021-05-12T19:08:44Z","expirationDateTime":"2021-05-13T19:08:44Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:09:17Z"},"completed":1,"failed":0,"inProgress":0,"total":1,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:09:17.5534291Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["Bill Gates","Paul Allen","Microsoft"],"warnings":[]},{"id":"2","keyPhrases":["Bill Gates","Paul Allen","Microsoft"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"3bddae36-e1fe-4dd5-bfba-ba96c1347175","lastUpdateDateTime":"2021-06-25T19:36:38Z","createdDateTime":"2021-06-25T19:35:57Z","expirationDateTime":"2021-06-26T19:35:57Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:36:38.2699285Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["Bill Gates","Paul Allen","Microsoft"],"warnings":[]},{"id":"2","keyPhrases":["Bill Gates","Paul Allen","Microsoft"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '40', + '2682', 'apim-request-id', - 'debd197c-601c-4c6f-a78b-0e5e4bbbdb94', + '63a9b044-1a95-4fc6-81f4-38daaa3c4548', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:19 GMT' + 'Fri, 25 Jun 2021 19:36:41 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.js index db6a3087d641..8b6fc9ca1d80 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "6b046a156ff3e5fc9b5588f34c7eeb7c"; +module.exports.hash = "ac00d978031a3ea05adbfa89b8857468"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,30 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '5e72b27e-a6c9-4897-bbba-ecac08ea6a00', + '19c407d7-d6b7-440f-9f38-65b3d1c20600', 'x-ms-ests-server', - '2.1.11654.25 - NCUS ProdSlices', + '2.1.11829.8 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:09:54 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:37:19 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrDKnbudoc-bdXb01pxR1_RLu_wTnWcDq4d-bnJHTu3ErkkfmQby8HvB93a-z26vvzNN0MzMaFDJXN78qNrEQSOh1_ZNSkwqeZ48FAa0N-1PVdK6J4QtR3jpKons1sPvJeBFuoTtWjaCDyUfnV3L8q-Rjf95DJGDAWu7gpKvcc14QgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrpmigGk56EZy8Lalpfb6cJGpYwbmIiuOYtam-jCCeCGXOE15_lAZnPdBwvlDjHJQTeNvFY3ZpisIkejY_GHPHxqGdwKy2sROCHNgRoRdSia_26aRmlWWWvDgmVOxRMOK411Y-iMi66iM4ExZHeiM69EL-wm6mONklZluUAWMVE58gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:09:53 GMT', + 'Fri, 25 Jun 2021 19:37:18 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,26 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6d13d50f-9cbe-403f-876d-4ed344285b00', + '97388d79-6103-488d-a26f-595cd7bb7300', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:09:54 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:37:19 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrqJPbX4J3tVp7Xhsb5SG2vVtpsKLlsbyVhfiK6HQ4mksoW7Gvq1EIXshwpMg10N0iDoZUQlon8eCOzlSvYtxBLhtTOOz9txlTiYyuIXi0Ls0YV-8F7o5VTFw6q5vmFlYzvUMd6aVY1_IDEAS7FHt8FwFewFpdXVhYC-5aVTp2ySAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrfEKwYfpsF-YdnsAJovdjjmKmxu7ZhdOdExnc8wRM25-r1jbjlSR7z5fdlo4YP6r3I0q3PQ7iQIlHqo73ntO_MQ8j3sK7-V9W9pXIVqnJ-Gyz-Dno35ITHUqjGjANVSGN2rmS3nMVaLEwvA_9TEI73nNrP68-rHNVpaembjsRsWcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:09:54 GMT' + 'Fri, 25 Jun 2021 19:37:18 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=c7bbbc0a-206b-4149-bd99-f2a5d2f40e73&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -98,44 +95,44 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6d13d50f-9cbe-403f-876d-4ed34a285b00', + '1e233fee-f232-4e03-820f-8a8c45be6e00', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:09:54 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:37:19 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:09:54 GMT' + 'Fri, 25 Jun 2021 19:37:18 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/analyze', {"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]},"analysisInput":{"documents":[{"id":"1","text":"My SSN is 859-98-0987."},{"id":"2","text":"Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check."},{"id":"3","text":"Is 998.214.865-68 your Brazilian CPF number?"}]}}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"1","text":"My SSN is 859-98-0987."},{"id":"2","text":"Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check."},{"id":"3","text":"Is 998.214.865-68 your Brazilian CPF number?"}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]}}) .reply(202, "", [ 'Transfer-Encoding', 'chunked', 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/8d6c961b-03d3-45a6-bf75-cd88d2efedfe', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/83495c04-89bc-423d-9a5b-6be49c482ef5', 'x-envoy-upstream-service-time', - '127', + '239', 'apim-request-id', - 'b25bdfcf-7a5e-446b-9343-e46b5b1de865', + 'cb62d18f-1a4a-4606-a029-b2db9ef13df4', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:54 GMT' + 'Fri, 25 Jun 2021 19:37:19 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/8d6c961b-03d3-45a6-bf75-cd88d2efedfe') + .get('//text/analytics/v3.1/analyze/jobs/83495c04-89bc-423d-9a5b-6be49c482ef5') .query(true) - .reply(200, {"jobId":"8d6c961b-03d3-45a6-bf75-cd88d2efedfe","lastUpdateDateTime":"2021-05-12T19:09:54Z","createdDateTime":"2021-05-12T19:09:54Z","expirationDateTime":"2021-05-13T19:09:54Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:09:54Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"83495c04-89bc-423d-9a5b-6be49c482ef5","lastUpdateDateTime":"2021-06-25T19:37:20Z","createdDateTime":"2021-06-25T19:37:19Z","expirationDateTime":"2021-06-26T19:37:19Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -143,19 +140,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - '8e98a6d1-c780-4292-b05d-69f1b8b1f3fd', + 'a04cf5d0-2f7e-4ac6-ae1a-c1c7270e6221', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:54 GMT' + 'Fri, 25 Jun 2021 19:37:19 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/8d6c961b-03d3-45a6-bf75-cd88d2efedfe') + .get('//text/analytics/v3.1/analyze/jobs/83495c04-89bc-423d-9a5b-6be49c482ef5') .query(true) - .reply(200, {"jobId":"8d6c961b-03d3-45a6-bf75-cd88d2efedfe","lastUpdateDateTime":"2021-05-12T19:09:54Z","createdDateTime":"2021-05-12T19:09:54Z","expirationDateTime":"2021-05-13T19:09:54Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:09:54Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"83495c04-89bc-423d-9a5b-6be49c482ef5","lastUpdateDateTime":"2021-06-25T19:37:20Z","createdDateTime":"2021-06-25T19:37:19Z","expirationDateTime":"2021-06-26T19:37:19Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -163,39 +160,139 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '6', 'apim-request-id', - 'c714fbab-e70a-4124-b888-d4cf8cdc37c4', + '9893bb68-6b5f-4e7f-a2f7-8d5d03d5d6c5', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:54 GMT' + 'Fri, 25 Jun 2021 19:37:20 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/8d6c961b-03d3-45a6-bf75-cd88d2efedfe') + .get('//text/analytics/v3.1/analyze/jobs/83495c04-89bc-423d-9a5b-6be49c482ef5') .query(true) - .reply(200, {"jobId":"8d6c961b-03d3-45a6-bf75-cd88d2efedfe","lastUpdateDateTime":"2021-05-12T19:09:55Z","createdDateTime":"2021-05-12T19:09:54Z","expirationDateTime":"2021-05-13T19:09:54Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:09:55Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"83495c04-89bc-423d-9a5b-6be49c482ef5","lastUpdateDateTime":"2021-06-25T19:37:20Z","createdDateTime":"2021-06-25T19:37:19Z","expirationDateTime":"2021-06-26T19:37:19Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '8', + '36', + 'apim-request-id', + '318054ad-650a-40e9-927a-d419212d02c5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:37:22 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/83495c04-89bc-423d-9a5b-6be49c482ef5') + .query(true) + .reply(200, {"jobId":"83495c04-89bc-423d-9a5b-6be49c482ef5","lastUpdateDateTime":"2021-06-25T19:37:20Z","createdDateTime":"2021-06-25T19:37:19Z","expirationDateTime":"2021-06-26T19:37:19Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '5c2ef35a-1ac1-4120-a7a7-bfc83e2d4fc6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:37:24 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/83495c04-89bc-423d-9a5b-6be49c482ef5') + .query(true) + .reply(200, {"jobId":"83495c04-89bc-423d-9a5b-6be49c482ef5","lastUpdateDateTime":"2021-06-25T19:37:20Z","createdDateTime":"2021-06-25T19:37:19Z","expirationDateTime":"2021-06-26T19:37:19Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '873b3095-03f2-4fe8-aa95-34619806f853', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:37:26 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/83495c04-89bc-423d-9a5b-6be49c482ef5') + .query(true) + .reply(200, {"jobId":"83495c04-89bc-423d-9a5b-6be49c482ef5","lastUpdateDateTime":"2021-06-25T19:37:20Z","createdDateTime":"2021-06-25T19:37:19Z","expirationDateTime":"2021-06-26T19:37:19Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '5626ab5e-04ea-40e1-a983-cb456efea357', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:37:28 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/83495c04-89bc-423d-9a5b-6be49c482ef5') + .query(true) + .reply(200, {"jobId":"83495c04-89bc-423d-9a5b-6be49c482ef5","lastUpdateDateTime":"2021-06-25T19:37:20Z","createdDateTime":"2021-06-25T19:37:19Z","expirationDateTime":"2021-06-26T19:37:19Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '093f6314-c49d-4965-8d5b-94536741a7ad', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:37:30 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/83495c04-89bc-423d-9a5b-6be49c482ef5') + .query(true) + .reply(200, {"jobId":"83495c04-89bc-423d-9a5b-6be49c482ef5","lastUpdateDateTime":"2021-06-25T19:37:20Z","createdDateTime":"2021-06-25T19:37:19Z","expirationDateTime":"2021-06-26T19:37:19Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', 'apim-request-id', - 'abeb719f-46d1-4179-bee7-d5ede90ee390', + '451f57d0-1e6a-4244-8445-47ecfd5fcc9e', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:56 GMT' + 'Fri, 25 Jun 2021 19:37:32 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/8d6c961b-03d3-45a6-bf75-cd88d2efedfe') + .get('//text/analytics/v3.1/analyze/jobs/83495c04-89bc-423d-9a5b-6be49c482ef5') .query(true) - .reply(200, {"jobId":"8d6c961b-03d3-45a6-bf75-cd88d2efedfe","lastUpdateDateTime":"2021-05-12T19:09:55Z","createdDateTime":"2021-05-12T19:09:54Z","expirationDateTime":"2021-05-13T19:09:54Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:09:55Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"83495c04-89bc-423d-9a5b-6be49c482ef5","lastUpdateDateTime":"2021-06-25T19:37:20Z","createdDateTime":"2021-06-25T19:37:19Z","expirationDateTime":"2021-06-26T19:37:19Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -203,19 +300,79 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '6', 'apim-request-id', - '298def81-bdd4-4197-9ed8-4408f4b02918', + '58cad64c-705a-4337-afae-06d301dfcf6e', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:09:58 GMT' + 'Fri, 25 Jun 2021 19:37:34 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/8d6c961b-03d3-45a6-bf75-cd88d2efedfe') + .get('//text/analytics/v3.1/analyze/jobs/83495c04-89bc-423d-9a5b-6be49c482ef5') .query(true) - .reply(200, {"jobId":"8d6c961b-03d3-45a6-bf75-cd88d2efedfe","lastUpdateDateTime":"2021-05-12T19:09:55Z","createdDateTime":"2021-05-12T19:09:54Z","expirationDateTime":"2021-05-13T19:09:54Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:09:55Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"83495c04-89bc-423d-9a5b-6be49c482ef5","lastUpdateDateTime":"2021-06-25T19:37:20Z","createdDateTime":"2021-06-25T19:37:19Z","expirationDateTime":"2021-06-26T19:37:19Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '00eb7f7e-4642-4f9a-bbcd-e7e1e15121fb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:37:36 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/83495c04-89bc-423d-9a5b-6be49c482ef5') + .query(true) + .reply(200, {"jobId":"83495c04-89bc-423d-9a5b-6be49c482ef5","lastUpdateDateTime":"2021-06-25T19:37:20Z","createdDateTime":"2021-06-25T19:37:19Z","expirationDateTime":"2021-06-26T19:37:19Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + '90eb51dd-abb2-4d6f-ae3e-357cb4786ffe', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:37:38 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/83495c04-89bc-423d-9a5b-6be49c482ef5') + .query(true) + .reply(200, {"jobId":"83495c04-89bc-423d-9a5b-6be49c482ef5","lastUpdateDateTime":"2021-06-25T19:37:20Z","createdDateTime":"2021-06-25T19:37:19Z","expirationDateTime":"2021-06-26T19:37:19Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '11', + 'apim-request-id', + 'd41f52c4-9bc8-49ed-831e-bd664e8a8693', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:37:40 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/83495c04-89bc-423d-9a5b-6be49c482ef5') + .query(true) + .reply(200, {"jobId":"83495c04-89bc-423d-9a5b-6be49c482ef5","lastUpdateDateTime":"2021-06-25T19:37:20Z","createdDateTime":"2021-06-25T19:37:19Z","expirationDateTime":"2021-06-26T19:37:19Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -223,51 +380,71 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '6', 'apim-request-id', - 'e30c5e3b-be3c-4425-b7e9-51158301a8f5', + 'b7533ad3-19e8-4822-8a13-d75aca6a5062', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:37:42 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/83495c04-89bc-423d-9a5b-6be49c482ef5') + .query(true) + .reply(200, {"jobId":"83495c04-89bc-423d-9a5b-6be49c482ef5","lastUpdateDateTime":"2021-06-25T19:37:20Z","createdDateTime":"2021-06-25T19:37:19Z","expirationDateTime":"2021-06-26T19:37:19Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '9c6c50c6-d999-4412-9975-3029b8b241d8', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:00 GMT' + 'Fri, 25 Jun 2021 19:37:44 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/8d6c961b-03d3-45a6-bf75-cd88d2efedfe') + .get('//text/analytics/v3.1/analyze/jobs/83495c04-89bc-423d-9a5b-6be49c482ef5') .query(true) - .reply(200, {"jobId":"8d6c961b-03d3-45a6-bf75-cd88d2efedfe","lastUpdateDateTime":"2021-05-12T19:10:01Z","createdDateTime":"2021-05-12T19:09:54Z","expirationDateTime":"2021-05-13T19:09:54Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:01Z"},"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:10:01.7469887Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"My SSN is ***********.","id":"1","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":10,"length":11,"confidenceScore":0.65}],"warnings":[]},{"redactedText":"Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.","id":"2","entities":[{"text":"111000025","category":"PhoneNumber","offset":18,"length":9,"confidenceScore":0.8},{"text":"111000025","category":"ABARoutingNumber","offset":18,"length":9,"confidenceScore":0.75},{"text":"111000025","category":"NZSocialWelfareNumber","offset":18,"length":9,"confidenceScore":0.65}],"warnings":[]},{"redactedText":"Is 998.214.865-68 your Brazilian CPF number?","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + .reply(200, {"jobId":"83495c04-89bc-423d-9a5b-6be49c482ef5","lastUpdateDateTime":"2021-06-25T19:37:45Z","createdDateTime":"2021-06-25T19:37:19Z","expirationDateTime":"2021-06-26T19:37:19Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:37:45.7509635Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"My SSN is ***********.","id":"1","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":10,"length":11,"confidenceScore":0.65}],"warnings":[]},{"redactedText":"Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.","id":"2","entities":[{"text":"111000025","category":"PhoneNumber","offset":18,"length":9,"confidenceScore":0.8},{"text":"111000025","category":"ABARoutingNumber","offset":18,"length":9,"confidenceScore":0.75},{"text":"111000025","category":"NZSocialWelfareNumber","offset":18,"length":9,"confidenceScore":0.65}],"warnings":[]},{"redactedText":"Is 998.214.865-68 your Brazilian CPF number?","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '46', + '72', 'apim-request-id', - '997ebb1d-c55c-480c-886d-0a4c6f1a8a9c', + '9f57bc9b-7d22-4848-a545-67d3c2fca0cd', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:03 GMT' + 'Fri, 25 Jun 2021 19:37:47 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/8d6c961b-03d3-45a6-bf75-cd88d2efedfe') + .get('//text/analytics/v3.1/analyze/jobs/83495c04-89bc-423d-9a5b-6be49c482ef5') .query(true) - .reply(200, {"jobId":"8d6c961b-03d3-45a6-bf75-cd88d2efedfe","lastUpdateDateTime":"2021-05-12T19:10:01Z","createdDateTime":"2021-05-12T19:09:54Z","expirationDateTime":"2021-05-13T19:09:54Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:01Z"},"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:10:01.7469887Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"My SSN is ***********.","id":"1","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":10,"length":11,"confidenceScore":0.65}],"warnings":[]},{"redactedText":"Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.","id":"2","entities":[{"text":"111000025","category":"PhoneNumber","offset":18,"length":9,"confidenceScore":0.8},{"text":"111000025","category":"ABARoutingNumber","offset":18,"length":9,"confidenceScore":0.75},{"text":"111000025","category":"NZSocialWelfareNumber","offset":18,"length":9,"confidenceScore":0.65}],"warnings":[]},{"redactedText":"Is 998.214.865-68 your Brazilian CPF number?","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + .reply(200, {"jobId":"83495c04-89bc-423d-9a5b-6be49c482ef5","lastUpdateDateTime":"2021-06-25T19:37:45Z","createdDateTime":"2021-06-25T19:37:19Z","expirationDateTime":"2021-06-26T19:37:19Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:37:45.7509635Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"My SSN is ***********.","id":"1","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":10,"length":11,"confidenceScore":0.65}],"warnings":[]},{"redactedText":"Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.","id":"2","entities":[{"text":"111000025","category":"PhoneNumber","offset":18,"length":9,"confidenceScore":0.8},{"text":"111000025","category":"ABARoutingNumber","offset":18,"length":9,"confidenceScore":0.75},{"text":"111000025","category":"NZSocialWelfareNumber","offset":18,"length":9,"confidenceScore":0.65}],"warnings":[]},{"redactedText":"Is 998.214.865-68 your Brazilian CPF number?","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '48', + '71', 'apim-request-id', - 'c1e7b78f-f3ae-47c5-baa8-bb4962d80021', + '5e936302-57c3-4384-9a79-6874050c5356', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:03 GMT' + 'Fri, 25 Jun 2021 19:37:47 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.js index 5fde363dde5b..d5dc2f734a7b 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "29d2b399f939c646f380b2700b696e6e"; +module.exports.hash = "bec5840cf2c9dabcf50655ab317beba1"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,28 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6a42d10a-fcb0-4df7-b1c5-4425e8738a00', + 'f1e89488-5c48-497d-8485-8a52f85c0100', 'x-ms-ests-server', - '2.1.11654.25 - NCUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:10:03 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:37:47 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrvAG8Jxo4N7AUw08P4gyVxeP2-uzwlQ67MXSJpnpWFH7-p8ZsJ02XPf1CADotIh_wLE4H3CB_34j3La2T5B0cFS-TvQh1rQglRc5c-X_Xoi8XtWAIfqlSDoV4xbSEWuBCEru6RPhdf6FDCVDB6kl-Fyn2fsgyOzp7FGh0Z7BSDWQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrzECFc-SUhIQqFNGprerL74ZWSjL0GQAA3TfpVK1LrQYhPFP-MCd8d9tS05Qvq72Muo60oJ0k-IzTgb8cGCfaGM-aZ9e8vvn-Fbjp7dbaVeXpaDCWnUrrLRcuV3lr59VRygkVCmc-GuRb-CCk3HSmJf0YhaIiCpRZZHNxPhfZiiIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:10:03 GMT' + 'Fri, 25 Jun 2021 19:37:46 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,33 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'b6a65474-742c-4d60-a8b1-d5d37fbb6000', + '546b154e-3691-42e1-a17e-80b967706700', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:10:03 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:37:47 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrQNS5eXyLZmHTImj_q2KsFwgEwSZ568ToJ-usqhqSQH8sOiZRRGA7WPcYa4pIJM7CYPTs1Dn_BOUiZJjNhDyIpqCVrDZhzo_ffeoY7se3vZJTt4VbFfNk06O2fmgH-9saY1qHexG4k80eYYq-wdkewe0y1Vxxk-rKoW7Oz-8mi0QgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrfhYcK5ILM8joY8OG6lIyD7DVWDoqZqX5HZiZdAfTBBD4OWlqgcMGxXysSXuUvm8vDuTzSPnRPAn17VgPEhMqCc-eOfzVNQ1qJ4sIdShIFzcItBwpdqqXoZakbCkeJpsvDxiKTfnFqVkYnlbTDVp2Zd2furXPC5xzmyybwklHZU0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:10:03 GMT' + 'Fri, 25 Jun 2021 19:37:46 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=7faa4ca8-f885-4cea-bc55-8ec579a78770&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,44 +93,106 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'd8df8829-77a8-46cc-a784-90ab08edc800', + '1e233fee-f232-4e03-820f-8a8c37c36e00', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:10:03 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:37:47 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:10:03 GMT' + 'Fri, 25 Jun 2021 19:37:46 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/analyze', {"tasks":{"sentimentAnalysisTasks":[{"parameters":{"opinionMining":true,"stringIndexType":"Utf16CodeUnit"}}]},"analysisInput":{"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"}]}}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"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"}]},"tasks":{"sentimentAnalysisTasks":[{"parameters":{"opinionMining":true,"stringIndexType":"Utf16CodeUnit"}}]}}) .reply(202, "", [ 'Transfer-Encoding', 'chunked', 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/d21c3114-9a06-498f-8f4d-43f4615c5c6e', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/f77b83e0-b8f8-4de0-bd67-e2aae464375f', 'x-envoy-upstream-service-time', - '151', + '282', + 'apim-request-id', + 'c6e84a9e-4506-4a1d-be1d-37daa3104636', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:37:47 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/f77b83e0-b8f8-4de0-bd67-e2aae464375f') + .query(true) + .reply(200, {"jobId":"f77b83e0-b8f8-4de0-bd67-e2aae464375f","lastUpdateDateTime":"2021-06-25T19:37:48Z","createdDateTime":"2021-06-25T19:37:47Z","expirationDateTime":"2021-06-26T19:37:47Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + '6be0d8bf-4c8b-4e1b-8bf2-e9875db1cb87', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:37:47 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/f77b83e0-b8f8-4de0-bd67-e2aae464375f') + .query(true) + .reply(200, {"jobId":"f77b83e0-b8f8-4de0-bd67-e2aae464375f","lastUpdateDateTime":"2021-06-25T19:37:48Z","createdDateTime":"2021-06-25T19:37:47Z","expirationDateTime":"2021-06-26T19:37:47Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + 'ef2ff74a-37b2-4d65-92a2-d66b7103890a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:37:47 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/f77b83e0-b8f8-4de0-bd67-e2aae464375f') + .query(true) + .reply(200, {"jobId":"f77b83e0-b8f8-4de0-bd67-e2aae464375f","lastUpdateDateTime":"2021-06-25T19:37:48Z","createdDateTime":"2021-06-25T19:37:47Z","expirationDateTime":"2021-06-26T19:37:47Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', 'apim-request-id', - '9716e040-b636-4a61-9f7f-fc7d3a9187de', + '3ca90837-3bd8-4296-a347-c869ba6dd153', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:03 GMT' + 'Fri, 25 Jun 2021 19:37:49 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d21c3114-9a06-498f-8f4d-43f4615c5c6e') + .get('//text/analytics/v3.1/analyze/jobs/f77b83e0-b8f8-4de0-bd67-e2aae464375f') .query(true) - .reply(200, {"jobId":"d21c3114-9a06-498f-8f4d-43f4615c5c6e","lastUpdateDateTime":"2021-05-12T19:10:04Z","createdDateTime":"2021-05-12T19:10:03Z","expirationDateTime":"2021-05-13T19:10:03Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:04Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"f77b83e0-b8f8-4de0-bd67-e2aae464375f","lastUpdateDateTime":"2021-06-25T19:37:48Z","createdDateTime":"2021-06-25T19:37:47Z","expirationDateTime":"2021-06-26T19:37:47Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -143,19 +200,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - '0faef07c-c4ee-4f2e-bf60-9ce1c674ff1e', + 'bb75f332-fb37-4f17-ae5f-f5ee484ce0a6', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:03 GMT' + 'Fri, 25 Jun 2021 19:37:51 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d21c3114-9a06-498f-8f4d-43f4615c5c6e') + .get('//text/analytics/v3.1/analyze/jobs/f77b83e0-b8f8-4de0-bd67-e2aae464375f') .query(true) - .reply(200, {"jobId":"d21c3114-9a06-498f-8f4d-43f4615c5c6e","lastUpdateDateTime":"2021-05-12T19:10:04Z","createdDateTime":"2021-05-12T19:10:03Z","expirationDateTime":"2021-05-13T19:10:03Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:04Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"f77b83e0-b8f8-4de0-bd67-e2aae464375f","lastUpdateDateTime":"2021-06-25T19:37:48Z","createdDateTime":"2021-06-25T19:37:47Z","expirationDateTime":"2021-06-26T19:37:47Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -163,19 +220,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - '11196f92-bee4-472f-a1a5-ccc00a7ee49b', + '5a936f64-9552-4267-8746-484c7b153e31', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:03 GMT' + 'Fri, 25 Jun 2021 19:37:53 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d21c3114-9a06-498f-8f4d-43f4615c5c6e') + .get('//text/analytics/v3.1/analyze/jobs/f77b83e0-b8f8-4de0-bd67-e2aae464375f') .query(true) - .reply(200, {"jobId":"d21c3114-9a06-498f-8f4d-43f4615c5c6e","lastUpdateDateTime":"2021-05-12T19:10:04Z","createdDateTime":"2021-05-12T19:10:03Z","expirationDateTime":"2021-05-13T19:10:03Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:04Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"f77b83e0-b8f8-4de0-bd67-e2aae464375f","lastUpdateDateTime":"2021-06-25T19:37:48Z","createdDateTime":"2021-06-25T19:37:47Z","expirationDateTime":"2021-06-26T19:37:47Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -183,59 +240,59 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '8', 'apim-request-id', - '1d8fa9ff-1573-44be-8ffd-901c7f8f6490', + '49c5f8a5-5c8f-49b7-9ca2-76a1ad770617', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:05 GMT' + 'Fri, 25 Jun 2021 19:37:55 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d21c3114-9a06-498f-8f4d-43f4615c5c6e') + .get('//text/analytics/v3.1/analyze/jobs/f77b83e0-b8f8-4de0-bd67-e2aae464375f') .query(true) - .reply(200, {"jobId":"d21c3114-9a06-498f-8f4d-43f4615c5c6e","lastUpdateDateTime":"2021-05-12T19:10:04Z","createdDateTime":"2021-05-12T19:10:03Z","expirationDateTime":"2021-05-13T19:10:03Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:04Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"f77b83e0-b8f8-4de0-bd67-e2aae464375f","lastUpdateDateTime":"2021-06-25T19:37:48Z","createdDateTime":"2021-06-25T19:37:47Z","expirationDateTime":"2021-06-26T19:37:47Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '7', 'apim-request-id', - 'a9261998-c9dd-4029-9497-9620ee9d303d', + 'e20aeffe-826e-4098-a4d2-49c2d0d78030', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:07 GMT' + 'Fri, 25 Jun 2021 19:37:57 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d21c3114-9a06-498f-8f4d-43f4615c5c6e') + .get('//text/analytics/v3.1/analyze/jobs/f77b83e0-b8f8-4de0-bd67-e2aae464375f') .query(true) - .reply(200, {"jobId":"d21c3114-9a06-498f-8f4d-43f4615c5c6e","lastUpdateDateTime":"2021-05-12T19:10:04Z","createdDateTime":"2021-05-12T19:10:03Z","expirationDateTime":"2021-05-13T19:10:03Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:04Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"f77b83e0-b8f8-4de0-bd67-e2aae464375f","lastUpdateDateTime":"2021-06-25T19:37:48Z","createdDateTime":"2021-06-25T19:37:47Z","expirationDateTime":"2021-06-26T19:37:47Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '8', + '6', 'apim-request-id', - '666edc2d-a13f-49c5-8ee1-5443a8ac4d32', + 'db47a61f-7c36-4203-bed9-8aa543462a32', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:09 GMT' + 'Fri, 25 Jun 2021 19:37:59 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d21c3114-9a06-498f-8f4d-43f4615c5c6e') + .get('//text/analytics/v3.1/analyze/jobs/f77b83e0-b8f8-4de0-bd67-e2aae464375f') .query(true) - .reply(200, {"jobId":"d21c3114-9a06-498f-8f4d-43f4615c5c6e","lastUpdateDateTime":"2021-05-12T19:10:04Z","createdDateTime":"2021-05-12T19:10:03Z","expirationDateTime":"2021-05-13T19:10:03Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:04Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"f77b83e0-b8f8-4de0-bd67-e2aae464375f","lastUpdateDateTime":"2021-06-25T19:37:48Z","createdDateTime":"2021-06-25T19:37:47Z","expirationDateTime":"2021-06-26T19:37:47Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -243,19 +300,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '6', 'apim-request-id', - 'cdc6d585-83a9-4ed8-ad86-b3a195b3d99e', + '45352c5b-d547-4eab-9889-5710e0a13352', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:11 GMT' + 'Fri, 25 Jun 2021 19:38:01 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d21c3114-9a06-498f-8f4d-43f4615c5c6e') + .get('//text/analytics/v3.1/analyze/jobs/f77b83e0-b8f8-4de0-bd67-e2aae464375f') .query(true) - .reply(200, {"jobId":"d21c3114-9a06-498f-8f4d-43f4615c5c6e","lastUpdateDateTime":"2021-05-12T19:10:04Z","createdDateTime":"2021-05-12T19:10:03Z","expirationDateTime":"2021-05-13T19:10:03Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:04Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"f77b83e0-b8f8-4de0-bd67-e2aae464375f","lastUpdateDateTime":"2021-06-25T19:37:48Z","createdDateTime":"2021-06-25T19:37:47Z","expirationDateTime":"2021-06-26T19:37:47Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -263,39 +320,39 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - 'fce66b85-f826-494d-b70a-a5e4dcebb776', + '53e2ce73-5b52-4174-b92a-243c0fba6133', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:13 GMT' + 'Fri, 25 Jun 2021 19:38:04 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d21c3114-9a06-498f-8f4d-43f4615c5c6e') + .get('//text/analytics/v3.1/analyze/jobs/f77b83e0-b8f8-4de0-bd67-e2aae464375f') .query(true) - .reply(200, {"jobId":"d21c3114-9a06-498f-8f4d-43f4615c5c6e","lastUpdateDateTime":"2021-05-12T19:10:04Z","createdDateTime":"2021-05-12T19:10:03Z","expirationDateTime":"2021-05-13T19:10:03Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:04Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"f77b83e0-b8f8-4de0-bd67-e2aae464375f","lastUpdateDateTime":"2021-06-25T19:37:48Z","createdDateTime":"2021-06-25T19:37:47Z","expirationDateTime":"2021-06-26T19:37:47Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '7', 'apim-request-id', - '3fae6c0e-6cbf-4715-8b71-04632bbd505c', + 'bab6df71-d103-4263-90f1-2cd258e0d4ce', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:15 GMT' + 'Fri, 25 Jun 2021 19:38:06 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d21c3114-9a06-498f-8f4d-43f4615c5c6e') + .get('//text/analytics/v3.1/analyze/jobs/f77b83e0-b8f8-4de0-bd67-e2aae464375f') .query(true) - .reply(200, {"jobId":"d21c3114-9a06-498f-8f4d-43f4615c5c6e","lastUpdateDateTime":"2021-05-12T19:10:04Z","createdDateTime":"2021-05-12T19:10:03Z","expirationDateTime":"2021-05-13T19:10:03Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:04Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"f77b83e0-b8f8-4de0-bd67-e2aae464375f","lastUpdateDateTime":"2021-06-25T19:37:48Z","createdDateTime":"2021-06-25T19:37:47Z","expirationDateTime":"2021-06-26T19:37:47Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -303,19 +360,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - '10f28c8f-bb85-4588-abcb-02ff514e0cb9', + '5a64cb49-758b-4d55-9a30-164bac68c275', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:17 GMT' + 'Fri, 25 Jun 2021 19:38:08 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d21c3114-9a06-498f-8f4d-43f4615c5c6e') + .get('//text/analytics/v3.1/analyze/jobs/f77b83e0-b8f8-4de0-bd67-e2aae464375f') .query(true) - .reply(200, {"jobId":"d21c3114-9a06-498f-8f4d-43f4615c5c6e","lastUpdateDateTime":"2021-05-12T19:10:04Z","createdDateTime":"2021-05-12T19:10:03Z","expirationDateTime":"2021-05-13T19:10:03Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:04Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"f77b83e0-b8f8-4de0-bd67-e2aae464375f","lastUpdateDateTime":"2021-06-25T19:37:48Z","createdDateTime":"2021-06-25T19:37:47Z","expirationDateTime":"2021-06-26T19:37:47Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -323,59 +380,59 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - 'd59a8304-8f5d-4f09-880d-8365e0ab6b69', + '7391d718-5d20-4776-8e5f-02b3334af627', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:19 GMT' + 'Fri, 25 Jun 2021 19:38:10 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d21c3114-9a06-498f-8f4d-43f4615c5c6e') + .get('//text/analytics/v3.1/analyze/jobs/f77b83e0-b8f8-4de0-bd67-e2aae464375f') .query(true) - .reply(200, {"jobId":"d21c3114-9a06-498f-8f4d-43f4615c5c6e","lastUpdateDateTime":"2021-05-12T19:10:04Z","createdDateTime":"2021-05-12T19:10:03Z","expirationDateTime":"2021-05-13T19:10:03Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:04Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"f77b83e0-b8f8-4de0-bd67-e2aae464375f","lastUpdateDateTime":"2021-06-25T19:37:48Z","createdDateTime":"2021-06-25T19:37:47Z","expirationDateTime":"2021-06-26T19:37:47Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '17', + '7', 'apim-request-id', - 'cfcebd74-cdf4-4925-b048-83fa95e80fd3', + '3b9be156-adab-4fd2-a32c-fcf83c4b53d0', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:22 GMT' + 'Fri, 25 Jun 2021 19:38:12 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d21c3114-9a06-498f-8f4d-43f4615c5c6e') + .get('//text/analytics/v3.1/analyze/jobs/f77b83e0-b8f8-4de0-bd67-e2aae464375f') .query(true) - .reply(200, {"jobId":"d21c3114-9a06-498f-8f4d-43f4615c5c6e","lastUpdateDateTime":"2021-05-12T19:10:04Z","createdDateTime":"2021-05-12T19:10:03Z","expirationDateTime":"2021-05-13T19:10:03Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:04Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"f77b83e0-b8f8-4de0-bd67-e2aae464375f","lastUpdateDateTime":"2021-06-25T19:37:48Z","createdDateTime":"2021-06-25T19:37:47Z","expirationDateTime":"2021-06-26T19:37:47Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '8', + '7', 'apim-request-id', - 'b758ad99-0524-4951-b748-bee71c8e6a80', + '728f0aab-3f5a-430b-9a5f-4b963c6d4d29', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:24 GMT' + 'Fri, 25 Jun 2021 19:38:14 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d21c3114-9a06-498f-8f4d-43f4615c5c6e') + .get('//text/analytics/v3.1/analyze/jobs/f77b83e0-b8f8-4de0-bd67-e2aae464375f') .query(true) - .reply(200, {"jobId":"d21c3114-9a06-498f-8f4d-43f4615c5c6e","lastUpdateDateTime":"2021-05-12T19:10:04Z","createdDateTime":"2021-05-12T19:10:03Z","expirationDateTime":"2021-05-13T19:10:03Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:04Z"},"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + .reply(200, {"jobId":"f77b83e0-b8f8-4de0-bd67-e2aae464375f","lastUpdateDateTime":"2021-06-25T19:37:48Z","createdDateTime":"2021-06-25T19:37:47Z","expirationDateTime":"2021-06-26T19:37:47Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -383,51 +440,111 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '8', 'apim-request-id', - 'fad62f37-fee5-46d6-a9b0-353409b7b4be', + '767fdfbf-2637-4f65-8655-ebdccdcf374a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:38:16 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/f77b83e0-b8f8-4de0-bd67-e2aae464375f') + .query(true) + .reply(200, {"jobId":"f77b83e0-b8f8-4de0-bd67-e2aae464375f","lastUpdateDateTime":"2021-06-25T19:37:48Z","createdDateTime":"2021-06-25T19:37:47Z","expirationDateTime":"2021-06-26T19:37:47Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '331df413-5f4b-4312-a1e0-4a5e8b003019', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:26 GMT' + 'Fri, 25 Jun 2021 19:38:18 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d21c3114-9a06-498f-8f4d-43f4615c5c6e') + .get('//text/analytics/v3.1/analyze/jobs/f77b83e0-b8f8-4de0-bd67-e2aae464375f') .query(true) - .reply(200, {"jobId":"d21c3114-9a06-498f-8f4d-43f4615c5c6e","lastUpdateDateTime":"2021-05-12T19:10:27Z","createdDateTime":"2021-05-12T19:10:03Z","expirationDateTime":"2021-05-13T19:10:03Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:27Z"},"completed":1,"failed":0,"inProgress":0,"total":1,"sentimentAnalysisTasks":[{"lastUpdateDateTime":"2021-05-12T19:10:27.1561899Z","name":"NA","state":"succeeded","results":{"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","targets":[{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":4,"length":4,"text":"food","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/0/assessments/0"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":30,"length":2,"text":"AC","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/1/assessments/0"},{"relationType":"assessment","ref":"#/documents/1/sentences/1/assessments/1"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":9,"text":"breakfast","relations":[{"relationType":"assessment","ref":"#/documents/2/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":32,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/2/sentences/0/assessments/1"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":11,"length":5,"text":"hotel","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/0"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":24,"length":9,"text":"breakfast","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/1"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":41,"length":15,"text":"shuttle service","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/2"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":65,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/1"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/3"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/2"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":0.97,"negative":0.03},"offset":27,"length":4,"text":"view","relations":[{"relationType":"assessment","ref":"#/documents/4/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/4/sentences/0/assessments/1"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":5,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":15,"length":9,"text":"bathrooms","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/1"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":42,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/2"}]}],"assessments":[{"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.","targets":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":4,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/0/assessments/0"}]}],"assessments":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":11,"length":7,"text":"smelled","isNegated":false}]}],"warnings":[]}],"errors":[],"modelVersion":"2020-04-01"}}]}}, [ + .reply(200, {"jobId":"f77b83e0-b8f8-4de0-bd67-e2aae464375f","lastUpdateDateTime":"2021-06-25T19:37:48Z","createdDateTime":"2021-06-25T19:37:47Z","expirationDateTime":"2021-06-26T19:37:47Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '94', + '53', + 'apim-request-id', + '0ca8214d-420b-4357-9a41-d3cf457b07cd', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:38:20 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/f77b83e0-b8f8-4de0-bd67-e2aae464375f') + .query(true) + .reply(200, {"jobId":"f77b83e0-b8f8-4de0-bd67-e2aae464375f","lastUpdateDateTime":"2021-06-25T19:37:48Z","createdDateTime":"2021-06-25T19:37:47Z","expirationDateTime":"2021-06-26T19:37:47Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '18', + 'apim-request-id', + '298fd6b2-e003-4f24-8d18-8881e7e7f9e4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:38:22 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/f77b83e0-b8f8-4de0-bd67-e2aae464375f') + .query(true) + .reply(200, {"jobId":"f77b83e0-b8f8-4de0-bd67-e2aae464375f","lastUpdateDateTime":"2021-06-25T19:38:24Z","createdDateTime":"2021-06-25T19:37:47Z","expirationDateTime":"2021-06-26T19:37:47Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"sentimentAnalysisTasks":[{"lastUpdateDateTime":"2021-06-25T19:38:24.4741198Z","taskName":"SentimentAnalysis_latest","state":"succeeded","results":{"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","targets":[{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":4,"length":4,"text":"food","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/0/assessments/0"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":30,"length":2,"text":"AC","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/1/assessments/0"},{"relationType":"assessment","ref":"#/documents/1/sentences/1/assessments/1"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":9,"text":"breakfast","relations":[{"relationType":"assessment","ref":"#/documents/2/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":32,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/2/sentences/0/assessments/1"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":11,"length":5,"text":"hotel","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/0"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":24,"length":9,"text":"breakfast","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/1"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":41,"length":15,"text":"shuttle service","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/2"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":65,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/1"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/3"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/2"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":0.97,"negative":0.03},"offset":27,"length":4,"text":"view","relations":[{"relationType":"assessment","ref":"#/documents/4/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/4/sentences/0/assessments/1"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":5,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":15,"length":9,"text":"bathrooms","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/1"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":42,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/2"}]}],"assessments":[{"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.","targets":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":4,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/0/assessments/0"}]}],"assessments":[{"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', + 'x-envoy-upstream-service-time', + '151', 'apim-request-id', - '1dbdbba9-6321-4084-a08c-1ecf687186cc', + '170d37fa-01ad-47f3-9792-770c7b0a687a', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:29 GMT' + 'Fri, 25 Jun 2021 19:38:24 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/d21c3114-9a06-498f-8f4d-43f4615c5c6e') + .get('//text/analytics/v3.1/analyze/jobs/f77b83e0-b8f8-4de0-bd67-e2aae464375f') .query(true) - .reply(200, {"jobId":"d21c3114-9a06-498f-8f4d-43f4615c5c6e","lastUpdateDateTime":"2021-05-12T19:10:27Z","createdDateTime":"2021-05-12T19:10:03Z","expirationDateTime":"2021-05-13T19:10:03Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:27Z"},"completed":1,"failed":0,"inProgress":0,"total":1,"sentimentAnalysisTasks":[{"lastUpdateDateTime":"2021-05-12T19:10:27.1561899Z","name":"NA","state":"succeeded","results":{"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","targets":[{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":4,"length":4,"text":"food","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/0/assessments/0"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":30,"length":2,"text":"AC","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/1/assessments/0"},{"relationType":"assessment","ref":"#/documents/1/sentences/1/assessments/1"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":9,"text":"breakfast","relations":[{"relationType":"assessment","ref":"#/documents/2/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":32,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/2/sentences/0/assessments/1"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":11,"length":5,"text":"hotel","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/0"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":24,"length":9,"text":"breakfast","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/1"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":41,"length":15,"text":"shuttle service","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/2"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":65,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/1"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/3"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/2"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":0.97,"negative":0.03},"offset":27,"length":4,"text":"view","relations":[{"relationType":"assessment","ref":"#/documents/4/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/4/sentences/0/assessments/1"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":5,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":15,"length":9,"text":"bathrooms","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/1"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":42,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/2"}]}],"assessments":[{"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.","targets":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":4,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/0/assessments/0"}]}],"assessments":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":11,"length":7,"text":"smelled","isNegated":false}]}],"warnings":[]}],"errors":[],"modelVersion":"2020-04-01"}}]}}, [ + .reply(200, {"jobId":"f77b83e0-b8f8-4de0-bd67-e2aae464375f","lastUpdateDateTime":"2021-06-25T19:38:24Z","createdDateTime":"2021-06-25T19:37:47Z","expirationDateTime":"2021-06-26T19:37:47Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"sentimentAnalysisTasks":[{"lastUpdateDateTime":"2021-06-25T19:38:24.4741198Z","taskName":"SentimentAnalysis_latest","state":"succeeded","results":{"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","targets":[{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":4,"length":4,"text":"food","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/0/assessments/0"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":30,"length":2,"text":"AC","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/1/assessments/0"},{"relationType":"assessment","ref":"#/documents/1/sentences/1/assessments/1"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":9,"text":"breakfast","relations":[{"relationType":"assessment","ref":"#/documents/2/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":32,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/2/sentences/0/assessments/1"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":11,"length":5,"text":"hotel","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/0"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":24,"length":9,"text":"breakfast","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/1"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":41,"length":15,"text":"shuttle service","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/2"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":65,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/1"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/3"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/2"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":0.97,"negative":0.03},"offset":27,"length":4,"text":"view","relations":[{"relationType":"assessment","ref":"#/documents/4/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/4/sentences/0/assessments/1"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":5,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":15,"length":9,"text":"bathrooms","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/1"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":42,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/2"}]}],"assessments":[{"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.","targets":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":4,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/0/assessments/0"}]}],"assessments":[{"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', 'x-envoy-upstream-service-time', - '87', + '126', 'apim-request-id', - '393b1498-7878-4326-8d40-28a7e468d25d', + 'be46c52a-c520-4171-83b5-e537430c09f6', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:29 GMT' + 'Fri, 25 Jun 2021 19:38:25 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.js index 254df133b644..c04bf7963aee 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "666e9177c1bc81a96d65596ec9259bde"; +module.exports.hash = "54aec3c73b9ae9b09b8628e841ec1182"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,26 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '0538ccc8-9e03-44d4-8131-bb774fea8200', + '35bfed11-12bf-4ced-b1ac-287aac290400', 'x-ms-ests-server', - '2.1.11654.25 - EUS ProdSlices', + '2.1.11829.8 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:10:30 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:38:26 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrQh6e1d8A0E7zsjV5Kc07O1v9GTYZxFRQqpIIh4t4FCN1gkgaxVF5syPNLYxXF2-PAjttMWzW3oRumplLYXpBqSuAkqG6Z_BgRIvbaOyg8XHuI_PY5sz-Mlc-wqqzprsrgayPQeXHIouEeC2dloS7s39-Qt0kqzp4k6yndo4QvxYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrApKELN-4NovKipm6-5Vf36PPaf4IeOAQN5rdLF39Knnqe0aRj4rv1T9323jZ4QX2XBFIJhH-oVu5qXYkYdSAjRmFMk7BRgWAW_-wUTT5BJ_Rceo-kNQeO62iQVHEx-wxhwUN1POq_hiBIGT81raqkmM2FE0nIHtNxTlxK_tRyWggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:10:29 GMT', + 'Fri, 25 Jun 2021 19:38:25 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,28 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'effc2a94-f558-4e23-9dd5-8d2b8d176100', + '493aab2b-fb42-40cd-a2d0-93f517935a00', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:10:30 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EQAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:38:26 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrLx-wA0lGrzxcUQMjTH_nCXecQpkPuxwkdefrlWecpQZgSyAr3D1FGdwhmAM_gSLNXXdjQadNzPr9sgo23GbXmBrChssv5_hIH1xV1gJejMVcOntbJCy7QMT9fQodPvx8iQpOQKcslK2l4sVIG3yaaWJYiHqMlxCm46F3JgmildcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrxswxnzKYd-Nf2LsXMhiXZDfGB3d_0WLdVA2GfoXetbmS4U1jX4t6C0nIcqhJSrR5QOM_X3tdivYStOn-wV36AvE6hI48xEbuEc4pcr4QEkWc8EjWkW9cQCarR7Ntu7A3dTFggoS_78Fjtar1uB_8TCLAU0vfjgxNWR1n7_1kwUUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:10:29 GMT', + 'Fri, 25 Jun 2021 19:38:25 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=fd42f80e-36d6-45ac-a329-50292434865d&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,46 +93,46 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '428c50f7-d2da-402a-a895-32120ac05200', + '3fda1bdb-b195-4e81-ba11-6a2cc2525e00', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:10:30 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:38:26 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:10:29 GMT', + 'Fri, 25 Jun 2021 19:38:25 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/analyze', {"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]},"analysisInput":{"documents":[{"id":"1","text":"","language":""},{"id":"2","text":"I did not like the hotel we stayed at. It was too expensive.","language":"english"},{"id":"3","text":"The restaurant had really good food. I recommend you try it.","language":"en"}]}}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"1","text":"","language":""},{"id":"2","text":"I did not like the hotel we stayed at. It was too expensive.","language":"english"},{"id":"3","text":"The restaurant had really good food. I recommend you try it.","language":"en"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) .reply(202, "", [ 'Transfer-Encoding', 'chunked', 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/b2114dd9-ede3-4327-9166-7f8969e7e533', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/b7de0318-b313-4ecd-880c-4405a0859b3d', 'x-envoy-upstream-service-time', - '180', + '294', 'apim-request-id', - 'cd506a1e-39f6-461d-8461-50e36e2eed77', + 'b5293b8c-50ed-42d6-8a8f-9feea7f1dda3', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:30 GMT' + 'Fri, 25 Jun 2021 19:38:26 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b2114dd9-ede3-4327-9166-7f8969e7e533') + .get('//text/analytics/v3.1/analyze/jobs/b7de0318-b313-4ecd-880c-4405a0859b3d') .query(true) - .reply(200, {"jobId":"b2114dd9-ede3-4327-9166-7f8969e7e533","lastUpdateDateTime":"2021-05-12T19:10:30Z","createdDateTime":"2021-05-12T19:10:30Z","expirationDateTime":"2021-05-13T19:10:30Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:30Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"b7de0318-b313-4ecd-880c-4405a0859b3d","lastUpdateDateTime":"2021-06-25T19:38:27Z","createdDateTime":"2021-06-25T19:38:26Z","expirationDateTime":"2021-06-26T19:38:26Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -143,119 +140,119 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - '3b4c466f-2f34-4e06-9117-cdc128fdaebc', + 'd1570d3c-9da3-42a0-bb5b-a1d962b373ad', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:30 GMT' + 'Fri, 25 Jun 2021 19:38:26 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b2114dd9-ede3-4327-9166-7f8969e7e533') + .get('//text/analytics/v3.1/analyze/jobs/b7de0318-b313-4ecd-880c-4405a0859b3d') .query(true) - .reply(200, {"jobId":"b2114dd9-ede3-4327-9166-7f8969e7e533","lastUpdateDateTime":"2021-05-12T19:10:30Z","createdDateTime":"2021-05-12T19:10:30Z","expirationDateTime":"2021-05-13T19:10:30Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:30Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"b7de0318-b313-4ecd-880c-4405a0859b3d","lastUpdateDateTime":"2021-06-25T19:38:27Z","createdDateTime":"2021-06-25T19:38:26Z","expirationDateTime":"2021-06-26T19:38:26Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '9', 'apim-request-id', - '32909872-e700-49fb-a7ba-7450d1598d6e', + 'c8bb67a2-6eab-41f2-a9f1-503e56f13fb9', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:30 GMT' + 'Fri, 25 Jun 2021 19:38:26 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b2114dd9-ede3-4327-9166-7f8969e7e533') + .get('//text/analytics/v3.1/analyze/jobs/b7de0318-b313-4ecd-880c-4405a0859b3d') .query(true) - .reply(200, {"jobId":"b2114dd9-ede3-4327-9166-7f8969e7e533","lastUpdateDateTime":"2021-05-12T19:10:32Z","createdDateTime":"2021-05-12T19:10:30Z","expirationDateTime":"2021-05-13T19:10:30Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:32Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"b7de0318-b313-4ecd-880c-4405a0859b3d","lastUpdateDateTime":"2021-06-25T19:38:27Z","createdDateTime":"2021-06-25T19:38:26Z","expirationDateTime":"2021-06-26T19:38:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '8', + '7', 'apim-request-id', - 'c192ef94-4f7f-48b4-9459-467bb739abce', + '20b71380-9840-4579-866d-d805b1ad6711', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:32 GMT' + 'Fri, 25 Jun 2021 19:38:28 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b2114dd9-ede3-4327-9166-7f8969e7e533') + .get('//text/analytics/v3.1/analyze/jobs/b7de0318-b313-4ecd-880c-4405a0859b3d') .query(true) - .reply(200, {"jobId":"b2114dd9-ede3-4327-9166-7f8969e7e533","lastUpdateDateTime":"2021-05-12T19:10:34Z","createdDateTime":"2021-05-12T19:10:30Z","expirationDateTime":"2021-05-13T19:10:30Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:34Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"b7de0318-b313-4ecd-880c-4405a0859b3d","lastUpdateDateTime":"2021-06-25T19:38:29Z","createdDateTime":"2021-06-25T19:38:26Z","expirationDateTime":"2021-06-26T19:38:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '8', + '7', 'apim-request-id', - '2064ea8f-a51c-4e99-a19d-a32ca313b207', + '2ed37ec0-f88a-4cfd-af1e-22e12905585b', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:34 GMT' + 'Fri, 25 Jun 2021 19:38:31 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b2114dd9-ede3-4327-9166-7f8969e7e533') + .get('//text/analytics/v3.1/analyze/jobs/b7de0318-b313-4ecd-880c-4405a0859b3d') .query(true) - .reply(200, {"jobId":"b2114dd9-ede3-4327-9166-7f8969e7e533","lastUpdateDateTime":"2021-05-12T19:10:36Z","createdDateTime":"2021-05-12T19:10:30Z","expirationDateTime":"2021-05-13T19:10:30Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:36Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"b7de0318-b313-4ecd-880c-4405a0859b3d","lastUpdateDateTime":"2021-06-25T19:38:29Z","createdDateTime":"2021-06-25T19:38:26Z","expirationDateTime":"2021-06-26T19:38:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '8', + '6', 'apim-request-id', - 'e481e05e-a0c4-4a22-bc75-7283c523fd29', + '8ba46887-3a24-4c93-bc7a-0597670673cf', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:36 GMT' + 'Fri, 25 Jun 2021 19:38:33 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b2114dd9-ede3-4327-9166-7f8969e7e533') + .get('//text/analytics/v3.1/analyze/jobs/b7de0318-b313-4ecd-880c-4405a0859b3d') .query(true) - .reply(200, {"jobId":"b2114dd9-ede3-4327-9166-7f8969e7e533","lastUpdateDateTime":"2021-05-12T19:10:36Z","createdDateTime":"2021-05-12T19:10:30Z","expirationDateTime":"2021-05-13T19:10:30Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:36Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"b7de0318-b313-4ecd-880c-4405a0859b3d","lastUpdateDateTime":"2021-06-25T19:38:34Z","createdDateTime":"2021-06-25T19:38:26Z","expirationDateTime":"2021-06-26T19:38:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '10', + '7', 'apim-request-id', - 'd63d23b6-2107-4683-a73c-abd49b46db5d', + 'a9b1678c-8450-4d00-9e6e-a51047adf306', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:38 GMT' + 'Fri, 25 Jun 2021 19:38:35 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b2114dd9-ede3-4327-9166-7f8969e7e533') + .get('//text/analytics/v3.1/analyze/jobs/b7de0318-b313-4ecd-880c-4405a0859b3d') .query(true) - .reply(200, {"jobId":"b2114dd9-ede3-4327-9166-7f8969e7e533","lastUpdateDateTime":"2021-05-12T19:10:36Z","createdDateTime":"2021-05-12T19:10:30Z","expirationDateTime":"2021-05-13T19:10:30Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:36Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"b7de0318-b313-4ecd-880c-4405a0859b3d","lastUpdateDateTime":"2021-06-25T19:38:34Z","createdDateTime":"2021-06-25T19:38:26Z","expirationDateTime":"2021-06-26T19:38:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -263,271 +260,251 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '10', 'apim-request-id', - '2b5a118b-d9c7-4b6a-ae06-9f9410ab6b95', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:10:40 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b2114dd9-ede3-4327-9166-7f8969e7e533') - .query(true) - .reply(200, {"jobId":"b2114dd9-ede3-4327-9166-7f8969e7e533","lastUpdateDateTime":"2021-05-12T19:10:42Z","createdDateTime":"2021-05-12T19:10:30Z","expirationDateTime":"2021-05-13T19:10:30Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:42Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:10:42.9189095Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"3","keyPhrases":["restaurant","good food"],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '47', - 'apim-request-id', - 'a56b9fbc-10d3-4f87-9842-b6ca7b68cb51', + '8828b23c-a948-43f4-80d2-f5aae123cd62', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:43 GMT' + 'Fri, 25 Jun 2021 19:38:37 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b2114dd9-ede3-4327-9166-7f8969e7e533') + .get('//text/analytics/v3.1/analyze/jobs/b7de0318-b313-4ecd-880c-4405a0859b3d') .query(true) - .reply(200, {"jobId":"b2114dd9-ede3-4327-9166-7f8969e7e533","lastUpdateDateTime":"2021-05-12T19:10:42Z","createdDateTime":"2021-05-12T19:10:30Z","expirationDateTime":"2021-05-13T19:10:30Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:42Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:10:42.9189095Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"3","keyPhrases":["restaurant","good food"],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"b7de0318-b313-4ecd-880c-4405a0859b3d","lastUpdateDateTime":"2021-06-25T19:38:34Z","createdDateTime":"2021-06-25T19:38:26Z","expirationDateTime":"2021-06-26T19:38:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '56', + '7', 'apim-request-id', - 'b1426824-90ba-4587-b3e7-c087939a3d6c', + 'c9bcfa31-b1d2-447a-8442-533da583a60c', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:45 GMT' + 'Fri, 25 Jun 2021 19:38:39 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b2114dd9-ede3-4327-9166-7f8969e7e533') + .get('//text/analytics/v3.1/analyze/jobs/b7de0318-b313-4ecd-880c-4405a0859b3d') .query(true) - .reply(200, {"jobId":"b2114dd9-ede3-4327-9166-7f8969e7e533","lastUpdateDateTime":"2021-05-12T19:10:42Z","createdDateTime":"2021-05-12T19:10:30Z","expirationDateTime":"2021-05-13T19:10:30Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:42Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:10:42.9189095Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"3","keyPhrases":["restaurant","good food"],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"b7de0318-b313-4ecd-880c-4405a0859b3d","lastUpdateDateTime":"2021-06-25T19:38:41Z","createdDateTime":"2021-06-25T19:38:26Z","expirationDateTime":"2021-06-26T19:38:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:38:41.6154975Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '65', + '60', 'apim-request-id', - '9a52c8d2-369d-44a9-8fdb-09757687af99', + '75965dcb-d716-4454-b110-7c03e009661c', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:47 GMT' + 'Fri, 25 Jun 2021 19:38:41 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b2114dd9-ede3-4327-9166-7f8969e7e533') + .get('//text/analytics/v3.1/analyze/jobs/b7de0318-b313-4ecd-880c-4405a0859b3d') .query(true) - .reply(200, {"jobId":"b2114dd9-ede3-4327-9166-7f8969e7e533","lastUpdateDateTime":"2021-05-12T19:10:42Z","createdDateTime":"2021-05-12T19:10:30Z","expirationDateTime":"2021-05-13T19:10:30Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:42Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:10:42.9189095Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"3","keyPhrases":["restaurant","good food"],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"b7de0318-b313-4ecd-880c-4405a0859b3d","lastUpdateDateTime":"2021-06-25T19:38:41Z","createdDateTime":"2021-06-25T19:38:26Z","expirationDateTime":"2021-06-26T19:38:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:38:41.6154975Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '67', + '156', 'apim-request-id', - 'd0fd4be2-722e-4467-96b1-0afe5e5f64a5', + '4968cf6e-c357-4678-a13b-c0bb8bcad34f', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:49 GMT' + 'Fri, 25 Jun 2021 19:38:43 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b2114dd9-ede3-4327-9166-7f8969e7e533') + .get('//text/analytics/v3.1/analyze/jobs/b7de0318-b313-4ecd-880c-4405a0859b3d') .query(true) - .reply(200, {"jobId":"b2114dd9-ede3-4327-9166-7f8969e7e533","lastUpdateDateTime":"2021-05-12T19:10:42Z","createdDateTime":"2021-05-12T19:10:30Z","expirationDateTime":"2021-05-13T19:10:30Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:42Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:10:42.9189095Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"3","keyPhrases":["restaurant","good food"],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"b7de0318-b313-4ecd-880c-4405a0859b3d","lastUpdateDateTime":"2021-06-25T19:38:41Z","createdDateTime":"2021-06-25T19:38:26Z","expirationDateTime":"2021-06-26T19:38:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:38:41.6154975Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '77', + '83', 'apim-request-id', - 'ce86646c-5b8e-4054-962e-447c51253c22', + '75884198-87ed-4724-af4a-37448ef8bdb1', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:51 GMT' + 'Fri, 25 Jun 2021 19:38:45 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b2114dd9-ede3-4327-9166-7f8969e7e533') + .get('//text/analytics/v3.1/analyze/jobs/b7de0318-b313-4ecd-880c-4405a0859b3d') .query(true) - .reply(200, {"jobId":"b2114dd9-ede3-4327-9166-7f8969e7e533","lastUpdateDateTime":"2021-05-12T19:10:51Z","createdDateTime":"2021-05-12T19:10:30Z","expirationDateTime":"2021-05-13T19:10:30Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:51Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:10:51.8059854Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"The restaurant had really good food. I recommend you try it.","id":"3","entities":[],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:10:42.9189095Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"3","keyPhrases":["restaurant","good food"],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"b7de0318-b313-4ecd-880c-4405a0859b3d","lastUpdateDateTime":"2021-06-25T19:38:41Z","createdDateTime":"2021-06-25T19:38:26Z","expirationDateTime":"2021-06-26T19:38:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:38:41.6154975Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '104', + '114', 'apim-request-id', - 'b0dfd2cd-e8af-490a-8900-da42b174465d', + '64c86e72-e9f4-4fde-9dac-122ae1bb79b4', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:53 GMT' + 'Fri, 25 Jun 2021 19:38:47 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b2114dd9-ede3-4327-9166-7f8969e7e533') + .get('//text/analytics/v3.1/analyze/jobs/b7de0318-b313-4ecd-880c-4405a0859b3d') .query(true) - .reply(200, {"jobId":"b2114dd9-ede3-4327-9166-7f8969e7e533","lastUpdateDateTime":"2021-05-12T19:10:51Z","createdDateTime":"2021-05-12T19:10:30Z","expirationDateTime":"2021-05-13T19:10:30Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:51Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:10:51.8059854Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"The restaurant had really good food. I recommend you try it.","id":"3","entities":[],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:10:42.9189095Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"3","keyPhrases":["restaurant","good food"],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"b7de0318-b313-4ecd-880c-4405a0859b3d","lastUpdateDateTime":"2021-06-25T19:38:41Z","createdDateTime":"2021-06-25T19:38:26Z","expirationDateTime":"2021-06-26T19:38:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:38:41.6154975Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '101', + '2675', 'apim-request-id', - 'bf5546af-5af7-4de3-8a5c-3db747009685', + '4c4c5d4d-d4cb-4dfc-9814-f0995116f3f6', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:55 GMT' + 'Fri, 25 Jun 2021 19:38:52 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b2114dd9-ede3-4327-9166-7f8969e7e533') + .get('//text/analytics/v3.1/analyze/jobs/b7de0318-b313-4ecd-880c-4405a0859b3d') .query(true) - .reply(200, {"jobId":"b2114dd9-ede3-4327-9166-7f8969e7e533","lastUpdateDateTime":"2021-05-12T19:10:51Z","createdDateTime":"2021-05-12T19:10:30Z","expirationDateTime":"2021-05-13T19:10:30Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:51Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:10:51.8059854Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"The restaurant had really good food. I recommend you try it.","id":"3","entities":[],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:10:42.9189095Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"3","keyPhrases":["restaurant","good food"],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"b7de0318-b313-4ecd-880c-4405a0859b3d","lastUpdateDateTime":"2021-06-25T19:38:41Z","createdDateTime":"2021-06-25T19:38:26Z","expirationDateTime":"2021-06-26T19:38:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:38:41.6154975Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '110', + '78', 'apim-request-id', - '5aba3ed6-bd90-4945-84e7-d90049b7292f', + '07f47288-87cc-49fc-a100-8c6e5e0e0dca', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:10:57 GMT' + 'Fri, 25 Jun 2021 19:38:54 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b2114dd9-ede3-4327-9166-7f8969e7e533') + .get('//text/analytics/v3.1/analyze/jobs/b7de0318-b313-4ecd-880c-4405a0859b3d') .query(true) - .reply(200, {"jobId":"b2114dd9-ede3-4327-9166-7f8969e7e533","lastUpdateDateTime":"2021-05-12T19:10:51Z","createdDateTime":"2021-05-12T19:10:30Z","expirationDateTime":"2021-05-13T19:10:30Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:51Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:10:51.8059854Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"The restaurant had really good food. I recommend you try it.","id":"3","entities":[],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:10:42.9189095Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"3","keyPhrases":["restaurant","good food"],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"b7de0318-b313-4ecd-880c-4405a0859b3d","lastUpdateDateTime":"2021-06-25T19:38:57Z","createdDateTime":"2021-06-25T19:38:26Z","expirationDateTime":"2021-06-26T19:38:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:38:41.6154975Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:38:57.1752116Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"The restaurant had really good food. I recommend you try it.","id":"3","entities":[],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '82', + '253', 'apim-request-id', - '1377e0f7-22f6-44d8-affc-46305eb09448', + 'f0c050fe-1f4f-4f68-91f2-c18e91e4a010', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:11:00 GMT' + 'Fri, 25 Jun 2021 19:38:56 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b2114dd9-ede3-4327-9166-7f8969e7e533') + .get('//text/analytics/v3.1/analyze/jobs/b7de0318-b313-4ecd-880c-4405a0859b3d') .query(true) - .reply(200, {"jobId":"b2114dd9-ede3-4327-9166-7f8969e7e533","lastUpdateDateTime":"2021-05-12T19:10:51Z","createdDateTime":"2021-05-12T19:10:30Z","expirationDateTime":"2021-05-13T19:10:30Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:51Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:10:51.8059854Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"The restaurant had really good food. I recommend you try it.","id":"3","entities":[],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:10:42.9189095Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"3","keyPhrases":["restaurant","good food"],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"b7de0318-b313-4ecd-880c-4405a0859b3d","lastUpdateDateTime":"2021-06-25T19:38:57Z","createdDateTime":"2021-06-25T19:38:26Z","expirationDateTime":"2021-06-26T19:38:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:38:41.6154975Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:38:57.1752116Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"The restaurant had really good food. I recommend you try it.","id":"3","entities":[],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '99', + '131', 'apim-request-id', - '5d4cb4b9-5372-4d8d-93f4-f610fe62e03f', + '2960962c-7707-41ec-b53f-8af439b1d350', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:11:02 GMT' + 'Fri, 25 Jun 2021 19:38:58 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b2114dd9-ede3-4327-9166-7f8969e7e533') + .get('//text/analytics/v3.1/analyze/jobs/b7de0318-b313-4ecd-880c-4405a0859b3d') .query(true) - .reply(200, {"jobId":"b2114dd9-ede3-4327-9166-7f8969e7e533","lastUpdateDateTime":"2021-05-12T19:10:51Z","createdDateTime":"2021-05-12T19:10:30Z","expirationDateTime":"2021-05-13T19:10:30Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:10:51Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:10:51.8059854Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"The restaurant had really good food. I recommend you try it.","id":"3","entities":[],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:10:42.9189095Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"3","keyPhrases":["restaurant","good food"],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"b7de0318-b313-4ecd-880c-4405a0859b3d","lastUpdateDateTime":"2021-06-25T19:38:57Z","createdDateTime":"2021-06-25T19:38:26Z","expirationDateTime":"2021-06-26T19:38:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:38:41.6154975Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:38:57.1752116Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"The restaurant had really good food. I recommend you try it.","id":"3","entities":[],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '99', + '109', 'apim-request-id', - '94283f02-afac-45ce-a6ca-db1d33aba2cb', + '83073367-4d49-4353-8cc6-16decdb3c394', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:11:04 GMT' + 'Fri, 25 Jun 2021 19:39:01 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b2114dd9-ede3-4327-9166-7f8969e7e533') + .get('//text/analytics/v3.1/analyze/jobs/b7de0318-b313-4ecd-880c-4405a0859b3d') .query(true) - .reply(200, {"jobId":"b2114dd9-ede3-4327-9166-7f8969e7e533","lastUpdateDateTime":"2021-05-12T19:11:05Z","createdDateTime":"2021-05-12T19:10:30Z","expirationDateTime":"2021-05-13T19:10:30Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:05Z"},"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:05.6466409Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.87}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:10:51.8059854Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"The restaurant had really good food. I recommend you try it.","id":"3","entities":[],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:10:42.9189095Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"3","keyPhrases":["restaurant","good food"],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"b7de0318-b313-4ecd-880c-4405a0859b3d","lastUpdateDateTime":"2021-06-25T19:39:02Z","createdDateTime":"2021-06-25T19:38:26Z","expirationDateTime":"2021-06-26T19:38:26Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:38:41.6154975Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:38:57.1752116Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"The restaurant had really good food. I recommend you try it.","id":"3","entities":[],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:02.988893Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"3","keyPhrases":["good food","restaurant"],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '158', + '265', 'apim-request-id', - '28973731-22d7-4091-9499-2a8ec5fea1b9', + 'bcfd9868-6a41-4125-b8e2-a3484b7846fd', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:11:06 GMT' + 'Fri, 25 Jun 2021 19:39:03 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b2114dd9-ede3-4327-9166-7f8969e7e533') + .get('//text/analytics/v3.1/analyze/jobs/b7de0318-b313-4ecd-880c-4405a0859b3d') .query(true) - .reply(200, {"jobId":"b2114dd9-ede3-4327-9166-7f8969e7e533","lastUpdateDateTime":"2021-05-12T19:11:05Z","createdDateTime":"2021-05-12T19:10:30Z","expirationDateTime":"2021-05-13T19:10:30Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:11:05Z"},"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-12T19:11:05.6466409Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.87}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:10:51.8059854Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"The restaurant had really good food. I recommend you try it.","id":"3","entities":[],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:10:42.9189095Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"3","keyPhrases":["restaurant","good food"],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: da,de,en,es,fi,fr,it,ja,ko,nl,pl,pt-BR,pt-PT,ru,sv,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"b7de0318-b313-4ecd-880c-4405a0859b3d","lastUpdateDateTime":"2021-06-25T19:39:02Z","createdDateTime":"2021-06-25T19:38:26Z","expirationDateTime":"2021-06-26T19:38:26Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:38:41.6154975Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:38:57.1752116Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"The restaurant had really good food. I recommend you try it.","id":"3","entities":[],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:39:02.988893Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"3","keyPhrases":["good food","restaurant"],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '123', + '201', 'apim-request-id', - '490bf562-2f01-4c85-a785-4656d75ade69', + '78c9a353-54cf-46d9-975d-ea0a25f36826', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:11:06 GMT' + 'Fri, 25 Jun 2021 19:39:03 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_statistics.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_statistics.js deleted file mode 100644 index 4c0c77131ef9..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_statistics.js +++ /dev/null @@ -1,333 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "e5e3ed340719a68a7b1a9cadf60f7160"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - '1136feff-cc47-48a2-95f0-ef8ebf51fd00', - 'x-ms-ests-server', - '2.1.11654.25 - EUS ProdSlices', - 'Set-Cookie', - 'fpc=Ave_GjjohnVApSG4euXngXU; expires=Wed, 09-Jun-2021 21:37:42 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrZAM-AtZWG0g_zukEnV4g4kTaGf9ZKLT8U_MV-FN4MWoS2B9BkKktzQbpNgLXdSK2t-D7A5lKbwIEekqOOXkC9W64TZ3n4tQ_VjWFRJmkIhoy2DjXWoVLaBmgkZkf19c5TMJvp59gjw9djyUJlGqkz4-tOWPhF9ggsuzh4VQgbnMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Mon, 10 May 2021 21:37:41 GMT', - 'Content-Length', - '980' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ - 'Cache-Control', - 'max-age=86400, private', - 'Content-Type', - 'application/json; charset=utf-8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'X-Content-Type-Options', - 'nosniff', - 'Access-Control-Allow-Origin', - '*', - 'Access-Control-Allow-Methods', - 'GET, OPTIONS', - 'P3P', - 'CP="DSP CUR OTPi IND OTRi ONL FIN"', - 'x-ms-request-id', - 'aa649f74-4d59-4262-8a0c-324b86d00300', - 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=Ave_GjjohnVApSG4euXngXU; expires=Wed, 09-Jun-2021 21:37:42 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrJZr7OazJpfRpNZDyPW2fYYjTL9_f8aGO3geJfiE83TdgyA3mZJdRsDV48wmmCZyK3RL9omZL3OEwk8kZN9-DkFFpmHOCAPk7kYFdaOjR-FUw91EqnPGCd2a45h418jVK5XrJFbuJOrGQe41VLJQEtdGYSzJKcMPb4dFFPeIgjY0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Mon, 10 May 2021 21:37:41 GMT', - 'Content-Length', - '1651' -]); - -nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"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', - 'ffed6060-64ef-4bb5-a1f1-4959782d6500', - 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Ave_GjjohnVApSG4euXngXVz_bg1AQAAAKWeK9gOAAAA; expires=Wed, 09-Jun-2021 21:37:42 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', - 'Set-Cookie', - 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', - 'Date', - 'Mon, 10 May 2021 21:37:41 GMT', - 'Content-Length', - '1331' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/analyze', {"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]},"analysisInput":{"documents":[{"id":"56","text":":)"},{"id":"0","text":":("},{"id":"22","text":""},{"id":"19","text":":P"},{"id":"1","text":":D"}]}}) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/eba0f1ab-02b3-425f-864b-c8182cb7f3bf', - 'x-envoy-upstream-service-time', - '5274', - 'apim-request-id', - '06f9a52c-4a24-4c38-b5ea-bc946572ca4d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 10 May 2021 21:37:52 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/eba0f1ab-02b3-425f-864b-c8182cb7f3bf') - .query(true) - .reply(200, {"jobId":"eba0f1ab-02b3-425f-864b-c8182cb7f3bf","lastUpdateDateTime":"2021-05-10T21:37:52Z","createdDateTime":"2021-05-10T21:37:47Z","expirationDateTime":"2021-05-11T21:37:47Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-10T21:37:52Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '137', - 'apim-request-id', - '2d33efe2-eba1-4a11-be97-9100ddf6a30b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 10 May 2021 21:37:53 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/eba0f1ab-02b3-425f-864b-c8182cb7f3bf') - .query(true) - .reply(200, {"jobId":"eba0f1ab-02b3-425f-864b-c8182cb7f3bf","lastUpdateDateTime":"2021-05-10T21:37:52Z","createdDateTime":"2021-05-10T21:37:47Z","expirationDateTime":"2021-05-11T21:37:47Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-10T21:37:52Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '2669', - 'apim-request-id', - 'a9319602-4dba-409b-b613-ff26aed3c93e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 10 May 2021 21:37:55 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/eba0f1ab-02b3-425f-864b-c8182cb7f3bf') - .query(true) - .reply(200, {"jobId":"eba0f1ab-02b3-425f-864b-c8182cb7f3bf","lastUpdateDateTime":"2021-05-10T21:37:58Z","createdDateTime":"2021-05-10T21:37:47Z","expirationDateTime":"2021-05-11T21:37:47Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-10T21:37:58Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '2611', - 'apim-request-id', - '247c4e9b-f6a3-4566-9e97-9f97109da453', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 10 May 2021 21:38:00 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/eba0f1ab-02b3-425f-864b-c8182cb7f3bf') - .query(true) - .reply(200, {"jobId":"eba0f1ab-02b3-425f-864b-c8182cb7f3bf","lastUpdateDateTime":"2021-05-10T21:37:58Z","createdDateTime":"2021-05-10T21:37:47Z","expirationDateTime":"2021-05-11T21:37:47Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-10T21:37:58Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'babc33f5-b3d4-42b6-be9c-969de3f39b03', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 10 May 2021 21:38:02 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/eba0f1ab-02b3-425f-864b-c8182cb7f3bf') - .query(true) - .reply(200, {"jobId":"eba0f1ab-02b3-425f-864b-c8182cb7f3bf","lastUpdateDateTime":"2021-05-10T21:38:08Z","createdDateTime":"2021-05-10T21:37:47Z","expirationDateTime":"2021-05-11T21:37:47Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-10T21:38:08Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '5041', - 'apim-request-id', - 'b295da67-3326-44be-9ef5-67b8188028b1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 10 May 2021 21:38:09 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/eba0f1ab-02b3-425f-864b-c8182cb7f3bf') - .query(true) - .reply(200, {"jobId":"eba0f1ab-02b3-425f-864b-c8182cb7f3bf","lastUpdateDateTime":"2021-05-10T21:38:12Z","createdDateTime":"2021-05-10T21:37:47Z","expirationDateTime":"2021-05-11T21:37:47Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-10T21:38:12Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-10T21:38:12.2215868Z","name":"NA","state":"succeeded","results":{"statistics":{"documentsCount":6,"validDocumentsCount":4,"erroneousDocumentsCount":2,"transactionsCount":4},"documents":[{"redactedText":":)","id":"56","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"warnings":[]},{"redactedText":":(","id":"0","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"warnings":[]},{"redactedText":":P","id":"19","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"warnings":[]},{"redactedText":":D","id":"1","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"warnings":[]}],"errors":[{"id":"22","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"22","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '63', - 'apim-request-id', - 'f06b08a4-678e-4b51-b356-9f6bf560888a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 10 May 2021 21:38:12 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/eba0f1ab-02b3-425f-864b-c8182cb7f3bf') - .query(true) - .reply(200, {"jobId":"eba0f1ab-02b3-425f-864b-c8182cb7f3bf","lastUpdateDateTime":"2021-05-10T21:38:12Z","createdDateTime":"2021-05-10T21:37:47Z","expirationDateTime":"2021-05-11T21:37:47Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-10T21:38:12Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-10T21:38:12.2215868Z","name":"NA","state":"succeeded","results":{"statistics":{"documentsCount":6,"validDocumentsCount":4,"erroneousDocumentsCount":2,"transactionsCount":4},"documents":[{"redactedText":":)","id":"56","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"warnings":[]},{"redactedText":":(","id":"0","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"warnings":[]},{"redactedText":":P","id":"19","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"warnings":[]},{"redactedText":":D","id":"1","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"warnings":[]}],"errors":[{"id":"22","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"22","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '63', - 'apim-request-id', - '4dacbac6-00f2-49c2-b1a0-853caae15b7f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 10 May 2021 21:38:14 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/eba0f1ab-02b3-425f-864b-c8182cb7f3bf') - .query(true) - .reply(200, {"jobId":"eba0f1ab-02b3-425f-864b-c8182cb7f3bf","lastUpdateDateTime":"2021-05-10T21:38:12Z","createdDateTime":"2021-05-10T21:37:47Z","expirationDateTime":"2021-05-11T21:37:47Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-10T21:38:12Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-10T21:38:12.2215868Z","name":"NA","state":"succeeded","results":{"statistics":{"documentsCount":6,"validDocumentsCount":4,"erroneousDocumentsCount":2,"transactionsCount":4},"documents":[{"redactedText":":)","id":"56","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"warnings":[]},{"redactedText":":(","id":"0","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"warnings":[]},{"redactedText":":P","id":"19","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"warnings":[]},{"redactedText":":D","id":"1","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"warnings":[]}],"errors":[{"id":"22","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"22","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '2632', - 'apim-request-id', - '346ec427-d858-4309-9a06-3654f972acb2', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 10 May 2021 21:38:18 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/eba0f1ab-02b3-425f-864b-c8182cb7f3bf') - .query(true) - .reply(200, {"jobId":"eba0f1ab-02b3-425f-864b-c8182cb7f3bf","lastUpdateDateTime":"2021-05-10T21:38:19Z","createdDateTime":"2021-05-10T21:37:47Z","expirationDateTime":"2021-05-11T21:37:47Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-10T21:38:19Z"},"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-10T21:38:19.6534734Z","name":"NA","state":"succeeded","results":{"statistics":{"documentsCount":6,"validDocumentsCount":4,"erroneousDocumentsCount":2,"transactionsCount":4},"documents":[{"id":"56","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"warnings":[]},{"id":"0","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"warnings":[]},{"id":"19","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"warnings":[]},{"id":"1","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"warnings":[]}],"errors":[{"id":"22","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"22","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-10T21:38:12.2215868Z","name":"NA","state":"succeeded","results":{"statistics":{"documentsCount":6,"validDocumentsCount":4,"erroneousDocumentsCount":2,"transactionsCount":4},"documents":[{"redactedText":":)","id":"56","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"warnings":[]},{"redactedText":":(","id":"0","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"warnings":[]},{"redactedText":":P","id":"19","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"warnings":[]},{"redactedText":":D","id":"1","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"warnings":[]}],"errors":[{"id":"22","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"22","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-10T21:38:19.7770251Z","name":"NA","state":"succeeded","results":{"statistics":{"documentsCount":5,"validDocumentsCount":4,"erroneousDocumentsCount":1,"transactionsCount":4},"documents":[{"id":"56","keyPhrases":[],"statistics":{"charactersCount":2,"transactionsCount":1},"warnings":[]},{"id":"0","keyPhrases":[],"statistics":{"charactersCount":2,"transactionsCount":1},"warnings":[]},{"id":"19","keyPhrases":[],"statistics":{"charactersCount":2,"transactionsCount":1},"warnings":[]},{"id":"1","keyPhrases":[],"statistics":{"charactersCount":2,"transactionsCount":1},"warnings":[]}],"errors":[{"id":"22","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7763', - 'apim-request-id', - '0682559a-bdf3-42c3-8323-7e7bcc0c3a17', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 10 May 2021 21:38:28 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/eba0f1ab-02b3-425f-864b-c8182cb7f3bf') - .query(true) - .reply(200, {"jobId":"eba0f1ab-02b3-425f-864b-c8182cb7f3bf","lastUpdateDateTime":"2021-05-10T21:38:19Z","createdDateTime":"2021-05-10T21:37:47Z","expirationDateTime":"2021-05-11T21:37:47Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-10T21:38:19Z"},"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-10T21:38:19.6534734Z","name":"NA","state":"succeeded","results":{"statistics":{"documentsCount":6,"validDocumentsCount":4,"erroneousDocumentsCount":2,"transactionsCount":4},"documents":[{"id":"56","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"warnings":[]},{"id":"0","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"warnings":[]},{"id":"19","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"warnings":[]},{"id":"1","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"warnings":[]}],"errors":[{"id":"22","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"22","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-10T21:38:12.2215868Z","name":"NA","state":"succeeded","results":{"statistics":{"documentsCount":6,"validDocumentsCount":4,"erroneousDocumentsCount":2,"transactionsCount":4},"documents":[{"redactedText":":)","id":"56","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"warnings":[]},{"redactedText":":(","id":"0","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"warnings":[]},{"redactedText":":P","id":"19","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"warnings":[]},{"redactedText":":D","id":"1","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"warnings":[]}],"errors":[{"id":"22","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"22","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-10T21:38:19.7770251Z","name":"NA","state":"succeeded","results":{"statistics":{"documentsCount":5,"validDocumentsCount":4,"erroneousDocumentsCount":1,"transactionsCount":4},"documents":[{"id":"56","keyPhrases":[],"statistics":{"charactersCount":2,"transactionsCount":1},"warnings":[]},{"id":"0","keyPhrases":[],"statistics":{"charactersCount":2,"transactionsCount":1},"warnings":[]},{"id":"19","keyPhrases":[],"statistics":{"charactersCount":2,"transactionsCount":1},"warnings":[]},{"id":"1","keyPhrases":[],"statistics":{"charactersCount":2,"transactionsCount":1},"warnings":[]}],"errors":[{"id":"22","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2020-07-01"}}]}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '5305', - 'apim-request-id', - '6d02c40b-84a9-424f-962b-0ebe9972fbdf', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 10 May 2021 21:38:33 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.js index 2c14916e1fb5..0eb90853485a 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "26656b81182f3cf3deec733c6e95081d"; +module.exports.hash = "4ffd3e67d009b80590ba217bf3c541ab"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,30 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'aafbf9a6-b019-4789-8025-855982247500', + '169f6f2a-c0f1-4690-9296-75e382787c00', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:13:50 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:41:25 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrF8nYJK6gAD7QiuKMFkwBcXg5wt0E35cfaBK9WhAa9vLiPw2gpysZFWDZzDjhX_qYrvAZjZueRI4o9as5AF5T9aaB9t8dNquSIQIyqPXr_lBl3TxiKlKiJd71uLwr2UIbgO1R3w5oMmw5btcJ2Su2yaaV_3cBiFeOrSpGKFxy27EgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr1PR00W4NwGiX9uBBtG-sX9w1RUWoDXUY3j7_xDW9GNPdYoFUKXRgYMZ8eu6Hx_ahhVkqIu4bIBh2EsnE0TLh-xfK5tmONcLYp6mnDqs4k0wUpHRQVeuiqkgviN5SOonDF8LOhwHM78KNjnVQ3XNFpqr8yEGqJKgGESKGlv0zTwggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:13:50 GMT', + 'Fri, 25 Jun 2021 19:41:25 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,33 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '29a193e4-4207-4b4e-982a-fd82b4c65e00', + '5d543b59-2435-4161-9c9e-e923c9b47100', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:13:50 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:41:25 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrYzpPkT5imig-YdyM0Y0fpU1QOYToiOt0bLBp7ST1fw8WSKPX2xMxyuzf2hMshhniHPBZ4wKG-kjWIu4QgW3FYesbr0lbHzfn_1rwAFg2YW-JMqt4zag4RJKd8Oylkdrr3fMhgzGyEbyJGht90ejmJhpP2HFgHfUqrXVFEFwZdwsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrvGbV6IOzm34YGCa9xs7KnEn9UaNyNqA2cFd8Y1B4H_70CCnD6eslLK-OUmjhVBS4IClMqyJIcdqg7TFRQVR0tMuGKtDDSTajLtcVRKET5g4MNz0cEcvS7NE5NHvYyUG2FAW9J_VzX3-lmpIT4f7jSNmkgqzodZXmCE6BX138Nv8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:13:50 GMT' + 'Fri, 25 Jun 2021 19:41:25 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=d26ca79f-1155-4e19-84de-0d6fc23b3e8d&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,64 +93,66 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '36779b91-cc05-4719-a9c1-efc9cbe65a00', + 'c2c46a2d-caf1-495a-b60f-6d2084c17100', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:13:50 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:41:25 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:13:50 GMT' + 'Fri, 25 Jun 2021 19:41:25 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/analyze', {"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]},"analysisInput":{"documents":[{"id":"1","text":"I will go to the park."},{"id":"2","text":"Este es un document escrito en Español."},{"id":"3","text":"猫は幸せ"}]}}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"1","text":"I will go to the park."},{"id":"2","text":"Este es un document escrito en Español."},{"id":"3","text":"猫は幸せ"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) .reply(202, "", [ 'Transfer-Encoding', 'chunked', 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/b1c60140-add7-49f2-8f24-88693a0a5eaf', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/9e8820de-bb7d-4838-8560-584c19de1f95', 'x-envoy-upstream-service-time', - '155', + '258', 'apim-request-id', - 'a04106df-9131-4fa4-9a47-63bfedd96441', + 'd0cf1590-24a2-46ec-b5c1-572a3fe5cf18', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:50 GMT' + 'Fri, 25 Jun 2021 19:41:25 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b1c60140-add7-49f2-8f24-88693a0a5eaf') + .get('//text/analytics/v3.1/analyze/jobs/9e8820de-bb7d-4838-8560-584c19de1f95') .query(true) - .reply(200, {"jobId":"b1c60140-add7-49f2-8f24-88693a0a5eaf","lastUpdateDateTime":"2021-05-12T19:13:50Z","createdDateTime":"2021-05-12T19:13:50Z","expirationDateTime":"2021-05-13T19:13:50Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:50Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"9e8820de-bb7d-4838-8560-584c19de1f95","lastUpdateDateTime":"2021-06-25T19:41:25Z","createdDateTime":"2021-06-25T19:41:25Z","expirationDateTime":"2021-06-26T19:41:25Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '7', 'apim-request-id', - 'a54967e1-c7c0-4ef6-95ea-cfab445eba76', + '6ecbe06f-97c2-4337-a4d2-55d22e264823', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:50 GMT' + 'Fri, 25 Jun 2021 19:41:25 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b1c60140-add7-49f2-8f24-88693a0a5eaf') + .get('//text/analytics/v3.1/analyze/jobs/9e8820de-bb7d-4838-8560-584c19de1f95') .query(true) - .reply(200, {"jobId":"b1c60140-add7-49f2-8f24-88693a0a5eaf","lastUpdateDateTime":"2021-05-12T19:13:50Z","createdDateTime":"2021-05-12T19:13:50Z","expirationDateTime":"2021-05-13T19:13:50Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:50Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"9e8820de-bb7d-4838-8560-584c19de1f95","lastUpdateDateTime":"2021-06-25T19:41:25Z","createdDateTime":"2021-06-25T19:41:25Z","expirationDateTime":"2021-06-26T19:41:25Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -163,39 +160,59 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - '31446fe0-53a8-470c-b68e-fa30998b2dc1', + 'bf0d2328-e072-46df-ac3c-b53a0f471ccd', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:50 GMT' + 'Fri, 25 Jun 2021 19:41:25 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b1c60140-add7-49f2-8f24-88693a0a5eaf') + .get('//text/analytics/v3.1/analyze/jobs/9e8820de-bb7d-4838-8560-584c19de1f95') .query(true) - .reply(200, {"jobId":"b1c60140-add7-49f2-8f24-88693a0a5eaf","lastUpdateDateTime":"2021-05-12T19:13:52Z","createdDateTime":"2021-05-12T19:13:50Z","expirationDateTime":"2021-05-13T19:13:50Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:52Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"9e8820de-bb7d-4838-8560-584c19de1f95","lastUpdateDateTime":"2021-06-25T19:41:27Z","createdDateTime":"2021-06-25T19:41:25Z","expirationDateTime":"2021-06-26T19:41:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '7', + '8', + 'apim-request-id', + 'f1ade6bd-02a8-413b-9c2c-4e280a077a2e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:41:27 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9e8820de-bb7d-4838-8560-584c19de1f95') + .query(true) + .reply(200, {"jobId":"9e8820de-bb7d-4838-8560-584c19de1f95","lastUpdateDateTime":"2021-06-25T19:41:27Z","createdDateTime":"2021-06-25T19:41:25Z","expirationDateTime":"2021-06-26T19:41:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', 'apim-request-id', - '846a9ea4-ed13-418c-84c0-168e5a3f865e', + '0e650116-85b7-4193-9222-17e1d8fe5230', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:52 GMT' + 'Fri, 25 Jun 2021 19:41:29 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b1c60140-add7-49f2-8f24-88693a0a5eaf') + .get('//text/analytics/v3.1/analyze/jobs/9e8820de-bb7d-4838-8560-584c19de1f95') .query(true) - .reply(200, {"jobId":"b1c60140-add7-49f2-8f24-88693a0a5eaf","lastUpdateDateTime":"2021-05-12T19:13:53Z","createdDateTime":"2021-05-12T19:13:50Z","expirationDateTime":"2021-05-13T19:13:50Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:53Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"9e8820de-bb7d-4838-8560-584c19de1f95","lastUpdateDateTime":"2021-06-25T19:41:27Z","createdDateTime":"2021-06-25T19:41:25Z","expirationDateTime":"2021-06-26T19:41:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -203,171 +220,331 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - 'e92131df-369b-4358-bab5-866886e2eb84', + '1a4a1f87-7292-4b96-9791-47c9f50802a0', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:54 GMT' + 'Fri, 25 Jun 2021 19:41:31 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b1c60140-add7-49f2-8f24-88693a0a5eaf') + .get('//text/analytics/v3.1/analyze/jobs/9e8820de-bb7d-4838-8560-584c19de1f95') .query(true) - .reply(200, {"jobId":"b1c60140-add7-49f2-8f24-88693a0a5eaf","lastUpdateDateTime":"2021-05-12T19:13:53Z","createdDateTime":"2021-05-12T19:13:50Z","expirationDateTime":"2021-05-13T19:13:50Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:53Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"9e8820de-bb7d-4838-8560-584c19de1f95","lastUpdateDateTime":"2021-06-25T19:41:32Z","createdDateTime":"2021-06-25T19:41:25Z","expirationDateTime":"2021-06-26T19:41:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:32.2071115Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"Español","category":"Skill","offset":31,"length":7,"confidenceScore":0.92}],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '8', + '76', + 'apim-request-id', + 'fd2fc49e-d3be-4012-84e1-04f3c6324aaa', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:41:33 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9e8820de-bb7d-4838-8560-584c19de1f95') + .query(true) + .reply(200, {"jobId":"9e8820de-bb7d-4838-8560-584c19de1f95","lastUpdateDateTime":"2021-06-25T19:41:32Z","createdDateTime":"2021-06-25T19:41:25Z","expirationDateTime":"2021-06-26T19:41:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:32.2071115Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"Español","category":"Skill","offset":31,"length":7,"confidenceScore":0.92}],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '62', + 'apim-request-id', + '1a4d3f16-99da-4655-8ac7-fa037edbecd7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:41:35 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9e8820de-bb7d-4838-8560-584c19de1f95') + .query(true) + .reply(200, {"jobId":"9e8820de-bb7d-4838-8560-584c19de1f95","lastUpdateDateTime":"2021-06-25T19:41:32Z","createdDateTime":"2021-06-25T19:41:25Z","expirationDateTime":"2021-06-26T19:41:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:32.2071115Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"Español","category":"Skill","offset":31,"length":7,"confidenceScore":0.92}],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '64', + 'apim-request-id', + '4d2af8dd-3a16-48c1-9ac1-f51967dc64dc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:41:37 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9e8820de-bb7d-4838-8560-584c19de1f95') + .query(true) + .reply(200, {"jobId":"9e8820de-bb7d-4838-8560-584c19de1f95","lastUpdateDateTime":"2021-06-25T19:41:32Z","createdDateTime":"2021-06-25T19:41:25Z","expirationDateTime":"2021-06-26T19:41:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:32.2071115Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"Español","category":"Skill","offset":31,"length":7,"confidenceScore":0.92}],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '84', + 'apim-request-id', + '50bbbba0-f24d-479e-9851-a1bdf285c06b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:41:40 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9e8820de-bb7d-4838-8560-584c19de1f95') + .query(true) + .reply(200, {"jobId":"9e8820de-bb7d-4838-8560-584c19de1f95","lastUpdateDateTime":"2021-06-25T19:41:32Z","createdDateTime":"2021-06-25T19:41:25Z","expirationDateTime":"2021-06-26T19:41:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:32.2071115Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"Español","category":"Skill","offset":31,"length":7,"confidenceScore":0.92}],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '64', + 'apim-request-id', + 'ee307fb5-4030-4818-ae1a-d953b9649efa', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:41:42 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9e8820de-bb7d-4838-8560-584c19de1f95') + .query(true) + .reply(200, {"jobId":"9e8820de-bb7d-4838-8560-584c19de1f95","lastUpdateDateTime":"2021-06-25T19:41:44Z","createdDateTime":"2021-06-25T19:41:25Z","expirationDateTime":"2021-06-26T19:41:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:32.2071115Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"Español","category":"Skill","offset":31,"length":7,"confidenceScore":0.92}],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:44.8119849Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '136', + 'apim-request-id', + 'c32ae35d-8cde-46f4-a4e4-c88d6d361c55', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:41:44 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9e8820de-bb7d-4838-8560-584c19de1f95') + .query(true) + .reply(200, {"jobId":"9e8820de-bb7d-4838-8560-584c19de1f95","lastUpdateDateTime":"2021-06-25T19:41:44Z","createdDateTime":"2021-06-25T19:41:25Z","expirationDateTime":"2021-06-26T19:41:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:32.2071115Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"Español","category":"Skill","offset":31,"length":7,"confidenceScore":0.92}],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:44.8119849Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '123', + 'apim-request-id', + '08fbcb78-361f-4633-836a-7dc41bcfb891', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:41:47 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9e8820de-bb7d-4838-8560-584c19de1f95') + .query(true) + .reply(200, {"jobId":"9e8820de-bb7d-4838-8560-584c19de1f95","lastUpdateDateTime":"2021-06-25T19:41:44Z","createdDateTime":"2021-06-25T19:41:25Z","expirationDateTime":"2021-06-26T19:41:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:32.2071115Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"Español","category":"Skill","offset":31,"length":7,"confidenceScore":0.92}],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:44.8119849Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '120', + 'apim-request-id', + '137b1245-a980-4827-8000-bb77f931964a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:41:49 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9e8820de-bb7d-4838-8560-584c19de1f95') + .query(true) + .reply(200, {"jobId":"9e8820de-bb7d-4838-8560-584c19de1f95","lastUpdateDateTime":"2021-06-25T19:41:44Z","createdDateTime":"2021-06-25T19:41:25Z","expirationDateTime":"2021-06-26T19:41:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:32.2071115Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"Español","category":"Skill","offset":31,"length":7,"confidenceScore":0.92}],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:44.8119849Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '123', 'apim-request-id', - '2a8d0f80-24f8-4c70-8b92-9aa5e2fbe3d2', + '4d023281-19cd-4880-bd6a-db06e51719d2', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:56 GMT' + 'Fri, 25 Jun 2021 19:41:51 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b1c60140-add7-49f2-8f24-88693a0a5eaf') + .get('//text/analytics/v3.1/analyze/jobs/9e8820de-bb7d-4838-8560-584c19de1f95') .query(true) - .reply(200, {"jobId":"b1c60140-add7-49f2-8f24-88693a0a5eaf","lastUpdateDateTime":"2021-05-12T19:13:58Z","createdDateTime":"2021-05-12T19:13:50Z","expirationDateTime":"2021-05-13T19:13:50Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:58Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:58.0540389Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["Este es","document escrito en Español"],"warnings":[]},{"id":"3","keyPhrases":["猫は幸せ"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"9e8820de-bb7d-4838-8560-584c19de1f95","lastUpdateDateTime":"2021-06-25T19:41:44Z","createdDateTime":"2021-06-25T19:41:25Z","expirationDateTime":"2021-06-26T19:41:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:32.2071115Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"Español","category":"Skill","offset":31,"length":7,"confidenceScore":0.92}],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:44.8119849Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '48', + '124', 'apim-request-id', - '9ca0b32e-5c12-40b0-ad15-4d11bfc224ad', + '32368be5-ee90-44b9-ab8a-2d5996109506', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:58 GMT' + 'Fri, 25 Jun 2021 19:41:53 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b1c60140-add7-49f2-8f24-88693a0a5eaf') + .get('//text/analytics/v3.1/analyze/jobs/9e8820de-bb7d-4838-8560-584c19de1f95') .query(true) - .reply(200, {"jobId":"b1c60140-add7-49f2-8f24-88693a0a5eaf","lastUpdateDateTime":"2021-05-12T19:13:58Z","createdDateTime":"2021-05-12T19:13:50Z","expirationDateTime":"2021-05-13T19:13:50Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:58Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:58.0540389Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["Este es","document escrito en Español"],"warnings":[]},{"id":"3","keyPhrases":["猫は幸せ"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"9e8820de-bb7d-4838-8560-584c19de1f95","lastUpdateDateTime":"2021-06-25T19:41:44Z","createdDateTime":"2021-06-25T19:41:25Z","expirationDateTime":"2021-06-26T19:41:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:32.2071115Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"Español","category":"Skill","offset":31,"length":7,"confidenceScore":0.92}],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:44.8119849Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '57', + '125', 'apim-request-id', - '33c961e5-e75b-4384-80fb-77883c2a97b0', + 'cca4dd5a-1f5c-4936-9adc-85a2908cec97', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:00 GMT' + 'Fri, 25 Jun 2021 19:41:55 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b1c60140-add7-49f2-8f24-88693a0a5eaf') + .get('//text/analytics/v3.1/analyze/jobs/9e8820de-bb7d-4838-8560-584c19de1f95') .query(true) - .reply(200, {"jobId":"b1c60140-add7-49f2-8f24-88693a0a5eaf","lastUpdateDateTime":"2021-05-12T19:13:58Z","createdDateTime":"2021-05-12T19:13:50Z","expirationDateTime":"2021-05-13T19:13:50Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:58Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:58.0540389Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["Este es","document escrito en Español"],"warnings":[]},{"id":"3","keyPhrases":["猫は幸せ"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"9e8820de-bb7d-4838-8560-584c19de1f95","lastUpdateDateTime":"2021-06-25T19:41:44Z","createdDateTime":"2021-06-25T19:41:25Z","expirationDateTime":"2021-06-26T19:41:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:32.2071115Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"Español","category":"Skill","offset":31,"length":7,"confidenceScore":0.92}],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:44.8119849Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '47', + '171', 'apim-request-id', - '98dc7914-797a-4522-8e7a-19c591c21d76', + '958dbc30-6038-4e94-9436-6b6b72c82d4d', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:02 GMT' + 'Fri, 25 Jun 2021 19:41:57 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b1c60140-add7-49f2-8f24-88693a0a5eaf') + .get('//text/analytics/v3.1/analyze/jobs/9e8820de-bb7d-4838-8560-584c19de1f95') .query(true) - .reply(200, {"jobId":"b1c60140-add7-49f2-8f24-88693a0a5eaf","lastUpdateDateTime":"2021-05-12T19:14:04Z","createdDateTime":"2021-05-12T19:13:50Z","expirationDateTime":"2021-05-13T19:13:50Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:04Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:14:04.8052561Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:58.0540389Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["Este es","document escrito en Español"],"warnings":[]},{"id":"3","keyPhrases":["猫は幸せ"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"9e8820de-bb7d-4838-8560-584c19de1f95","lastUpdateDateTime":"2021-06-25T19:41:44Z","createdDateTime":"2021-06-25T19:41:25Z","expirationDateTime":"2021-06-26T19:41:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:32.2071115Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"Español","category":"Skill","offset":31,"length":7,"confidenceScore":0.92}],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:44.8119849Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '92', + '131', 'apim-request-id', - 'd269e8b1-5fa0-411e-839b-6699205ea2f1', + '21589e37-ec30-437c-8359-4cdd8143e42d', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:04 GMT' + 'Fri, 25 Jun 2021 19:41:59 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b1c60140-add7-49f2-8f24-88693a0a5eaf') + .get('//text/analytics/v3.1/analyze/jobs/9e8820de-bb7d-4838-8560-584c19de1f95') .query(true) - .reply(200, {"jobId":"b1c60140-add7-49f2-8f24-88693a0a5eaf","lastUpdateDateTime":"2021-05-12T19:14:04Z","createdDateTime":"2021-05-12T19:13:50Z","expirationDateTime":"2021-05-13T19:13:50Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:04Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:14:04.8052561Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:58.0540389Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["Este es","document escrito en Español"],"warnings":[]},{"id":"3","keyPhrases":["猫は幸せ"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"9e8820de-bb7d-4838-8560-584c19de1f95","lastUpdateDateTime":"2021-06-25T19:41:44Z","createdDateTime":"2021-06-25T19:41:25Z","expirationDateTime":"2021-06-26T19:41:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:32.2071115Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"Español","category":"Skill","offset":31,"length":7,"confidenceScore":0.92}],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:44.8119849Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '92', + '109', 'apim-request-id', - '46c3e874-b528-49b4-a3fa-b6548f2b6968', + '138e6a2e-9194-464b-98be-6c1668defcf8', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:06 GMT' + 'Fri, 25 Jun 2021 19:42:01 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b1c60140-add7-49f2-8f24-88693a0a5eaf') + .get('//text/analytics/v3.1/analyze/jobs/9e8820de-bb7d-4838-8560-584c19de1f95') .query(true) - .reply(200, {"jobId":"b1c60140-add7-49f2-8f24-88693a0a5eaf","lastUpdateDateTime":"2021-05-12T19:14:09Z","createdDateTime":"2021-05-12T19:13:50Z","expirationDateTime":"2021-05-13T19:13:50Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:09Z"},"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-12T19:14:09.4872285Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.95}],"warnings":[]},{"id":"2","entities":[],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:14:04.8052561Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:58.0540389Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["Este es","document escrito en Español"],"warnings":[]},{"id":"3","keyPhrases":["猫は幸せ"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"9e8820de-bb7d-4838-8560-584c19de1f95","lastUpdateDateTime":"2021-06-25T19:42:03Z","createdDateTime":"2021-06-25T19:41:25Z","expirationDateTime":"2021-06-26T19:41:25Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:32.2071115Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"Español","category":"Skill","offset":31,"length":7,"confidenceScore":0.92}],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:44.8119849Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:42:03.8234934Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["Español","document"],"warnings":[]},{"id":"3","keyPhrases":["せ"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '137', + '173', 'apim-request-id', - '4616d060-768a-4a9b-989d-c93dcc21b5bb', + '8d239abf-6549-451e-9266-9543e13beb78', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:09 GMT' + 'Fri, 25 Jun 2021 19:42:04 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/b1c60140-add7-49f2-8f24-88693a0a5eaf') + .get('//text/analytics/v3.1/analyze/jobs/9e8820de-bb7d-4838-8560-584c19de1f95') .query(true) - .reply(200, {"jobId":"b1c60140-add7-49f2-8f24-88693a0a5eaf","lastUpdateDateTime":"2021-05-12T19:14:09Z","createdDateTime":"2021-05-12T19:13:50Z","expirationDateTime":"2021-05-13T19:13:50Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:14:09Z"},"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-12T19:14:09.4872285Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.95}],"warnings":[]},{"id":"2","entities":[],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:14:04.8052561Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:58.0540389Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["Este es","document escrito en Español"],"warnings":[]},{"id":"3","keyPhrases":["猫は幸せ"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"9e8820de-bb7d-4838-8560-584c19de1f95","lastUpdateDateTime":"2021-06-25T19:42:03Z","createdDateTime":"2021-06-25T19:41:25Z","expirationDateTime":"2021-06-26T19:41:25Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:32.2071115Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"Español","category":"Skill","offset":31,"length":7,"confidenceScore":0.92}],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:44.8119849Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:42:03.8234934Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["Español","document"],"warnings":[]},{"id":"3","keyPhrases":["せ"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '130', + '178', 'apim-request-id', - '1281bfcc-6614-4dff-beca-5c02dd72682a', + '3d21e9b2-68f6-44af-8734-cf5f3a617c39', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:14:09 GMT' + 'Fri, 25 Jun 2021 19:42:04 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.js index ad7a8b1d8ccf..37e276aa252b 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "330cf1d56cca52b9aca42e3e7161a754"; +module.exports.hash = "eaed6985137e04614de2332c909af32f"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -25,24 +25,24 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '494b5584-9d4c-4d14-96cf-de6147f47100', + 'f3c0c79b-1e0a-46fd-b029-39c93f129d03', 'x-ms-ests-server', - '2.1.11654.25 - SCUS ProdSlices', + '2.1.11829.4 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:12:57 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:40:18 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevraW28ULyjjq_ABRxWqIhNlLu4XQWAwYJtk3M3OgMkIDYCFJR7TNJY5rYSzzKFcWPScPCl6L2Ho2TOj1Lgl2TID6e5DMjtMJDwm0CA4pSzL21V-E4bgmRBJXCX8phs10hPjjDxcNjdbx9_x4nYg4ZAehIKT3MHPci73j_6c888QyAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrLshfcscMIP6rHzGY836SXXjdE1FaMY_DWg3HxkEIf_gNWrzuV2ThPmLYKd7gr1mmuqTIAIrRcfCAgAzfYG-m9K_rBpRtGCTrnCVc5IP1sobXnFofKcx9QiCP0FyHMrxTZ7-KtGGjD61CMcCcj0HRCh2_M0C9j_vFZGYJymTVYfQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:12:56 GMT' + 'Fri, 25 Jun 2021 19:40:18 GMT' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,28 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'effc2a94-f558-4e23-9dd5-8d2bfd326100', + '60255122-4f99-4912-bd79-4b91dea66000', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:12:57 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:40:18 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrDsBGsaT9Pqv8X2HGHup-fwoght3KXqTGKruvAczbNdJc4rSy-uvt0avmRYCNdgMQmiqUYwrT_OmXJo0NkY5j-8S3b58z_sL_T2oGqVnpj8m_8gU3nzEK2PeyhJ-ddO4ypH9Q92VaQtVO4ggk2Q1OGAeVYmGcqdkK0gdXPKGRCy0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr4xbZL_FTbd3Qxl8QFSmSLwgQV4aSUPb_2PXJPjTTGT6azihmFlL-pglkU5SjWeyURgMkEgjoyLQPMgCYzn78npuxeh17X2DhJB6NRRn6eApwiVIPjWqXMKIrJaah33tfUucD8HpLdPo6JmNbu8cEpV6wWX2UbmolkPDWEGsa80UgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:12:56 GMT', + 'Fri, 25 Jun 2021 19:40:18 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=f9de7836-c682-4f78-8550-65c85ad3451b&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,86 +93,106 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '74c31071-9533-4e7e-92e2-c81a40385400', + 'c19e3cf4-d853-423c-83e5-5de326966200', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:12:57 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:40:18 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:12:56 GMT', + 'Fri, 25 Jun 2021 19:40:18 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/analyze', {"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]},"analysisInput":{"documents":[{"id":"0","text":"This was the best day of my life.","language":"en"},{"id":"1","text":"I did not like the hotel we stayed at. It was too expensive.","language":"en"},{"id":"2","text":"The restaurant was not as good as I hoped.","language":"en"}]}}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"0","text":"This was the best day of my life.","language":"en"},{"id":"1","text":"I did not like the hotel we stayed at. It was too expensive.","language":"en"},{"id":"2","text":"The restaurant was not as good as I hoped.","language":"en"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) .reply(202, "", [ 'Transfer-Encoding', 'chunked', 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/aad4109e-08e5-49d7-8817-d02fe6d51368', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/3b8b0c97-fd96-4b5e-a480-021b2a9f6ab1', 'x-envoy-upstream-service-time', - '720', + '284', 'apim-request-id', - 'ff9a98f6-182a-45f2-b16c-690da9f386af', + 'd1f28f39-c49b-4b5e-994a-e1534737c4a8', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:12:58 GMT' + 'Fri, 25 Jun 2021 19:40:18 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/aad4109e-08e5-49d7-8817-d02fe6d51368') + .get('//text/analytics/v3.1/analyze/jobs/3b8b0c97-fd96-4b5e-a480-021b2a9f6ab1') .query(true) - .reply(200, {"jobId":"aad4109e-08e5-49d7-8817-d02fe6d51368","lastUpdateDateTime":"2021-05-12T19:12:58Z","createdDateTime":"2021-05-12T19:12:58Z","expirationDateTime":"2021-05-13T19:12:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:12:58Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"3b8b0c97-fd96-4b5e-a480-021b2a9f6ab1","lastUpdateDateTime":"2021-06-25T19:40:19Z","createdDateTime":"2021-06-25T19:40:19Z","expirationDateTime":"2021-06-26T19:40:19Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '12', + '7', + 'apim-request-id', + 'e415a658-a17a-4d8d-b9b8-21afcb17a04f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:40:18 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/3b8b0c97-fd96-4b5e-a480-021b2a9f6ab1') + .query(true) + .reply(200, {"jobId":"3b8b0c97-fd96-4b5e-a480-021b2a9f6ab1","lastUpdateDateTime":"2021-06-25T19:40:19Z","createdDateTime":"2021-06-25T19:40:19Z","expirationDateTime":"2021-06-26T19:40:19Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', 'apim-request-id', - '774fc663-92ae-4901-9874-631e1f32029c', + '5b5ea3f2-8276-4eb7-a5f0-bbfbe672bfdb', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:12:58 GMT' + 'Fri, 25 Jun 2021 19:40:19 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/aad4109e-08e5-49d7-8817-d02fe6d51368') + .get('//text/analytics/v3.1/analyze/jobs/3b8b0c97-fd96-4b5e-a480-021b2a9f6ab1') .query(true) - .reply(200, {"jobId":"aad4109e-08e5-49d7-8817-d02fe6d51368","lastUpdateDateTime":"2021-05-12T19:12:59Z","createdDateTime":"2021-05-12T19:12:58Z","expirationDateTime":"2021-05-13T19:12:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:12:59Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"3b8b0c97-fd96-4b5e-a480-021b2a9f6ab1","lastUpdateDateTime":"2021-06-25T19:40:19Z","createdDateTime":"2021-06-25T19:40:19Z","expirationDateTime":"2021-06-26T19:40:19Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '972', + '9', 'apim-request-id', - '612af178-8c9e-49b1-b118-a19369e300da', + 'ea4f278c-13a1-4bfd-84d6-1aa1c0c42ae6', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:12:59 GMT' + 'Fri, 25 Jun 2021 19:40:21 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/aad4109e-08e5-49d7-8817-d02fe6d51368') + .get('//text/analytics/v3.1/analyze/jobs/3b8b0c97-fd96-4b5e-a480-021b2a9f6ab1') .query(true) - .reply(200, {"jobId":"aad4109e-08e5-49d7-8817-d02fe6d51368","lastUpdateDateTime":"2021-05-12T19:12:59Z","createdDateTime":"2021-05-12T19:12:58Z","expirationDateTime":"2021-05-13T19:12:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:12:59Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"3b8b0c97-fd96-4b5e-a480-021b2a9f6ab1","lastUpdateDateTime":"2021-06-25T19:40:19Z","createdDateTime":"2021-06-25T19:40:19Z","expirationDateTime":"2021-06-26T19:40:19Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -183,131 +200,211 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - 'd080e05d-8b9a-490d-9390-0dc3f6da3a9f', + '3957c0dc-ae3b-495a-ad1f-b4c9b0511b2e', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:01 GMT' + 'Fri, 25 Jun 2021 19:40:23 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/aad4109e-08e5-49d7-8817-d02fe6d51368') + .get('//text/analytics/v3.1/analyze/jobs/3b8b0c97-fd96-4b5e-a480-021b2a9f6ab1') .query(true) - .reply(200, {"jobId":"aad4109e-08e5-49d7-8817-d02fe6d51368","lastUpdateDateTime":"2021-05-12T19:12:59Z","createdDateTime":"2021-05-12T19:12:58Z","expirationDateTime":"2021-05-13T19:12:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:12:59Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"3b8b0c97-fd96-4b5e-a480-021b2a9f6ab1","lastUpdateDateTime":"2021-06-25T19:40:19Z","createdDateTime":"2021-06-25T19:40:19Z","expirationDateTime":"2021-06-26T19:40:19Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '13', + 'apim-request-id', + 'babf639c-fbfc-4d99-934e-3b9aa3a89f5d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:40:25 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/3b8b0c97-fd96-4b5e-a480-021b2a9f6ab1') + .query(true) + .reply(200, {"jobId":"3b8b0c97-fd96-4b5e-a480-021b2a9f6ab1","lastUpdateDateTime":"2021-06-25T19:40:25Z","createdDateTime":"2021-06-25T19:40:19Z","expirationDateTime":"2021-06-26T19:40:19Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:25.8972837Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '62', + 'apim-request-id', + '9c8702aa-aad6-4c70-b523-3c7d1cedf23d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:40:27 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/3b8b0c97-fd96-4b5e-a480-021b2a9f6ab1') + .query(true) + .reply(200, {"jobId":"3b8b0c97-fd96-4b5e-a480-021b2a9f6ab1","lastUpdateDateTime":"2021-06-25T19:40:28Z","createdDateTime":"2021-06-25T19:40:19Z","expirationDateTime":"2021-06-26T19:40:19Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:25.8972837Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:28.7030707Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '140', + 'apim-request-id', + 'acb01e2f-c167-4eb2-b504-e9a99c56d1f3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:40:29 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/3b8b0c97-fd96-4b5e-a480-021b2a9f6ab1') + .query(true) + .reply(200, {"jobId":"3b8b0c97-fd96-4b5e-a480-021b2a9f6ab1","lastUpdateDateTime":"2021-06-25T19:40:28Z","createdDateTime":"2021-06-25T19:40:19Z","expirationDateTime":"2021-06-26T19:40:19Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:25.8972837Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:28.7030707Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '214', + 'apim-request-id', + '99a7a77f-6706-4578-bce9-1674ab65a91d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:40:31 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/3b8b0c97-fd96-4b5e-a480-021b2a9f6ab1') + .query(true) + .reply(200, {"jobId":"3b8b0c97-fd96-4b5e-a480-021b2a9f6ab1","lastUpdateDateTime":"2021-06-25T19:40:28Z","createdDateTime":"2021-06-25T19:40:19Z","expirationDateTime":"2021-06-26T19:40:19Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:25.8972837Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:28.7030707Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '133', 'apim-request-id', - '6ebc142c-5e28-4097-9998-6c0a926219f0', + 'adeb733c-2de8-4393-b9da-c6fcf6c93695', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:03 GMT' + 'Fri, 25 Jun 2021 19:40:34 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/aad4109e-08e5-49d7-8817-d02fe6d51368') + .get('//text/analytics/v3.1/analyze/jobs/3b8b0c97-fd96-4b5e-a480-021b2a9f6ab1') .query(true) - .reply(200, {"jobId":"aad4109e-08e5-49d7-8817-d02fe6d51368","lastUpdateDateTime":"2021-05-12T19:13:04Z","createdDateTime":"2021-05-12T19:12:58Z","expirationDateTime":"2021-05-13T19:12:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:04Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:04.8430203Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"3b8b0c97-fd96-4b5e-a480-021b2a9f6ab1","lastUpdateDateTime":"2021-06-25T19:40:28Z","createdDateTime":"2021-06-25T19:40:19Z","expirationDateTime":"2021-06-26T19:40:19Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:25.8972837Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:28.7030707Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '51', + '172', 'apim-request-id', - '8a5a7e3a-77bc-407e-8e26-1bc1601b0c08', + 'e784a266-95e7-464d-a83b-69d638a1db8e', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:05 GMT' + 'Fri, 25 Jun 2021 19:40:36 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/aad4109e-08e5-49d7-8817-d02fe6d51368') + .get('//text/analytics/v3.1/analyze/jobs/3b8b0c97-fd96-4b5e-a480-021b2a9f6ab1') .query(true) - .reply(200, {"jobId":"aad4109e-08e5-49d7-8817-d02fe6d51368","lastUpdateDateTime":"2021-05-12T19:13:04Z","createdDateTime":"2021-05-12T19:12:58Z","expirationDateTime":"2021-05-13T19:12:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:04Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:04.8430203Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"3b8b0c97-fd96-4b5e-a480-021b2a9f6ab1","lastUpdateDateTime":"2021-06-25T19:40:28Z","createdDateTime":"2021-06-25T19:40:19Z","expirationDateTime":"2021-06-26T19:40:19Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:25.8972837Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:28.7030707Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '46', + '116', 'apim-request-id', - '9bfd2dcd-432a-4bff-9a5e-dd841c0d6dd8', + '95dd6df9-ee44-4bea-b502-561a21db2563', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:07 GMT' + 'Fri, 25 Jun 2021 19:40:38 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/aad4109e-08e5-49d7-8817-d02fe6d51368') + .get('//text/analytics/v3.1/analyze/jobs/3b8b0c97-fd96-4b5e-a480-021b2a9f6ab1') .query(true) - .reply(200, {"jobId":"aad4109e-08e5-49d7-8817-d02fe6d51368","lastUpdateDateTime":"2021-05-12T19:13:09Z","createdDateTime":"2021-05-12T19:12:58Z","expirationDateTime":"2021-05-13T19:12:58Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:09Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:09.8084095Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.89}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.87}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:04.8430203Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"3b8b0c97-fd96-4b5e-a480-021b2a9f6ab1","lastUpdateDateTime":"2021-06-25T19:40:28Z","createdDateTime":"2021-06-25T19:40:19Z","expirationDateTime":"2021-06-26T19:40:19Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:25.8972837Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:28.7030707Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '85', + '199', 'apim-request-id', - 'ffbe89c4-d873-42a5-a9bc-90920302a057', + 'a0bf8467-aa3c-449a-9900-ecf0d72c6618', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:09 GMT' + 'Fri, 25 Jun 2021 19:40:41 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/aad4109e-08e5-49d7-8817-d02fe6d51368') + .get('//text/analytics/v3.1/analyze/jobs/3b8b0c97-fd96-4b5e-a480-021b2a9f6ab1') .query(true) - .reply(200, {"jobId":"aad4109e-08e5-49d7-8817-d02fe6d51368","lastUpdateDateTime":"2021-05-12T19:13:10Z","createdDateTime":"2021-05-12T19:12:58Z","expirationDateTime":"2021-05-13T19:12:58Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:10Z"},"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:09.8084095Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.89}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.87}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:10.3002056Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:04.8430203Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"3b8b0c97-fd96-4b5e-a480-021b2a9f6ab1","lastUpdateDateTime":"2021-06-25T19:40:42Z","createdDateTime":"2021-06-25T19:40:19Z","expirationDateTime":"2021-06-26T19:40:19Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:25.8972837Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:42.3360021Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:28.7030707Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '137', + '216', 'apim-request-id', - 'e2ada8ef-034f-4e6c-acb9-715047597290', + 'f4df8fa8-92d0-42e9-a1cf-c1e87dfb1818', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:11 GMT' + 'Fri, 25 Jun 2021 19:40:43 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/aad4109e-08e5-49d7-8817-d02fe6d51368') + .get('//text/analytics/v3.1/analyze/jobs/3b8b0c97-fd96-4b5e-a480-021b2a9f6ab1') .query(true) - .reply(200, {"jobId":"aad4109e-08e5-49d7-8817-d02fe6d51368","lastUpdateDateTime":"2021-05-12T19:13:10Z","createdDateTime":"2021-05-12T19:12:58Z","expirationDateTime":"2021-05-13T19:12:58Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:10Z"},"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:09.8084095Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.89}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.87}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:10.3002056Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:04.8430203Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"3b8b0c97-fd96-4b5e-a480-021b2a9f6ab1","lastUpdateDateTime":"2021-06-25T19:40:42Z","createdDateTime":"2021-06-25T19:40:19Z","expirationDateTime":"2021-06-26T19:40:19Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:25.8972837Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:42.3360021Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:28.7030707Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '144', + '221', 'apim-request-id', - 'bdd7688a-92e0-4e81-b2ec-0eb8e029dc6b', + '745871d7-f364-4506-8e3d-2038153bd330', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:11 GMT' + 'Fri, 25 Jun 2021 19:40:43 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.js index c5ab7107c95c..a1cf39e40458 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "f27caecbdea06f0bc103f1cca19fed44"; +module.exports.hash = "633fb369e5e1dfb1aa2335c3687e008f"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,24 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'f387635d-bdaa-44fa-837f-e2bd4cd46f00', + '8e82e57f-f124-4848-b0a8-1a2fbd470100', 'x-ms-ests-server', - '2.1.11654.25 - NCUS ProdSlices', + '2.1.11829.8 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:13:12 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:40:43 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr4Ei6HVMXZyhare_-tlOQRwfKQ9nR-rAl8kdG88wp_Rm3vdLY_Q1PKFB3UMT3tdDu8FvNcsDbdaGM4Cs0CjBjKGIbFIXRtB0McXFiYpBrX1rsp-dXiKOtCXVmfq5ZIpJpWYifZFl4avQLXzGw30efwcZAa0GWCz08c7bLfQeRkDIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevruR0el9CF5rO-EaK7je1vIK_aujQIJkXFhxfYGOBuQITwcpdC_DE-PAONQjplXXoHJO6sSG_xpyQZ6xnK_7GKKJsSsxGQ-dv1HlGd4EnzggekzwUTCQoRYimXUCx_KaVdUFDV-iUbjNfKTySRFlUYdMgfBf7_ci-D4soHJaLBty0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:13:11 GMT' + 'Fri, 25 Jun 2021 19:40:43 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,35 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'dac8c720-7f5b-4daa-a8aa-ada53e505600', + '97388d79-6103-488d-a26f-595c59e47300', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:13:12 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:40:43 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrt8uFcyJ5fqMVtB7VGh9Q5hrvg02VxSv3MFjHh69Jrv-S8ZvzHTClfQpkFvW0rJQUldbmYs3zOeiUQqo9YwB3Ekag7JLwINDei2Jb_PYTualROyNBZP2iUPGVCKEA-jjvkjcEY5jRNGY6TqCKrLrXLk3uzK6dQDIuc-YEH6ABf1ogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrF2ERdINCiE2i99tiBtqw1ZD4EIeFP0XC7r1uRjx7qoSeKLr0YJtLAnIB_TxM2XxWjnBho7xQu7snd-7kiLJbiobUsNDsa-HM8jk8N1EsfecJT5Mzp-NUEdmH-n6euTDGDZ9qIyDdELL6j16HBx8LJrvn8zBp958mObpI4ZVwQCAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:13:11 GMT', + 'Fri, 25 Jun 2021 19:40:44 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=b8b02fac-7d74-4c1a-bdde-55c6630a08c1&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,84 +93,86 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '6e319f75-8e43-4e3e-8461-03ebce2fcd00', + '60255122-4f99-4912-bd79-4b91f4aa6000', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1EAAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:13:12 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:40:44 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:13:11 GMT' + 'Fri, 25 Jun 2021 19:40:44 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/analyze', {"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]},"analysisInput":{"documents":[{"id":"0","text":"This was the best day of my life.","language":"en"},{"id":"1","text":"I did not like the hotel we stayed at. It was too expensive.","language":"en"},{"id":"2","text":"The restaurant was not as good as I hoped.","language":"en"}]}}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"0","text":"This was the best day of my life.","language":"en"},{"id":"1","text":"I did not like the hotel we stayed at. It was too expensive.","language":"en"},{"id":"2","text":"The restaurant was not as good as I hoped.","language":"en"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) .reply(202, "", [ 'Transfer-Encoding', 'chunked', 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/analyze/jobs/495a3243-abf6-4227-8221-426e2fec1a5b', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/325ea36a-e28b-477f-b0af-5476ea992687', 'x-envoy-upstream-service-time', - '147', + '357', 'apim-request-id', - 'bfc2ce47-49e4-4f1c-8597-465ababdbff3', + 'c8acb1f7-f185-4b5a-9675-da46a1ee6c20', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:12 GMT' + 'Fri, 25 Jun 2021 19:40:44 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/495a3243-abf6-4227-8221-426e2fec1a5b') + .get('//text/analytics/v3.1/analyze/jobs/325ea36a-e28b-477f-b0af-5476ea992687') .query(true) - .reply(200, {"jobId":"495a3243-abf6-4227-8221-426e2fec1a5b","lastUpdateDateTime":"2021-05-12T19:13:13Z","createdDateTime":"2021-05-12T19:13:12Z","expirationDateTime":"2021-05-13T19:13:12Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:13Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"325ea36a-e28b-477f-b0af-5476ea992687","lastUpdateDateTime":"2021-06-25T19:40:44Z","createdDateTime":"2021-06-25T19:40:44Z","expirationDateTime":"2021-06-26T19:40:44Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '7', + '9', 'apim-request-id', - '2f6ee931-e8fa-4620-bb58-7caf4662afcf', + 'b44b49fe-ced4-4e63-91b0-f9b276898e0c', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:12 GMT' + 'Fri, 25 Jun 2021 19:40:44 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/495a3243-abf6-4227-8221-426e2fec1a5b') + .get('//text/analytics/v3.1/analyze/jobs/325ea36a-e28b-477f-b0af-5476ea992687') .query(true) - .reply(200, {"jobId":"495a3243-abf6-4227-8221-426e2fec1a5b","lastUpdateDateTime":"2021-05-12T19:13:13Z","createdDateTime":"2021-05-12T19:13:12Z","expirationDateTime":"2021-05-13T19:13:12Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:13Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"325ea36a-e28b-477f-b0af-5476ea992687","lastUpdateDateTime":"2021-06-25T19:40:44Z","createdDateTime":"2021-06-25T19:40:44Z","expirationDateTime":"2021-06-26T19:40:44Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '8', 'apim-request-id', - 'cfcef3ef-04ca-421b-abe2-cc8d9b541666', + 'c69742f0-b40b-4bc8-a2a0-a9eb8db1ea0c', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:12 GMT' + 'Fri, 25 Jun 2021 19:40:44 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/495a3243-abf6-4227-8221-426e2fec1a5b') + .get('//text/analytics/v3.1/analyze/jobs/325ea36a-e28b-477f-b0af-5476ea992687') .query(true) - .reply(200, {"jobId":"495a3243-abf6-4227-8221-426e2fec1a5b","lastUpdateDateTime":"2021-05-12T19:13:14Z","createdDateTime":"2021-05-12T19:13:12Z","expirationDateTime":"2021-05-13T19:13:12Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:14Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"325ea36a-e28b-477f-b0af-5476ea992687","lastUpdateDateTime":"2021-06-25T19:40:44Z","createdDateTime":"2021-06-25T19:40:44Z","expirationDateTime":"2021-06-26T19:40:44Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -183,131 +180,231 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '7', 'apim-request-id', - '765ad529-caca-4b84-b810-fc63402ce37f', + '198fa27b-381f-4e73-bd37-716fbcd069b2', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:14 GMT' + 'Fri, 25 Jun 2021 19:40:46 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/495a3243-abf6-4227-8221-426e2fec1a5b') + .get('//text/analytics/v3.1/analyze/jobs/325ea36a-e28b-477f-b0af-5476ea992687') .query(true) - .reply(200, {"jobId":"495a3243-abf6-4227-8221-426e2fec1a5b","lastUpdateDateTime":"2021-05-12T19:13:14Z","createdDateTime":"2021-05-12T19:13:12Z","expirationDateTime":"2021-05-13T19:13:12Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:14Z"},"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + .reply(200, {"jobId":"325ea36a-e28b-477f-b0af-5476ea992687","lastUpdateDateTime":"2021-06-25T19:40:47Z","createdDateTime":"2021-06-25T19:40:44Z","expirationDateTime":"2021-06-26T19:40:44Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '7', + '21', + 'apim-request-id', + '630bbcd6-c6c0-4298-8709-cf2304189be0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:40:48 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/325ea36a-e28b-477f-b0af-5476ea992687') + .query(true) + .reply(200, {"jobId":"325ea36a-e28b-477f-b0af-5476ea992687","lastUpdateDateTime":"2021-06-25T19:40:50Z","createdDateTime":"2021-06-25T19:40:44Z","expirationDateTime":"2021-06-26T19:40:44Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:50.774065Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '67', + 'apim-request-id', + 'd5e98979-51b3-48df-9570-b63a0ce67c1e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:40:50 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/325ea36a-e28b-477f-b0af-5476ea992687') + .query(true) + .reply(200, {"jobId":"325ea36a-e28b-477f-b0af-5476ea992687","lastUpdateDateTime":"2021-06-25T19:40:51Z","createdDateTime":"2021-06-25T19:40:44Z","expirationDateTime":"2021-06-26T19:40:44Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:51.0185557Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:50.774065Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '139', + 'apim-request-id', + '7a65bcf8-d97c-4d22-b784-20e3bc477b83', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:40:52 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/325ea36a-e28b-477f-b0af-5476ea992687') + .query(true) + .reply(200, {"jobId":"325ea36a-e28b-477f-b0af-5476ea992687","lastUpdateDateTime":"2021-06-25T19:40:51Z","createdDateTime":"2021-06-25T19:40:44Z","expirationDateTime":"2021-06-26T19:40:44Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:51.0185557Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:50.774065Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '129', + 'apim-request-id', + '164df2a6-4ded-4ece-839c-6db702fd7ba6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:40:54 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/325ea36a-e28b-477f-b0af-5476ea992687') + .query(true) + .reply(200, {"jobId":"325ea36a-e28b-477f-b0af-5476ea992687","lastUpdateDateTime":"2021-06-25T19:40:51Z","createdDateTime":"2021-06-25T19:40:44Z","expirationDateTime":"2021-06-26T19:40:44Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:51.0185557Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:50.774065Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '123', + 'apim-request-id', + '02bb2995-cfa8-46c4-b58f-edec37f8c593', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:40:56 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/325ea36a-e28b-477f-b0af-5476ea992687') + .query(true) + .reply(200, {"jobId":"325ea36a-e28b-477f-b0af-5476ea992687","lastUpdateDateTime":"2021-06-25T19:40:51Z","createdDateTime":"2021-06-25T19:40:44Z","expirationDateTime":"2021-06-26T19:40:44Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:51.0185557Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:50.774065Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '136', 'apim-request-id', - 'ca8b55b4-3968-452a-b15e-dd08c86a0b2d', + '1825d79c-b326-46b4-b189-4d6e8422c0ef', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:16 GMT' + 'Fri, 25 Jun 2021 19:40:59 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/495a3243-abf6-4227-8221-426e2fec1a5b') + .get('//text/analytics/v3.1/analyze/jobs/325ea36a-e28b-477f-b0af-5476ea992687') .query(true) - .reply(200, {"jobId":"495a3243-abf6-4227-8221-426e2fec1a5b","lastUpdateDateTime":"2021-05-12T19:13:18Z","createdDateTime":"2021-05-12T19:13:12Z","expirationDateTime":"2021-05-13T19:13:12Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:18Z"},"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:18.6076073Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"325ea36a-e28b-477f-b0af-5476ea992687","lastUpdateDateTime":"2021-06-25T19:40:51Z","createdDateTime":"2021-06-25T19:40:44Z","expirationDateTime":"2021-06-26T19:40:44Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:51.0185557Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:50.774065Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '44', + '118', 'apim-request-id', - '7bf492cd-5aa5-45c6-9a3d-9af18d511628', + 'f7850107-f6a4-4289-bb8c-d1a8e3b38191', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:18 GMT' + 'Fri, 25 Jun 2021 19:41:01 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/495a3243-abf6-4227-8221-426e2fec1a5b') + .get('//text/analytics/v3.1/analyze/jobs/325ea36a-e28b-477f-b0af-5476ea992687') .query(true) - .reply(200, {"jobId":"495a3243-abf6-4227-8221-426e2fec1a5b","lastUpdateDateTime":"2021-05-12T19:13:19Z","createdDateTime":"2021-05-12T19:13:12Z","expirationDateTime":"2021-05-13T19:13:12Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:19Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:19.7331337Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.89}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.87}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:18.6076073Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"325ea36a-e28b-477f-b0af-5476ea992687","lastUpdateDateTime":"2021-06-25T19:40:51Z","createdDateTime":"2021-06-25T19:40:44Z","expirationDateTime":"2021-06-26T19:40:44Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:51.0185557Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:50.774065Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '101', + '121', 'apim-request-id', - 'bc2c8c1e-13a9-4b0c-a64a-76883854d381', + 'b77c8d8b-2059-47b0-961d-34dad58b26b1', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:20 GMT' + 'Fri, 25 Jun 2021 19:41:03 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/495a3243-abf6-4227-8221-426e2fec1a5b') + .get('//text/analytics/v3.1/analyze/jobs/325ea36a-e28b-477f-b0af-5476ea992687') .query(true) - .reply(200, {"jobId":"495a3243-abf6-4227-8221-426e2fec1a5b","lastUpdateDateTime":"2021-05-12T19:13:19Z","createdDateTime":"2021-05-12T19:13:12Z","expirationDateTime":"2021-05-13T19:13:12Z","status":"running","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:19Z"},"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:19.7331337Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.89}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.87}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:18.6076073Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"325ea36a-e28b-477f-b0af-5476ea992687","lastUpdateDateTime":"2021-06-25T19:40:51Z","createdDateTime":"2021-06-25T19:40:44Z","expirationDateTime":"2021-06-26T19:40:44Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:51.0185557Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:50.774065Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '83', + '125', 'apim-request-id', - '5acc2912-3b3d-4f39-b7c1-c22f5437cd9a', + 'fab90baa-4dab-4c38-9a4e-6b0354d72323', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:22 GMT' + 'Fri, 25 Jun 2021 19:41:05 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/495a3243-abf6-4227-8221-426e2fec1a5b') + .get('//text/analytics/v3.1/analyze/jobs/325ea36a-e28b-477f-b0af-5476ea992687') .query(true) - .reply(200, {"jobId":"495a3243-abf6-4227-8221-426e2fec1a5b","lastUpdateDateTime":"2021-05-12T19:13:25Z","createdDateTime":"2021-05-12T19:13:12Z","expirationDateTime":"2021-05-13T19:13:12Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:25Z"},"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:19.7331337Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.89}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.87}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:25.351934Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:18.6076073Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"325ea36a-e28b-477f-b0af-5476ea992687","lastUpdateDateTime":"2021-06-25T19:41:07Z","createdDateTime":"2021-06-25T19:40:44Z","expirationDateTime":"2021-06-26T19:40:44Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:51.0185557Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:07.0224932Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:50.774065Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '146', + '189', 'apim-request-id', - '85ccfeee-8ae3-46e9-9ba5-45c3f3155d06', + '1f57e1de-04cd-4ea0-ba9b-76ce193ef290', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:25 GMT' + 'Fri, 25 Jun 2021 19:41:08 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/analyze/jobs/495a3243-abf6-4227-8221-426e2fec1a5b') + .get('//text/analytics/v3.1/analyze/jobs/325ea36a-e28b-477f-b0af-5476ea992687') .query(true) - .reply(200, {"jobId":"495a3243-abf6-4227-8221-426e2fec1a5b","lastUpdateDateTime":"2021-05-12T19:13:25Z","createdDateTime":"2021-05-12T19:13:12Z","expirationDateTime":"2021-05-13T19:13:12Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"details":{"name":"NA","lastUpdateDateTime":"2021-05-12T19:13:25Z"},"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:19.7331337Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.89}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.87}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:25.351934Z","name":"NA","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-05-12T19:13:18.6076073Z","name":"NA","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}}]}}, [ + .reply(200, {"jobId":"325ea36a-e28b-477f-b0af-5476ea992687","lastUpdateDateTime":"2021-06-25T19:41:07Z","createdDateTime":"2021-06-25T19:40:44Z","expirationDateTime":"2021-06-26T19:40:44Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:51.0185557Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:41:07.0224932Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:40:50.774065Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '140', + '183', 'apim-request-id', - '4dba22fa-b8f5-4dbd-ad44-fd97a6dfe5b1', + '9caea0ca-d250-433e-83ec-66b25fc2e06f', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:13:25 GMT' + 'Fri, 25 Jun 2021 19:41:08 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_all_documents_have_errors.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_all_documents_have_errors.js new file mode 100644 index 000000000000..32098a5c74fc --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_all_documents_have_errors.js @@ -0,0 +1,211 @@ +let nock = require('nock'); + +module.exports.hash = "815354ea5278df76f87bbbeb9918c9d0"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '8e82e57f-f124-4848-b0a8-1a2fa2640100', + 'x-ms-ests-server', + '2.1.11829.8 - NCUS ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:45:08 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrkVMMjgRbeDiTm8_KewBY-7utZWeX28_J1ndTsAUumA3pi0j8bx2ImcwFgriPlH1hcFxrF0aYnY831k5OFxtJCrw3kEAyjV5cfrW5V2lLnF4mpGZ_9UckWJEdOzpLYWb2FCMqyFAQuZS4dXEfKt70Ch8VOYoDjHgf0EQ6UybQ99QgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:45:08 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'f75e896d-b4c4-4e8a-8d17-6ea6d4e55900', + 'x-ms-ests-server', + '2.1.11829.9 - NCUS ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:45:08 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrg41naJcGK_OEyIoHS5tGJ-lSa_ky7H13EM95uyvEPeQ1N8JBvNuiEveEneWZ5L0vbodF_8foOp7xenN5QkTIfEjRnlXwRelPDEDVTj8PnfNO5-JYTIEKaPADb-aLLCQ_VnZKfIoF7y6ncxP-Aw3VzZJRAVepHAU-R5tbW2-n0XsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:45:08 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=d2a26985-bc7b-43b9-b4b0-ad2c1eaa4114&client_secret=azure_client_secret") + .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"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', + 'c2c46a2d-caf1-495a-b60f-6d2017ef7100', + 'x-ms-ests-server', + '2.1.11829.9 - EUS ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:45:08 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:45:08 GMT', + 'Content-Length', + '1331' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"1","text":""},{"id":"2","text":"I did not like the hotel we stayed at.","language":"english"},{"id":"3","text":"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/7e3b733a-befb-413d-a9af-49e368f30706', + 'x-envoy-upstream-service-time', + '199', + 'apim-request-id', + 'e53c00dd-ee96-47fd-9ce1-d6b8775570c9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:08 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/7e3b733a-befb-413d-a9af-49e368f30706') + .query(true) + .reply(200, {"jobId":"7e3b733a-befb-413d-a9af-49e368f30706","lastUpdateDateTime":"2021-06-25T19:45:09Z","createdDateTime":"2021-06-25T19:45:08Z","expirationDateTime":"2021-06-26T19:45:08Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '17', + 'apim-request-id', + '55fe9a45-0af2-4aa8-9b31-f01b07cd1710', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:08 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/7e3b733a-befb-413d-a9af-49e368f30706') + .query(true) + .reply(200, {"jobId":"7e3b733a-befb-413d-a9af-49e368f30706","lastUpdateDateTime":"2021-06-25T19:45:09Z","createdDateTime":"2021-06-25T19:45:08Z","expirationDateTime":"2021-06-26T19:45:08Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'ba09a9ca-3635-4420-ae29-f4582c03bd98', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:08 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/7e3b733a-befb-413d-a9af-49e368f30706') + .query(true) + .reply(200, {"jobId":"7e3b733a-befb-413d-a9af-49e368f30706","lastUpdateDateTime":"2021-06-25T19:45:10Z","createdDateTime":"2021-06-25T19:45:08Z","expirationDateTime":"2021-06-26T19:45:08Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"A document within the request was too large to be processed. Limit document size to: 5120 text elements. For additional details on the data limitations see https://aka.ms/text-analytics-data-limits"}}}],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '59', + 'apim-request-id', + '9732ba07-8e77-4ad1-919b-f80391502416', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:10 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/7e3b733a-befb-413d-a9af-49e368f30706') + .query(true) + .reply(200, {"jobId":"7e3b733a-befb-413d-a9af-49e368f30706","lastUpdateDateTime":"2021-06-25T19:45:10Z","createdDateTime":"2021-06-25T19:45:08Z","expirationDateTime":"2021-06-26T19:45:08Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"A document within the request was too large to be processed. Limit document size to: 5120 text elements. For additional details on the data limitations see https://aka.ms/text-analytics-data-limits"}}}],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '69', + 'apim-request-id', + '6376760e-0522-4735-8238-5f4139e8950e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:10 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_all_inputs_with_errors.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_all_inputs_with_errors.js new file mode 100644 index 000000000000..bd39942d06ec --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_all_inputs_with_errors.js @@ -0,0 +1,211 @@ +let nock = require('nock'); + +module.exports.hash = "0c018911d7b8c915100686d9373b4af8"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'f6721be0-6f3d-4a1b-b307-4e90c8bb0100', + 'x-ms-ests-server', + '2.1.11829.9 - NCUS ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:27 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr4AO_JzbM4rPDf31yYrExVtQNk0oYdwVC6JkFZhD_UvEGWI8NDBWzJdf99F-p8L8nKRZkDkeowepVDDbcQYlEbIwviE03u-iNxEzamPaKIp-dZDcMzFvC3RMe-fJtm51fdAyO8ofNZ2vWnVwR0yJAySlxwrMbK0lBtV-UcHwcWFQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:27 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'a9a1e068-3c7e-4040-b4a3-6952f8206f00', + 'x-ms-ests-server', + '2.1.11829.9 - EUS ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:28 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrVw0hH-WbGXW3wHFzux6YX5GSvWtd4tLlNfZXu16Rx3nDGeqxNjH9fQ1I-aJMyX5Lr0pXwDfTXvCQexSXuglcU_0PHBGR4YSA-YZQ3rV_SaxXZRgsjNoupoT5kAQlhXDTOOzkRBhAj3ivFB7OGv2SRpXBJBcAMG89wT-pCPmwz2AgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:27 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=8baa1c65-e1f5-480d-92f1-d406718c3883&client_secret=azure_client_secret") + .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"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', + '3fda1bdb-b195-4e81-ba11-6a2c4d8a5e00', + 'x-ms-ests-server', + '2.1.11829.9 - WUS2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:28 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:27 GMT', + 'Content-Length', + '1331' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"1","text":"","language":"en"},{"id":"2","text":"Patient does not suffer from high blood pressure.","language":"english"},{"id":"3","text":"","language":"en"}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/c118e01d-6db8-42dc-95ba-4fcaf981de0c', + 'x-envoy-upstream-service-time', + '215', + 'apim-request-id', + '0cc999dc-4b60-4e72-b69e-6da8accffe0a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:28 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/c118e01d-6db8-42dc-95ba-4fcaf981de0c') + .query(true) + .reply(200, {"jobId":"c118e01d-6db8-42dc-95ba-4fcaf981de0c","lastUpdateDateTime":"2021-06-25T19:44:28Z","createdDateTime":"2021-06-25T19:44:28Z","expirationDateTime":"2021-06-26T19:44:28Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '9', + 'apim-request-id', + '4a79484c-3eed-42e8-9690-850a4df19ee5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:28 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/c118e01d-6db8-42dc-95ba-4fcaf981de0c') + .query(true) + .reply(200, {"jobId":"c118e01d-6db8-42dc-95ba-4fcaf981de0c","lastUpdateDateTime":"2021-06-25T19:44:28Z","createdDateTime":"2021-06-25T19:44:28Z","expirationDateTime":"2021-06-26T19:44:28Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '9', + 'apim-request-id', + 'e6537f40-6596-49df-ba56-535be49039cd', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:28 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/c118e01d-6db8-42dc-95ba-4fcaf981de0c') + .query(true) + .reply(200, {"jobId":"c118e01d-6db8-42dc-95ba-4fcaf981de0c","lastUpdateDateTime":"2021-06-25T19:44:30Z","createdDateTime":"2021-06-25T19:44:28Z","expirationDateTime":"2021-06-26T19:44:28Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '76', + 'apim-request-id', + 'b587be04-253c-4741-b73b-d42f49faa5fc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:30 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/c118e01d-6db8-42dc-95ba-4fcaf981de0c') + .query(true) + .reply(200, {"jobId":"c118e01d-6db8-42dc-95ba-4fcaf981de0c","lastUpdateDateTime":"2021-06-25T19:44:30Z","createdDateTime":"2021-06-25T19:44:28Z","expirationDateTime":"2021-06-26T19:44:28Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '63', + 'apim-request-id', + 'c226eeab-344d-4218-aae9-74dd70b5b938', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:30 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_korean_nfc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_cancelled.js similarity index 59% rename from sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_korean_nfc.js rename to sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_cancelled.js index d6407df51407..219af0cfe0e2 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_korean_nfc.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_cancelled.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "d06190b0bf0ce0844d2eeca875e76e18"; +module.exports.hash = "d0dea63ab7cc530d4397e7208f975080"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,30 +23,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '96b79041-bbe8-457f-8051-94486c3c6000', + 'e1260405-6458-4819-a54b-5467d1b80500', 'x-ms-ests-server', - '2.1.11654.25 - NCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:56 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:45:11 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrcdqUHEgUlN0arot6WZxvPRnpAWLafPi_YaoC9MAUmpN_jQpLAqgz-P27BZA9DwI_yIS19bGu-m8O3VwQ-JTwZ1rKexbq3g1CU7EMJrgmFHi7D2BGWPhZ_ghsP2_dvpLwGqfwOd8PNkRBDmIR7mXopQb75nqNzRpu3u5FNZlfH14gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrgfrh0YHxc4DYUKBdLE5D0Ebj1iYrU4unZJHgUhq4rVKAIeBm3pN5T5B56GPQOl-oyHp17KhVfnX0qJvRzOPmGNZKnhKBdRA88SpuCY75mphI8iTtSi29zYTdmNRXg9I7ruUlihdB3-bOax-FmNbUNzuPAc9x2GI3ELwrtCqAQ9wgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:56 GMT', + 'Fri, 25 Jun 2021 19:45:11 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Length', - '1651', + '1753', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,33 +60,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'd8df8829-77a8-46cc-a784-90ab40d9c800', + '9ceda81a-917e-4982-bafb-50a7b1115d00', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:56 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:45:12 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrB8ItbKuH_qxUSICq8wl18i59WAILHFycHZxSmfrvSR0RDOebrEUCySaaHHT_6toI1vsk2QLIH2eznf_wiLNZI4Q1pNxGR-l0tEpAizlCiPW41bxIVVQnq-gU7L-WCp1RSwEL9CL8Twvt4-V8J7k95ygCsr4HjJnEJ6toVVG5cQIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrN8UCg9FfjCHXJptErOpS0KPB-8BOaqJT8N74BcZHkGF6jBn35R7DGk_4SUMc_D_A7biBTiXNCXh0VMRd4jFQGde8b4uwwDx6AyEnJqjrM4XEMkPc2jqpRWZv6pUKy7GaUqZCq8lbBDDsKRONve4EZuyI8P5hJFjkNhcQkoZgVjAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:56 GMT' + 'Fri, 25 Jun 2021 19:45:11 GMT' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=e436e981-84f3-4a86-91a4-16b60556b450&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,39 +93,78 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '428c50f7-d2da-402a-a895-3212d5a85200', + '97388d79-6103-488d-a26f-595cb3187400', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:56 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:45:12 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:56 GMT' + 'Fri, 25 Jun 2021 19:45:11 GMT', + 'Content-Length', + '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"1","text":"Patient does not suffer from high blood pressure.","language":"en"},{"id":"2","text":"Prescribed 100mg ibuprofen, taken twice daily.","language":"en"}]}) .query(true) - .reply(200, {"documents":[{"redactedText":"아가 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/0078a666-f34f-4cfe-b3a3-fd707b651d4a', + 'x-envoy-upstream-service-time', + '160', + 'apim-request-id', + 'cb5ae650-3a72-4e42-8fec-b87107869f79', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:11 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/0078a666-f34f-4cfe-b3a3-fd707b651d4a') + .query(true) + .reply(200, {"jobId":"0078a666-f34f-4cfe-b3a3-fd707b651d4a","lastUpdateDateTime":"2021-06-25T19:45:12Z","createdDateTime":"2021-06-25T19:45:12Z","expirationDateTime":"2021-06-26T19:45:12Z","status":"notStarted","errors":[]}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '60', + '6', + 'apim-request-id', + '596660a2-a63a-43cf-8182-8bf125f55d82', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:11 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .delete('//text/analytics/v3.1/entities/health/jobs/0078a666-f34f-4cfe-b3a3-fd707b651d4a') + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/0078a666-f34f-4cfe-b3a3-fd707b651d4a', + 'x-envoy-upstream-service-time', + '16', 'apim-request-id', - '830a2475-c800-4371-a1d7-55879e9d8fad', + 'bb5b8d63-e765-41b1-a12b-cb1148584b28', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:55 GMT' + 'Fri, 25 Jun 2021 19:45:11 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_diacritics_nfd.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_document_warnings.js similarity index 50% rename from sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_diacritics_nfd.js rename to sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_document_warnings.js index a2b36b462e0c..34ebda338a5e 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_diacritics_nfd.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_document_warnings.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "18635290a25c3a1a881e0008a6121580"; +module.exports.hash = "fcf7c06497229418e8940596f0f9de59"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,26 +23,26 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'fa18d8c5-4ddd-4078-b1c7-f165f3146d00', + 'da91a1d1-645e-4754-9cbc-ee85fce50200', 'x-ms-ests-server', - '2.1.11654.25 - EUS ProdSlices', + '2.1.11829.8 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:55 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CgAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:34 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrGghoN121eaBP1PEddVDm2RTPyw2eqai6uV6uTHag-LzWYr3EC3kBSLDxliH59MLjQZTcWCiAqhjSK1z1MhPqCpf5GFxjhL_Z5ACqn2pSyx7Ypqzad2lLEgzeBBKjgcpBMOalvVSuGbReD0ZZjwBM7Wxtls9cpOEJ7DR3Q9_eN5ggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrvGR0daWJ_aDw2bwTMpyPTR13qNAXodY8RPdUGP50uDA8xx1Twp6v4r2OmVPY2AxsJO9PmsUzMO2TIULfgqusojPOgBfFvQC6QR-iVJAIjyZJwE_sL1uGUF7DAneLO4-ntcolZh75XS-Nro9M1Rf-RzxfoPa_hkBR07nK-CKlSgsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:55 GMT', + 'Fri, 25 Jun 2021 19:44:34 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', 'Content-Type', @@ -58,35 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '85f09191-d1fd-4fd7-9a80-0d912b926200', + 'c19e3cf4-d853-423c-83e5-5de3c0bd6200', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:56 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CgAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:34 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr2Y_qEuqXCm6WnOjU7d8vSEal1pZgu0JB8106XImwbIdcEdQ9y5j93vf07AzcKSZSQKQZlFF5203QhRzh-IvybwKHHWMwI67f9qi8cVnnoHiAJ-rz4aWui9JxWoGlwq_toR1-NjxULj4VgW4aZvG7Z_MO2qGgwC7q682b3Hje4KQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr8qiHf0h2dsbp1baPydynLOfFwiMhx6PbBfJ-D_d4ZkI8s6fGicPXyjjVWz09M3N2Pm1ek9L_UPG8ooQVeMbxnImNGev4SiZK1Ck2EPyX1qRgVceZnfVpfxqZtd6uX0sL6bUD-qa9YRgys6moUabOxCLGRuAW3U230ohSaTjwnUogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:55 GMT', + 'Fri, 25 Jun 2021 19:44:34 GMT', 'Content-Length', - '1651' + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=125b539c-44cc-4e5f-9cb1-ae2afba87a00&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1331', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -98,39 +93,119 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'b6a65474-742c-4d60-a8b1-d5d3ada56000', + 'f75e896d-b4c4-4e8a-8d17-6ea692e15900', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:56 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:34 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:55 GMT' + 'Fri, 25 Jun 2021 19:44:34 GMT', + 'Content-Length', + '1331' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"1","text":"This won't actually create a warning :'("}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/dc718d9c-4b61-4fc2-80eb-ef21ee515ac5', + 'x-envoy-upstream-service-time', + '183', + 'apim-request-id', + '300c4228-b67b-41fe-b842-5b0f80c58f3c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:34 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/dc718d9c-4b61-4fc2-80eb-ef21ee515ac5') + .query(true) + .reply(200, {"jobId":"dc718d9c-4b61-4fc2-80eb-ef21ee515ac5","lastUpdateDateTime":"2021-06-25T19:44:34Z","createdDateTime":"2021-06-25T19:44:34Z","expirationDateTime":"2021-06-26T19:44:34Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '23', + 'apim-request-id', + '83ddcb34-d7e3-4661-b20c-f26b21b51500', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:34 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/dc718d9c-4b61-4fc2-80eb-ef21ee515ac5') + .query(true) + .reply(200, {"jobId":"dc718d9c-4b61-4fc2-80eb-ef21ee515ac5","lastUpdateDateTime":"2021-06-25T19:44:34Z","createdDateTime":"2021-06-25T19:44:34Z","expirationDateTime":"2021-06-26T19:44:34Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'd64f33bd-cc26-4053-983b-fb08f933f4c8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:34 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/dc718d9c-4b61-4fc2-80eb-ef21ee515ac5') + .query(true) + .reply(200, {"jobId":"dc718d9c-4b61-4fc2-80eb-ef21ee515ac5","lastUpdateDateTime":"2021-06-25T19:44:35Z","createdDateTime":"2021-06-25T19:44:34Z","expirationDateTime":"2021-06-26T19:44:34Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '50', + 'apim-request-id', + 'bb145d1f-4413-4c17-a856-6b1ec2009202', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:36 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) + .get('//text/analytics/v3.1/entities/health/jobs/dc718d9c-4b61-4fc2-80eb-ef21ee515ac5') .query(true) - .reply(200, {"documents":[{"redactedText":"año SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":9,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + .reply(200, {"jobId":"dc718d9c-4b61-4fc2-80eb-ef21ee515ac5","lastUpdateDateTime":"2021-06-25T19:44:35Z","createdDateTime":"2021-06-25T19:44:34Z","expirationDateTime":"2021-06-26T19:44:34Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '60', + '50', 'apim-request-id', - 'afa834d4-a8a0-4dde-b50d-68c1dad1a493', + '34244bb6-5927-4543-b2b7-418a5760c9fe', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:55 GMT' + 'Fri, 25 Jun 2021 19:44:36 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_emoji.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.js similarity index 68% rename from sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_emoji.js rename to sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.js index d43eff125e53..969c24b9af60 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_emoji.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "cdeb91f384d20dbd1bd75f19cccdf4f4"; +module.exports.hash = "f3f46cab08b3670e4445e7d19a63d3c5"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,30 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '00238925-45d3-4511-ac32-92cf70963e00', + '35b9d0cb-8309-4523-9feb-e123a2f13c00', 'x-ms-ests-server', - '2.1.11654.25 - NCUS ProdSlices', + '2.1.11829.8 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:53 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:45:11 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr69lDIdfdy9pVSTRVjAjUBfUIbHDXOXKKS8AHN-qNl3Ajg2-I7dwrzkXmz5U1iqzZncXUBon0tC5xcc2REN_pavAZG9aegynaEDjaYw7YADwTKrAnck8M9-juEU0STKDiOtCVOA5BtcFRPCt9FFh0IVK1Sj3dSI6B9hDR-KPSWvcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr_StjkvaiK3Nb3LllW-a9hldA_9er08rW364AW3c-OxzPSrCBm_wMMNKpdX9YWjiSESYwH-ev59Jdw5RFnFSd0Xom-Em9izJdnkrBzhxyE62_jjdRGH4bQ1kF4PgRoGpPPIlQG5VwCoIBsOidlPOqhk0Mn-Bz3FWTcKC1gxBoTYYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:53 GMT', + 'Fri, 25 Jun 2021 19:45:11 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,26 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'a94baaa3-2e20-4683-8e1e-ea7a9e4dc500', + '703b39c0-f313-4374-a6f6-9fd0e7605d00', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:53 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:45:11 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrov3QgcdYmeMcFnJ2S3XlMRMtGOZmd0yaPEeTCrEI9p6E6xo2x9CB8rhQqK_7OA9FFXEezBu2srx5O6tZnFfmHP7-D_MXzfbzdmUt-xeEx-s822PPm7bJuF8lNjpVjEnBNHZwocLzQCzdoixZZbKMJ785RAxsvJ8GkIxlfsxPXCogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrcDSqpoFf3Y4MEOSk2Rf28EPbP__N7lRkSx_GHxn9ax-SPgSxfobJG4b12PamwE86lnAv-mvWM0-xg77XnFhMrG9m0yhIQfKwHF3NHxXGXkAzomv4YBNemRtp5zHYMPjI-dg_sF8os72EPjo3aiKuIXDhRqBs8xBs2RSPt4-3vJogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:53 GMT' + 'Fri, 25 Jun 2021 19:45:11 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=51fa3f7e-2b72-4140-8df2-c77e0239312b&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -98,39 +95,37 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'd8df8829-77a8-46cc-a784-90abebd8c800', + 'f75e896d-b4c4-4e8a-8d17-6ea61ee65900', 'x-ms-ests-server', - '2.1.11722.21 - WUS2 ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:54 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:45:11 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:53 GMT' + 'Fri, 25 Jun 2021 19:45:11 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"👩 SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"1","text":"hello world"},{"id":"1","text":"I did not like the hotel we stayed at."}]}) .query(true) - .reply(200, {"documents":[{"redactedText":"👩 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":7,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + .reply(400, {"error":{"code":"InvalidRequest","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Request contains duplicated Ids. Make sure each document has a unique Id."}}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '76', + '5', 'apim-request-id', - '4b7a025d-351e-4c2c-b739-3b45ea88e4a4', + 'd1a572ff-0c2b-479f-8fa2-855ee684359b', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:53 GMT' + 'Fri, 25 Jun 2021 19:45:11 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_entity_assertions.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_entity_assertions.js new file mode 100644 index 000000000000..b8c9e8b84e99 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_entity_assertions.js @@ -0,0 +1,491 @@ +let nock = require('nock'); + +module.exports.hash = "6c84b95328582df279435043ada9d912"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '636de7ee-23b2-42eb-a73a-d6ec81ca7800', + 'x-ms-ests-server', + '2.1.11829.9 - NCUS ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:43:42 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrFTN1kBK_3JO1HMe0Mrr1l5pbGeHTeK2PgkQy998SIUAxOXolZOteewGXBYjpUHuNi3lhu_bL581U0BhonqSmORy-SCwZ2H0_BCw8581vvH9Bgq6aniGgd9FiUlV2ho0wjJO2XuqtMRTeo4p6cO4_lToH38lsRMX-chb7UOQxHLYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:43:41 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '5d543b59-2435-4161-9c9e-e923e0cf7100', + 'x-ms-ests-server', + '2.1.11829.9 - EUS ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:43:42 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrW9WpzrGtPPUY-sx8LNVyall6RlCiH8Pox4AwlRLeFL2BpQ4ItNJabjw2TnuyaDJjFjq9XmJEesHc1NFH_aXF8oMN2qQb7bqOCKGOE2RAcYpZvaDhPLi0pumt4Emfpee9zmpepvJVfIECWA3WsgALUgpNFIVYof14OsYx4dQIlPUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:43:41 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=b5be9e17-180b-4df7-9912-1e2462c11a27&client_secret=azure_client_secret") + .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"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', + 'c19e3cf4-d853-423c-83e5-5de3e9b46200', + 'x-ms-ests-server', + '2.1.11829.9 - WUS2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:43:42 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:43:42 GMT', + 'Content-Length', + '1331' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"0","text":"Baby not likely to have Meningitis. in case of fever in the mother, consider Penicillin for the baby too.","language":"en"}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/811f942b-90a3-472b-b6ed-6c2644a8c1e7', + 'x-envoy-upstream-service-time', + '134', + 'apim-request-id', + '68b82e89-bd13-457a-b415-86d88c5b79a6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:42 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/811f942b-90a3-472b-b6ed-6c2644a8c1e7') + .query(true) + .reply(200, {"jobId":"811f942b-90a3-472b-b6ed-6c2644a8c1e7","lastUpdateDateTime":"2021-06-25T19:43:42Z","createdDateTime":"2021-06-25T19:43:42Z","expirationDateTime":"2021-06-26T19:43:42Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '6e370ee8-91f1-48c4-9c17-c1a2d66f7c73', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:42 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/811f942b-90a3-472b-b6ed-6c2644a8c1e7') + .query(true) + .reply(200, {"jobId":"811f942b-90a3-472b-b6ed-6c2644a8c1e7","lastUpdateDateTime":"2021-06-25T19:43:42Z","createdDateTime":"2021-06-25T19:43:42Z","expirationDateTime":"2021-06-26T19:43:42Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '10', + 'apim-request-id', + 'fd73e63e-2435-4a0e-bfa6-8ebf46cee023', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:42 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/811f942b-90a3-472b-b6ed-6c2644a8c1e7') + .query(true) + .reply(200, {"jobId":"811f942b-90a3-472b-b6ed-6c2644a8c1e7","lastUpdateDateTime":"2021-06-25T19:43:42Z","createdDateTime":"2021-06-25T19:43:42Z","expirationDateTime":"2021-06-26T19:43:42Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + '8112dd35-a715-48a4-91c7-2a2c51a7f922', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:44 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/811f942b-90a3-472b-b6ed-6c2644a8c1e7') + .query(true) + .reply(200, {"jobId":"811f942b-90a3-472b-b6ed-6c2644a8c1e7","lastUpdateDateTime":"2021-06-25T19:43:42Z","createdDateTime":"2021-06-25T19:43:42Z","expirationDateTime":"2021-06-26T19:43:42Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + 'f3f7013f-dc07-4c43-8c69-f087b367c56d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:46 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/811f942b-90a3-472b-b6ed-6c2644a8c1e7') + .query(true) + .reply(200, {"jobId":"811f942b-90a3-472b-b6ed-6c2644a8c1e7","lastUpdateDateTime":"2021-06-25T19:43:42Z","createdDateTime":"2021-06-25T19:43:42Z","expirationDateTime":"2021-06-26T19:43:42Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '69e5c7f3-ef4a-4bec-86f4-1a75b3b23ce6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:48 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/811f942b-90a3-472b-b6ed-6c2644a8c1e7') + .query(true) + .reply(200, {"jobId":"811f942b-90a3-472b-b6ed-6c2644a8c1e7","lastUpdateDateTime":"2021-06-25T19:43:42Z","createdDateTime":"2021-06-25T19:43:42Z","expirationDateTime":"2021-06-26T19:43:42Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + 'ab249e82-5ce1-4946-8964-042603dccda2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:50 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/811f942b-90a3-472b-b6ed-6c2644a8c1e7') + .query(true) + .reply(200, {"jobId":"811f942b-90a3-472b-b6ed-6c2644a8c1e7","lastUpdateDateTime":"2021-06-25T19:43:42Z","createdDateTime":"2021-06-25T19:43:42Z","expirationDateTime":"2021-06-26T19:43:42Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '31', + 'apim-request-id', + '3229e028-d52c-453e-81c1-981da1eb2527', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:52 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/811f942b-90a3-472b-b6ed-6c2644a8c1e7') + .query(true) + .reply(200, {"jobId":"811f942b-90a3-472b-b6ed-6c2644a8c1e7","lastUpdateDateTime":"2021-06-25T19:43:42Z","createdDateTime":"2021-06-25T19:43:42Z","expirationDateTime":"2021-06-26T19:43:42Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + '7c9ec4b1-d0da-46be-aa41-e2f2f47d4d5b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:54 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/811f942b-90a3-472b-b6ed-6c2644a8c1e7') + .query(true) + .reply(200, {"jobId":"811f942b-90a3-472b-b6ed-6c2644a8c1e7","lastUpdateDateTime":"2021-06-25T19:43:55Z","createdDateTime":"2021-06-25T19:43:42Z","expirationDateTime":"2021-06-26T19:43:42Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + '6290c624-3fd7-45e3-8ac0-147bece4ef86', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:56 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/811f942b-90a3-472b-b6ed-6c2644a8c1e7') + .query(true) + .reply(200, {"jobId":"811f942b-90a3-472b-b6ed-6c2644a8c1e7","lastUpdateDateTime":"2021-06-25T19:43:55Z","createdDateTime":"2021-06-25T19:43:42Z","expirationDateTime":"2021-06-26T19:43:42Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '10', + 'apim-request-id', + 'ac868057-cbcc-42f6-a5c5-9353f69ebccc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:58 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/811f942b-90a3-472b-b6ed-6c2644a8c1e7') + .query(true) + .reply(200, {"jobId":"811f942b-90a3-472b-b6ed-6c2644a8c1e7","lastUpdateDateTime":"2021-06-25T19:43:55Z","createdDateTime":"2021-06-25T19:43:42Z","expirationDateTime":"2021-06-26T19:43:42Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '3acee214-ae84-462a-9fb3-1d62475bd79a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:01 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/811f942b-90a3-472b-b6ed-6c2644a8c1e7') + .query(true) + .reply(200, {"jobId":"811f942b-90a3-472b-b6ed-6c2644a8c1e7","lastUpdateDateTime":"2021-06-25T19:43:55Z","createdDateTime":"2021-06-25T19:43:42Z","expirationDateTime":"2021-06-26T19:43:42Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'bec9943c-1325-48eb-84e6-59be075b38ae', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:03 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/811f942b-90a3-472b-b6ed-6c2644a8c1e7') + .query(true) + .reply(200, {"jobId":"811f942b-90a3-472b-b6ed-6c2644a8c1e7","lastUpdateDateTime":"2021-06-25T19:43:55Z","createdDateTime":"2021-06-25T19:43:42Z","expirationDateTime":"2021-06-26T19:43:42Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '80fc225a-5ac3-4551-956c-1dad711b78e4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:05 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/811f942b-90a3-472b-b6ed-6c2644a8c1e7') + .query(true) + .reply(200, {"jobId":"811f942b-90a3-472b-b6ed-6c2644a8c1e7","lastUpdateDateTime":"2021-06-25T19:43:55Z","createdDateTime":"2021-06-25T19:43:42Z","expirationDateTime":"2021-06-26T19:43:42Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '33103d27-12c5-4a2f-b65c-1e338171ef6d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:07 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/811f942b-90a3-472b-b6ed-6c2644a8c1e7') + .query(true) + .reply(200, {"jobId":"811f942b-90a3-472b-b6ed-6c2644a8c1e7","lastUpdateDateTime":"2021-06-25T19:43:55Z","createdDateTime":"2021-06-25T19:43:42Z","expirationDateTime":"2021-06-26T19:43:42Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '5a8be062-aa77-4303-a2a9-6e6e64b91a9e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:09 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/811f942b-90a3-472b-b6ed-6c2644a8c1e7') + .query(true) + .reply(200, {"jobId":"811f942b-90a3-472b-b6ed-6c2644a8c1e7","lastUpdateDateTime":"2021-06-25T19:43:55Z","createdDateTime":"2021-06-25T19:43:42Z","expirationDateTime":"2021-06-26T19:43:42Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + '1d007424-7f77-4002-b9c9-e1b728657892', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:11 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/811f942b-90a3-472b-b6ed-6c2644a8c1e7') + .query(true) + .reply(200, {"jobId":"811f942b-90a3-472b-b6ed-6c2644a8c1e7","lastUpdateDateTime":"2021-06-25T19:44:13Z","createdDateTime":"2021-06-25T19:43:42Z","expirationDateTime":"2021-06-26T19:43:42Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":0,"length":4,"text":"Baby","category":"Age","confidenceScore":0.94,"name":"Infant","links":[{"dataSource":"UMLS","id":"C0021270"},{"dataSource":"AOD","id":"0000005273"},{"dataSource":"CCPSS","id":"0030805"},{"dataSource":"CHV","id":"0000006675"},{"dataSource":"DXP","id":"U002089"},{"dataSource":"LCH","id":"U002421"},{"dataSource":"LCH_NW","id":"sh85066022"},{"dataSource":"LNC","id":"LA19747-7"},{"dataSource":"MDR","id":"10021731"},{"dataSource":"MSH","id":"D007223"},{"dataSource":"NCI","id":"C27956"},{"dataSource":"NCI_FDA","id":"C27956"},{"dataSource":"NCI_NICHD","id":"C27956"},{"dataSource":"SNOMEDCT_US","id":"133931009"}]},{"offset":24,"length":10,"text":"Meningitis","category":"Diagnosis","confidenceScore":1,"assertion":{"certainty":"negativePossible"},"name":"Meningitis","links":[{"dataSource":"UMLS","id":"C0025289"},{"dataSource":"AOD","id":"0000006185"},{"dataSource":"BI","id":"BI00546"},{"dataSource":"CCPSS","id":"1018016"},{"dataSource":"CCSR_10","id":"NVS001"},{"dataSource":"CHV","id":"0000007932"},{"dataSource":"COSTAR","id":"478"},{"dataSource":"CSP","id":"2042-5301"},{"dataSource":"CST","id":"MENINGITIS"},{"dataSource":"DXP","id":"U002543"},{"dataSource":"HPO","id":"HP:0001287"},{"dataSource":"ICD10","id":"G03.9"},{"dataSource":"ICD10AM","id":"G03.9"},{"dataSource":"ICD10CM","id":"G03.9"},{"dataSource":"ICD9CM","id":"322.9"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU048434"},{"dataSource":"ICPC2P","id":"N71002"},{"dataSource":"LCH","id":"U002901"},{"dataSource":"LCH_NW","id":"sh85083562"},{"dataSource":"LNC","id":"LP20756-0"},{"dataSource":"MDR","id":"10027199"},{"dataSource":"MEDCIN","id":"31192"},{"dataSource":"MEDLINEPLUS","id":"324"},{"dataSource":"MSH","id":"D008581"},{"dataSource":"NANDA-I","id":"02899"},{"dataSource":"NCI","id":"C26828"},{"dataSource":"NCI_CPTAC","id":"C26828"},{"dataSource":"NCI_CTCAE","id":"E11458"},{"dataSource":"NCI_FDA","id":"2389"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000471780"},{"dataSource":"NCI_NICHD","id":"C26828"},{"dataSource":"OMIM","id":"MTHU005994"},{"dataSource":"PSY","id":"30660"},{"dataSource":"RCD","id":"X000H"},{"dataSource":"SNM","id":"M-40000"},{"dataSource":"SNMI","id":"DA-10010"},{"dataSource":"SNOMEDCT_US","id":"7180009"},{"dataSource":"WHO","id":"0955"}]},{"offset":47,"length":5,"text":"fever","category":"SymptomOrSign","confidenceScore":1,"name":"Fever","links":[{"dataSource":"UMLS","id":"C0015967"},{"dataSource":"AIR","id":"FEVER"},{"dataSource":"AOD","id":"0000004396"},{"dataSource":"BI","id":"BI00751"},{"dataSource":"CCC","id":"K25.2"},{"dataSource":"CCPSS","id":"1017166"},{"dataSource":"CCSR_10","id":"SYM002"},{"dataSource":"CHV","id":"0000005010"},{"dataSource":"COSTAR","id":"300"},{"dataSource":"CPM","id":"65287"},{"dataSource":"CSP","id":"2871-4310"},{"dataSource":"CST","id":"FEVER"},{"dataSource":"DXP","id":"U001483"},{"dataSource":"GO","id":"GO:0001660"},{"dataSource":"HPO","id":"HP:0001945"},{"dataSource":"ICD10","id":"R50.9"},{"dataSource":"ICD10AM","id":"R50.9"},{"dataSource":"ICD10CM","id":"R50.9"},{"dataSource":"ICD9CM","id":"780.60"},{"dataSource":"ICNP","id":"10041539"},{"dataSource":"ICPC","id":"A03"},{"dataSource":"ICPC2EENG","id":"A03"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU041751"},{"dataSource":"ICPC2P","id":"A03002"},{"dataSource":"LCH","id":"U001776"},{"dataSource":"LCH_NW","id":"sh85047994"},{"dataSource":"LNC","id":"MTHU013518"},{"dataSource":"MDR","id":"10005911"},{"dataSource":"MEDCIN","id":"6005"},{"dataSource":"MEDLINEPLUS","id":"511"},{"dataSource":"MSH","id":"D005334"},{"dataSource":"MTHICD9","id":"780.60"},{"dataSource":"NANDA-I","id":"01128"},{"dataSource":"NCI","id":"C3038"},{"dataSource":"NCI_CTCAE","id":"E11102"},{"dataSource":"NCI_FDA","id":"1858"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000450108"},{"dataSource":"NCI_NICHD","id":"C3038"},{"dataSource":"NOC","id":"070307"},{"dataSource":"OMIM","id":"MTHU005439"},{"dataSource":"OMS","id":"50.03"},{"dataSource":"PCDS","id":"PRB_11020.02"},{"dataSource":"PDQ","id":"CDR0000775882"},{"dataSource":"PSY","id":"23840"},{"dataSource":"QMR","id":"Q0200115"},{"dataSource":"RCD","id":"X76EI"},{"dataSource":"SNM","id":"F-03003"},{"dataSource":"SNMI","id":"F-03003"},{"dataSource":"SNOMEDCT_US","id":"386661006"},{"dataSource":"WHO","id":"0725"}]},{"offset":60,"length":6,"text":"mother","category":"FamilyRelation","confidenceScore":0.99,"name":"Mother (person)","links":[{"dataSource":"UMLS","id":"C0026591"},{"dataSource":"AOD","id":"0000027173"},{"dataSource":"CCPSS","id":"U000286"},{"dataSource":"CHV","id":"0000008266"},{"dataSource":"CSP","id":"1124-5492"},{"dataSource":"HL7V3.0","id":"MTH"},{"dataSource":"LCH","id":"U003028"},{"dataSource":"LCH_NW","id":"sh85087526"},{"dataSource":"LNC","id":"LA10417-6"},{"dataSource":"MSH","id":"D009035"},{"dataSource":"NCI","id":"C25189"},{"dataSource":"NCI_CDISC","id":"C25189"},{"dataSource":"NCI_GDC","id":"C25189"},{"dataSource":"PSY","id":"32140"},{"dataSource":"RCD","id":"X78ym"},{"dataSource":"SNMI","id":"S-10120"},{"dataSource":"SNOMEDCT_US","id":"72705000"}]},{"offset":77,"length":10,"text":"Penicillin","category":"MedicationName","confidenceScore":0.9,"assertion":{"certainty":"neutralPossible"},"name":"penicillins","links":[{"dataSource":"UMLS","id":"C0030842"},{"dataSource":"AOD","id":"0000019206"},{"dataSource":"ATC","id":"J01C"},{"dataSource":"CCPSS","id":"0014106"},{"dataSource":"CHV","id":"0000009423"},{"dataSource":"CSP","id":"0199-8025"},{"dataSource":"GS","id":"4011"},{"dataSource":"LCH","id":"U003521"},{"dataSource":"LCH_NW","id":"sh85099402"},{"dataSource":"LNC","id":"LP14319-5"},{"dataSource":"MEDCIN","id":"40319"},{"dataSource":"MMSL","id":"d00116"},{"dataSource":"MSH","id":"D010406"},{"dataSource":"NCI","id":"C1500"},{"dataSource":"NCI_DTP","id":"NSC0402815"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000045296"},{"dataSource":"NDDF","id":"016121"},{"dataSource":"PSY","id":"37190"},{"dataSource":"RCD","id":"x009C"},{"dataSource":"SNM","id":"E-7260"},{"dataSource":"SNMI","id":"C-54000"},{"dataSource":"SNOMEDCT_US","id":"764146007"},{"dataSource":"VANDF","id":"4019880"}]},{"offset":96,"length":4,"text":"baby","category":"FamilyRelation","confidenceScore":1,"name":"Infant","links":[{"dataSource":"UMLS","id":"C0021270"},{"dataSource":"AOD","id":"0000005273"},{"dataSource":"CCPSS","id":"0030805"},{"dataSource":"CHV","id":"0000006675"},{"dataSource":"DXP","id":"U002089"},{"dataSource":"LCH","id":"U002421"},{"dataSource":"LCH_NW","id":"sh85066022"},{"dataSource":"LNC","id":"LA19747-7"},{"dataSource":"MDR","id":"10021731"},{"dataSource":"MSH","id":"D007223"},{"dataSource":"NCI","id":"C27956"},{"dataSource":"NCI_FDA","id":"C27956"},{"dataSource":"NCI_NICHD","id":"C27956"},{"dataSource":"SNOMEDCT_US","id":"133931009"}]}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '56', + 'apim-request-id', + 'b3818af7-da1c-4d15-8d38-1ff4a5dbbe74', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:13 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/811f942b-90a3-472b-b6ed-6c2644a8c1e7') + .query(true) + .reply(200, {"jobId":"811f942b-90a3-472b-b6ed-6c2644a8c1e7","lastUpdateDateTime":"2021-06-25T19:44:13Z","createdDateTime":"2021-06-25T19:43:42Z","expirationDateTime":"2021-06-26T19:43:42Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":0,"length":4,"text":"Baby","category":"Age","confidenceScore":0.94,"name":"Infant","links":[{"dataSource":"UMLS","id":"C0021270"},{"dataSource":"AOD","id":"0000005273"},{"dataSource":"CCPSS","id":"0030805"},{"dataSource":"CHV","id":"0000006675"},{"dataSource":"DXP","id":"U002089"},{"dataSource":"LCH","id":"U002421"},{"dataSource":"LCH_NW","id":"sh85066022"},{"dataSource":"LNC","id":"LA19747-7"},{"dataSource":"MDR","id":"10021731"},{"dataSource":"MSH","id":"D007223"},{"dataSource":"NCI","id":"C27956"},{"dataSource":"NCI_FDA","id":"C27956"},{"dataSource":"NCI_NICHD","id":"C27956"},{"dataSource":"SNOMEDCT_US","id":"133931009"}]},{"offset":24,"length":10,"text":"Meningitis","category":"Diagnosis","confidenceScore":1,"assertion":{"certainty":"negativePossible"},"name":"Meningitis","links":[{"dataSource":"UMLS","id":"C0025289"},{"dataSource":"AOD","id":"0000006185"},{"dataSource":"BI","id":"BI00546"},{"dataSource":"CCPSS","id":"1018016"},{"dataSource":"CCSR_10","id":"NVS001"},{"dataSource":"CHV","id":"0000007932"},{"dataSource":"COSTAR","id":"478"},{"dataSource":"CSP","id":"2042-5301"},{"dataSource":"CST","id":"MENINGITIS"},{"dataSource":"DXP","id":"U002543"},{"dataSource":"HPO","id":"HP:0001287"},{"dataSource":"ICD10","id":"G03.9"},{"dataSource":"ICD10AM","id":"G03.9"},{"dataSource":"ICD10CM","id":"G03.9"},{"dataSource":"ICD9CM","id":"322.9"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU048434"},{"dataSource":"ICPC2P","id":"N71002"},{"dataSource":"LCH","id":"U002901"},{"dataSource":"LCH_NW","id":"sh85083562"},{"dataSource":"LNC","id":"LP20756-0"},{"dataSource":"MDR","id":"10027199"},{"dataSource":"MEDCIN","id":"31192"},{"dataSource":"MEDLINEPLUS","id":"324"},{"dataSource":"MSH","id":"D008581"},{"dataSource":"NANDA-I","id":"02899"},{"dataSource":"NCI","id":"C26828"},{"dataSource":"NCI_CPTAC","id":"C26828"},{"dataSource":"NCI_CTCAE","id":"E11458"},{"dataSource":"NCI_FDA","id":"2389"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000471780"},{"dataSource":"NCI_NICHD","id":"C26828"},{"dataSource":"OMIM","id":"MTHU005994"},{"dataSource":"PSY","id":"30660"},{"dataSource":"RCD","id":"X000H"},{"dataSource":"SNM","id":"M-40000"},{"dataSource":"SNMI","id":"DA-10010"},{"dataSource":"SNOMEDCT_US","id":"7180009"},{"dataSource":"WHO","id":"0955"}]},{"offset":47,"length":5,"text":"fever","category":"SymptomOrSign","confidenceScore":1,"name":"Fever","links":[{"dataSource":"UMLS","id":"C0015967"},{"dataSource":"AIR","id":"FEVER"},{"dataSource":"AOD","id":"0000004396"},{"dataSource":"BI","id":"BI00751"},{"dataSource":"CCC","id":"K25.2"},{"dataSource":"CCPSS","id":"1017166"},{"dataSource":"CCSR_10","id":"SYM002"},{"dataSource":"CHV","id":"0000005010"},{"dataSource":"COSTAR","id":"300"},{"dataSource":"CPM","id":"65287"},{"dataSource":"CSP","id":"2871-4310"},{"dataSource":"CST","id":"FEVER"},{"dataSource":"DXP","id":"U001483"},{"dataSource":"GO","id":"GO:0001660"},{"dataSource":"HPO","id":"HP:0001945"},{"dataSource":"ICD10","id":"R50.9"},{"dataSource":"ICD10AM","id":"R50.9"},{"dataSource":"ICD10CM","id":"R50.9"},{"dataSource":"ICD9CM","id":"780.60"},{"dataSource":"ICNP","id":"10041539"},{"dataSource":"ICPC","id":"A03"},{"dataSource":"ICPC2EENG","id":"A03"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU041751"},{"dataSource":"ICPC2P","id":"A03002"},{"dataSource":"LCH","id":"U001776"},{"dataSource":"LCH_NW","id":"sh85047994"},{"dataSource":"LNC","id":"MTHU013518"},{"dataSource":"MDR","id":"10005911"},{"dataSource":"MEDCIN","id":"6005"},{"dataSource":"MEDLINEPLUS","id":"511"},{"dataSource":"MSH","id":"D005334"},{"dataSource":"MTHICD9","id":"780.60"},{"dataSource":"NANDA-I","id":"01128"},{"dataSource":"NCI","id":"C3038"},{"dataSource":"NCI_CTCAE","id":"E11102"},{"dataSource":"NCI_FDA","id":"1858"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000450108"},{"dataSource":"NCI_NICHD","id":"C3038"},{"dataSource":"NOC","id":"070307"},{"dataSource":"OMIM","id":"MTHU005439"},{"dataSource":"OMS","id":"50.03"},{"dataSource":"PCDS","id":"PRB_11020.02"},{"dataSource":"PDQ","id":"CDR0000775882"},{"dataSource":"PSY","id":"23840"},{"dataSource":"QMR","id":"Q0200115"},{"dataSource":"RCD","id":"X76EI"},{"dataSource":"SNM","id":"F-03003"},{"dataSource":"SNMI","id":"F-03003"},{"dataSource":"SNOMEDCT_US","id":"386661006"},{"dataSource":"WHO","id":"0725"}]},{"offset":60,"length":6,"text":"mother","category":"FamilyRelation","confidenceScore":0.99,"name":"Mother (person)","links":[{"dataSource":"UMLS","id":"C0026591"},{"dataSource":"AOD","id":"0000027173"},{"dataSource":"CCPSS","id":"U000286"},{"dataSource":"CHV","id":"0000008266"},{"dataSource":"CSP","id":"1124-5492"},{"dataSource":"HL7V3.0","id":"MTH"},{"dataSource":"LCH","id":"U003028"},{"dataSource":"LCH_NW","id":"sh85087526"},{"dataSource":"LNC","id":"LA10417-6"},{"dataSource":"MSH","id":"D009035"},{"dataSource":"NCI","id":"C25189"},{"dataSource":"NCI_CDISC","id":"C25189"},{"dataSource":"NCI_GDC","id":"C25189"},{"dataSource":"PSY","id":"32140"},{"dataSource":"RCD","id":"X78ym"},{"dataSource":"SNMI","id":"S-10120"},{"dataSource":"SNOMEDCT_US","id":"72705000"}]},{"offset":77,"length":10,"text":"Penicillin","category":"MedicationName","confidenceScore":0.9,"assertion":{"certainty":"neutralPossible"},"name":"penicillins","links":[{"dataSource":"UMLS","id":"C0030842"},{"dataSource":"AOD","id":"0000019206"},{"dataSource":"ATC","id":"J01C"},{"dataSource":"CCPSS","id":"0014106"},{"dataSource":"CHV","id":"0000009423"},{"dataSource":"CSP","id":"0199-8025"},{"dataSource":"GS","id":"4011"},{"dataSource":"LCH","id":"U003521"},{"dataSource":"LCH_NW","id":"sh85099402"},{"dataSource":"LNC","id":"LP14319-5"},{"dataSource":"MEDCIN","id":"40319"},{"dataSource":"MMSL","id":"d00116"},{"dataSource":"MSH","id":"D010406"},{"dataSource":"NCI","id":"C1500"},{"dataSource":"NCI_DTP","id":"NSC0402815"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000045296"},{"dataSource":"NDDF","id":"016121"},{"dataSource":"PSY","id":"37190"},{"dataSource":"RCD","id":"x009C"},{"dataSource":"SNM","id":"E-7260"},{"dataSource":"SNMI","id":"C-54000"},{"dataSource":"SNOMEDCT_US","id":"764146007"},{"dataSource":"VANDF","id":"4019880"}]},{"offset":96,"length":4,"text":"baby","category":"FamilyRelation","confidenceScore":1,"name":"Infant","links":[{"dataSource":"UMLS","id":"C0021270"},{"dataSource":"AOD","id":"0000005273"},{"dataSource":"CCPSS","id":"0030805"},{"dataSource":"CHV","id":"0000006675"},{"dataSource":"DXP","id":"U002089"},{"dataSource":"LCH","id":"U002421"},{"dataSource":"LCH_NW","id":"sh85066022"},{"dataSource":"LNC","id":"LA19747-7"},{"dataSource":"MDR","id":"10021731"},{"dataSource":"MSH","id":"D007223"},{"dataSource":"NCI","id":"C27956"},{"dataSource":"NCI_FDA","id":"C27956"},{"dataSource":"NCI_NICHD","id":"C27956"},{"dataSource":"SNOMEDCT_US","id":"133931009"}]}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '52', + 'apim-request-id', + '8f07c831-c066-4e5e-9359-c93273f5fbcb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:13 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.js new file mode 100644 index 000000000000..01f14372224c --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.js @@ -0,0 +1,471 @@ +let nock = require('nock'); + +module.exports.hash = "6197be518bc787450217d0b89ab9001b"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '47a5d25b-c9b5-4050-9e04-5707a4ca0500', + 'x-ms-ests-server', + '2.1.11829.8 - SCUS ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EAAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:45:22 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrAoRl03YH3u1M9JoXuZa_LCSlvhQbv8ybH9cNDVrpUymwJMnr-BtbNORbhLkV7G4NKDgxKGVLbJKj6cNcLxcA2eNlxLyih4Ekmz2GPz1VGOyIYttFDlwsEcc2kqxI5Bi4vySd_O-zpMLiQLCTMcg2G82uOkBMGV-vsJXRxl82FjkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:45:22 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '703b39c0-f313-4374-a6f6-9fd0e8625d00', + 'x-ms-ests-server', + '2.1.11829.9 - NCUS ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EAAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:45:22 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevruqp3R7tajo6B3seKbS6-IkPiTFcL_2Sg4QmW6P9jgpMV9JFKHLKsqk11S1lGpMrYeU2x_e39rMHxVgHgul-ijNiYP4Rqu_dseSkE_0GGpIjOa1fZEZye9QrlOT6Y-BPNymuiLjpzvPem-Ef1_gjADSRCbxgZywH8e2DijKtXFb4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:45:22 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=5d36191d-21aa-4700-a157-a03a195ae5c4&client_secret=azure_client_secret") + .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"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', + '703b39c0-f313-4374-a6f6-9fd0ed625d00', + 'x-ms-ests-server', + '2.1.11829.9 - NCUS ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EQAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:45:22 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:45:22 GMT', + 'Content-Length', + '1331' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 ibuprofen","language":"en"}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2', + 'x-envoy-upstream-service-time', + '2779', + 'apim-request-id', + '208f7e05-9790-4537-b72e-f13dbca67c1f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:25 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2') + .query(true) + .reply(200, {"jobId":"cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2","lastUpdateDateTime":"2021-06-25T19:45:25Z","createdDateTime":"2021-06-25T19:45:22Z","expirationDateTime":"2021-06-26T19:45:22Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '27252697-a7ca-4622-b150-b635ef986891', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:25 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2') + .query(true) + .reply(200, {"jobId":"cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2","lastUpdateDateTime":"2021-06-25T19:45:25Z","createdDateTime":"2021-06-25T19:45:22Z","expirationDateTime":"2021-06-26T19:45:22Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '26', + 'apim-request-id', + 'ff56e7c0-757b-4755-8d2f-d0ec44512d52', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:25 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2') + .query(true) + .reply(200, {"jobId":"cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2","lastUpdateDateTime":"2021-06-25T19:45:25Z","createdDateTime":"2021-06-25T19:45:22Z","expirationDateTime":"2021-06-26T19:45:22Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '03d8a40a-24ae-4d5d-9b92-1f7c0f2cf8d3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:27 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2') + .query(true) + .reply(200, {"jobId":"cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2","lastUpdateDateTime":"2021-06-25T19:45:25Z","createdDateTime":"2021-06-25T19:45:22Z","expirationDateTime":"2021-06-26T19:45:22Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '11', + 'apim-request-id', + 'f73518fd-306a-41de-965d-d08f076a0795', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:29 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2') + .query(true) + .reply(200, {"jobId":"cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2","lastUpdateDateTime":"2021-06-25T19:45:25Z","createdDateTime":"2021-06-25T19:45:22Z","expirationDateTime":"2021-06-26T19:45:22Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '13', + 'apim-request-id', + '1e65ee8a-9a3c-4b1e-bf17-1cf3dab0c983', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:32 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2') + .query(true) + .reply(200, {"jobId":"cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2","lastUpdateDateTime":"2021-06-25T19:45:25Z","createdDateTime":"2021-06-25T19:45:22Z","expirationDateTime":"2021-06-26T19:45:22Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '3a8de916-4f45-409f-8ee3-bf33f26866cb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:34 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2') + .query(true) + .reply(200, {"jobId":"cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2","lastUpdateDateTime":"2021-06-25T19:45:25Z","createdDateTime":"2021-06-25T19:45:22Z","expirationDateTime":"2021-06-26T19:45:22Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + 'f519ac8c-73b9-461e-86ba-857d65848f30', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:36 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2') + .query(true) + .reply(200, {"jobId":"cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2","lastUpdateDateTime":"2021-06-25T19:45:25Z","createdDateTime":"2021-06-25T19:45:22Z","expirationDateTime":"2021-06-26T19:45:22Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '4d836d5b-eca6-4750-ab69-32e6d100f761', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:38 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2') + .query(true) + .reply(200, {"jobId":"cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2","lastUpdateDateTime":"2021-06-25T19:45:25Z","createdDateTime":"2021-06-25T19:45:22Z","expirationDateTime":"2021-06-26T19:45:22Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '29f8baaf-4a61-469f-83e3-9f66d24d8181', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:40 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2') + .query(true) + .reply(200, {"jobId":"cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2","lastUpdateDateTime":"2021-06-25T19:45:25Z","createdDateTime":"2021-06-25T19:45:22Z","expirationDateTime":"2021-06-26T19:45:22Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '10', + 'apim-request-id', + '0ab1865d-e30d-4b83-9527-e885d461bf4e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:42 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2') + .query(true) + .reply(200, {"jobId":"cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2","lastUpdateDateTime":"2021-06-25T19:45:43Z","createdDateTime":"2021-06-25T19:45:22Z","expirationDateTime":"2021-06-26T19:45:22Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '11', + 'apim-request-id', + 'ec7f7ae6-a462-4b16-b414-585f9fa641bd', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:44 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2') + .query(true) + .reply(200, {"jobId":"cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2","lastUpdateDateTime":"2021-06-25T19:45:43Z","createdDateTime":"2021-06-25T19:45:22Z","expirationDateTime":"2021-06-26T19:45:22Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + 'dfda93e2-3860-437d-890d-29ce20f152fc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:46 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2') + .query(true) + .reply(200, {"jobId":"cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2","lastUpdateDateTime":"2021-06-25T19:45:43Z","createdDateTime":"2021-06-25T19:45:22Z","expirationDateTime":"2021-06-26T19:45:22Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + 'd0d71f16-f0e9-4644-bd9a-bef45ef88961', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:48 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2') + .query(true) + .reply(200, {"jobId":"cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2","lastUpdateDateTime":"2021-06-25T19:45:43Z","createdDateTime":"2021-06-25T19:45:22Z","expirationDateTime":"2021-06-26T19:45:22Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '544a5dd9-4f4f-4d0b-9dbf-7c957a7b5275', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:50 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2') + .query(true) + .reply(200, {"jobId":"cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2","lastUpdateDateTime":"2021-06-25T19:45:43Z","createdDateTime":"2021-06-25T19:45:22Z","expirationDateTime":"2021-06-26T19:45:22Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '2874a6b5-9150-4738-a0a9-2437e5c6e14c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:52 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2') + .query(true) + .reply(200, {"jobId":"cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2","lastUpdateDateTime":"2021-06-25T19:45:53Z","createdDateTime":"2021-06-25T19:45:22Z","expirationDateTime":"2021-06-26T19:45:22Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":12,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":0.99,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '53', + 'apim-request-id', + '557dca0a-489c-41e2-adc1-6f429873ce1e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:55 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2') + .query(true) + .reply(200, {"jobId":"cc9cdd1a-c96b-4531-a9b8-a8ea1e13b1b2","lastUpdateDateTime":"2021-06-25T19:45:53Z","createdDateTime":"2021-06-25T19:45:22Z","expirationDateTime":"2021-06-26T19:45:22Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":12,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":0.99,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '73', + 'apim-request-id', + 'd981caa9-c252-4716-ba3a-4eb7613f673d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:55 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.js new file mode 100644 index 000000000000..341625896c13 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.js @@ -0,0 +1,231 @@ +let nock = require('nock'); + +module.exports.hash = "b05b4bf7009369b70b036897b144ee54"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'e799b9d5-0c18-4511-bf19-9114fbbd4b00', + 'x-ms-ests-server', + '2.1.11829.9 - WUS2 ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:45:17 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrVuIuSLZik-kd7e0-BBLNcvjJbt5exDjvuDu_sT80q1djev6dyHpaaVXwfRj1iAoTRVuIcaZykcPgW2h5tFBwirbwwyQS7v5s9EDZxR_FBYYMVesLv2WZg15lpee0r49l-PP7B5AwuajGlgGRGzwizF9ITl58ggBGM0YkpMm8O9IgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:45:17 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'f75e896d-b4c4-4e8a-8d17-6ea6eee65900', + 'x-ms-ests-server', + '2.1.11829.9 - NCUS ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:45:17 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr3Q7fHtxpdWuG5TcrNzPstIPOMcNsNBmCPXUFtlbiQms3q_iOMgVZPYeogZfyBX9CCsyl2BUS3AqLUVuR1qwzQ8Dy7udAFd0RQvT8WOVveq2xTkITume22auBJ8sIV4USLhel2i2kO1_KuAlAmylF0fbMUGTiDhBfjiYJotTo9ZogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:45:17 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=33672ae5-f76f-416c-8c5b-96a2baa3c8f1&client_secret=azure_client_secret") + .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"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', + '1e233fee-f232-4e03-820f-8a8c281a6f00', + 'x-ms-ests-server', + '2.1.11829.9 - SCUS ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EAAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:45:17 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:45:17 GMT', + 'Content-Length', + '1331' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 ibuprofen","language":"en"}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/ef092482-4431-4b03-a0d0-43b17bef5016', + 'x-envoy-upstream-service-time', + '142', + 'apim-request-id', + '7e2951af-3717-47a5-bfef-f4eec3d77af7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:17 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/ef092482-4431-4b03-a0d0-43b17bef5016') + .query(true) + .reply(200, {"jobId":"ef092482-4431-4b03-a0d0-43b17bef5016","lastUpdateDateTime":"2021-06-25T19:45:18Z","createdDateTime":"2021-06-25T19:45:17Z","expirationDateTime":"2021-06-26T19:45:17Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + 'c8ffb8d5-31e7-43ac-ad64-525751e66073', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:17 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/ef092482-4431-4b03-a0d0-43b17bef5016') + .query(true) + .reply(200, {"jobId":"ef092482-4431-4b03-a0d0-43b17bef5016","lastUpdateDateTime":"2021-06-25T19:45:18Z","createdDateTime":"2021-06-25T19:45:17Z","expirationDateTime":"2021-06-26T19:45:17Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '9', + 'apim-request-id', + 'ebd4c592-3a50-4c02-a0f4-d86af27c9b48', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:18 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/ef092482-4431-4b03-a0d0-43b17bef5016') + .query(true) + .reply(200, {"jobId":"ef092482-4431-4b03-a0d0-43b17bef5016","lastUpdateDateTime":"2021-06-25T19:45:18Z","createdDateTime":"2021-06-25T19:45:17Z","expirationDateTime":"2021-06-26T19:45:17Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '6255fffe-888a-46ae-b86f-a03944e8228f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:20 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/ef092482-4431-4b03-a0d0-43b17bef5016') + .query(true) + .reply(200, {"jobId":"ef092482-4431-4b03-a0d0-43b17bef5016","lastUpdateDateTime":"2021-06-25T19:45:20Z","createdDateTime":"2021-06-25T19:45:17Z","expirationDateTime":"2021-06-26T19:45:17Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":20,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":0.99,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '71', + 'apim-request-id', + '29ae62e6-c415-4f3f-99a1-60dd34cf5891', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:22 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/ef092482-4431-4b03-a0d0-43b17bef5016') + .query(true) + .reply(200, {"jobId":"ef092482-4431-4b03-a0d0-43b17bef5016","lastUpdateDateTime":"2021-06-25T19:45:20Z","createdDateTime":"2021-06-25T19:45:17Z","expirationDateTime":"2021-06-26T19:45:17Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":20,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":0.99,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '60', + 'apim-request-id', + 'c3e2a1f7-c442-4e96-9229-582be462393b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:22 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_input_documents.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_input_documents.js new file mode 100644 index 000000000000..d79235872b7b --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_input_documents.js @@ -0,0 +1,211 @@ +let nock = require('nock'); + +module.exports.hash = "43b3d39525e456cf5912f65d3d091d10"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '20332572-3915-4b36-95b4-1b599bf80200', + 'x-ms-ests-server', + '2.1.11829.9 - NCUS ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:14 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrCzsAiNVs5s9BOPTYVWyUWWeiB4JL8_Opguv5afpgtJVYntbzJRaH1_dolxFh_7f3rE9D5U_VGMdKwthczr8SMW9rseNG11tn1sq2bQTbFJ8855xjik83J2HBWlerDY37mK5RWftn0BKt0y03qRyhGa6Y_x96CruhAhftdYHMNwkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:14 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'a9a1e068-3c7e-4040-b4a3-69524b1e6f00', + 'x-ms-ests-server', + '2.1.11829.9 - EUS ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:14 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr-wpGduJ43flLx0DgHLSGXYnu_uXmoKlFMF7rZhq6i4vLgpk0TriaOmx8BvFNF0jlEC0MxDWeDbiSCEmptyTfLax2eBs9xFloqLR_OhtcqPiGoZYJboM3QIiOGfgkTrhwn77DxuYGQg8vu2SMekEMJkyHPxQqgmvOCVYhuQ36PH4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:14 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=50db8c15-5323-450a-8608-f939a001d591&client_secret=azure_client_secret") + .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"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', + '9d80f76e-26fc-421e-9776-d8e300e35b00', + 'x-ms-ests-server', + '2.1.11829.9 - NCUS ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:14 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:14 GMT', + 'Content-Length', + '1331' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"1","text":"Patient does not suffer from high blood pressure.","language":"en"},{"id":"2","text":"Prescribed 100mg ibuprofen, taken twice daily.","language":"en"}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/6ddef43f-ccb7-451e-ab1f-96949d41f763', + 'x-envoy-upstream-service-time', + '273', + 'apim-request-id', + '02feea64-ed1e-42e1-ad10-65ab88a2845f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:14 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/6ddef43f-ccb7-451e-ab1f-96949d41f763') + .query(true) + .reply(200, {"jobId":"6ddef43f-ccb7-451e-ab1f-96949d41f763","lastUpdateDateTime":"2021-06-25T19:44:14Z","createdDateTime":"2021-06-25T19:44:14Z","expirationDateTime":"2021-06-26T19:44:14Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '95cbb820-628d-4630-8f34-df7b465e267b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:14 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/6ddef43f-ccb7-451e-ab1f-96949d41f763') + .query(true) + .reply(200, {"jobId":"6ddef43f-ccb7-451e-ab1f-96949d41f763","lastUpdateDateTime":"2021-06-25T19:44:14Z","createdDateTime":"2021-06-25T19:44:14Z","expirationDateTime":"2021-06-26T19:44:14Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '10', + 'apim-request-id', + '1093d41f-8e4b-42ec-9cf7-e8293b6b1728', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:14 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/6ddef43f-ccb7-451e-ab1f-96949d41f763') + .query(true) + .reply(200, {"jobId":"6ddef43f-ccb7-451e-ab1f-96949d41f763","lastUpdateDateTime":"2021-06-25T19:44:15Z","createdDateTime":"2021-06-25T19:44:14Z","expirationDateTime":"2021-06-26T19:44:14Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[{"offset":29,"length":19,"text":"high blood pressure","category":"SymptomOrSign","confidenceScore":1,"assertion":{"certainty":"negative"},"name":"Hypertensive disease","links":[{"dataSource":"UMLS","id":"C0020538"},{"dataSource":"AOD","id":"0000023317"},{"dataSource":"BI","id":"BI00001"},{"dataSource":"CCPSS","id":"1017493"},{"dataSource":"CCS","id":"7.1"},{"dataSource":"CHV","id":"0000015800"},{"dataSource":"COSTAR","id":"397"},{"dataSource":"CSP","id":"0571-5243"},{"dataSource":"CST","id":"HYPERTENS"},{"dataSource":"DXP","id":"U002034"},{"dataSource":"HPO","id":"HP:0000822"},{"dataSource":"ICD10","id":"I10-I15.9"},{"dataSource":"ICD10AM","id":"I10-I15.9"},{"dataSource":"ICD10CM","id":"I10"},{"dataSource":"ICD9CM","id":"997.91"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU035456"},{"dataSource":"ICPC2P","id":"K85004"},{"dataSource":"LCH","id":"U002317"},{"dataSource":"LCH_NW","id":"sh85063723"},{"dataSource":"LNC","id":"LA14293-7"},{"dataSource":"MDR","id":"10020772"},{"dataSource":"MEDCIN","id":"33288"},{"dataSource":"MEDLINEPLUS","id":"34"},{"dataSource":"MSH","id":"D006973"},{"dataSource":"MTH","id":"005"},{"dataSource":"MTHICD9","id":"997.91"},{"dataSource":"NANDA-I","id":"00905"},{"dataSource":"NCI","id":"C3117"},{"dataSource":"NCI_CPTAC","id":"C3117"},{"dataSource":"NCI_CTCAE","id":"E13785"},{"dataSource":"NCI_CTRP","id":"C3117"},{"dataSource":"NCI_FDA","id":"1908"},{"dataSource":"NCI_GDC","id":"C3117"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000458091"},{"dataSource":"NCI_NICHD","id":"C3117"},{"dataSource":"NOC","id":"060808"},{"dataSource":"OMIM","id":"MTHU002068"},{"dataSource":"PCDS","id":"PRB_11000.06"},{"dataSource":"PDQ","id":"CDR0000686951"},{"dataSource":"PSY","id":"23830"},{"dataSource":"RCD","id":"XE0Ub"},{"dataSource":"SNM","id":"F-70700"},{"dataSource":"SNMI","id":"D3-02000"},{"dataSource":"SNOMEDCT_US","id":"38341003"},{"dataSource":"WHO","id":"0210"}]}],"relations":[],"warnings":[]},{"id":"2","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/1/entities/0","role":"Dosage"},{"ref":"#/results/documents/1/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/1/entities/1","role":"Medication"},{"ref":"#/results/documents/1/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '71', + 'apim-request-id', + 'f73a6697-4d08-4abb-9a09-f89908c98271', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:16 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/6ddef43f-ccb7-451e-ab1f-96949d41f763') + .query(true) + .reply(200, {"jobId":"6ddef43f-ccb7-451e-ab1f-96949d41f763","lastUpdateDateTime":"2021-06-25T19:44:15Z","createdDateTime":"2021-06-25T19:44:14Z","expirationDateTime":"2021-06-26T19:44:14Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[{"offset":29,"length":19,"text":"high blood pressure","category":"SymptomOrSign","confidenceScore":1,"assertion":{"certainty":"negative"},"name":"Hypertensive disease","links":[{"dataSource":"UMLS","id":"C0020538"},{"dataSource":"AOD","id":"0000023317"},{"dataSource":"BI","id":"BI00001"},{"dataSource":"CCPSS","id":"1017493"},{"dataSource":"CCS","id":"7.1"},{"dataSource":"CHV","id":"0000015800"},{"dataSource":"COSTAR","id":"397"},{"dataSource":"CSP","id":"0571-5243"},{"dataSource":"CST","id":"HYPERTENS"},{"dataSource":"DXP","id":"U002034"},{"dataSource":"HPO","id":"HP:0000822"},{"dataSource":"ICD10","id":"I10-I15.9"},{"dataSource":"ICD10AM","id":"I10-I15.9"},{"dataSource":"ICD10CM","id":"I10"},{"dataSource":"ICD9CM","id":"997.91"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU035456"},{"dataSource":"ICPC2P","id":"K85004"},{"dataSource":"LCH","id":"U002317"},{"dataSource":"LCH_NW","id":"sh85063723"},{"dataSource":"LNC","id":"LA14293-7"},{"dataSource":"MDR","id":"10020772"},{"dataSource":"MEDCIN","id":"33288"},{"dataSource":"MEDLINEPLUS","id":"34"},{"dataSource":"MSH","id":"D006973"},{"dataSource":"MTH","id":"005"},{"dataSource":"MTHICD9","id":"997.91"},{"dataSource":"NANDA-I","id":"00905"},{"dataSource":"NCI","id":"C3117"},{"dataSource":"NCI_CPTAC","id":"C3117"},{"dataSource":"NCI_CTCAE","id":"E13785"},{"dataSource":"NCI_CTRP","id":"C3117"},{"dataSource":"NCI_FDA","id":"1908"},{"dataSource":"NCI_GDC","id":"C3117"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000458091"},{"dataSource":"NCI_NICHD","id":"C3117"},{"dataSource":"NOC","id":"060808"},{"dataSource":"OMIM","id":"MTHU002068"},{"dataSource":"PCDS","id":"PRB_11000.06"},{"dataSource":"PDQ","id":"CDR0000686951"},{"dataSource":"PSY","id":"23830"},{"dataSource":"RCD","id":"XE0Ub"},{"dataSource":"SNM","id":"F-70700"},{"dataSource":"SNMI","id":"D3-02000"},{"dataSource":"SNOMEDCT_US","id":"38341003"},{"dataSource":"WHO","id":"0210"}]}],"relations":[],"warnings":[]},{"id":"2","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/1/entities/0","role":"Dosage"},{"ref":"#/results/documents/1/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/1/entities/1","role":"Medication"},{"ref":"#/results/documents/1/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '65', + 'apim-request-id', + '07271dc0-a673-45d2-9802-cc21fdab546c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:16 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_input_strings.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_input_strings.js new file mode 100644 index 000000000000..f7fe347f6f50 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_input_strings.js @@ -0,0 +1,511 @@ +let nock = require('nock'); + +module.exports.hash = "e8fe4b7a699e69181a6d1d694a0b8992"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '64d6105d-23b6-42ee-b2fe-1b903c780600', + 'x-ms-ests-server', + '2.1.11829.8 - SCUS ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:43:07 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrC2mIuF99TPSbsd6YMxS6UIVrX4SpGz3nhEfhnoKW5uvQOhW1XpZK1aasOZRkvZ0oskAcx-yH1ac7OJ8A0iRJmcb3vHw8ExwNZ2hJEDSDaVRPcpkb0q7nd8yft54Jm1pfH1iFcr-ro2MXgzhNZlb7I9y2SK3fdLCGJzvwZED1LPcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:43:07 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '46746596-f429-4925-82fd-aa79fd4b7100', + 'x-ms-ests-server', + '2.1.11829.9 - SCUS ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:43:07 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevreO7emA0D02lRf_8GJpbNswpOQBUiOh5QA1jRDCSSc3rdGZB-fcrUPhNs02NuIMEiZ5l7Wu2wljBbfKBhREbnSQAzcaiysiK_bVt9G9Job-T6A7JMCPryyASgOKHuYmyMRM-lEeNEKrZnL5in__kIZLaPZJ1PHNRKaJEF-A8oQAUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:43:07 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=6e50aa4f-84fc-48ea-b9cb-c5992deaaaff&client_secret=azure_client_secret") + .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"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', + '3fda1bdb-b195-4e81-ba11-6a2cd27d5e00', + 'x-ms-ests-server', + '2.1.11829.9 - WUS2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:43:07 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:43:07 GMT', + 'Content-Length', + '1331' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"0","text":"Patient does not suffer from high blood pressure.","language":"en"},{"id":"1","text":"Prescribed 100mg ibuprofen, taken twice daily.","language":"en"}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/cc5f1a83-6b9d-4d60-a016-1cf06007ca1f', + 'x-envoy-upstream-service-time', + '214', + 'apim-request-id', + 'd2b05fe8-81f5-4d8e-98e3-b9947e1f4ced', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:07 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc5f1a83-6b9d-4d60-a016-1cf06007ca1f') + .query(true) + .reply(200, {"jobId":"cc5f1a83-6b9d-4d60-a016-1cf06007ca1f","lastUpdateDateTime":"2021-06-25T19:43:08Z","createdDateTime":"2021-06-25T19:43:07Z","expirationDateTime":"2021-06-26T19:43:07Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '435f9570-e1f2-4ef2-93b0-38d77b412478', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:07 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc5f1a83-6b9d-4d60-a016-1cf06007ca1f') + .query(true) + .reply(200, {"jobId":"cc5f1a83-6b9d-4d60-a016-1cf06007ca1f","lastUpdateDateTime":"2021-06-25T19:43:08Z","createdDateTime":"2021-06-25T19:43:07Z","expirationDateTime":"2021-06-26T19:43:07Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + 'd7bf17d5-ca7f-4255-be5e-31c56991a3ed', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:07 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc5f1a83-6b9d-4d60-a016-1cf06007ca1f') + .query(true) + .reply(200, {"jobId":"cc5f1a83-6b9d-4d60-a016-1cf06007ca1f","lastUpdateDateTime":"2021-06-25T19:43:08Z","createdDateTime":"2021-06-25T19:43:07Z","expirationDateTime":"2021-06-26T19:43:07Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '15', + 'apim-request-id', + '3c12add9-7525-4772-b371-e91a52db11f1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:09 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc5f1a83-6b9d-4d60-a016-1cf06007ca1f') + .query(true) + .reply(200, {"jobId":"cc5f1a83-6b9d-4d60-a016-1cf06007ca1f","lastUpdateDateTime":"2021-06-25T19:43:08Z","createdDateTime":"2021-06-25T19:43:07Z","expirationDateTime":"2021-06-26T19:43:07Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'ab81e245-87fc-479f-b446-42c208aab25b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:11 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc5f1a83-6b9d-4d60-a016-1cf06007ca1f') + .query(true) + .reply(200, {"jobId":"cc5f1a83-6b9d-4d60-a016-1cf06007ca1f","lastUpdateDateTime":"2021-06-25T19:43:08Z","createdDateTime":"2021-06-25T19:43:07Z","expirationDateTime":"2021-06-26T19:43:07Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '5', + 'apim-request-id', + 'ead090f9-dbc4-444b-9ff0-28beb7cb2970', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:13 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc5f1a83-6b9d-4d60-a016-1cf06007ca1f') + .query(true) + .reply(200, {"jobId":"cc5f1a83-6b9d-4d60-a016-1cf06007ca1f","lastUpdateDateTime":"2021-06-25T19:43:08Z","createdDateTime":"2021-06-25T19:43:07Z","expirationDateTime":"2021-06-26T19:43:07Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '9', + 'apim-request-id', + 'dcac3f77-d8fb-489b-87ce-1c65a3df0762', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:15 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc5f1a83-6b9d-4d60-a016-1cf06007ca1f') + .query(true) + .reply(200, {"jobId":"cc5f1a83-6b9d-4d60-a016-1cf06007ca1f","lastUpdateDateTime":"2021-06-25T19:43:08Z","createdDateTime":"2021-06-25T19:43:07Z","expirationDateTime":"2021-06-26T19:43:07Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + '6c93c68a-e5ef-450f-9da2-96a292666820', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:17 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc5f1a83-6b9d-4d60-a016-1cf06007ca1f') + .query(true) + .reply(200, {"jobId":"cc5f1a83-6b9d-4d60-a016-1cf06007ca1f","lastUpdateDateTime":"2021-06-25T19:43:08Z","createdDateTime":"2021-06-25T19:43:07Z","expirationDateTime":"2021-06-26T19:43:07Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '14', + 'apim-request-id', + '4109dd42-3004-438f-817a-9e623d7dd3b1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:19 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc5f1a83-6b9d-4d60-a016-1cf06007ca1f') + .query(true) + .reply(200, {"jobId":"cc5f1a83-6b9d-4d60-a016-1cf06007ca1f","lastUpdateDateTime":"2021-06-25T19:43:08Z","createdDateTime":"2021-06-25T19:43:07Z","expirationDateTime":"2021-06-26T19:43:07Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '11', + 'apim-request-id', + '3e7cdda4-570e-4338-aed8-051e57228a7e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:22 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc5f1a83-6b9d-4d60-a016-1cf06007ca1f') + .query(true) + .reply(200, {"jobId":"cc5f1a83-6b9d-4d60-a016-1cf06007ca1f","lastUpdateDateTime":"2021-06-25T19:43:08Z","createdDateTime":"2021-06-25T19:43:07Z","expirationDateTime":"2021-06-26T19:43:07Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + '000d925a-df12-469a-8256-8d0c362d66a6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:24 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc5f1a83-6b9d-4d60-a016-1cf06007ca1f') + .query(true) + .reply(200, {"jobId":"cc5f1a83-6b9d-4d60-a016-1cf06007ca1f","lastUpdateDateTime":"2021-06-25T19:43:25Z","createdDateTime":"2021-06-25T19:43:07Z","expirationDateTime":"2021-06-26T19:43:07Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '18', + 'apim-request-id', + 'dc75352a-b171-4ede-85dd-cb990dc1d57d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:26 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc5f1a83-6b9d-4d60-a016-1cf06007ca1f') + .query(true) + .reply(200, {"jobId":"cc5f1a83-6b9d-4d60-a016-1cf06007ca1f","lastUpdateDateTime":"2021-06-25T19:43:25Z","createdDateTime":"2021-06-25T19:43:07Z","expirationDateTime":"2021-06-26T19:43:07Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + 'd77304b1-b4c9-49cc-b63b-df81c20cca42', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:28 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc5f1a83-6b9d-4d60-a016-1cf06007ca1f') + .query(true) + .reply(200, {"jobId":"cc5f1a83-6b9d-4d60-a016-1cf06007ca1f","lastUpdateDateTime":"2021-06-25T19:43:25Z","createdDateTime":"2021-06-25T19:43:07Z","expirationDateTime":"2021-06-26T19:43:07Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '10', + 'apim-request-id', + '7db22444-0302-4304-a4fa-cf6cfaba5131', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:30 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc5f1a83-6b9d-4d60-a016-1cf06007ca1f') + .query(true) + .reply(200, {"jobId":"cc5f1a83-6b9d-4d60-a016-1cf06007ca1f","lastUpdateDateTime":"2021-06-25T19:43:25Z","createdDateTime":"2021-06-25T19:43:07Z","expirationDateTime":"2021-06-26T19:43:07Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '1ae5267d-b6a9-4478-a70e-7684a447f035', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:32 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc5f1a83-6b9d-4d60-a016-1cf06007ca1f') + .query(true) + .reply(200, {"jobId":"cc5f1a83-6b9d-4d60-a016-1cf06007ca1f","lastUpdateDateTime":"2021-06-25T19:43:25Z","createdDateTime":"2021-06-25T19:43:07Z","expirationDateTime":"2021-06-26T19:43:07Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '17', + 'apim-request-id', + 'c269a7c6-b125-411a-9251-45471e15da62', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:34 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc5f1a83-6b9d-4d60-a016-1cf06007ca1f') + .query(true) + .reply(200, {"jobId":"cc5f1a83-6b9d-4d60-a016-1cf06007ca1f","lastUpdateDateTime":"2021-06-25T19:43:25Z","createdDateTime":"2021-06-25T19:43:07Z","expirationDateTime":"2021-06-26T19:43:07Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '39', + 'apim-request-id', + '2dd98b69-afcd-4ac0-80f0-0aad54a5838e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:36 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc5f1a83-6b9d-4d60-a016-1cf06007ca1f') + .query(true) + .reply(200, {"jobId":"cc5f1a83-6b9d-4d60-a016-1cf06007ca1f","lastUpdateDateTime":"2021-06-25T19:43:25Z","createdDateTime":"2021-06-25T19:43:07Z","expirationDateTime":"2021-06-26T19:43:07Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + 'b167e6a7-1aa7-4440-9e81-90661eb986ad', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:38 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc5f1a83-6b9d-4d60-a016-1cf06007ca1f') + .query(true) + .reply(200, {"jobId":"cc5f1a83-6b9d-4d60-a016-1cf06007ca1f","lastUpdateDateTime":"2021-06-25T19:43:40Z","createdDateTime":"2021-06-25T19:43:07Z","expirationDateTime":"2021-06-26T19:43:07Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":29,"length":19,"text":"high blood pressure","category":"SymptomOrSign","confidenceScore":1,"assertion":{"certainty":"negative"},"name":"Hypertensive disease","links":[{"dataSource":"UMLS","id":"C0020538"},{"dataSource":"AOD","id":"0000023317"},{"dataSource":"BI","id":"BI00001"},{"dataSource":"CCPSS","id":"1017493"},{"dataSource":"CCS","id":"7.1"},{"dataSource":"CHV","id":"0000015800"},{"dataSource":"COSTAR","id":"397"},{"dataSource":"CSP","id":"0571-5243"},{"dataSource":"CST","id":"HYPERTENS"},{"dataSource":"DXP","id":"U002034"},{"dataSource":"HPO","id":"HP:0000822"},{"dataSource":"ICD10","id":"I10-I15.9"},{"dataSource":"ICD10AM","id":"I10-I15.9"},{"dataSource":"ICD10CM","id":"I10"},{"dataSource":"ICD9CM","id":"997.91"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU035456"},{"dataSource":"ICPC2P","id":"K85004"},{"dataSource":"LCH","id":"U002317"},{"dataSource":"LCH_NW","id":"sh85063723"},{"dataSource":"LNC","id":"LA14293-7"},{"dataSource":"MDR","id":"10020772"},{"dataSource":"MEDCIN","id":"33288"},{"dataSource":"MEDLINEPLUS","id":"34"},{"dataSource":"MSH","id":"D006973"},{"dataSource":"MTH","id":"005"},{"dataSource":"MTHICD9","id":"997.91"},{"dataSource":"NANDA-I","id":"00905"},{"dataSource":"NCI","id":"C3117"},{"dataSource":"NCI_CPTAC","id":"C3117"},{"dataSource":"NCI_CTCAE","id":"E13785"},{"dataSource":"NCI_CTRP","id":"C3117"},{"dataSource":"NCI_FDA","id":"1908"},{"dataSource":"NCI_GDC","id":"C3117"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000458091"},{"dataSource":"NCI_NICHD","id":"C3117"},{"dataSource":"NOC","id":"060808"},{"dataSource":"OMIM","id":"MTHU002068"},{"dataSource":"PCDS","id":"PRB_11000.06"},{"dataSource":"PDQ","id":"CDR0000686951"},{"dataSource":"PSY","id":"23830"},{"dataSource":"RCD","id":"XE0Ub"},{"dataSource":"SNM","id":"F-70700"},{"dataSource":"SNMI","id":"D3-02000"},{"dataSource":"SNOMEDCT_US","id":"38341003"},{"dataSource":"WHO","id":"0210"}]}],"relations":[],"warnings":[]},{"id":"1","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/1/entities/0","role":"Dosage"},{"ref":"#/results/documents/1/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/1/entities/1","role":"Medication"},{"ref":"#/results/documents/1/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '75', + 'apim-request-id', + 'b0617752-3634-4c80-a856-4b7cd589bed6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:41 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/cc5f1a83-6b9d-4d60-a016-1cf06007ca1f') + .query(true) + .reply(200, {"jobId":"cc5f1a83-6b9d-4d60-a016-1cf06007ca1f","lastUpdateDateTime":"2021-06-25T19:43:40Z","createdDateTime":"2021-06-25T19:43:07Z","expirationDateTime":"2021-06-26T19:43:07Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":29,"length":19,"text":"high blood pressure","category":"SymptomOrSign","confidenceScore":1,"assertion":{"certainty":"negative"},"name":"Hypertensive disease","links":[{"dataSource":"UMLS","id":"C0020538"},{"dataSource":"AOD","id":"0000023317"},{"dataSource":"BI","id":"BI00001"},{"dataSource":"CCPSS","id":"1017493"},{"dataSource":"CCS","id":"7.1"},{"dataSource":"CHV","id":"0000015800"},{"dataSource":"COSTAR","id":"397"},{"dataSource":"CSP","id":"0571-5243"},{"dataSource":"CST","id":"HYPERTENS"},{"dataSource":"DXP","id":"U002034"},{"dataSource":"HPO","id":"HP:0000822"},{"dataSource":"ICD10","id":"I10-I15.9"},{"dataSource":"ICD10AM","id":"I10-I15.9"},{"dataSource":"ICD10CM","id":"I10"},{"dataSource":"ICD9CM","id":"997.91"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU035456"},{"dataSource":"ICPC2P","id":"K85004"},{"dataSource":"LCH","id":"U002317"},{"dataSource":"LCH_NW","id":"sh85063723"},{"dataSource":"LNC","id":"LA14293-7"},{"dataSource":"MDR","id":"10020772"},{"dataSource":"MEDCIN","id":"33288"},{"dataSource":"MEDLINEPLUS","id":"34"},{"dataSource":"MSH","id":"D006973"},{"dataSource":"MTH","id":"005"},{"dataSource":"MTHICD9","id":"997.91"},{"dataSource":"NANDA-I","id":"00905"},{"dataSource":"NCI","id":"C3117"},{"dataSource":"NCI_CPTAC","id":"C3117"},{"dataSource":"NCI_CTCAE","id":"E13785"},{"dataSource":"NCI_CTRP","id":"C3117"},{"dataSource":"NCI_FDA","id":"1908"},{"dataSource":"NCI_GDC","id":"C3117"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000458091"},{"dataSource":"NCI_NICHD","id":"C3117"},{"dataSource":"NOC","id":"060808"},{"dataSource":"OMIM","id":"MTHU002068"},{"dataSource":"PCDS","id":"PRB_11000.06"},{"dataSource":"PDQ","id":"CDR0000686951"},{"dataSource":"PSY","id":"23830"},{"dataSource":"RCD","id":"XE0Ub"},{"dataSource":"SNM","id":"F-70700"},{"dataSource":"SNMI","id":"D3-02000"},{"dataSource":"SNOMEDCT_US","id":"38341003"},{"dataSource":"WHO","id":"0210"}]}],"relations":[],"warnings":[]},{"id":"1","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/1/entities/0","role":"Dosage"},{"ref":"#/results/documents/1/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/1/entities/1","role":"Medication"},{"ref":"#/results/documents/1/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '68', + 'apim-request-id', + 'f0af5626-bb9f-4de5-b95d-bd585bc7b033', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:43:41 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_invalid_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_invalid_language_hint.js new file mode 100644 index 000000000000..4d66a014dada --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_invalid_language_hint.js @@ -0,0 +1,211 @@ +let nock = require('nock'); + +module.exports.hash = "4fe6d983363e697807ee4c3c068d2783"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '1a9341fe-d51a-43f2-bedc-f5b217dfce02', + 'x-ms-ests-server', + '2.1.11829.4 - EUS ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:45:02 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrnGs656DJUFAm5tMRPzyi1-q-MBmJlue1gKN3OiCPq5vKiHSHKZcnyv4OutizNjlVKpInCNZjR7J64h1kVF5NYVEItnDF0rXFC197DwEz-hor1Yl7wXbC_31Zy8p_f5dtub-rfcDfHGPQ2A9JZWlrtnoOK8MnV72TaD8YKMjXS3QgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:45:02 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '3fda1bdb-b195-4e81-ba11-6a2ccf8f5e00', + 'x-ms-ests-server', + '2.1.11829.9 - WUS2 ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:45:02 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrulPNXOkhq4BEHvgr9OWAoSyijX2PHvWbiiZ4WqjQHRWZzFpigUFevtXN96aJnrwolTMHomnJpmUnUPttcKocCYt-32qms0qACp6NZalsCgqP_w2E3GBM9PNXJR-tPb6t9oMPmWuupdCUg2kOKpjL7vfR2MyRuPJonGUpbDNtSgEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:45:02 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=649f3c16-15f8-48f6-a87f-ee6e8294d168&client_secret=azure_client_secret") + .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"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', + '97388d79-6103-488d-a26f-595c6d167400', + 'x-ms-ests-server', + '2.1.11829.9 - EUS ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:45:03 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:45:02 GMT', + 'Content-Length', + '1331' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"0","text":"This should fail because we're passing in an invalid language hint","language":"notalanguage"}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/27e15134-9fe1-4152-80fe-23499c7d703f', + 'x-envoy-upstream-service-time', + '170', + 'apim-request-id', + '74390d1e-3680-49e5-9831-34f5883b082b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:02 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/27e15134-9fe1-4152-80fe-23499c7d703f') + .query(true) + .reply(200, {"jobId":"27e15134-9fe1-4152-80fe-23499c7d703f","lastUpdateDateTime":"2021-06-25T19:45:03Z","createdDateTime":"2021-06-25T19:45:03Z","expirationDateTime":"2021-06-26T19:45:03Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '736e04b6-4ed1-4802-a92f-c24f74d54862', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:02 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/27e15134-9fe1-4152-80fe-23499c7d703f') + .query(true) + .reply(200, {"jobId":"27e15134-9fe1-4152-80fe-23499c7d703f","lastUpdateDateTime":"2021-06-25T19:45:03Z","createdDateTime":"2021-06-25T19:45:03Z","expirationDateTime":"2021-06-26T19:45:03Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'c395b5d9-0cea-46a0-91f7-f9df518c8744', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:02 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/27e15134-9fe1-4152-80fe-23499c7d703f') + .query(true) + .reply(200, {"jobId":"27e15134-9fe1-4152-80fe-23499c7d703f","lastUpdateDateTime":"2021-06-25T19:45:05Z","createdDateTime":"2021-06-25T19:45:03Z","expirationDateTime":"2021-06-26T19:45:03Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}}],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '51', + 'apim-request-id', + 'ea1579b5-d6b7-4794-90be-3c5e684e3446', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:04 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/27e15134-9fe1-4152-80fe-23499c7d703f') + .query(true) + .reply(200, {"jobId":"27e15134-9fe1-4152-80fe-23499c7d703f","lastUpdateDateTime":"2021-06-25T19:45:05Z","createdDateTime":"2021-06-25T19:45:03Z","expirationDateTime":"2021-06-26T19:45:03Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}}],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '56', + 'apim-request-id', + '8bee7e70-9a69-41c6-b8de-7aeea1888d5c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:05 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.js new file mode 100644 index 000000000000..183a9b41ab4c --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.js @@ -0,0 +1,211 @@ +let nock = require('nock'); + +module.exports.hash = "95091b45dc61495bb4243ad632fd8fa2"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '8cdc7fed-cf5f-4f3b-a884-14f35bb83c00', + 'x-ms-ests-server', + '2.1.11829.9 - WUS2 ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:45:05 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrmPl3MI8GjaTw36cFcwXESucsS_4IYQenqMl2CMlx6buy7bMY3PB9D3OE0KE3I_rKMMtXFm7kKfkYJ2n1mFZ4BBExg1TF-uX3va5MdhDrswo8NSEtxTpqDna1OU1KDVRsztaPzHzP54BiCmo7GwsJU8--SgwAxFMl88-WQGsPiGwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:45:05 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'c19e3cf4-d853-423c-83e5-5de3cdc26200', + 'x-ms-ests-server', + '2.1.11829.9 - WUS2 ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:45:05 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrPFEx2rGMj33EFGEgb4evf1zS3ncyNv6mKBtXuZHHegjkuxV9uMMGUfjp8Hs45TdCbezFucMisCmp5KU63Sx2ac6-Wr7IVIwpld9lCdzGS2svJFDPIn1FV-hMB6dqj9rZV_Z0ywrLSEnQKDroQbM-BiE_X3L81KL29e6nX7EUXVYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:45:05 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=40abeb97-5d08-47e9-95a0-18f7ebbb9f17&client_secret=azure_client_secret") + .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"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', + '46746596-f429-4925-82fd-aa790c637100', + 'x-ms-ests-server', + '2.1.11829.9 - SCUS ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:45:05 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:45:05 GMT', + 'Content-Length', + '1331' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"1","text":"This should fail because we're passing in an invalid language hint","language":"notalanguage"}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/3e598dc3-67ce-414b-b018-8ee288078896', + 'x-envoy-upstream-service-time', + '153', + 'apim-request-id', + '87c8e718-7a1c-40cd-a5ab-d0cdcc71bd09', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:05 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/3e598dc3-67ce-414b-b018-8ee288078896') + .query(true) + .reply(200, {"jobId":"3e598dc3-67ce-414b-b018-8ee288078896","lastUpdateDateTime":"2021-06-25T19:45:06Z","createdDateTime":"2021-06-25T19:45:06Z","expirationDateTime":"2021-06-26T19:45:06Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '02552c8e-ab62-4ed6-b661-a376070871d5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:05 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/3e598dc3-67ce-414b-b018-8ee288078896') + .query(true) + .reply(200, {"jobId":"3e598dc3-67ce-414b-b018-8ee288078896","lastUpdateDateTime":"2021-06-25T19:45:06Z","createdDateTime":"2021-06-25T19:45:06Z","expirationDateTime":"2021-06-26T19:45:06Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + 'cdcdd382-6881-4925-a451-2484b29bbc42', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:05 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/3e598dc3-67ce-414b-b018-8ee288078896') + .query(true) + .reply(200, {"jobId":"3e598dc3-67ce-414b-b018-8ee288078896","lastUpdateDateTime":"2021-06-25T19:45:08Z","createdDateTime":"2021-06-25T19:45:06Z","expirationDateTime":"2021-06-26T19:45:06Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}}],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '43', + 'apim-request-id', + '55c8dc65-0ca7-4ef8-bbea-b0c1f8b5bb1a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:07 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/3e598dc3-67ce-414b-b018-8ee288078896') + .query(true) + .reply(200, {"jobId":"3e598dc3-67ce-414b-b018-8ee288078896","lastUpdateDateTime":"2021-06-25T19:45:08Z","createdDateTime":"2021-06-25T19:45:06Z","expirationDateTime":"2021-06-26T19:45:06Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}}],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '60', + 'apim-request-id', + 'cc14991e-2222-4f79-8deb-13876b624b25', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:07 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_operation_metadata.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_operation_metadata.js new file mode 100644 index 000000000000..27fffbbeda7a --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_operation_metadata.js @@ -0,0 +1,211 @@ +let nock = require('nock'); + +module.exports.hash = "bbda09162538e6d84e10b61e5d705319"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '951e347d-776f-43f6-ba8e-1728b9e88e00', + 'x-ms-ests-server', + '2.1.11829.8 - WUS2 ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:45:12 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrUOtFa4j3VkLPqyuv15_zU9T1xuQoWPO9a3o9W9qK-5RsyKkdbQ87Yu6fKqavcj5uMAtG_ppJnDA8NgZmP54jJz8oefhgOXnJTSSp1Z-2jF_-VhdUI9IOro4xBswKGJvDX1F2mK2c4IsTilh4kCJAHBMsJv91bniGYZWvZOtrttEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:45:12 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '1e233fee-f232-4e03-820f-8a8c3a196f00', + 'x-ms-ests-server', + '2.1.11829.9 - SCUS ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:45:12 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrA7_FuLICloDMyv7mAs1myc10Z-0AdIETc_S2h6Nf8VMH1DBnKitt4KFsB9MabA_6jnpFyEGPMT0BwyRByoopeAfUm1utWsZOtcJ_FRTMRidGEGy6h4rV1y4TfWhB5g3ttGxUHJa95nl8WW_YF84sIsFr5kqV2nNGaLRLHf1PoiMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:45:12 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=97ac2b75-897a-4231-bb79-e44c9fcbc431&client_secret=azure_client_secret") + .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"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', + '46746596-f429-4925-82fd-aa7935647100', + 'x-ms-ests-server', + '2.1.11829.9 - SCUS ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:45:12 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:45:12 GMT', + 'Content-Length', + '1331' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"1","text":"Patient does not suffer from high blood pressure.","language":"en"},{"id":"2","text":"Prescribed 100mg ibuprofen, taken twice daily.","language":"en"}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/98dfa1fc-6540-43f7-b164-d29bdd604fcc', + 'x-envoy-upstream-service-time', + '147', + 'apim-request-id', + '13ff2559-f0fa-4aad-89b9-359a3bb08f7c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:12 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/98dfa1fc-6540-43f7-b164-d29bdd604fcc') + .query(true) + .reply(200, {"jobId":"98dfa1fc-6540-43f7-b164-d29bdd604fcc","lastUpdateDateTime":"2021-06-25T19:45:13Z","createdDateTime":"2021-06-25T19:45:13Z","expirationDateTime":"2021-06-26T19:45:13Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'cdc21add-04cd-47a4-a5a7-a370c5c92712', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:12 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/98dfa1fc-6540-43f7-b164-d29bdd604fcc') + .query(true) + .reply(200, {"jobId":"98dfa1fc-6540-43f7-b164-d29bdd604fcc","lastUpdateDateTime":"2021-06-25T19:45:13Z","createdDateTime":"2021-06-25T19:45:13Z","expirationDateTime":"2021-06-26T19:45:13Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'f2af74ab-5104-49eb-b994-7188d189311f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:12 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/98dfa1fc-6540-43f7-b164-d29bdd604fcc') + .query(true) + .reply(200, {"jobId":"98dfa1fc-6540-43f7-b164-d29bdd604fcc","lastUpdateDateTime":"2021-06-25T19:45:13Z","createdDateTime":"2021-06-25T19:45:13Z","expirationDateTime":"2021-06-26T19:45:13Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'a9d14532-ff54-43d8-9890-3c3354e9c206', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:14 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/98dfa1fc-6540-43f7-b164-d29bdd604fcc') + .query(true) + .reply(200, {"jobId":"98dfa1fc-6540-43f7-b164-d29bdd604fcc","lastUpdateDateTime":"2021-06-25T19:45:15Z","createdDateTime":"2021-06-25T19:45:13Z","expirationDateTime":"2021-06-26T19:45:13Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[{"offset":29,"length":19,"text":"high blood pressure","category":"SymptomOrSign","confidenceScore":1,"assertion":{"certainty":"negative"},"name":"Hypertensive disease","links":[{"dataSource":"UMLS","id":"C0020538"},{"dataSource":"AOD","id":"0000023317"},{"dataSource":"BI","id":"BI00001"},{"dataSource":"CCPSS","id":"1017493"},{"dataSource":"CCS","id":"7.1"},{"dataSource":"CHV","id":"0000015800"},{"dataSource":"COSTAR","id":"397"},{"dataSource":"CSP","id":"0571-5243"},{"dataSource":"CST","id":"HYPERTENS"},{"dataSource":"DXP","id":"U002034"},{"dataSource":"HPO","id":"HP:0000822"},{"dataSource":"ICD10","id":"I10-I15.9"},{"dataSource":"ICD10AM","id":"I10-I15.9"},{"dataSource":"ICD10CM","id":"I10"},{"dataSource":"ICD9CM","id":"997.91"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU035456"},{"dataSource":"ICPC2P","id":"K85004"},{"dataSource":"LCH","id":"U002317"},{"dataSource":"LCH_NW","id":"sh85063723"},{"dataSource":"LNC","id":"LA14293-7"},{"dataSource":"MDR","id":"10020772"},{"dataSource":"MEDCIN","id":"33288"},{"dataSource":"MEDLINEPLUS","id":"34"},{"dataSource":"MSH","id":"D006973"},{"dataSource":"MTH","id":"005"},{"dataSource":"MTHICD9","id":"997.91"},{"dataSource":"NANDA-I","id":"00905"},{"dataSource":"NCI","id":"C3117"},{"dataSource":"NCI_CPTAC","id":"C3117"},{"dataSource":"NCI_CTCAE","id":"E13785"},{"dataSource":"NCI_CTRP","id":"C3117"},{"dataSource":"NCI_FDA","id":"1908"},{"dataSource":"NCI_GDC","id":"C3117"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000458091"},{"dataSource":"NCI_NICHD","id":"C3117"},{"dataSource":"NOC","id":"060808"},{"dataSource":"OMIM","id":"MTHU002068"},{"dataSource":"PCDS","id":"PRB_11000.06"},{"dataSource":"PDQ","id":"CDR0000686951"},{"dataSource":"PSY","id":"23830"},{"dataSource":"RCD","id":"XE0Ub"},{"dataSource":"SNM","id":"F-70700"},{"dataSource":"SNMI","id":"D3-02000"},{"dataSource":"SNOMEDCT_US","id":"38341003"},{"dataSource":"WHO","id":"0210"}]}],"relations":[],"warnings":[]},{"id":"2","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/1/entities/0","role":"Dosage"},{"ref":"#/results/documents/1/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/1/entities/1","role":"Medication"},{"ref":"#/results/documents/1/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '64', + 'apim-request-id', + '550a8117-8f6f-48b9-8291-dd8f95b579ef', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:17 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.js new file mode 100644 index 000000000000..14f15be0ec10 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.js @@ -0,0 +1,211 @@ +let nock = require('nock'); + +module.exports.hash = "0e70f96b1e4ef4786849ff26599336e7"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '731d1cd8-623e-4e61-99a0-53b7d4cb0300', + 'x-ms-ests-server', + '2.1.11829.9 - SCUS ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:37 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrwApaL7PfbJrRrdguM6g4fPlm7pjxAjct7Lh1CzlSWg2VoBo19NLmzKGiSKxwwmP-gXo9HE-3qSrQOgVVNTG9nHvR_lRZsbiP4fbXvwn4XnJr6IYNWOC6vPvZR5W9QigTX9dj6XN2b8CUhZcWRVYAWfuf_glHonYFa6eeRPoSPg8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:37 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'c19e3cf4-d853-423c-83e5-5de33ebe6200', + 'x-ms-ests-server', + '2.1.11829.9 - WUS2 ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:37 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrstvvMDvC9MrA5bpoM-a9VCHoOWqjyrQXp9knPJDGMPE1i9_Sc9lljWr_69o08sBYTe0jQ4364zAJ72zaZ9h71R0HeQsMeX4OMGZ0bVMkGa1otF4V-tDJHprQhJAEFqnRafAjIdeS_fKyzYasWy88wba2Ex1ADGCQvvDcrQKK8GIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:37 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=be86ea85-cfef-408f-8bca-02d83cf7e37c&client_secret=azure_client_secret") + .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"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', + '46746596-f429-4925-82fd-aa79945d7100', + 'x-ms-ests-server', + '2.1.11829.9 - SCUS ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:37 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:37 GMT', + 'Content-Length', + '1331' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"1","text":"one"},{"id":"2","text":"two"},{"id":"3","text":"three"},{"id":"4","text":"four"},{"id":"5","text":"five"}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/413753ee-8e28-4748-9cfa-f86c9a87faec', + 'x-envoy-upstream-service-time', + '187', + 'apim-request-id', + 'f148711c-7874-4fbe-a057-ed7770a4df40', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:37 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/413753ee-8e28-4748-9cfa-f86c9a87faec') + .query(true) + .reply(200, {"jobId":"413753ee-8e28-4748-9cfa-f86c9a87faec","lastUpdateDateTime":"2021-06-25T19:44:37Z","createdDateTime":"2021-06-25T19:44:37Z","expirationDateTime":"2021-06-26T19:44:37Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '61a9cd87-bab7-4511-a882-99cbe8ef85eb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:37 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/413753ee-8e28-4748-9cfa-f86c9a87faec') + .query(true) + .reply(200, {"jobId":"413753ee-8e28-4748-9cfa-f86c9a87faec","lastUpdateDateTime":"2021-06-25T19:44:37Z","createdDateTime":"2021-06-25T19:44:37Z","expirationDateTime":"2021-06-26T19:44:37Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + 'd3a15902-80c9-4207-bea5-506a0196a81a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:37 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/413753ee-8e28-4748-9cfa-f86c9a87faec') + .query(true) + .reply(200, {"jobId":"413753ee-8e28-4748-9cfa-f86c9a87faec","lastUpdateDateTime":"2021-06-25T19:44:38Z","createdDateTime":"2021-06-25T19:44:37Z","expirationDateTime":"2021-06-26T19:44:37Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]},{"id":"4","entities":[],"relations":[],"warnings":[]},{"id":"5","entities":[{"offset":0,"length":4,"text":"five","category":"Dosage","confidenceScore":0.58}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '88', + 'apim-request-id', + '10b2d4a0-f9d6-47cc-8ce3-34c319b3136f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:39 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/413753ee-8e28-4748-9cfa-f86c9a87faec') + .query(true) + .reply(200, {"jobId":"413753ee-8e28-4748-9cfa-f86c9a87faec","lastUpdateDateTime":"2021-06-25T19:44:38Z","createdDateTime":"2021-06-25T19:44:37Z","expirationDateTime":"2021-06-26T19:44:37Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]},{"id":"4","entities":[],"relations":[],"warnings":[]},{"id":"5","entities":[{"offset":0,"length":4,"text":"five","category":"Dosage","confidenceScore":0.58}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '103', + 'apim-request-id', + 'ec6e513f-9498-4088-9046-de8bbe0dc105', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:39 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.js new file mode 100644 index 000000000000..4f33fd66e50c --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.js @@ -0,0 +1,231 @@ +let nock = require('nock'); + +module.exports.hash = "4b2220c5d74f5da44971fae0df1a3912"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '13c61562-f91a-4247-bcb6-6c1367760400', + 'x-ms-ests-server', + '2.1.11829.8 - NCUS ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:40 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrSbHJkm7rRMujjDJHjBfTGCNoB1jx37Ln-q1WBWT6jk8Lyva8cM8HFeET_ETrA5Ui3elfIpqln4pGd0dh-1sK_yKh_md6VKNmkI6pbN7ajVq7VZatkuvPCMOIiF_lhuvnHs6LKUqWAlaiWgEMFEOzQ0LLTWSZ4Cc9H7tZY3i9j0UgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:40 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'f75e896d-b4c4-4e8a-8d17-6ea663e25900', + 'x-ms-ests-server', + '2.1.11829.9 - NCUS ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:40 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrcWl-3OH0sqFWj8GzZCuRi5CrPnmS6QA0Xsd2D0HFU2Ao0lGQfzZIQw0EHySIyy-c4vspG5zwga2G7dcYBUlJItaWtdmNrbQ5etcGJSA0X0tzSb2Qdm3bCASND2nAnso-knRqWC42TvuOCcyunlswSdlQVVNU_Yrx1U_qK4DjiRkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:40 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=2364f9a5-f538-487a-af9f-d98ee2e95392&client_secret=azure_client_secret") + .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"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', + '546b154e-3691-42e1-a17e-80b947bf6700', + 'x-ms-ests-server', + '2.1.11829.9 - SCUS ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:40 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:40 GMT', + 'Content-Length', + '1331' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"56","text":":)"},{"id":"0","text":":("},{"id":"22","text":""},{"id":"19","text":":P"},{"id":"1","text":":D"}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/d3f89d92-0fee-4261-872d-771ce6d808e3', + 'x-envoy-upstream-service-time', + '222', + 'apim-request-id', + '3e13640d-0ed3-4fa5-8e41-2e5cb20ef56a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:40 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/d3f89d92-0fee-4261-872d-771ce6d808e3') + .query(true) + .reply(200, {"jobId":"d3f89d92-0fee-4261-872d-771ce6d808e3","lastUpdateDateTime":"2021-06-25T19:44:40Z","createdDateTime":"2021-06-25T19:44:40Z","expirationDateTime":"2021-06-26T19:44:40Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '5', + 'apim-request-id', + 'a1117903-5307-4769-b0ad-64ff254f1b34', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:40 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/d3f89d92-0fee-4261-872d-771ce6d808e3') + .query(true) + .reply(200, {"jobId":"d3f89d92-0fee-4261-872d-771ce6d808e3","lastUpdateDateTime":"2021-06-25T19:44:40Z","createdDateTime":"2021-06-25T19:44:40Z","expirationDateTime":"2021-06-26T19:44:40Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + '2ec6ac23-3ba9-46e2-8978-3baf84b1ac77', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:40 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/d3f89d92-0fee-4261-872d-771ce6d808e3') + .query(true) + .reply(200, {"jobId":"d3f89d92-0fee-4261-872d-771ce6d808e3","lastUpdateDateTime":"2021-06-25T19:44:43Z","createdDateTime":"2021-06-25T19:44:40Z","expirationDateTime":"2021-06-26T19:44:40Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + 'fececea4-3c57-45f4-a935-11995b6d7642', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:42 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/d3f89d92-0fee-4261-872d-771ce6d808e3') + .query(true) + .reply(200, {"jobId":"d3f89d92-0fee-4261-872d-771ce6d808e3","lastUpdateDateTime":"2021-06-25T19:44:43Z","createdDateTime":"2021-06-25T19:44:40Z","expirationDateTime":"2021-06-26T19:44:40Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"56","entities":[],"relations":[],"warnings":[]},{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"19","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]}],"errors":[{"id":"22","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '87', + 'apim-request-id', + 'a27ddf29-cf14-4cf7-b8b9-40d554b8f233', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:44 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/d3f89d92-0fee-4261-872d-771ce6d808e3') + .query(true) + .reply(200, {"jobId":"d3f89d92-0fee-4261-872d-771ce6d808e3","lastUpdateDateTime":"2021-06-25T19:44:43Z","createdDateTime":"2021-06-25T19:44:40Z","expirationDateTime":"2021-06-26T19:44:40Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"56","entities":[],"relations":[],"warnings":[]},{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"19","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]}],"errors":[{"id":"22","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '109', + 'apim-request-id', + 'a095f328-c607-49f9-a67a-30efa2c1b015', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:44 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_payload_too_large.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_payload_too_large.js new file mode 100644 index 000000000000..788accb5f7f6 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_payload_too_large.js @@ -0,0 +1,131 @@ +let nock = require('nock'); + +module.exports.hash = "f016ed25d69cac1c7432466f1a7578fc"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'c9b7d89e-0f68-4f56-98f4-ba3e3c640500', + 'x-ms-ests-server', + '2.1.11829.9 - SCUS ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CQAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:31 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrFBiuVG63JPx2m2IziHAIPK8v7qJaDIhORo6eJI_t5p3imUiJpDnAt_fXHzEYOTUvbAjo-TjjOnckYb1gBNwVJdS9jCgc600WHYp7Dh9Mdja80aLHWwjPH0BTEbHH3cMwivk6Nxn35uHjB8pzceKqjuf0Mlkyih9VnzAe2eUJfBsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:31 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '9d80f76e-26fc-421e-9776-d8e3d7e55b00', + 'x-ms-ests-server', + '2.1.11829.9 - NCUS ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CQAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:31 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrjeSnocZKJei6JJgwpgciTC9VHOqb0cgFbvaLTN9HceztI_Ihsawsun52jtfvkF4b9vqoU90l-0O_Q1lrZ5F-YqlilzFKXAJwR3F7-GUc4tr11UpuRXhRt77cx6atHSJMsbBOLG2LPoopXpd-FZAYJ17rtjX0LlFM85VFJwGunosgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:31 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=fac7ed93-5a96-4545-baa5-6360323bec7a&client_secret=azure_client_secret") + .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ + 'Cache-Control', + 'no-store, no-cache', + 'Pragma', + 'no-cache', + 'Content-Length', + '1331', + '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', + '5d543b59-2435-4161-9c9e-e92319d97100', + 'x-ms-ests-server', + '2.1.11829.9 - EUS ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CgAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:31 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:31 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"0","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"1","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"2","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"3","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"4","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"5","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"6","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"7","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"8","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"9","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"10","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"11","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"12","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"13","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"14","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"15","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"16","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"17","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"18","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"19","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"20","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"21","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"22","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"23","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"24","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"25","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"26","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"27","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"28","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"29","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"30","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"31","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"32","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"33","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"34","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"35","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"36","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"37","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"38","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"39","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"40","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"41","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"42","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"43","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"44","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"45","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"46","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"47","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"48","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"49","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"50","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"51","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"52","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"53","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"54","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"55","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"56","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"57","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"58","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"59","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"60","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"61","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"62","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"63","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"64","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"65","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"66","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"67","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"68","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"69","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"70","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"71","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"72","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"73","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"74","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"75","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"76","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"77","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"78","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"79","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"80","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"81","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"82","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"83","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"84","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"85","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"86","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"87","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"88","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"89","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"90","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"91","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"92","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"93","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"94","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"95","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"96","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"97","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"98","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"99","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"100","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"101","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"102","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"103","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"104","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"105","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"106","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"107","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"108","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"109","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"110","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"111","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"112","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"113","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"114","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"115","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"116","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"117","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"118","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"119","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"120","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"121","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"122","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"123","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"124","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"125","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"126","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"127","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"128","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"129","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"130","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"131","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"132","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"133","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"134","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"135","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"136","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"137","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"138","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"139","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"140","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"141","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"142","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"143","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"144","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"145","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"146","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"147","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"148","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"149","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"150","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"151","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"152","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"153","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"154","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"155","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"156","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"157","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"158","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"159","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"160","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"161","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"162","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"163","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"164","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"165","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"166","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"167","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"168","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"169","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"170","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"171","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"172","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"173","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"174","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"175","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"176","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"177","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"178","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"179","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"180","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"181","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"182","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"183","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"184","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"185","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"186","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"187","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"188","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"189","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"190","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"191","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"192","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"193","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"194","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"195","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"196","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"197","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"198","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"199","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"200","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"201","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"202","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"203","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"204","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"205","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"206","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"207","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"208","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"209","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"210","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"211","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"212","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"213","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"214","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"215","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"216","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"217","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"218","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"219","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"220","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"221","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"222","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"223","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"224","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"225","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"226","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"227","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"228","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"229","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"230","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"231","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"232","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"233","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"234","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"235","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"236","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"237","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"238","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"239","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"240","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"241","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"242","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"243","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"244","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"245","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"246","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"247","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"248","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"249","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"250","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"251","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"252","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"253","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"254","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"255","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"256","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"257","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"258","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"259","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"260","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"261","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"262","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"263","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"264","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"265","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"266","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"267","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"268","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"269","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"270","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"271","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"272","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"273","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"274","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"275","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"276","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"277","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"278","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"279","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"280","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"281","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"282","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"283","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"284","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"285","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"286","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"287","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"288","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"289","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"290","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"291","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"292","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"293","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"294","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"295","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"296","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"297","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"298","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"299","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"300","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"301","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"302","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"303","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"304","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"305","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"306","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"307","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"308","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"309","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"310","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"311","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"312","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"313","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"314","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"315","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"316","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"317","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"318","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"319","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"320","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"321","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"322","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"323","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"324","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"325","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"326","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"327","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"328","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"329","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"330","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"331","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"332","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"333","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"334","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"335","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"336","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"337","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"338","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"339","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"340","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"341","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"342","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"343","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"344","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"345","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"346","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"347","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"348","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"349","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"350","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"351","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"352","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"353","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"354","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"355","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"356","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"357","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"358","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"359","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"360","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"361","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"362","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"363","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"364","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"365","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"366","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"367","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"368","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"369","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"370","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"371","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"372","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"373","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"374","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"375","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"376","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"377","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"378","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"379","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"380","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"381","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"382","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"383","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"384","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"385","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"386","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"387","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"388","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"389","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"390","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"391","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"392","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"393","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"394","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"395","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"396","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"397","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"398","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"399","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"400","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"401","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"402","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"403","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"404","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"405","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"406","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"407","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"408","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"409","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"410","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"411","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"412","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"413","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"414","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"415","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"416","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"417","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"418","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"419","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"420","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"421","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"422","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"423","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"424","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"425","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"426","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"427","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"428","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"429","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"430","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"431","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"432","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"433","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"434","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"435","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"436","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"437","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"438","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"439","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"440","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"441","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"442","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"443","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"444","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"445","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"446","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"447","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"448","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"449","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"450","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"451","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"452","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"453","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"454","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"455","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"456","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"457","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"458","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"459","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"460","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"461","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"462","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"463","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"464","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"465","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"466","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"467","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"468","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"469","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"470","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"471","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"472","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"473","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"474","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"475","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"476","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"477","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"478","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"479","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"480","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"481","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"482","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"483","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"484","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"485","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"486","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"487","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"488","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"489","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"490","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"491","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"492","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"493","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"494","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"495","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"496","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"497","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"498","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"499","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"}]}) + .query(true) + .reply(413, {"error":{"code":"InvalidRequest","message":"Invalid document in request.","innererror":{"code":"InvalidDocumentBatch","message":"Request Payload sent is too large to be processed. Limit request size to: 524288"}}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '20', + 'apim-request-id', + '8a1358b9-fa0a-43a2-8397-14fe86baf78a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:32 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_zalgo.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_show_stats_and_model_version.js similarity index 50% rename from sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_zalgo.js rename to sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_show_stats_and_model_version.js index b0f0a5647eab..ca1d3cbb8916 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_zalgo.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_show_stats_and_model_version.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "38a499738d03ef064e51998025c6f1af"; +module.exports.hash = "1e575b94347ebbe18d25ab65a2be1654"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -10,8 +10,6 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '980', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -25,26 +23,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'e1823a5b-c143-4603-862a-41088e748600', + 'c6bf3ebb-f17c-4b1e-8b64-bf40aaca4a03', 'x-ms-ests-server', - '2.1.11654.25 - NCUS ProdSlices', + '2.1.11829.4 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:57 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:45 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrKG0tS8gg61l66Y32H9t_o9hokU6MbKjXbYf5n-j-nzRckvs-8aBf7-ztMZfgKiGNZQ13H_rRkF0WFz49eAT6mPNSJvYiN3_HvjcXHkjI4TzMA_LqrzuT12SKmZiePKUs6YUhQJbqhNWcRZkINBbfHwOCXrMiI5p6tnNkIhDPjfQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr6grxBVqk2-ThmpMHtsWepLSOpfCZN1H_jJOgrbBaSZBv40FVWCEZAMvfS7UfZZ1M-ui7nhUNX-dr73Fz9cDLXxwDI9kYnxAEAHSTRRjRZveLxyx8m_xrcIh-MHfknw8-CxQg3wIRgeg3cMa6lGBXmaZGnOSvCCV567KfTdTFEawgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:56 GMT' + 'Fri, 25 Jun 2021 19:44:45 GMT', + 'Content-Length', + '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', + 'Content-Length', + '1753', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -58,28 +60,23 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '992d1a63-daeb-4e71-a072-889789c46100', + 'a9a1e068-3c7e-4040-b4a3-695250246f00', 'x-ms-ests-server', - '2.1.11722.21 - NCUS ProdSlices', + '2.1.11829.9 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:57 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:45 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrUwlQquaLaUNuLsd2RboFU0QRKR2kHurENYP-o1yQ_lqX0NOXEQ9q2gOFRYOOpafZ1yrencUE-SxMM_WvVfvbF67ktSZJ0RjaJPo3CjOA38fhhOyaep-4uGTPNxEk3NgwG8jNXhwkalPPnaUYDuTDCEtnQe_iBJQAsMYj-Bn33TcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevryMlGVvPM7-cXJ1gwBO9KAXUKxzsCKYTgvbizbJqY89JAwcZehfFfFIr2mJuohhWCbrURlhczgKeyuGhhtKnJd8u2RIREQbVUa4F4ZI1bNPfxTSA7f2gOMKM5mmRExTeY4PAEs2Yp4gsd5Ik2qD8QsnjeOb2m9vh4aOdr8XmEVjIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:57 GMT', - 'Content-Length', - '1651' + 'Fri, 25 Jun 2021 19:44:45 GMT' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=2cffc131-25c7-4c4c-b701-01af75cee6cb&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -98,39 +95,97 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '29a193e4-4207-4b4e-982a-fd8230895e00', + '9d80f76e-26fc-421e-9776-d8e33ae85b00', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - NCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:57 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DAAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:45 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:57 GMT' + 'Fri, 25 Jun 2021 19:44:45 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"56","text":":)"},{"id":"0","text":":("},{"id":"22","text":""},{"id":"19","text":":P"},{"id":"1","text":":D"}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/a4d68211-5486-4ab8-910a-1cfb34c3d7b1', + 'x-envoy-upstream-service-time', + '246', + 'apim-request-id', + '0c331851-0f70-4d92-8464-e124c79a457e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:45 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/a4d68211-5486-4ab8-910a-1cfb34c3d7b1') + .query(true) + .reply(200, {"jobId":"a4d68211-5486-4ab8-910a-1cfb34c3d7b1","lastUpdateDateTime":"2021-06-25T19:44:46Z","createdDateTime":"2021-06-25T19:44:45Z","expirationDateTime":"2021-06-26T19:44:45Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '11', + 'apim-request-id', + 'bfec4e52-b735-4e54-991d-e35f463f321e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:45 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/a4d68211-5486-4ab8-910a-1cfb34c3d7b1') + .query(true) + .reply(200, {"jobId":"a4d68211-5486-4ab8-910a-1cfb34c3d7b1","lastUpdateDateTime":"2021-06-25T19:44:46Z","createdDateTime":"2021-06-25T19:44:45Z","expirationDateTime":"2021-06-26T19:44:45Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '27', + 'apim-request-id', + '028c9a72-ce34-4e5b-b6bf-e4b232ec3320', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:45 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987","language":"en"}]}) + .get('//text/analytics/v3.1/entities/health/jobs/a4d68211-5486-4ab8-910a-1cfb34c3d7b1') .query(true) - .reply(200, {"documents":[{"redactedText":"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":9,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + .reply(200, {"jobId":"a4d68211-5486-4ab8-910a-1cfb34c3d7b1","lastUpdateDateTime":"2021-06-25T19:44:48Z","createdDateTime":"2021-06-25T19:44:45Z","expirationDateTime":"2021-06-26T19:44:45Z","status":"succeeded","errors":[],"results":{"statistics":{"documentsCount":5,"validDocumentsCount":4,"erroneousDocumentsCount":1,"transactionsCount":4},"documents":[{"id":"56","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"relations":[],"warnings":[]},{"id":"0","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"relations":[],"warnings":[]},{"id":"19","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"relations":[],"warnings":[]},{"id":"1","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"relations":[],"warnings":[]}],"errors":[{"id":"22","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-05-15"}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '111', + '87', 'apim-request-id', - 'ebd39326-34de-4718-981c-3f05d4f9c1b3', + '149add80-4e15-4c0f-b5e4-15045fa28c13', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:57 GMT' + 'Fri, 25 Jun 2021 19:44:48 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_some_inputs_with_errors.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_some_inputs_with_errors.js new file mode 100644 index 000000000000..eca4dcaa7b12 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_some_inputs_with_errors.js @@ -0,0 +1,231 @@ +let nock = require('nock'); + +module.exports.hash = "bab30c0c76dbf2a445ffbcb16eaccc29"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'e2faa72c-7263-4daa-9c43-ee9444768c00', + 'x-ms-ests-server', + '2.1.11829.9 - EUS ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:17 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrd_6bEd-Pci-zvpQjGXbk8h831l6roJDYj5w1G3RUCPYzAyJZYZYdb7KyTQYBRljAhje5i6bpf0Bga_WmCEyfRIH1Im1Zdplt2GECAw3w4vioOwFvx52pfR76OGBQZ81j3PsYX7UXtFk-3M6ZZcVhSwFVd-CigoXPE6yhClo4VLQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:17 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '9ceda81a-917e-4982-bafb-50a77b0a5d00', + 'x-ms-ests-server', + '2.1.11829.9 - NCUS ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:17 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrhKwFeG-R7O6o5yPRRzKALsZR3Ye_9zmiHQzMvW68klXhae4NVCX-OVtiKld7QNlrAvPK2HXrQi3sw19Ic11imI0ZzdHEuwur8rTgt9E9yv9fXpSeD6EfW1ZXtX2jluSbC-myW5JBoSygbfjI6F5SFVxoz7pd1MZ0_ynWznykKxUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:17 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=06932e12-06c5-48b0-9b5e-c9c07ae7d2eb&client_secret=azure_client_secret") + .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"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', + '3fda1bdb-b195-4e81-ba11-6a2cc7885e00', + 'x-ms-ests-server', + '2.1.11829.9 - WUS2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:17 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:17 GMT', + 'Content-Length', + '1331' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"1","text":"","language":"en"},{"id":"2","text":"Patient does not suffer from high blood pressure.","language":"english"},{"id":"3","text":"Prescribed 100mg ibuprofen, taken twice daily.","language":"en"}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/2c029183-2061-460f-9da4-1130c2edae41', + 'x-envoy-upstream-service-time', + '5270', + 'apim-request-id', + '2d2d2c27-166b-4a46-8ad1-6b27fea69d67', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:22 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/2c029183-2061-460f-9da4-1130c2edae41') + .query(true) + .reply(200, {"jobId":"2c029183-2061-460f-9da4-1130c2edae41","lastUpdateDateTime":"2021-06-25T19:44:23Z","createdDateTime":"2021-06-25T19:44:17Z","expirationDateTime":"2021-06-26T19:44:17Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '112', + 'apim-request-id', + '8fe3ecf4-437a-4e42-a6f6-421a10ec642c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:23 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/2c029183-2061-460f-9da4-1130c2edae41') + .query(true) + .reply(200, {"jobId":"2c029183-2061-460f-9da4-1130c2edae41","lastUpdateDateTime":"2021-06-25T19:44:23Z","createdDateTime":"2021-06-25T19:44:17Z","expirationDateTime":"2021-06-26T19:44:17Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '1059b2ff-ef93-4870-a3eb-feb4ad299d3a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:23 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/2c029183-2061-460f-9da4-1130c2edae41') + .query(true) + .reply(200, {"jobId":"2c029183-2061-460f-9da4-1130c2edae41","lastUpdateDateTime":"2021-06-25T19:44:23Z","createdDateTime":"2021-06-25T19:44:17Z","expirationDateTime":"2021-06-26T19:44:17Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'f11a05cd-06d4-439a-bca7-035c746b6555', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:25 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/2c029183-2061-460f-9da4-1130c2edae41') + .query(true) + .reply(200, {"jobId":"2c029183-2061-460f-9da4-1130c2edae41","lastUpdateDateTime":"2021-06-25T19:44:25Z","createdDateTime":"2021-06-25T19:44:17Z","expirationDateTime":"2021-06-26T19:44:17Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"3","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/0/entities/0","role":"Dosage"},{"ref":"#/results/documents/0/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/0/entities/1","role":"Medication"},{"ref":"#/results/documents/0/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}}],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '89', + 'apim-request-id', + '0a3af714-a629-48aa-8127-1e658a63285b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:27 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/2c029183-2061-460f-9da4-1130c2edae41') + .query(true) + .reply(200, {"jobId":"2c029183-2061-460f-9da4-1130c2edae41","lastUpdateDateTime":"2021-06-25T19:44:25Z","createdDateTime":"2021-06-25T19:44:17Z","expirationDateTime":"2021-06-26T19:44:17Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"3","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/0/entities/0","role":"Dosage"},{"ref":"#/results/documents/0/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/0/entities/1","role":"Medication"},{"ref":"#/results/documents/0/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}}],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '88', + 'apim-request-id', + '6dd7c6aa-94dd-4a1f-91de-9b5b59246f96', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:27 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_diacritics_nfc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_too_many_documents.js similarity index 65% rename from sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_diacritics_nfc.js rename to sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_too_many_documents.js index 1ba273327631..f7ccf397db0a 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_fast_tests_string_encoding_textelements_v8/recording_diacritics_nfc.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_too_many_documents.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "5040425d1d086012a55df1198928b44a"; +module.exports.hash = "c0210bbf785a84e0ff5d893b4b9c8517"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,30 +23,28 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '47fc6490-cac9-4b34-b311-7f2e3da90500', + '789e379f-4efd-40a9-8ca7-c935609b0400', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:55 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:31 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrYEKKXIH_DQj6WoWuzfQO7E2-Ay3gCN04K4fmZR8AECcrYtBa0CUkpm9rjisGxS9eBLpsj49eowIEH9DyWf4iTq10DOvdZzkcqhf2NKceKyxxmaMw_ILkpq0dAwSxdX0icQ2671AzxDOiIe00KAnGXSUGoR_sshERwGLGrOGUog4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrv7ZhEbZPiJzGZBe23ZqodwRhHcV5YDRlM1llZ_0B-PrkfAumZfdPMP-ILDvzHt2DE2ZqlV-BZBUP8Iz6byA7QgTeH0LQqx48tDdS1NqMG24HnHBj0LYRwoDQSzxldQIqT4vN3n9lIyMsxuDuVj14job1e_2ra7H3e2vLkKo5cNsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:55 GMT', + 'Fri, 25 Jun 2021 19:44:30 GMT', 'Content-Length', '980' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ 'Cache-Control', 'max-age=86400, private', - 'Content-Length', - '1651', 'Content-Type', 'application/json; charset=utf-8', 'Strict-Transport-Security', @@ -60,26 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '2ea6dec1-bb0d-4e0c-baa2-1bf4a32b5a00', + '3fda1bdb-b195-4e81-ba11-6a2cb78a5e00', 'x-ms-ests-server', - '2.1.11722.21 - EUS ProdSlices', + '2.1.11829.9 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:55 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1EgAAAKEmaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:31 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrZTVMKfDrLb9PX6pKWbdxIe_8D7xGQphXEgykk0YxxALG0OmTKSr1D46buKHaQqMfdM5e86WuybgJGXq_GZmlze0LwbnRZvMh303uK9amJOagBRUzZLd82ts0dJtWysH0I0rY3A1xxkewLPKB5pRrl6y7njW6951za-F_axY1-_IgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrvZSYhzUqpASgoH50TP99eXvK_ZcnY_iQMgFAVM8vwIOiktwAfjC19Yl5RdMzZw0mHb5amed4HjrKEvIby45HqlBZEZoD_5eGDEvQyC45wuIqcznyXV1Rf8lmzoWvU8peNDKx6Qry7ymiZHqe27mqqkCgPj-GALJY0P3S7WdHNdkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:55 GMT' + 'Fri, 25 Jun 2021 19:44:30 GMT', + 'Content-Length', + '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .filteringRequestBody(function (body) { - return body.replace(/client-request-id=[^&]*/g, "client-request-id=client-request-id"); - }) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fcognitiveservices.azure.com%2F.default%20openid%20profile%20offline_access&grant_type=client_credentials&client-request-id=client-request-id&client_secret=azure_client_secret") + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=f4fd6561-fd01-4291-b815-3c8192eab8ae&client_secret=azure_client_secret") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -96,41 +93,39 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '85f09191-d1fd-4fd7-9a80-0d911f926200', + '46746596-f429-4925-82fd-aa79445c7100', 'x-ms-ests-server', - '2.1.11722.21 - SCUS ProdSlices', + '2.1.11829.9 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnPhe69wTYVMjcXd08qS_MNz_bg1DwAAABseLtgOAAAA; expires=Fri, 11-Jun-2021 19:07:55 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1CQAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:31 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Wed, 12 May 2021 19:07:55 GMT', + 'Fri, 25 Jun 2021 19:44:30 GMT', 'Content-Length', '1331' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"0","text":"random text","language":"en"},{"id":"1","text":"random text","language":"en"},{"id":"2","text":"random text","language":"en"},{"id":"3","text":"random text","language":"en"},{"id":"4","text":"random text","language":"en"},{"id":"5","text":"random text","language":"en"},{"id":"6","text":"random text","language":"en"},{"id":"7","text":"random text","language":"en"},{"id":"8","text":"random text","language":"en"},{"id":"9","text":"random text","language":"en"},{"id":"10","text":"random text","language":"en"}]}) .query(true) - .reply(200, {"documents":[{"redactedText":"año SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":9,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + .reply(400, {"error":{"code":"InvalidRequest","message":"Invalid document in request.","innererror":{"code":"InvalidDocumentBatch","message":"Batch request contains too many records. Max 10 records are permitted."}}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '28', + '4', 'apim-request-id', - '34fbe09b-b3db-4381-ae89-73f91744f941', + '86f8e674-14d4-4d48-858a-3fd870bbe380', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:07:54 GMT' + 'Fri, 25 Jun 2021 19:44:30 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.js new file mode 100644 index 000000000000..7b3e49ab1258 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.js @@ -0,0 +1,211 @@ +let nock = require('nock'); + +module.exports.hash = "38c89bab41a80575c79a37ce18c38ae0"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '43b69ca7-20b2-4a52-a8c1-53d1bb200c00', + 'x-ms-ests-server', + '2.1.11829.8 - SCUS ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DQAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:51 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrfVNipVdVSkGS9gz4IvkTASXP4XcfI7LJ6SGc-K6a2XxVOsUM8dCBhERwiHkMJZpaCz9comuFcvMsqO28iJcrG4PjbOSExEUFl4ZhUyqRqSVmqGZVqeZKSFi4EWD7tenm55OLEYpF4nPEttxTIT3lByUMwOzvuCkBoyXFqxiMjd4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:51 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'c19e3cf4-d853-423c-83e5-5de393c06200', + 'x-ms-ests-server', + '2.1.11829.9 - WUS2 ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DQAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:51 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrpG5H8MYUVoyFtujppUuprFPNQm3si0fgPFUwTtTc702I8si7dmdcrAL-hvtDWpE4xS41rTZZ-JfUIC1QhVqhl9r0pQH94vkrGuQxpPZcQP_7sKzqby2fhyHJpU38By0hydGmGcfLuEx5ig7hlDEP0snm5_WFuKCWzwwDi4P-_8ogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:51 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=6b1da89f-55c0-45a6-9104-d1dd19897fc9&client_secret=azure_client_secret") + .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"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', + 'c2c46a2d-caf1-495a-b60f-6d2094eb7100', + 'x-ms-ests-server', + '2.1.11829.9 - EUS ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:51 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:51 GMT', + 'Content-Length', + '1331' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"0","text":"This was the best day of my life.","language":"en"},{"id":"1","text":"I did not like the hotel we stayed at. It was too expensive.","language":"en"},{"id":"2","text":"The restaurant was not as good as I hoped.","language":"en"}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/dfc266e1-57bc-44c8-b500-e6de7a940ba2', + 'x-envoy-upstream-service-time', + '181', + 'apim-request-id', + '255a2e3a-1a38-469a-bf92-467742bd357c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:52 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/dfc266e1-57bc-44c8-b500-e6de7a940ba2') + .query(true) + .reply(200, {"jobId":"dfc266e1-57bc-44c8-b500-e6de7a940ba2","lastUpdateDateTime":"2021-06-25T19:44:52Z","createdDateTime":"2021-06-25T19:44:52Z","expirationDateTime":"2021-06-26T19:44:52Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'db303169-eed2-4459-92d8-539b2cc16f36', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:52 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/dfc266e1-57bc-44c8-b500-e6de7a940ba2') + .query(true) + .reply(200, {"jobId":"dfc266e1-57bc-44c8-b500-e6de7a940ba2","lastUpdateDateTime":"2021-06-25T19:44:52Z","createdDateTime":"2021-06-25T19:44:52Z","expirationDateTime":"2021-06-26T19:44:52Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '4553e12b-b90c-4f01-967d-638463a6d042', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:52 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/dfc266e1-57bc-44c8-b500-e6de7a940ba2') + .query(true) + .reply(200, {"jobId":"dfc266e1-57bc-44c8-b500-e6de7a940ba2","lastUpdateDateTime":"2021-06-25T19:44:53Z","createdDateTime":"2021-06-25T19:44:52Z","expirationDateTime":"2021-06-26T19:44:52Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '65', + 'apim-request-id', + 'f0b79aeb-b593-4304-b70d-5af10e259b7d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:54 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/dfc266e1-57bc-44c8-b500-e6de7a940ba2') + .query(true) + .reply(200, {"jobId":"dfc266e1-57bc-44c8-b500-e6de7a940ba2","lastUpdateDateTime":"2021-06-25T19:44:53Z","createdDateTime":"2021-06-25T19:44:52Z","expirationDateTime":"2021-06-26T19:44:52Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '68', + 'apim-request-id', + '76789058-e2a4-4252-b8a7-699690546bce', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:54 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.js new file mode 100644 index 000000000000..22055362a14a --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.js @@ -0,0 +1,211 @@ +let nock = require('nock'); + +module.exports.hash = "2ef2a9e0010a041394b0a0562051ba4e"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '004c4e93-0a25-488f-b214-89ed8e3e0300', + 'x-ms-ests-server', + '2.1.11829.9 - NCUS ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:54 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrMUKndj4fSwrtalmv7sj2BQ3_hxP5PqyPHo9KQNRsNBy4NycgD15abpOICqweagAqDgbHPZAXw2Waxpl8E8me8ffNqLF86fy4dgCJ_LN3EJ8d1sV0m1ZEG-_SSeqIyawCy-RYwk43bu5wmD4lRXYSz9ydgLMQfcXLQL2yuiLfoc8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:54 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'a9a1e068-3c7e-4040-b4a3-6952ee256f00', + 'x-ms-ests-server', + '2.1.11829.9 - EUS ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DgAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:54 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevruT8wyev4nFevj2tcblTTJgd4h6qB43oA8or0uQGdHTBI74Q7a7fZNYnegTmRGVf9SBO5bicRNxmGpVDGUlgB1HuhoRkHOW4im5ShZkdEpmo5jPZmiWF7Ndh9yKSfgdtIxy0HgRHcpa8F2jwD79zEgov1f59HNiq4SY_Qjtk-YVkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:54 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=e48d9c8d-3d2b-4bd0-a508-bee9fd5d3869&client_secret=azure_client_secret") + .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"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', + '97388d79-6103-488d-a26f-595c9c147400', + 'x-ms-ests-server', + '2.1.11829.9 - EUS ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:54 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:54 GMT', + 'Content-Length', + '1331' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"1","text":"I will go to the park.","language":""},{"id":"2","text":"I did not like the hotel we stayed at.","language":""},{"id":"3","text":"The restaurant had really good food."}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/ace8da2b-571e-4fb2-9b95-2487c231b75c', + 'x-envoy-upstream-service-time', + '226', + 'apim-request-id', + 'a672592c-41be-4d13-977f-88f22eb112fd', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:54 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/ace8da2b-571e-4fb2-9b95-2487c231b75c') + .query(true) + .reply(200, {"jobId":"ace8da2b-571e-4fb2-9b95-2487c231b75c","lastUpdateDateTime":"2021-06-25T19:44:55Z","createdDateTime":"2021-06-25T19:44:55Z","expirationDateTime":"2021-06-26T19:44:55Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '96d34572-69d4-431d-88e2-4b33ea52680b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:54 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/ace8da2b-571e-4fb2-9b95-2487c231b75c') + .query(true) + .reply(200, {"jobId":"ace8da2b-571e-4fb2-9b95-2487c231b75c","lastUpdateDateTime":"2021-06-25T19:44:55Z","createdDateTime":"2021-06-25T19:44:55Z","expirationDateTime":"2021-06-26T19:44:55Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '10', + 'apim-request-id', + 'b559dba3-ef48-49c3-b2b6-ef18b720541a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:55 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/ace8da2b-571e-4fb2-9b95-2487c231b75c') + .query(true) + .reply(200, {"jobId":"ace8da2b-571e-4fb2-9b95-2487c231b75c","lastUpdateDateTime":"2021-06-25T19:44:55Z","createdDateTime":"2021-06-25T19:44:55Z","expirationDateTime":"2021-06-26T19:44:55Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '66', + 'apim-request-id', + '3f90e3b4-9f10-4cb2-a32f-580f3c3c4aab', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:57 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/ace8da2b-571e-4fb2-9b95-2487c231b75c') + .query(true) + .reply(200, {"jobId":"ace8da2b-571e-4fb2-9b95-2487c231b75c","lastUpdateDateTime":"2021-06-25T19:44:55Z","createdDateTime":"2021-06-25T19:44:55Z","expirationDateTime":"2021-06-26T19:44:55Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '71', + 'apim-request-id', + 'fbcef325-d0c4-45f2-aa95-ba7a33abab3b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:57 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_language_hint.js new file mode 100644 index 000000000000..e666c02659e8 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_language_hint.js @@ -0,0 +1,211 @@ +let nock = require('nock'); + +module.exports.hash = "1fb1a57acc331f867912cae0ed39dc23"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'fc35dc98-44a3-478a-ac69-4f4d47c40a00', + 'x-ms-ests-server', + '2.1.11829.8 - SCUS ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DAAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:48 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrChd3Z_k4kCCWmspyGaSlLnIkwp0d3QULOgI17fTMEQISAs2dOjfgXJdRvfBE916aojvQ8c32aNgvMh5-HNeLg-iVphO3r66iyF6dmJ_KKRqajuhe1iam8jcEcOOGPSWknZz3u_JTiEhxwty1SYXtrV7pfXEudz0nqdPItNC4bnIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:48 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '3fda1bdb-b195-4e81-ba11-6a2c9a8d5e00', + 'x-ms-ests-server', + '2.1.11829.9 - WUS2 ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DAAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:48 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrM_7FcFdXQp6vPuD_NvDoD3K5c2so5c5QwpsT8ZT0NpwwyeqQrCtpFuuRzmbwtMet28kcqy8xk3CVwZH5ymt-NtVLNoWPvA1wk0xR2tsddeGyJlPNFrBJVI35ZfJq4GQc_YX5GnkEDN24GAD-T34cFlzmwFCEZ1H4ihFKruYA7aggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:48 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=c0ff85c5-c4ac-47f1-81ad-72d15a4f4836&client_secret=azure_client_secret") + .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"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', + '546b154e-3691-42e1-a17e-80b9c3c06700', + 'x-ms-ests-server', + '2.1.11829.9 - SCUS ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DQAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:48 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:48 GMT', + 'Content-Length', + '1331' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"0","text":"This was the best day of my life.","language":"en"},{"id":"1","text":"I did not like the hotel we stayed at. It was too expensive.","language":"en"},{"id":"2","text":"The restaurant was not as good as I hoped.","language":"en"}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/f8050d3c-b001-45f7-a2dd-c27e656f8125', + 'x-envoy-upstream-service-time', + '187', + 'apim-request-id', + 'b4df2550-c63a-461d-a2a5-ac2c946434e8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:49 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/f8050d3c-b001-45f7-a2dd-c27e656f8125') + .query(true) + .reply(200, {"jobId":"f8050d3c-b001-45f7-a2dd-c27e656f8125","lastUpdateDateTime":"2021-06-25T19:44:49Z","createdDateTime":"2021-06-25T19:44:49Z","expirationDateTime":"2021-06-26T19:44:49Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '2414ab32-ac3c-42b9-9408-76a0db3d09d9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:49 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/f8050d3c-b001-45f7-a2dd-c27e656f8125') + .query(true) + .reply(200, {"jobId":"f8050d3c-b001-45f7-a2dd-c27e656f8125","lastUpdateDateTime":"2021-06-25T19:44:49Z","createdDateTime":"2021-06-25T19:44:49Z","expirationDateTime":"2021-06-26T19:44:49Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '530b3fc3-b8f7-4d1f-8f29-87373420d670', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:49 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/f8050d3c-b001-45f7-a2dd-c27e656f8125') + .query(true) + .reply(200, {"jobId":"f8050d3c-b001-45f7-a2dd-c27e656f8125","lastUpdateDateTime":"2021-06-25T19:44:50Z","createdDateTime":"2021-06-25T19:44:49Z","expirationDateTime":"2021-06-26T19:44:49Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '75', + 'apim-request-id', + '4194cafa-9936-4561-9368-a8f6bed76e44', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:51 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/f8050d3c-b001-45f7-a2dd-c27e656f8125') + .query(true) + .reply(200, {"jobId":"f8050d3c-b001-45f7-a2dd-c27e656f8125","lastUpdateDateTime":"2021-06-25T19:44:50Z","createdDateTime":"2021-06-25T19:44:49Z","expirationDateTime":"2021-06-26T19:44:49Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '69', + 'apim-request-id', + 'b2ce2255-60a0-4f51-8364-2e313a929779', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:51 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.js b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.js new file mode 100644 index 000000000000..aef626bd0375 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/aad_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.js @@ -0,0 +1,231 @@ +let nock = require('nock'); + +module.exports.hash = "475873b6384b961b148934bfd317912c"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Length', + '980', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '67bc26d4-273a-4b91-b4cc-2a8f4c317500', + 'x-ms-ests-server', + '2.1.11829.8 - WUS2 ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:57 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevroRujRmxhPtmt3Ha6DSj1a2O0v56MRH6Ud4PceYsD4DDAtYdXh14W75_z4RiCm4e4Q197RBL9J8_80jTDsxTTu-lrEgfdmLehuloxd6y0MZYuqHeYB1hJO_cWRqXLgO_Oc23ebmEgjfLpofjg2ePxLFxt8t6Fw7wsfjVjbZUr7XsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:57 GMT' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '5d543b59-2435-4161-9c9e-e92389de7100', + 'x-ms-ests-server', + '2.1.11829.9 - EUS ProdSlices', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:57 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrRbDT7zprLID7JkvP2mXrDIsNFdE5q_9pKllCpAfLZQVPBgON7D3NjpQjs-pe4Lr5h4KGK7UcznB8-ZXX4DxzQ65JVVNK5GN2mQX_9nJqJHDrqODFehadrqS0RcF5D7aV8hC3YiB0geVDRYpc50ehcHXQ_2hn6lZyKkvFeXsuK5UgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:57 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.1.0&x-client-OS=linux&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=2|771,0|,&x-client-last-telemetry=2|0|||0,0&client-request-id=32775987-4bde-4fd8-b85d-c1a22988a258&client_secret=azure_client_secret") + .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"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', + '546b154e-3691-42e1-a17e-80b954c26700', + 'x-ms-ests-server', + '2.1.11829.9 - SCUS ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AgwXPIJQJyxOqlZf_m27S8lz_bg1DwAAAPkoaNgOAAAA; expires=Sun, 25-Jul-2021 19:44:57 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 25 Jun 2021 19:44:57 GMT', + 'Content-Length', + '1331' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"1","text":"I should take my cat to the veterinarian."},{"id":"2","text":"Este es un document escrito en Español."},{"id":"3","text":"猫は幸せ"}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/a52f1200-7c2d-4ff1-a566-cc2daf523f75', + 'x-envoy-upstream-service-time', + '200', + 'apim-request-id', + 'bed699cc-9ad1-4a02-8a40-a5fbdee20c62', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:57 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/a52f1200-7c2d-4ff1-a566-cc2daf523f75') + .query(true) + .reply(200, {"jobId":"a52f1200-7c2d-4ff1-a566-cc2daf523f75","lastUpdateDateTime":"2021-06-25T19:44:58Z","createdDateTime":"2021-06-25T19:44:58Z","expirationDateTime":"2021-06-26T19:44:58Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '21', + 'apim-request-id', + 'b1645998-514b-4ff9-bb46-282c4ed3300c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:57 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/a52f1200-7c2d-4ff1-a566-cc2daf523f75') + .query(true) + .reply(200, {"jobId":"a52f1200-7c2d-4ff1-a566-cc2daf523f75","lastUpdateDateTime":"2021-06-25T19:44:58Z","createdDateTime":"2021-06-25T19:44:58Z","expirationDateTime":"2021-06-26T19:44:58Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '13', + 'apim-request-id', + 'e8809005-6e37-4a1d-9837-150d7c04f76b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:44:57 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/a52f1200-7c2d-4ff1-a566-cc2daf523f75') + .query(true) + .reply(200, {"jobId":"a52f1200-7c2d-4ff1-a566-cc2daf523f75","lastUpdateDateTime":"2021-06-25T19:45:00Z","createdDateTime":"2021-06-25T19:44:58Z","expirationDateTime":"2021-06-26T19:44:58Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '10', + 'apim-request-id', + 'f5236e82-9cfe-4580-acb7-cd8238fe256f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:00 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/a52f1200-7c2d-4ff1-a566-cc2daf523f75') + .query(true) + .reply(200, {"jobId":"a52f1200-7c2d-4ff1-a566-cc2daf523f75","lastUpdateDateTime":"2021-06-25T19:45:00Z","createdDateTime":"2021-06-25T19:44:58Z","expirationDateTime":"2021-06-26T19:44:58Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[{"offset":28,"length":12,"text":"veterinarian","category":"HealthcareProfession","confidenceScore":0.98}],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '69', + 'apim-request-id', + 'a1c0eb26-2176-4963-9d90-06ccd00c2ef3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:02 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/a52f1200-7c2d-4ff1-a566-cc2daf523f75') + .query(true) + .reply(200, {"jobId":"a52f1200-7c2d-4ff1-a566-cc2daf523f75","lastUpdateDateTime":"2021-06-25T19:45:00Z","createdDateTime":"2021-06-25T19:44:58Z","expirationDateTime":"2021-06-26T19:44:58Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[{"offset":28,"length":12,"text":"veterinarian","category":"HealthcareProfession","confidenceScore":0.98}],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '73', + 'apim-request-id', + 'a460ab49-e6e6-44e5-8b84-cce66c876768', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:02 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_fast_tests/recording_recognizeentities.js b/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_fast_tests/recording_recognizeentities.js deleted file mode 100644 index 164e7e921cde..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_fast_tests/recording_recognizeentities.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "44bff596a4758107f0e456ef4454346a"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/general', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last weekend.","language":"en"}]}) - .query(true) - .reply(200, {"documents":[{"id":"0","entities":[{"text":"Seattle","category":"Location","subcategory":"GPE","offset":26,"length":7,"confidenceScore":0.99},{"text":"last weekend","category":"DateTime","subcategory":"DateRange","offset":34,"length":12,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '58', - 'apim-request-id', - '6214a533-f495-42cc-a47c-b7da4cd35a4b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:03:38 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_fast_tests/recording_recognizelinkedentities.js b/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_fast_tests/recording_recognizelinkedentities.js deleted file mode 100644 index 5cfa20ea3009..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_fast_tests/recording_recognizelinkedentities.js +++ /dev/null @@ -1,27 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "3329be528945fe80d42902fec00812f4"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/linking', {"documents":[{"id":"0","text":"the Roman god Mars","language":"en"}]}) - .query(true) - .reply(200, {"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"}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'csp-billing-usage', - 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', - 'x-envoy-upstream-service-time', - '6129', - 'apim-request-id', - '5fbf0f45-e532-425e-906e-3b504db7c014', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:03:44 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_cancelled.js b/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_cancelled.js deleted file mode 100644 index c7c77ce8d5f2..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_cancelled.js +++ /dev/null @@ -1,64 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "92e8aef16b4d5c34323ddac582aca6d4"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/health/jobs', {"documents":[{"id":"1","text":"Patient does not suffer from high blood pressure.","language":"en"},{"id":"2","text":"Prescribed 100mg ibuprofen, taken twice daily.","language":"en"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/429236f3-cb2f-4b11-8bb2-d94b54d606c0', - 'x-envoy-upstream-service-time', - '91', - 'apim-request-id', - '8bdd4e4b-8a43-4292-a3c5-ae4177237015', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:47 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/429236f3-cb2f-4b11-8bb2-d94b54d606c0') - .query(true) - .reply(200, {"jobId":"429236f3-cb2f-4b11-8bb2-d94b54d606c0","lastUpdateDateTime":"2021-05-12T19:05:48Z","createdDateTime":"2021-05-12T19:05:48Z","expirationDateTime":"2021-05-13T19:05:48Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '0ca21768-d727-4cbd-8ec9-b16090a9a6dc', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:47 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .delete('//text/analytics/v3.1-preview.5/entities/health/jobs/429236f3-cb2f-4b11-8bb2-d94b54d606c0') - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/429236f3-cb2f-4b11-8bb2-d94b54d606c0', - 'x-envoy-upstream-service-time', - '32', - 'apim-request-id', - 'bcd0518b-84dd-4b6c-81b6-f3bef781e292', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:47 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.js b/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.js deleted file mode 100644 index 9769ef777a44..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.js +++ /dev/null @@ -1,125 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "316216dafaf79a901a978dd5e8584eda"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/health/jobs', {"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 ibuprofen","language":"en"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/a4d1ec83-b93b-419f-90d7-73e87bea4343', - 'x-envoy-upstream-service-time', - '84', - 'apim-request-id', - 'a18593be-5d65-483c-843a-283e2080ac96', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:53 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/a4d1ec83-b93b-419f-90d7-73e87bea4343') - .query(true) - .reply(200, {"jobId":"a4d1ec83-b93b-419f-90d7-73e87bea4343","lastUpdateDateTime":"2021-05-12T19:05:54Z","createdDateTime":"2021-05-12T19:05:54Z","expirationDateTime":"2021-05-13T19:05:54Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - 'a50d7cdb-f21e-4d3b-818a-35593b912553', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:53 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/a4d1ec83-b93b-419f-90d7-73e87bea4343') - .query(true) - .reply(200, {"jobId":"a4d1ec83-b93b-419f-90d7-73e87bea4343","lastUpdateDateTime":"2021-05-12T19:05:54Z","createdDateTime":"2021-05-12T19:05:54Z","expirationDateTime":"2021-05-13T19:05:54Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '67c122ef-52db-4ff5-8c05-a1829b0baa6d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:53 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/a4d1ec83-b93b-419f-90d7-73e87bea4343') - .query(true) - .reply(200, {"jobId":"a4d1ec83-b93b-419f-90d7-73e87bea4343","lastUpdateDateTime":"2021-05-12T19:05:54Z","createdDateTime":"2021-05-12T19:05:54Z","expirationDateTime":"2021-05-13T19:05:54Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '85ab65b4-c3bb-4d93-b7b2-b480d5fd63fe', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:55 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/a4d1ec83-b93b-419f-90d7-73e87bea4343') - .query(true) - .reply(200, {"jobId":"a4d1ec83-b93b-419f-90d7-73e87bea4343","lastUpdateDateTime":"2021-05-12T19:05:57Z","createdDateTime":"2021-05-12T19:05:54Z","expirationDateTime":"2021-05-13T19:05:54Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":20,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":0.89,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-03-01"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '36', - 'apim-request-id', - 'd0a5d049-aa1e-4b29-a679-5ec3342a46d2', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:57 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/a4d1ec83-b93b-419f-90d7-73e87bea4343') - .query(true) - .reply(200, {"jobId":"a4d1ec83-b93b-419f-90d7-73e87bea4343","lastUpdateDateTime":"2021-05-12T19:05:57Z","createdDateTime":"2021-05-12T19:05:54Z","expirationDateTime":"2021-05-13T19:05:54Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":20,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":0.89,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-03-01"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '39', - 'apim-request-id', - 'c79f60d3-740d-4d27-aa03-6cbca2dee4ae', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:57 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_input_documents.js b/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_input_documents.js deleted file mode 100644 index e6c81fd82a85..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_input_documents.js +++ /dev/null @@ -1,105 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "97a0d8020bdef6d18ec9e99dd42899f2"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/health/jobs', {"documents":[{"id":"1","text":"Patient does not suffer from high blood pressure.","language":"en"},{"id":"2","text":"Prescribed 100mg ibuprofen, taken twice daily.","language":"en"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/cc076c00-86df-4d3d-bab1-06381e5dbece', - 'x-envoy-upstream-service-time', - '2682', - 'apim-request-id', - 'a46873eb-9ea0-4f74-a1bb-b99aa124321f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:04:26 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/cc076c00-86df-4d3d-bab1-06381e5dbece') - .query(true) - .reply(200, {"jobId":"cc076c00-86df-4d3d-bab1-06381e5dbece","lastUpdateDateTime":"2021-05-12T19:04:26Z","createdDateTime":"2021-05-12T19:04:23Z","expirationDateTime":"2021-05-13T19:04:23Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '16', - 'apim-request-id', - 'd60f938b-3930-4cd2-a9a6-036bc12f5d5e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:04:26 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/cc076c00-86df-4d3d-bab1-06381e5dbece') - .query(true) - .reply(200, {"jobId":"cc076c00-86df-4d3d-bab1-06381e5dbece","lastUpdateDateTime":"2021-05-12T19:04:26Z","createdDateTime":"2021-05-12T19:04:23Z","expirationDateTime":"2021-05-13T19:04:23Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - 'fec8a314-1a38-4d26-a6e7-7148056467fc', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:04:26 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/cc076c00-86df-4d3d-bab1-06381e5dbece') - .query(true) - .reply(200, {"jobId":"cc076c00-86df-4d3d-bab1-06381e5dbece","lastUpdateDateTime":"2021-05-12T19:04:26Z","createdDateTime":"2021-05-12T19:04:23Z","expirationDateTime":"2021-05-13T19:04:23Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[{"offset":29,"length":19,"text":"high blood pressure","category":"SymptomOrSign","confidenceScore":0.96,"assertion":{"certainty":"negative"},"name":"Hypertensive disease","links":[{"dataSource":"UMLS","id":"C0020538"},{"dataSource":"AOD","id":"0000023317"},{"dataSource":"BI","id":"BI00001"},{"dataSource":"CCPSS","id":"1017493"},{"dataSource":"CCS","id":"7.1"},{"dataSource":"CHV","id":"0000015800"},{"dataSource":"COSTAR","id":"397"},{"dataSource":"CSP","id":"0571-5243"},{"dataSource":"CST","id":"HYPERTENS"},{"dataSource":"DXP","id":"U002034"},{"dataSource":"HPO","id":"HP:0000822"},{"dataSource":"ICD10","id":"I10-I15.9"},{"dataSource":"ICD10AM","id":"I10-I15.9"},{"dataSource":"ICD10CM","id":"I10"},{"dataSource":"ICD9CM","id":"997.91"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU035456"},{"dataSource":"ICPC2P","id":"K85004"},{"dataSource":"LCH","id":"U002317"},{"dataSource":"LCH_NW","id":"sh85063723"},{"dataSource":"LNC","id":"LA14293-7"},{"dataSource":"MDR","id":"10020772"},{"dataSource":"MEDCIN","id":"33288"},{"dataSource":"MEDLINEPLUS","id":"34"},{"dataSource":"MSH","id":"D006973"},{"dataSource":"MTH","id":"005"},{"dataSource":"MTHICD9","id":"997.91"},{"dataSource":"NANDA-I","id":"00905"},{"dataSource":"NCI","id":"C3117"},{"dataSource":"NCI_CPTAC","id":"C3117"},{"dataSource":"NCI_CTCAE","id":"E13785"},{"dataSource":"NCI_CTRP","id":"C3117"},{"dataSource":"NCI_FDA","id":"1908"},{"dataSource":"NCI_GDC","id":"C3117"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000458091"},{"dataSource":"NCI_NICHD","id":"C3117"},{"dataSource":"NOC","id":"060808"},{"dataSource":"OMIM","id":"MTHU002068"},{"dataSource":"PCDS","id":"PRB_11000.06"},{"dataSource":"PDQ","id":"CDR0000686951"},{"dataSource":"PSY","id":"23830"},{"dataSource":"RCD","id":"XE0Ub"},{"dataSource":"SNM","id":"F-70700"},{"dataSource":"SNMI","id":"D3-02000"},{"dataSource":"SNOMEDCT_US","id":"38341003"},{"dataSource":"WHO","id":"0210"}]}],"relations":[],"warnings":[]},{"id":"2","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/1/entities/0","role":"Dosage"},{"ref":"#/results/documents/1/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/1/entities/1","role":"Medication"},{"ref":"#/results/documents/1/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[],"modelVersion":"2021-03-01"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7629', - 'apim-request-id', - '78e02e4f-db7d-40d4-b986-a02ab1dae14b', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:04:35 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/cc076c00-86df-4d3d-bab1-06381e5dbece') - .query(true) - .reply(200, {"jobId":"cc076c00-86df-4d3d-bab1-06381e5dbece","lastUpdateDateTime":"2021-05-12T19:04:26Z","createdDateTime":"2021-05-12T19:04:23Z","expirationDateTime":"2021-05-13T19:04:23Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[{"offset":29,"length":19,"text":"high blood pressure","category":"SymptomOrSign","confidenceScore":0.96,"assertion":{"certainty":"negative"},"name":"Hypertensive disease","links":[{"dataSource":"UMLS","id":"C0020538"},{"dataSource":"AOD","id":"0000023317"},{"dataSource":"BI","id":"BI00001"},{"dataSource":"CCPSS","id":"1017493"},{"dataSource":"CCS","id":"7.1"},{"dataSource":"CHV","id":"0000015800"},{"dataSource":"COSTAR","id":"397"},{"dataSource":"CSP","id":"0571-5243"},{"dataSource":"CST","id":"HYPERTENS"},{"dataSource":"DXP","id":"U002034"},{"dataSource":"HPO","id":"HP:0000822"},{"dataSource":"ICD10","id":"I10-I15.9"},{"dataSource":"ICD10AM","id":"I10-I15.9"},{"dataSource":"ICD10CM","id":"I10"},{"dataSource":"ICD9CM","id":"997.91"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU035456"},{"dataSource":"ICPC2P","id":"K85004"},{"dataSource":"LCH","id":"U002317"},{"dataSource":"LCH_NW","id":"sh85063723"},{"dataSource":"LNC","id":"LA14293-7"},{"dataSource":"MDR","id":"10020772"},{"dataSource":"MEDCIN","id":"33288"},{"dataSource":"MEDLINEPLUS","id":"34"},{"dataSource":"MSH","id":"D006973"},{"dataSource":"MTH","id":"005"},{"dataSource":"MTHICD9","id":"997.91"},{"dataSource":"NANDA-I","id":"00905"},{"dataSource":"NCI","id":"C3117"},{"dataSource":"NCI_CPTAC","id":"C3117"},{"dataSource":"NCI_CTCAE","id":"E13785"},{"dataSource":"NCI_CTRP","id":"C3117"},{"dataSource":"NCI_FDA","id":"1908"},{"dataSource":"NCI_GDC","id":"C3117"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000458091"},{"dataSource":"NCI_NICHD","id":"C3117"},{"dataSource":"NOC","id":"060808"},{"dataSource":"OMIM","id":"MTHU002068"},{"dataSource":"PCDS","id":"PRB_11000.06"},{"dataSource":"PDQ","id":"CDR0000686951"},{"dataSource":"PSY","id":"23830"},{"dataSource":"RCD","id":"XE0Ub"},{"dataSource":"SNM","id":"F-70700"},{"dataSource":"SNMI","id":"D3-02000"},{"dataSource":"SNOMEDCT_US","id":"38341003"},{"dataSource":"WHO","id":"0210"}]}],"relations":[],"warnings":[]},{"id":"2","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/1/entities/0","role":"Dosage"},{"ref":"#/results/documents/1/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/1/entities/1","role":"Medication"},{"ref":"#/results/documents/1/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[],"modelVersion":"2021-03-01"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '39', - 'apim-request-id', - '166a138c-ad7a-46b6-9c70-660559b2a95c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:04:35 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_input_strings.js b/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_input_strings.js deleted file mode 100644 index 5a1aeebb95d2..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_input_strings.js +++ /dev/null @@ -1,125 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "654a2ce761674256890c926077ce2713"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/health/jobs', {"documents":[{"id":"0","text":"Patient does not suffer from high blood pressure.","language":"en"},{"id":"1","text":"Prescribed 100mg ibuprofen, taken twice daily.","language":"en"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/14225796-a51d-469e-a7f2-111f0bbb3903', - 'x-envoy-upstream-service-time', - '359', - 'apim-request-id', - '18b52405-23fb-4ca3-966b-9a4678aa269a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:03:47 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/14225796-a51d-469e-a7f2-111f0bbb3903') - .query(true) - .reply(200, {"jobId":"14225796-a51d-469e-a7f2-111f0bbb3903","lastUpdateDateTime":"2021-05-12T19:03:48Z","createdDateTime":"2021-05-12T19:03:48Z","expirationDateTime":"2021-05-13T19:03:48Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '114', - 'apim-request-id', - 'ec3fb5c7-cfe1-4476-b4c5-40bcf0da6474', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:03:48 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/14225796-a51d-469e-a7f2-111f0bbb3903') - .query(true) - .reply(200, {"jobId":"14225796-a51d-469e-a7f2-111f0bbb3903","lastUpdateDateTime":"2021-05-12T19:03:48Z","createdDateTime":"2021-05-12T19:03:48Z","expirationDateTime":"2021-05-13T19:03:48Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '5143', - 'apim-request-id', - 'b37cdcf0-28e2-41de-bf8f-ca844b4d54ef', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:03:53 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/14225796-a51d-469e-a7f2-111f0bbb3903') - .query(true) - .reply(200, {"jobId":"14225796-a51d-469e-a7f2-111f0bbb3903","lastUpdateDateTime":"2021-05-12T19:03:48Z","createdDateTime":"2021-05-12T19:03:48Z","expirationDateTime":"2021-05-13T19:03:48Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '113', - 'apim-request-id', - '0a4a13ba-5448-415f-9169-b097f4cb9451', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:03:55 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/14225796-a51d-469e-a7f2-111f0bbb3903') - .query(true) - .reply(200, {"jobId":"14225796-a51d-469e-a7f2-111f0bbb3903","lastUpdateDateTime":"2021-05-12T19:04:02Z","createdDateTime":"2021-05-12T19:03:48Z","expirationDateTime":"2021-05-13T19:03:48Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":29,"length":19,"text":"high blood pressure","category":"SymptomOrSign","confidenceScore":0.96,"assertion":{"certainty":"negative"},"name":"Hypertensive disease","links":[{"dataSource":"UMLS","id":"C0020538"},{"dataSource":"AOD","id":"0000023317"},{"dataSource":"BI","id":"BI00001"},{"dataSource":"CCPSS","id":"1017493"},{"dataSource":"CCS","id":"7.1"},{"dataSource":"CHV","id":"0000015800"},{"dataSource":"COSTAR","id":"397"},{"dataSource":"CSP","id":"0571-5243"},{"dataSource":"CST","id":"HYPERTENS"},{"dataSource":"DXP","id":"U002034"},{"dataSource":"HPO","id":"HP:0000822"},{"dataSource":"ICD10","id":"I10-I15.9"},{"dataSource":"ICD10AM","id":"I10-I15.9"},{"dataSource":"ICD10CM","id":"I10"},{"dataSource":"ICD9CM","id":"997.91"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU035456"},{"dataSource":"ICPC2P","id":"K85004"},{"dataSource":"LCH","id":"U002317"},{"dataSource":"LCH_NW","id":"sh85063723"},{"dataSource":"LNC","id":"LA14293-7"},{"dataSource":"MDR","id":"10020772"},{"dataSource":"MEDCIN","id":"33288"},{"dataSource":"MEDLINEPLUS","id":"34"},{"dataSource":"MSH","id":"D006973"},{"dataSource":"MTH","id":"005"},{"dataSource":"MTHICD9","id":"997.91"},{"dataSource":"NANDA-I","id":"00905"},{"dataSource":"NCI","id":"C3117"},{"dataSource":"NCI_CPTAC","id":"C3117"},{"dataSource":"NCI_CTCAE","id":"E13785"},{"dataSource":"NCI_CTRP","id":"C3117"},{"dataSource":"NCI_FDA","id":"1908"},{"dataSource":"NCI_GDC","id":"C3117"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000458091"},{"dataSource":"NCI_NICHD","id":"C3117"},{"dataSource":"NOC","id":"060808"},{"dataSource":"OMIM","id":"MTHU002068"},{"dataSource":"PCDS","id":"PRB_11000.06"},{"dataSource":"PDQ","id":"CDR0000686951"},{"dataSource":"PSY","id":"23830"},{"dataSource":"RCD","id":"XE0Ub"},{"dataSource":"SNM","id":"F-70700"},{"dataSource":"SNMI","id":"D3-02000"},{"dataSource":"SNOMEDCT_US","id":"38341003"},{"dataSource":"WHO","id":"0210"}]}],"relations":[],"warnings":[]},{"id":"1","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/1/entities/0","role":"Dosage"},{"ref":"#/results/documents/1/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/1/entities/1","role":"Medication"},{"ref":"#/results/documents/1/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[],"modelVersion":"2021-03-01"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '12682', - 'apim-request-id', - 'b2ab756c-c9ed-42f7-b00c-73961173ee0a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:04:09 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/14225796-a51d-469e-a7f2-111f0bbb3903') - .query(true) - .reply(200, {"jobId":"14225796-a51d-469e-a7f2-111f0bbb3903","lastUpdateDateTime":"2021-05-12T19:04:02Z","createdDateTime":"2021-05-12T19:03:48Z","expirationDateTime":"2021-05-13T19:03:48Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":29,"length":19,"text":"high blood pressure","category":"SymptomOrSign","confidenceScore":0.96,"assertion":{"certainty":"negative"},"name":"Hypertensive disease","links":[{"dataSource":"UMLS","id":"C0020538"},{"dataSource":"AOD","id":"0000023317"},{"dataSource":"BI","id":"BI00001"},{"dataSource":"CCPSS","id":"1017493"},{"dataSource":"CCS","id":"7.1"},{"dataSource":"CHV","id":"0000015800"},{"dataSource":"COSTAR","id":"397"},{"dataSource":"CSP","id":"0571-5243"},{"dataSource":"CST","id":"HYPERTENS"},{"dataSource":"DXP","id":"U002034"},{"dataSource":"HPO","id":"HP:0000822"},{"dataSource":"ICD10","id":"I10-I15.9"},{"dataSource":"ICD10AM","id":"I10-I15.9"},{"dataSource":"ICD10CM","id":"I10"},{"dataSource":"ICD9CM","id":"997.91"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU035456"},{"dataSource":"ICPC2P","id":"K85004"},{"dataSource":"LCH","id":"U002317"},{"dataSource":"LCH_NW","id":"sh85063723"},{"dataSource":"LNC","id":"LA14293-7"},{"dataSource":"MDR","id":"10020772"},{"dataSource":"MEDCIN","id":"33288"},{"dataSource":"MEDLINEPLUS","id":"34"},{"dataSource":"MSH","id":"D006973"},{"dataSource":"MTH","id":"005"},{"dataSource":"MTHICD9","id":"997.91"},{"dataSource":"NANDA-I","id":"00905"},{"dataSource":"NCI","id":"C3117"},{"dataSource":"NCI_CPTAC","id":"C3117"},{"dataSource":"NCI_CTCAE","id":"E13785"},{"dataSource":"NCI_CTRP","id":"C3117"},{"dataSource":"NCI_FDA","id":"1908"},{"dataSource":"NCI_GDC","id":"C3117"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000458091"},{"dataSource":"NCI_NICHD","id":"C3117"},{"dataSource":"NOC","id":"060808"},{"dataSource":"OMIM","id":"MTHU002068"},{"dataSource":"PCDS","id":"PRB_11000.06"},{"dataSource":"PDQ","id":"CDR0000686951"},{"dataSource":"PSY","id":"23830"},{"dataSource":"RCD","id":"XE0Ub"},{"dataSource":"SNM","id":"F-70700"},{"dataSource":"SNMI","id":"D3-02000"},{"dataSource":"SNOMEDCT_US","id":"38341003"},{"dataSource":"WHO","id":"0210"}]}],"relations":[],"warnings":[]},{"id":"1","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/1/entities/0","role":"Dosage"},{"ref":"#/results/documents/1/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/1/entities/1","role":"Medication"},{"ref":"#/results/documents/1/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[],"modelVersion":"2021-03-01"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '5171', - 'apim-request-id', - '64f715f0-a672-41d2-8a99-8c238e746b0a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:04:15 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_invalid_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_invalid_language_hint.js deleted file mode 100644 index 9551aed65d75..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_invalid_language_hint.js +++ /dev/null @@ -1,125 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "ccc06bbc882856bacdf46a31a9bfb5a0"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/health/jobs', {"documents":[{"id":"0","text":"This should fail because we're passing in an invalid language hint","language":"notalanguage"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/7c5f835c-31c0-4c95-932f-84b9a6c0e515', - 'x-envoy-upstream-service-time', - '134', - 'apim-request-id', - '179daa9e-d865-466c-a416-10e73b6bd16c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:32 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/7c5f835c-31c0-4c95-932f-84b9a6c0e515') - .query(true) - .reply(200, {"jobId":"7c5f835c-31c0-4c95-932f-84b9a6c0e515","lastUpdateDateTime":"2021-05-12T19:05:32Z","createdDateTime":"2021-05-12T19:05:32Z","expirationDateTime":"2021-05-13T19:05:32Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '12419ec6-9a4a-4453-8a0d-39ff66ea9dfa', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:32 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/7c5f835c-31c0-4c95-932f-84b9a6c0e515') - .query(true) - .reply(200, {"jobId":"7c5f835c-31c0-4c95-932f-84b9a6c0e515","lastUpdateDateTime":"2021-05-12T19:05:32Z","createdDateTime":"2021-05-12T19:05:32Z","expirationDateTime":"2021-05-13T19:05:32Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - 'c9119bb5-8dd4-4d11-a78d-b1f23941b220', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:32 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/7c5f835c-31c0-4c95-932f-84b9a6c0e515') - .query(true) - .reply(200, {"jobId":"7c5f835c-31c0-4c95-932f-84b9a6c0e515","lastUpdateDateTime":"2021-05-12T19:05:32Z","createdDateTime":"2021-05-12T19:05:32Z","expirationDateTime":"2021-05-13T19:05:32Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - '1f230032-cf00-4450-94ea-f196b3eccc85', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:34 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/7c5f835c-31c0-4c95-932f-84b9a6c0e515') - .query(true) - .reply(200, {"jobId":"7c5f835c-31c0-4c95-932f-84b9a6c0e515","lastUpdateDateTime":"2021-05-12T19:05:36Z","createdDateTime":"2021-05-12T19:05:32Z","expirationDateTime":"2021-05-13T19:05:32Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}}],"modelVersion":"2021-03-01"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '39', - 'apim-request-id', - '3b5466f6-1e4b-4c40-ac0e-e2023517fa3d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:36 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/7c5f835c-31c0-4c95-932f-84b9a6c0e515') - .query(true) - .reply(200, {"jobId":"7c5f835c-31c0-4c95-932f-84b9a6c0e515","lastUpdateDateTime":"2021-05-12T19:05:36Z","createdDateTime":"2021-05-12T19:05:32Z","expirationDateTime":"2021-05-13T19:05:32Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}}],"modelVersion":"2021-03-01"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '32', - 'apim-request-id', - 'e071b672-421a-4829-ac2f-99bc59471767', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:36 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.js deleted file mode 100644 index 84bee33f872b..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.js +++ /dev/null @@ -1,165 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "a2af35bb8906288de33b66444bb8db36"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/health/jobs', {"documents":[{"id":"1","text":"This should fail because we're passing in an invalid language hint","language":"notalanguage"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/f3d66aa1-0294-4af3-9a5e-7457bc9549a5', - 'x-envoy-upstream-service-time', - '79', - 'apim-request-id', - '2df18977-e2af-49c6-afb7-bf2c47a74225', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:37 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/f3d66aa1-0294-4af3-9a5e-7457bc9549a5') - .query(true) - .reply(200, {"jobId":"f3d66aa1-0294-4af3-9a5e-7457bc9549a5","lastUpdateDateTime":"2021-05-12T19:05:37Z","createdDateTime":"2021-05-12T19:05:37Z","expirationDateTime":"2021-05-13T19:05:37Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - 'bcada3fd-47f9-44bc-8fa1-70655c65f03c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:37 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/f3d66aa1-0294-4af3-9a5e-7457bc9549a5') - .query(true) - .reply(200, {"jobId":"f3d66aa1-0294-4af3-9a5e-7457bc9549a5","lastUpdateDateTime":"2021-05-12T19:05:37Z","createdDateTime":"2021-05-12T19:05:37Z","expirationDateTime":"2021-05-13T19:05:37Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '1c8408d5-82f8-4bc7-a88a-0601ec354321', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:37 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/f3d66aa1-0294-4af3-9a5e-7457bc9549a5') - .query(true) - .reply(200, {"jobId":"f3d66aa1-0294-4af3-9a5e-7457bc9549a5","lastUpdateDateTime":"2021-05-12T19:05:37Z","createdDateTime":"2021-05-12T19:05:37Z","expirationDateTime":"2021-05-13T19:05:37Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - 'bddb895a-5d2f-47c5-b284-f02a3f5c33b1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:39 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/f3d66aa1-0294-4af3-9a5e-7457bc9549a5') - .query(true) - .reply(200, {"jobId":"f3d66aa1-0294-4af3-9a5e-7457bc9549a5","lastUpdateDateTime":"2021-05-12T19:05:37Z","createdDateTime":"2021-05-12T19:05:37Z","expirationDateTime":"2021-05-13T19:05:37Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - 'd85446af-6e02-4f16-baf6-a3f9a5d8ab4a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:41 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/f3d66aa1-0294-4af3-9a5e-7457bc9549a5') - .query(true) - .reply(200, {"jobId":"f3d66aa1-0294-4af3-9a5e-7457bc9549a5","lastUpdateDateTime":"2021-05-12T19:05:37Z","createdDateTime":"2021-05-12T19:05:37Z","expirationDateTime":"2021-05-13T19:05:37Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '46750e06-713e-4f82-a09e-f519f9c0d090', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:43 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/f3d66aa1-0294-4af3-9a5e-7457bc9549a5') - .query(true) - .reply(200, {"jobId":"f3d66aa1-0294-4af3-9a5e-7457bc9549a5","lastUpdateDateTime":"2021-05-12T19:05:44Z","createdDateTime":"2021-05-12T19:05:37Z","expirationDateTime":"2021-05-13T19:05:37Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}}],"modelVersion":"2021-03-01"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '35', - 'apim-request-id', - '8892d07e-c4c7-4d54-a36c-d46ed380c118', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:45 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/f3d66aa1-0294-4af3-9a5e-7457bc9549a5') - .query(true) - .reply(200, {"jobId":"f3d66aa1-0294-4af3-9a5e-7457bc9549a5","lastUpdateDateTime":"2021-05-12T19:05:44Z","createdDateTime":"2021-05-12T19:05:37Z","expirationDateTime":"2021-05-13T19:05:37Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}}],"modelVersion":"2021-03-01"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '35', - 'apim-request-id', - '204657b8-6f7e-46c3-af5f-e9bd44748e10', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:45 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_operation_metadata.js b/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_operation_metadata.js deleted file mode 100644 index 8d4b704fd319..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_operation_metadata.js +++ /dev/null @@ -1,85 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "cb3f6fdfa836a80c248ff2527cf15337"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/health/jobs', {"documents":[{"id":"1","text":"Patient does not suffer from high blood pressure.","language":"en"},{"id":"2","text":"Prescribed 100mg ibuprofen, taken twice daily.","language":"en"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/6782fe85-ac4b-4b67-afae-c644095f6aea', - 'x-envoy-upstream-service-time', - '3205', - 'apim-request-id', - '12301757-206d-4fca-8ea9-6d7ea8329256', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:51 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/6782fe85-ac4b-4b67-afae-c644095f6aea') - .query(true) - .reply(200, {"jobId":"6782fe85-ac4b-4b67-afae-c644095f6aea","lastUpdateDateTime":"2021-05-12T19:05:51Z","createdDateTime":"2021-05-12T19:05:48Z","expirationDateTime":"2021-05-13T19:05:48Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - '261c570b-9f83-4dc2-bcdf-f0b0f5aaba61', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:51 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/6782fe85-ac4b-4b67-afae-c644095f6aea') - .query(true) - .reply(200, {"jobId":"6782fe85-ac4b-4b67-afae-c644095f6aea","lastUpdateDateTime":"2021-05-12T19:05:51Z","createdDateTime":"2021-05-12T19:05:48Z","expirationDateTime":"2021-05-13T19:05:48Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - 'cff9fa7f-44c4-41a3-a59e-3b22777c0a6c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:51 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/6782fe85-ac4b-4b67-afae-c644095f6aea') - .query(true) - .reply(200, {"jobId":"6782fe85-ac4b-4b67-afae-c644095f6aea","lastUpdateDateTime":"2021-05-12T19:05:52Z","createdDateTime":"2021-05-12T19:05:48Z","expirationDateTime":"2021-05-13T19:05:48Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[{"offset":29,"length":19,"text":"high blood pressure","category":"SymptomOrSign","confidenceScore":0.96,"assertion":{"certainty":"negative"},"name":"Hypertensive disease","links":[{"dataSource":"UMLS","id":"C0020538"},{"dataSource":"AOD","id":"0000023317"},{"dataSource":"BI","id":"BI00001"},{"dataSource":"CCPSS","id":"1017493"},{"dataSource":"CCS","id":"7.1"},{"dataSource":"CHV","id":"0000015800"},{"dataSource":"COSTAR","id":"397"},{"dataSource":"CSP","id":"0571-5243"},{"dataSource":"CST","id":"HYPERTENS"},{"dataSource":"DXP","id":"U002034"},{"dataSource":"HPO","id":"HP:0000822"},{"dataSource":"ICD10","id":"I10-I15.9"},{"dataSource":"ICD10AM","id":"I10-I15.9"},{"dataSource":"ICD10CM","id":"I10"},{"dataSource":"ICD9CM","id":"997.91"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU035456"},{"dataSource":"ICPC2P","id":"K85004"},{"dataSource":"LCH","id":"U002317"},{"dataSource":"LCH_NW","id":"sh85063723"},{"dataSource":"LNC","id":"LA14293-7"},{"dataSource":"MDR","id":"10020772"},{"dataSource":"MEDCIN","id":"33288"},{"dataSource":"MEDLINEPLUS","id":"34"},{"dataSource":"MSH","id":"D006973"},{"dataSource":"MTH","id":"005"},{"dataSource":"MTHICD9","id":"997.91"},{"dataSource":"NANDA-I","id":"00905"},{"dataSource":"NCI","id":"C3117"},{"dataSource":"NCI_CPTAC","id":"C3117"},{"dataSource":"NCI_CTCAE","id":"E13785"},{"dataSource":"NCI_CTRP","id":"C3117"},{"dataSource":"NCI_FDA","id":"1908"},{"dataSource":"NCI_GDC","id":"C3117"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000458091"},{"dataSource":"NCI_NICHD","id":"C3117"},{"dataSource":"NOC","id":"060808"},{"dataSource":"OMIM","id":"MTHU002068"},{"dataSource":"PCDS","id":"PRB_11000.06"},{"dataSource":"PDQ","id":"CDR0000686951"},{"dataSource":"PSY","id":"23830"},{"dataSource":"RCD","id":"XE0Ub"},{"dataSource":"SNM","id":"F-70700"},{"dataSource":"SNMI","id":"D3-02000"},{"dataSource":"SNOMEDCT_US","id":"38341003"},{"dataSource":"WHO","id":"0210"}]}],"relations":[],"warnings":[]},{"id":"2","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/1/entities/0","role":"Dosage"},{"ref":"#/results/documents/1/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/1/entities/1","role":"Medication"},{"ref":"#/results/documents/1/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[],"modelVersion":"2021-03-01"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '42', - 'apim-request-id', - '937b77dd-eb67-4e32-baac-e0abe30f6973', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:53 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.js b/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.js deleted file mode 100644 index 8f4ec81494ed..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.js +++ /dev/null @@ -1,125 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "b5f82998ec382ffdc25c0a92c73703fd"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/health/jobs', {"documents":[{"id":"1","text":"one"},{"id":"2","text":"two"},{"id":"3","text":"three"},{"id":"4","text":"four"},{"id":"5","text":"five"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/70b60cac-6f9e-418b-a5d3-b884f9614898', - 'x-envoy-upstream-service-time', - '125', - 'apim-request-id', - '8b6cc977-6ecb-4f3a-ad93-4676e839652d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:04:52 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/70b60cac-6f9e-418b-a5d3-b884f9614898') - .query(true) - .reply(200, {"jobId":"70b60cac-6f9e-418b-a5d3-b884f9614898","lastUpdateDateTime":"2021-05-12T19:04:53Z","createdDateTime":"2021-05-12T19:04:52Z","expirationDateTime":"2021-05-13T19:04:52Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - 'ec74e72d-b5ae-49e9-a4b2-f043c5640a57', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:04:52 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/70b60cac-6f9e-418b-a5d3-b884f9614898') - .query(true) - .reply(200, {"jobId":"70b60cac-6f9e-418b-a5d3-b884f9614898","lastUpdateDateTime":"2021-05-12T19:04:53Z","createdDateTime":"2021-05-12T19:04:52Z","expirationDateTime":"2021-05-13T19:04:52Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - '579b64a6-d5c2-4dcb-a0c8-c2fd3fde720f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:04:52 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/70b60cac-6f9e-418b-a5d3-b884f9614898') - .query(true) - .reply(200, {"jobId":"70b60cac-6f9e-418b-a5d3-b884f9614898","lastUpdateDateTime":"2021-05-12T19:04:53Z","createdDateTime":"2021-05-12T19:04:52Z","expirationDateTime":"2021-05-13T19:04:52Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'fc8af890-c3d5-4ed2-9a20-164f3f3cf6fd', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:04:55 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/70b60cac-6f9e-418b-a5d3-b884f9614898') - .query(true) - .reply(200, {"jobId":"70b60cac-6f9e-418b-a5d3-b884f9614898","lastUpdateDateTime":"2021-05-12T19:04:57Z","createdDateTime":"2021-05-12T19:04:52Z","expirationDateTime":"2021-05-13T19:04:52Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]},{"id":"4","entities":[],"relations":[],"warnings":[]},{"id":"5","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-03-01"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '76', - 'apim-request-id', - '6302e167-7168-48af-b24e-fe40ae7a86f2', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:04:57 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/70b60cac-6f9e-418b-a5d3-b884f9614898') - .query(true) - .reply(200, {"jobId":"70b60cac-6f9e-418b-a5d3-b884f9614898","lastUpdateDateTime":"2021-05-12T19:04:57Z","createdDateTime":"2021-05-12T19:04:52Z","expirationDateTime":"2021-05-13T19:04:52Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]},{"id":"4","entities":[],"relations":[],"warnings":[]},{"id":"5","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-03-01"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '85', - 'apim-request-id', - '59c6b192-688c-44fd-af68-9626122245aa', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:04:57 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.js b/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.js deleted file mode 100644 index babf73f705b7..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.js +++ /dev/null @@ -1,145 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "29d09cad09699f8d65a8066b64223a17"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/health/jobs', {"documents":[{"id":"56","text":":)"},{"id":"0","text":":("},{"id":"22","text":""},{"id":"19","text":":P"},{"id":"1","text":":D"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/3d7a4b47-a1ce-41b3-9fdb-5c2939486847', - 'x-envoy-upstream-service-time', - '145', - 'apim-request-id', - '8fa138f1-4e7e-47eb-8696-29bb637f7ce1', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:04:57 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/3d7a4b47-a1ce-41b3-9fdb-5c2939486847') - .query(true) - .reply(200, {"jobId":"3d7a4b47-a1ce-41b3-9fdb-5c2939486847","lastUpdateDateTime":"2021-05-12T19:04:57Z","createdDateTime":"2021-05-12T19:04:57Z","expirationDateTime":"2021-05-13T19:04:57Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - '6d6c0ce8-136c-4bf7-9241-61458702d79e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:04:57 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/3d7a4b47-a1ce-41b3-9fdb-5c2939486847') - .query(true) - .reply(200, {"jobId":"3d7a4b47-a1ce-41b3-9fdb-5c2939486847","lastUpdateDateTime":"2021-05-12T19:04:57Z","createdDateTime":"2021-05-12T19:04:57Z","expirationDateTime":"2021-05-13T19:04:57Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - 'e93a2acb-707c-48aa-b6b9-6f90c143f48c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:04:57 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/3d7a4b47-a1ce-41b3-9fdb-5c2939486847') - .query(true) - .reply(200, {"jobId":"3d7a4b47-a1ce-41b3-9fdb-5c2939486847","lastUpdateDateTime":"2021-05-12T19:04:57Z","createdDateTime":"2021-05-12T19:04:57Z","expirationDateTime":"2021-05-13T19:04:57Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '92d69fa5-7d1a-4101-9adc-8744898ba2ff', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:04:59 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/3d7a4b47-a1ce-41b3-9fdb-5c2939486847') - .query(true) - .reply(200, {"jobId":"3d7a4b47-a1ce-41b3-9fdb-5c2939486847","lastUpdateDateTime":"2021-05-12T19:05:01Z","createdDateTime":"2021-05-12T19:04:57Z","expirationDateTime":"2021-05-13T19:04:57Z","status":"running","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - 'efd9f4d0-6162-4888-a9a8-6eba7b62828d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:01 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/3d7a4b47-a1ce-41b3-9fdb-5c2939486847') - .query(true) - .reply(200, {"jobId":"3d7a4b47-a1ce-41b3-9fdb-5c2939486847","lastUpdateDateTime":"2021-05-12T19:05:02Z","createdDateTime":"2021-05-12T19:04:57Z","expirationDateTime":"2021-05-13T19:04:57Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"56","entities":[],"relations":[],"warnings":[]},{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"19","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]}],"errors":[{"id":"22","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-03-01"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '165', - 'apim-request-id', - '7e99d789-eb70-4751-8f1c-8e8d3875c5f4', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:03 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/3d7a4b47-a1ce-41b3-9fdb-5c2939486847') - .query(true) - .reply(200, {"jobId":"3d7a4b47-a1ce-41b3-9fdb-5c2939486847","lastUpdateDateTime":"2021-05-12T19:05:02Z","createdDateTime":"2021-05-12T19:04:57Z","expirationDateTime":"2021-05-13T19:04:57Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"56","entities":[],"relations":[],"warnings":[]},{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"19","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]}],"errors":[{"id":"22","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-03-01"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '68', - 'apim-request-id', - 'b305a595-ef47-4a9b-bfc4-4a1657a53d7e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:04 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_payload_too_large.js b/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_payload_too_large.js deleted file mode 100644 index 367473b99c2b..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_payload_too_large.js +++ /dev/null @@ -1,25 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "532f61fc6a7ee204c410842f82949729"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/health/jobs', {"documents":[{"id":"0","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"1","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"2","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"3","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"4","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"5","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"6","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"7","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"8","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"9","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"10","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"11","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"12","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"13","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"14","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"15","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"16","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"17","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"18","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"19","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"20","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"21","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"22","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"23","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"24","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"25","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"26","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"27","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"28","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"29","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"30","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"31","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"32","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"33","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"34","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"35","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"36","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"37","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"38","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"39","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"40","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"41","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"42","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"43","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"44","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"45","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"46","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"47","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"48","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"49","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"50","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"51","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"52","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"53","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"54","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"55","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"56","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"57","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"58","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"59","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"60","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"61","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"62","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"63","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"64","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"65","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"66","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"67","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"68","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"69","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"70","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"71","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"72","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"73","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"74","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"75","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"76","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"77","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"78","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"79","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"80","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"81","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"82","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"83","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"84","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"85","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"86","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"87","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"88","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"89","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"90","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"91","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"92","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"93","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"94","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"95","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"96","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"97","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"98","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"99","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"100","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"101","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"102","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"103","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"104","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"105","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"106","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"107","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"108","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"109","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"110","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"111","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"112","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"113","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"114","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"115","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"116","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"117","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"118","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"119","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"120","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"121","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"122","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"123","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"124","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"125","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"126","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"127","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"128","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"129","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"130","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"131","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"132","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"133","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"134","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"135","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"136","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"137","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"138","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"139","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"140","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"141","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"142","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"143","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"144","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"145","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"146","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"147","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"148","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"149","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"150","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"151","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"152","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"153","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"154","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"155","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"156","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"157","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"158","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"159","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"160","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"161","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"162","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"163","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"164","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"165","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"166","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"167","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"168","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"169","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"170","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"171","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"172","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"173","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"174","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"175","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"176","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"177","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"178","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"179","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"180","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"181","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"182","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"183","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"184","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"185","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"186","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"187","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"188","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"189","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"190","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"191","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"192","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"193","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"194","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"195","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"196","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"197","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"198","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"199","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"200","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"201","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"202","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"203","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"204","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"205","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"206","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"207","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"208","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"209","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"210","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"211","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"212","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"213","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"214","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"215","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"216","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"217","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"218","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"219","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"220","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"221","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"222","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"223","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"224","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"225","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"226","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"227","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"228","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"229","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"230","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"231","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"232","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"233","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"234","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"235","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"236","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"237","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"238","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"239","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"240","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"241","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"242","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"243","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"244","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"245","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"246","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"247","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"248","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"249","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"250","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"251","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"252","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"253","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"254","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"255","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"256","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"257","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"258","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"259","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"260","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"261","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"262","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"263","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"264","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"265","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"266","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"267","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"268","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"269","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"270","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"271","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"272","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"273","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"274","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"275","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"276","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"277","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"278","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"279","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"280","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"281","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"282","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"283","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"284","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"285","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"286","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"287","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"288","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"289","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"290","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"291","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"292","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"293","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"294","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"295","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"296","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"297","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"298","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"299","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"300","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"301","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"302","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"303","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"304","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"305","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"306","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"307","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"308","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"309","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"310","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"311","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"312","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"313","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"314","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"315","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"316","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"317","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"318","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"319","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"320","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"321","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"322","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"323","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"324","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"325","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"326","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"327","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"328","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"329","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"330","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"331","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"332","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"333","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"334","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"335","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"336","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"337","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"338","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"339","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"340","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"341","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"342","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"343","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"344","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"345","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"346","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"347","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"348","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"349","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"350","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"351","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"352","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"353","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"354","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"355","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"356","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"357","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"358","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"359","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"360","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"361","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"362","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"363","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"364","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"365","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"366","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"367","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"368","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"369","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"370","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"371","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"372","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"373","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"374","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"375","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"376","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"377","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"378","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"379","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"380","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"381","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"382","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"383","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"384","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"385","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"386","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"387","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"388","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"389","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"390","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"391","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"392","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"393","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"394","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"395","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"396","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"397","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"398","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"399","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"400","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"401","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"402","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"403","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"404","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"405","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"406","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"407","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"408","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"409","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"410","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"411","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"412","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"413","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"414","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"415","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"416","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"417","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"418","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"419","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"420","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"421","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"422","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"423","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"424","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"425","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"426","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"427","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"428","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"429","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"430","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"431","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"432","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"433","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"434","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"435","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"436","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"437","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"438","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"439","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"440","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"441","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"442","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"443","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"444","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"445","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"446","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"447","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"448","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"449","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"450","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"451","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"452","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"453","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"454","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"455","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"456","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"457","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"458","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"459","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"460","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"461","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"462","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"463","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"464","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"465","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"466","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"467","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"468","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"469","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"470","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"471","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"472","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"473","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"474","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"475","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"476","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"477","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"478","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"479","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"480","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"481","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"482","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"483","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"484","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"485","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"486","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"487","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"488","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"489","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"490","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"491","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"492","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"493","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"494","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"495","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"496","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"497","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"498","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"499","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"}]}) - .query(true) - .reply(413, {"error":{"code":"InvalidRequest","message":"Invalid document in request.","innererror":{"code":"InvalidDocumentBatch","message":"Request Payload sent is too large to be processed. Limit request size to: 524288"}}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '42', - 'apim-request-id', - 'bb6556bd-2534-4cb0-bcb0-cc40a2b5a00e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:04:47 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_show_stats_and_model_version.js b/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_show_stats_and_model_version.js deleted file mode 100644 index 566829b2b182..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_show_stats_and_model_version.js +++ /dev/null @@ -1,105 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "68e739025094d7d7ee600e41d62938a8"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/health/jobs', {"documents":[{"id":"56","text":":)"},{"id":"0","text":":("},{"id":"22","text":""},{"id":"19","text":":P"},{"id":"1","text":":D"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/53ec2023-dc23-41a2-90b6-2471b381cbfb', - 'x-envoy-upstream-service-time', - '117', - 'apim-request-id', - '84deceec-5de8-4fc0-828b-4437bf6ac232', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:04 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/53ec2023-dc23-41a2-90b6-2471b381cbfb') - .query(true) - .reply(200, {"jobId":"53ec2023-dc23-41a2-90b6-2471b381cbfb","lastUpdateDateTime":"2021-05-12T19:05:04Z","createdDateTime":"2021-05-12T19:05:04Z","expirationDateTime":"2021-05-13T19:05:04Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - 'dd563d22-37bb-4fba-b7c1-47b0dfc89e78', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:04 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/53ec2023-dc23-41a2-90b6-2471b381cbfb') - .query(true) - .reply(200, {"jobId":"53ec2023-dc23-41a2-90b6-2471b381cbfb","lastUpdateDateTime":"2021-05-12T19:05:04Z","createdDateTime":"2021-05-12T19:05:04Z","expirationDateTime":"2021-05-13T19:05:04Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - 'df7a69dc-a6fe-49e8-b557-25188083ec5f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:04 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/53ec2023-dc23-41a2-90b6-2471b381cbfb') - .query(true) - .reply(200, {"jobId":"53ec2023-dc23-41a2-90b6-2471b381cbfb","lastUpdateDateTime":"2021-05-12T19:05:04Z","createdDateTime":"2021-05-12T19:05:04Z","expirationDateTime":"2021-05-13T19:05:04Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - 'f570995f-edfe-4fee-ac9a-91a6bc52fb1f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:06 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/53ec2023-dc23-41a2-90b6-2471b381cbfb') - .query(true) - .reply(200, {"jobId":"53ec2023-dc23-41a2-90b6-2471b381cbfb","lastUpdateDateTime":"2021-05-12T19:05:07Z","createdDateTime":"2021-05-12T19:05:04Z","expirationDateTime":"2021-05-13T19:05:04Z","status":"succeeded","errors":[],"results":{"statistics":{"documentsCount":5,"validDocumentsCount":4,"erroneousDocumentsCount":1,"transactionsCount":4},"documents":[{"id":"56","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"relations":[],"warnings":[]},{"id":"0","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"relations":[],"warnings":[]},{"id":"19","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"relations":[],"warnings":[]},{"id":"1","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"relations":[],"warnings":[]}],"errors":[{"id":"22","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-03-01"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '80', - 'apim-request-id', - '46bb543b-495d-4fe0-a4b1-4fbbc461b902', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:08 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_too_many_documents.js b/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_too_many_documents.js deleted file mode 100644 index ecb19de58b9e..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_too_many_documents.js +++ /dev/null @@ -1,25 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "dcbcfe162d465d16e18f3db3315503bf"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/health/jobs', {"documents":[{"id":"0","text":"random text","language":"en"},{"id":"1","text":"random text","language":"en"},{"id":"2","text":"random text","language":"en"},{"id":"3","text":"random text","language":"en"},{"id":"4","text":"random text","language":"en"},{"id":"5","text":"random text","language":"en"},{"id":"6","text":"random text","language":"en"},{"id":"7","text":"random text","language":"en"},{"id":"8","text":"random text","language":"en"},{"id":"9","text":"random text","language":"en"},{"id":"10","text":"random text","language":"en"}]}) - .query(true) - .reply(400, {"error":{"code":"InvalidRequest","message":"Invalid document in request.","innererror":{"code":"InvalidDocumentBatch","message":"Batch request contains too many records. Max 10 records are permitted."}}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - 'b13989f3-c110-41bc-b745-5c7b2536552c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:04:47 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.js deleted file mode 100644 index a5ba1c2792b6..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.js +++ /dev/null @@ -1,125 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "b3ad7c6bd1c67bae64359f501d8d1c4d"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/health/jobs', {"documents":[{"id":"1","text":"I will go to the park.","language":""},{"id":"2","text":"I did not like the hotel we stayed at.","language":""},{"id":"3","text":"The restaurant had really good food."}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/46571e12-d5e7-4172-95fb-39efb3dcca25', - 'x-envoy-upstream-service-time', - '5213', - 'apim-request-id', - '62e01dbe-fd72-4a0c-afd9-959e68d5d2c2', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:22 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/46571e12-d5e7-4172-95fb-39efb3dcca25') - .query(true) - .reply(200, {"jobId":"46571e12-d5e7-4172-95fb-39efb3dcca25","lastUpdateDateTime":"2021-05-12T19:05:23Z","createdDateTime":"2021-05-12T19:05:18Z","expirationDateTime":"2021-05-13T19:05:18Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - 'fc92f5a0-303e-41db-9590-9a9083ce3baa', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:22 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/46571e12-d5e7-4172-95fb-39efb3dcca25') - .query(true) - .reply(200, {"jobId":"46571e12-d5e7-4172-95fb-39efb3dcca25","lastUpdateDateTime":"2021-05-12T19:05:23Z","createdDateTime":"2021-05-12T19:05:18Z","expirationDateTime":"2021-05-13T19:05:18Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '74336493-2efe-418e-a6b0-3a2bde4f2c49', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:23 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/46571e12-d5e7-4172-95fb-39efb3dcca25') - .query(true) - .reply(200, {"jobId":"46571e12-d5e7-4172-95fb-39efb3dcca25","lastUpdateDateTime":"2021-05-12T19:05:23Z","createdDateTime":"2021-05-12T19:05:18Z","expirationDateTime":"2021-05-13T19:05:18Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '24f532a5-87e1-4c67-a5e7-1c1d4cabed88', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:25 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/46571e12-d5e7-4172-95fb-39efb3dcca25') - .query(true) - .reply(200, {"jobId":"46571e12-d5e7-4172-95fb-39efb3dcca25","lastUpdateDateTime":"2021-05-12T19:05:27Z","createdDateTime":"2021-05-12T19:05:18Z","expirationDateTime":"2021-05-13T19:05:18Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-03-01"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '78', - 'apim-request-id', - 'af9159d3-00cd-4e90-a24a-75855ef2c189', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:28 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/46571e12-d5e7-4172-95fb-39efb3dcca25') - .query(true) - .reply(200, {"jobId":"46571e12-d5e7-4172-95fb-39efb3dcca25","lastUpdateDateTime":"2021-05-12T19:05:27Z","createdDateTime":"2021-05-12T19:05:18Z","expirationDateTime":"2021-05-13T19:05:18Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-03-01"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '46', - 'apim-request-id', - 'c6644a15-72ac-4834-ba5c-1ebec1a312e8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:28 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_whole_batch_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_whole_batch_language_hint.js deleted file mode 100644 index c127bdfdfa0f..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_whole_batch_language_hint.js +++ /dev/null @@ -1,125 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "2b9b98c8788204bf3d0a1f4758dc43e5"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/health/jobs', {"documents":[{"id":"0","text":"This was the best day of my life.","language":"en"},{"id":"1","text":"I did not like the hotel we stayed at. It was too expensive.","language":"en"},{"id":"2","text":"The restaurant was not as good as I hoped.","language":"en"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/89ac7639-e160-4961-8fe3-dcb655ba629f', - 'x-envoy-upstream-service-time', - '140', - 'apim-request-id', - '32707520-a81e-4bbe-8484-bd8e28214359', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:08 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/89ac7639-e160-4961-8fe3-dcb655ba629f') - .query(true) - .reply(200, {"jobId":"89ac7639-e160-4961-8fe3-dcb655ba629f","lastUpdateDateTime":"2021-05-12T19:05:09Z","createdDateTime":"2021-05-12T19:05:08Z","expirationDateTime":"2021-05-13T19:05:08Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '7', - 'apim-request-id', - '0ec793b3-f9a1-4a4c-a7a9-0d49229ac8be', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:08 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/89ac7639-e160-4961-8fe3-dcb655ba629f') - .query(true) - .reply(200, {"jobId":"89ac7639-e160-4961-8fe3-dcb655ba629f","lastUpdateDateTime":"2021-05-12T19:05:09Z","createdDateTime":"2021-05-12T19:05:08Z","expirationDateTime":"2021-05-13T19:05:08Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '8', - 'apim-request-id', - '52e96a22-b617-4f88-b42c-9d5de9ab1c5a', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:08 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/89ac7639-e160-4961-8fe3-dcb655ba629f') - .query(true) - .reply(200, {"jobId":"89ac7639-e160-4961-8fe3-dcb655ba629f","lastUpdateDateTime":"2021-05-12T19:05:09Z","createdDateTime":"2021-05-12T19:05:08Z","expirationDateTime":"2021-05-13T19:05:08Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - '187e4f71-6893-4bfa-a287-f5341ef57c5d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:10 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/89ac7639-e160-4961-8fe3-dcb655ba629f') - .query(true) - .reply(200, {"jobId":"89ac7639-e160-4961-8fe3-dcb655ba629f","lastUpdateDateTime":"2021-05-12T19:05:12Z","createdDateTime":"2021-05-12T19:05:08Z","expirationDateTime":"2021-05-13T19:05:08Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-03-01"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '2716', - 'apim-request-id', - '4e6d09e1-2952-492f-bb71-370edc722ef7', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:15 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/89ac7639-e160-4961-8fe3-dcb655ba629f') - .query(true) - .reply(200, {"jobId":"89ac7639-e160-4961-8fe3-dcb655ba629f","lastUpdateDateTime":"2021-05-12T19:05:12Z","createdDateTime":"2021-05-12T19:05:08Z","expirationDateTime":"2021-05-13T19:05:08Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-03-01"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '52', - 'apim-request-id', - 'c2954eb2-877a-496c-8f2e-a28aae41c764', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:15 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.js b/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.js deleted file mode 100644 index 7156cf89ceff..000000000000 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.js +++ /dev/null @@ -1,125 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "6aedc920d53dc1c84668bd7b6c5a9f6c"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/health/jobs', {"documents":[{"id":"1","text":"I should take my cat to the veterinarian."},{"id":"2","text":"Este es un document escrito en Español."},{"id":"3","text":"猫は幸せ"}]}) - .query(true) - .reply(202, "", [ - 'Transfer-Encoding', - 'chunked', - 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/6d5e859f-f822-4176-9382-b78ee62a84f7', - 'x-envoy-upstream-service-time', - '94', - 'apim-request-id', - 'dc309a73-5903-4b32-ae86-f7c5161b71f4', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:28 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/6d5e859f-f822-4176-9382-b78ee62a84f7') - .query(true) - .reply(200, {"jobId":"6d5e859f-f822-4176-9382-b78ee62a84f7","lastUpdateDateTime":"2021-05-12T19:05:28Z","createdDateTime":"2021-05-12T19:05:28Z","expirationDateTime":"2021-05-13T19:05:28Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - '201072cd-54df-4d7a-96c4-0041f82bf54e', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:28 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/6d5e859f-f822-4176-9382-b78ee62a84f7') - .query(true) - .reply(200, {"jobId":"6d5e859f-f822-4176-9382-b78ee62a84f7","lastUpdateDateTime":"2021-05-12T19:05:28Z","createdDateTime":"2021-05-12T19:05:28Z","expirationDateTime":"2021-05-13T19:05:28Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - '1f3545d7-7821-4f08-a445-6841727b1f05', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:28 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/6d5e859f-f822-4176-9382-b78ee62a84f7') - .query(true) - .reply(200, {"jobId":"6d5e859f-f822-4176-9382-b78ee62a84f7","lastUpdateDateTime":"2021-05-12T19:05:28Z","createdDateTime":"2021-05-12T19:05:28Z","expirationDateTime":"2021-05-13T19:05:28Z","status":"notStarted","errors":[]}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '6', - 'apim-request-id', - 'b534b326-ed65-4634-a4d0-c846b347a6db', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:30 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/6d5e859f-f822-4176-9382-b78ee62a84f7') - .query(true) - .reply(200, {"jobId":"6d5e859f-f822-4176-9382-b78ee62a84f7","lastUpdateDateTime":"2021-05-12T19:05:32Z","createdDateTime":"2021-05-12T19:05:28Z","expirationDateTime":"2021-05-13T19:05:28Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[{"offset":28,"length":12,"text":"veterinarian","category":"HealthcareProfession","confidenceScore":0.96}],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-03-01"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '50', - 'apim-request-id', - '53f1bf40-4a8c-47f2-8095-ff4c41994d3f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:32 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/6d5e859f-f822-4176-9382-b78ee62a84f7') - .query(true) - .reply(200, {"jobId":"6d5e859f-f822-4176-9382-b78ee62a84f7","lastUpdateDateTime":"2021-05-12T19:05:32Z","createdDateTime":"2021-05-12T19:05:28Z","expirationDateTime":"2021-05-13T19:05:28Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[{"offset":28,"length":12,"text":"veterinarian","category":"HealthcareProfession","confidenceScore":0.96}],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-03-01"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '50', - 'apim-request-id', - '332370c4-caf8-42a0-a3e1-5733514a022c', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:05:32 GMT' -]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_fast_tests/recording_analyzesentiment.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.js similarity index 74% rename from sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_fast_tests/recording_analyzesentiment.js rename to sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.js index 05327b2c6ef0..6e969a2be151 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_fast_tests/recording_analyzesentiment.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_and_language.js @@ -1,11 +1,11 @@ let nock = require('nock'); -module.exports.hash = "88906a0070f31b4c51e9d7d54a7c9ccc"; +module.exports.hash = "3507106128a8c3279ca558497e4d0b6b"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/sentiment', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) + .post('//text/analytics/v3.1/sentiment', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) .query(true) .reply(200, {"documents":[{"id":"0","sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":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,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"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,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":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"}, [ 'Transfer-Encoding', @@ -15,13 +15,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', 'x-envoy-upstream-service-time', - '102', + '224', 'apim-request-id', - 'cc67e9b1-923b-4588-8ad6-4fe72d6a8bf2', + '6bf86c96-e682-41d0-902c-b718bb3c605a', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:03:38 GMT' + 'Fri, 25 Jun 2021 19:45:55 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.js new file mode 100644 index 000000000000..d5bb7bf789c8 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_string_with_no_language.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "bd1ef9032ab787da0c6aee257c7d1810"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/sentiment', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"id":"0","sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":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,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"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,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":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"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', + 'x-envoy-upstream-service-time', + '206', + 'apim-request-id', + 'd3e55650-011a-458b-85bc-83cb023bd2f9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:55 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.js new file mode 100644 index 000000000000..5980dc4ca72f --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_accepts_textdocumentinput.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "48ae2bd36a524f40c51f76e37f79ca4a"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/sentiment', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"I didn't like the last book I read at all.","language":"en"},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) + .query(true) + .reply(200, {"documents":[{"id":"1","sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":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,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"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,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":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"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6', + 'x-envoy-upstream-service-time', + '133', + 'apim-request-id', + 'b494b157-b1ea-4e7f-bb85-0913297eb89d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:59 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.js new file mode 100644 index 000000000000..fae0f073d836 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_negative_mined_assessments.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "01b84290224b19eda44a99f1f5f8866e"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/sentiment', {"documents":[{"id":"0","text":"The food and service is not good","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":32,"text":"The food and service is not good","targets":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":4,"length":4,"text":"food","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":13,"length":7,"text":"service","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"}]}],"assessments":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":28,"length":4,"text":"good","isNegated":true}]}],"warnings":[]}],"errors":[],"modelVersion":"2020-04-01"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '5058', + 'apim-request-id', + 'c5a5f501-ab66-426c-ba83-9d84c9f89a32', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:09 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.js new file mode 100644 index 000000000000..13a15d481d3e --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_no_mined_assessments.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "02fc8cd878126d65fa0c1a49402ba0b8"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/sentiment', {"documents":[{"id":"0","text":"today is a hot day","language":"en"}]}) + .query(true) + .reply(200, {"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","targets":[],"assessments":[]}],"warnings":[]}],"errors":[],"modelVersion":"2020-04-01"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '2562', + 'apim-request-id', + 'd5104a77-794c-4ed1-a5c4-8c626e593b75', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:11 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.js new file mode 100644 index 000000000000..42b6f674bc4b --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_gets_positive_mined_assessments.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "734b436c2a291e8271b3b7d3813b67f7"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/sentiment', {"documents":[{"id":"0","text":"It has a sleek premium aluminum design that makes it beautiful to look at.","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"id":"0","sentiment":"positive","confidenceScores":{"positive":0.98,"neutral":0.02,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":0.98,"neutral":0.02,"negative":0},"offset":0,"length":74,"text":"It has a sleek premium aluminum design that makes it beautiful to look at.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":32,"length":6,"text":"design","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/1"}]}],"assessments":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":9,"length":5,"text":"sleek","isNegated":false},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":15,"length":7,"text":"premium","isNegated":false}]}],"warnings":[]}],"errors":[],"modelVersion":"2020-04-01"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '5057', + 'apim-request-id', + 'dab9fbb9-3c9d-4e34-9a67-b81c96f5a8a1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:04 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.js new file mode 100644 index 000000000000..c95373820b10 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_client_throws_on_empty_list.js @@ -0,0 +1,5 @@ +let nock = require('nock'); + +module.exports.hash = "da56d9c74392fe1ab68ada4cc5812bcb"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.js new file mode 100644 index 000000000000..9f9c95d9e27c --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_has_a_bug_when_referencing_assessments_in_doc_6_or_greater.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "a157febd45a30a9364c39af353c5a125"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/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","targets":[{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":4,"length":4,"text":"food","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/0/assessments/0"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":30,"length":2,"text":"AC","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/1/assessments/0"},{"relationType":"assessment","ref":"#/documents/1/sentences/1/assessments/1"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":9,"text":"breakfast","relations":[{"relationType":"assessment","ref":"#/documents/2/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":32,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/2/sentences/0/assessments/1"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":11,"length":5,"text":"hotel","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/0"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":24,"length":9,"text":"breakfast","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/1"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":41,"length":15,"text":"shuttle service","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/2"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":65,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/1"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/3"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/2"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":0.97,"negative":0.03},"offset":27,"length":4,"text":"view","relations":[{"relationType":"assessment","ref":"#/documents/4/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/4/sentences/0/assessments/1"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":5,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/5/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":15,"length":9,"text":"bathrooms","relations":[{"relationType":"assessment","ref":"#/documents/5/sentences/0/assessments/1"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":42,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/5/sentences/0/assessments/2"}]}],"assessments":[{"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.","targets":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":4,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/6/sentences/0/assessments/0"}]}],"assessments":[{"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,CognitiveServices.TextAnalytics.TextRecords=7', + 'x-envoy-upstream-service-time', + '2624', + 'apim-request-id', + '534d2cfc-9116-4966-8038-fd3adf90eda9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:58 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.js new file mode 100644 index 000000000000..3994f38c6448 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_an_error_for_an_empty_document.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "29742e141f59dfc99d625ed5ffffe81f"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/sentiment', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"I didn't like the last book I read at all.","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"id":"0","sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":0.99,"neutral":0.01,"negative":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,"neutral":0,"negative":1},"sentences":[{"sentiment":"negative","confidenceScores":{"positive":0,"neutral":0,"negative":1},"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,"neutral":0,"negative":0},"sentences":[{"sentiment":"positive","confidenceScores":{"positive":1,"neutral":0,"negative":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"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', + 'x-envoy-upstream-service-time', + '245', + 'apim-request-id', + 'a3346621-81b1-43e8-bee3-1b7f6f8fe83c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:58 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.js new file mode 100644 index 000000000000..19df78e8d5f3 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_analyzesentiment/recording_service_returns_error_for_invalid_language.js @@ -0,0 +1,25 @@ +let nock = require('nock'); + +module.exports.hash = "8c94fa8da2c7dc61a44b79f6f91a3472"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/sentiment', {"documents":[{"id":"0","text":"Hello world!","language":"notalanguage"}]}) + .query(true) + .reply(200, {"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: de,en,es,fr,hi,it,ja,ko,nl,no,pt-BR,pt-PT,tr,zh-Hans,zh-Hant. For additional details see https://aka.ms/text-analytics/language-support?tabs=sentiment-analysis"}}}],"modelVersion":"2020-04-01"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '3', + 'apim-request-id', + 'b2697f9d-10ad-4737-9dc9-84719148ebc2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:45:55 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_fast_tests/recording_detectlanguage.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.js similarity index 73% rename from sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_fast_tests/recording_detectlanguage.js rename to sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.js index f7610079f68e..90d9d24b0ef1 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_fast_tests/recording_detectlanguage.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_a_countryhint.js @@ -1,11 +1,11 @@ let nock = require('nock'); -module.exports.hash = "011704cf4c593ae333fe972e8b0b70bf"; +module.exports.hash = "c05939b25e4a8a5b449063e05b2d2fd7"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/languages', {"documents":[{"id":"0","text":"impossible","countryHint":"fr"}]}) + .post('//text/analytics/v3.1/languages', {"documents":[{"id":"0","text":"impossible","countryHint":"fr"}]}) .reply(200, {"documents":[{"id":"0","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":0.58},"warnings":[]}],"errors":[],"modelVersion":"2021-01-05"}, [ 'Transfer-Encoding', 'chunked', @@ -14,13 +14,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '30', + '8', 'apim-request-id', - '716ba06f-8c1f-49c3-8f63-a5eb5cb9bc8f', + 'fe7dbc13-f100-4fd0-ac71-41d7e8531dee', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:03:38 GMT' + 'Fri, 25 Jun 2021 19:46:11 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.js new file mode 100644 index 000000000000..57cdfa59b95d --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_mixedcountry_detectlanguageinput.js @@ -0,0 +1,26 @@ +let nock = require('nock'); + +module.exports.hash = "9ec7001ef3eb203b0937c0c2e70a4012"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/languages', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected."},{"id":"4","text":"I didn't like the last book I read at all."},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","countryHint":"mx"},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","countryHint":"mx"}]}) + .reply(200, {"documents":[{"id":"1","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"2","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"3","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"4","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"5","detectedLanguage":{"name":"Spanish","iso6391Name":"es","confidenceScore":0.99},"warnings":[]},{"id":"6","detectedLanguage":{"name":"Spanish","iso6391Name":"es","confidenceScore":1},"warnings":[]}],"errors":[],"modelVersion":"2021-01-05"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6', + 'x-envoy-upstream-service-time', + '9', + 'apim-request-id', + '8eb697f5-1a52-4510-9d62-073660710184', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:12 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.js new file mode 100644 index 000000000000..f2cdd970449a --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_no_countryhint.js @@ -0,0 +1,26 @@ +let nock = require('nock'); + +module.exports.hash = "89cc2d404cb94fe1fea0b7034c65a3d5"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/languages', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","countryHint":"us"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","countryHint":"us"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","countryHint":"us"},{"id":"3","text":"I didn't like the last book I read at all.","countryHint":"us"}]}) + .reply(200, {"documents":[{"id":"0","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"1","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"2","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"3","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]}],"errors":[],"modelVersion":"2021-01-05"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '6f4d87cc-eef9-4edf-8cb9-797b416141b8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:11 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.js new file mode 100644 index 000000000000..eb4d41b55d98 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_detectlanguageinput_input.js @@ -0,0 +1,26 @@ +let nock = require('nock'); + +module.exports.hash = "34a686d31604ca12247f82344cf7f08a"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/languages', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","countryHint":""},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","countryHint":""},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","countryHint":""},{"id":"4","text":"I didn't like the last book I read at all.","countryHint":""},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","countryHint":""},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","countryHint":""}]}) + .reply(200, {"documents":[{"id":"1","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"2","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"3","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"4","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":1},"warnings":[]},{"id":"5","detectedLanguage":{"name":"Spanish","iso6391Name":"es","confidenceScore":0.99},"warnings":[]},{"id":"6","detectedLanguage":{"name":"Spanish","iso6391Name":"es","confidenceScore":1},"warnings":[]}],"errors":[],"modelVersion":"2021-01-05"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6', + 'x-envoy-upstream-service-time', + '9', + 'apim-request-id', + 'c7f6fada-ff74-4998-8c40-e49326203353', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:11 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_fast_tests/recording_extractkeyphrases.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.js similarity index 54% rename from sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_fast_tests/recording_extractkeyphrases.js rename to sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.js index 3fe75ffd80fd..70c6bc98340f 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_fast_tests/recording_extractkeyphrases.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_accepts_none_country_hint_with_string_input.js @@ -1,12 +1,12 @@ let nock = require('nock'); -module.exports.hash = "3329879bc0c7f14471144f11befb757c"; +module.exports.hash = "ef69fca0065615995d37fba2821ced2e"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/keyPhrases', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last weekend","language":"en"}]}) - .reply(200, {"documents":[{"id":"0","keyPhrases":["wonderful trip","Seattle","weekend"],"warnings":[]}],"errors":[],"modelVersion":"2020-07-01"}, [ + .post('//text/analytics/v3.1/languages', {"documents":[{"id":"0","text":"I use Azure Functions to develop my service.","countryHint":""}]}) + .reply(200, {"documents":[{"id":"0","detectedLanguage":{"name":"English","iso6391Name":"en","confidenceScore":0.95},"warnings":[]}],"errors":[],"modelVersion":"2021-01-05"}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -14,13 +14,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '23', + '7', 'apim-request-id', - '0637a396-df61-42a9-b1f4-3b75475c5d53', + 'aacee91f-7055-427d-ba98-c0a7f16c2fa1', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:03:38 GMT' + 'Fri, 25 Jun 2021 19:46:11 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.js new file mode 100644 index 000000000000..ce14b08bdfab --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_client_throws_on_empty_list.js @@ -0,0 +1,5 @@ +let nock = require('nock'); + +module.exports.hash = "0f2053daa7f89a4ab190012374379df9"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.js new file mode 100644 index 000000000000..f54af6b76cbf --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_detectlanguage/recording_service_errors_on_invalid_country_hint.js @@ -0,0 +1,24 @@ +let nock = require('nock'); + +module.exports.hash = "b5935ccd1f790970d86fe93b4a0414a9"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/languages', {"documents":[{"id":"0","text":"hello","countryHint":"invalidcountry"}]}) + .reply(200, {"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":"2021-01-05"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '2', + 'apim-request-id', + '24703876-d064-4de2-8203-27843d8d30f2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:12 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.js new file mode 100644 index 000000000000..f20eb4f687da --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_mixedlanguage_textdocumentinput.js @@ -0,0 +1,26 @@ +let nock = require('nock'); + +module.exports.hash = "ff532ec002c3a730a118f602c709956e"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/keyPhrases', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"I didn't like the last book I read at all.","language":"en"},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) + .reply(200, {"documents":[{"id":"1","keyPhrases":["wonderful trip","Space Needle","Seattle"],"warnings":[]},{"id":"2","keyPhrases":["entire trip","Seattle","Space","Needle"],"warnings":[]},{"id":"3","keyPhrases":["movie","Saturday"],"warnings":[]},{"id":"4","keyPhrases":["last book"],"warnings":[]},{"id":"5","keyPhrases":["Los","caminos","Monte","Rainier"],"warnings":[]},{"id":"6","keyPhrases":["mucho tráfico","carretera","ayer"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=6,CognitiveServices.TextAnalytics.TextRecords=6', + 'x-envoy-upstream-service-time', + '5044', + 'apim-request-id', + 'b99cee53-4013-47e0-a4a8-2d6af09a16f0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:33 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.js new file mode 100644 index 000000000000..acc7eb30a683 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_a_language_specified.js @@ -0,0 +1,26 @@ +let nock = require('nock'); + +module.exports.hash = "ad87a0e6d3e4602e10fad4d7f20878a3"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/keyPhrases', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) + .reply(200, {"documents":[{"id":"0","keyPhrases":["wonderful trip","Space Needle","Seattle"],"warnings":[]},{"id":"1","keyPhrases":["entire trip","Seattle","Space","Needle"],"warnings":[]},{"id":"2","keyPhrases":["movie","Saturday"],"warnings":[]},{"id":"3","keyPhrases":["last book"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', + 'x-envoy-upstream-service-time', + '40', + 'apim-request-id', + '3eda53d9-cc23-46a3-9507-ee5aaf90b35d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:28 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.js new file mode 100644 index 000000000000..0f3f2dbf03eb --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_accepts_string_with_no_language.js @@ -0,0 +1,26 @@ +let nock = require('nock'); + +module.exports.hash = "c75abe4f2185017d992d99f9801ed2b0"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/keyPhrases', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) + .reply(200, {"documents":[{"id":"0","keyPhrases":["wonderful trip","Space Needle","Seattle"],"warnings":[]},{"id":"1","keyPhrases":["entire trip","Seattle","Space","Needle"],"warnings":[]},{"id":"2","keyPhrases":["movie","Saturday"],"warnings":[]},{"id":"3","keyPhrases":["last book"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', + 'x-envoy-upstream-service-time', + '27', + 'apim-request-id', + '55d429d9-20ba-4237-b4d3-fd9e1704ceb7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:28 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.js new file mode 100644 index 000000000000..5ca4232a9555 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_client_throws_on_empty_list.js @@ -0,0 +1,5 @@ +let nock = require('nock'); + +module.exports.hash = "1da9dde1005954f5437f8bb9acccb669"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.js new file mode 100644 index 000000000000..47852c26711d --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_extractkeyphrases/recording_service_errors_on_unsupported_language.js @@ -0,0 +1,24 @@ +let nock = require('nock'); + +module.exports.hash = "07ba90642ab2e400b301dc4c52ba2470"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/keyPhrases', {"documents":[{"id":"0","text":"This is some text, but it doesn't matter.","language":"notalanguage"}]}) + .reply(200, {"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,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2021-06-01"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '3', + 'apim-request-id', + 'b08a51d5-24e3-4e32-a56a-e7601776f6f2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:28 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.js new file mode 100644 index 000000000000..d0839af18728 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_mixedlanguage_textdocumentinput.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "23549fef03bb60ac4471d7a0e28e0946"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/general', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"5","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) + .query(true) + .reply(200, {"documents":[{"id":"1","entities":[{"text":"trip","category":"Event","offset":18,"length":4,"confidenceScore":0.65},{"text":"Seattle","category":"Location","subcategory":"GPE","offset":26,"length":7,"confidenceScore":1},{"text":"last week","category":"DateTime","subcategory":"DateRange","offset":34,"length":9,"confidenceScore":0.8},{"text":"Space Needle","category":"Location","offset":65,"length":12,"confidenceScore":0.95},{"text":"2","category":"Quantity","subcategory":"Number","offset":78,"length":1,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"trip","category":"Event","offset":42,"length":4,"confidenceScore":0.79},{"text":"Seattle","category":"Location","subcategory":"GPE","offset":50,"length":7,"confidenceScore":1},{"text":"Space Needle","category":"Location","offset":90,"length":12,"confidenceScore":0.94}],"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.74}],"warnings":[]},{"id":"5","entities":[{"text":"carretera","category":"Location","offset":3,"length":9,"confidenceScore":0.84},{"text":"ayer","category":"DateTime","subcategory":"Date","offset":60,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5', + 'x-envoy-upstream-service-time', + '5072', + 'apim-request-id', + 'e3d22895-fc17-4696-8545-1c93a729413d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:27 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.js new file mode 100644 index 000000000000..648bb87636e7 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_a_language_specified.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "83584ef1a3c2eeae474a1cfee3684ba8"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/general', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"id":"0","entities":[{"text":"trip","category":"Event","offset":18,"length":4,"confidenceScore":0.65},{"text":"Seattle","category":"Location","subcategory":"GPE","offset":26,"length":7,"confidenceScore":1},{"text":"last week","category":"DateTime","subcategory":"DateRange","offset":34,"length":9,"confidenceScore":0.8},{"text":"Space Needle","category":"Location","offset":65,"length":12,"confidenceScore":0.95},{"text":"2","category":"Quantity","subcategory":"Number","offset":78,"length":1,"confidenceScore":0.8}],"warnings":[]},{"id":"1","entities":[{"text":"trip","category":"Event","offset":42,"length":4,"confidenceScore":0.79},{"text":"Seattle","category":"Location","subcategory":"GPE","offset":50,"length":7,"confidenceScore":1},{"text":"Space Needle","category":"Location","offset":90,"length":12,"confidenceScore":0.94}],"warnings":[]},{"id":"2","entities":[{"text":"Saturday","category":"DateTime","subcategory":"Date","offset":25,"length":8,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"book","category":"Product","offset":23,"length":4,"confidenceScore":0.93}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', + 'x-envoy-upstream-service-time', + '5064', + 'apim-request-id', + 'b3a664d5-6773-4500-aa59-b51da8150b0c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:22 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.js new file mode 100644 index 000000000000..b2c3b3884c47 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_accepts_string_with_no_language.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "7fb8abf5b43b82fbe7da1ad591b70f07"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/general', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"id":"0","entities":[{"text":"trip","category":"Event","offset":18,"length":4,"confidenceScore":0.65},{"text":"Seattle","category":"Location","subcategory":"GPE","offset":26,"length":7,"confidenceScore":1},{"text":"last week","category":"DateTime","subcategory":"DateRange","offset":34,"length":9,"confidenceScore":0.8},{"text":"Space Needle","category":"Location","offset":65,"length":12,"confidenceScore":0.95},{"text":"2","category":"Quantity","subcategory":"Number","offset":78,"length":1,"confidenceScore":0.8}],"warnings":[]},{"id":"1","entities":[{"text":"trip","category":"Event","offset":42,"length":4,"confidenceScore":0.79},{"text":"Seattle","category":"Location","subcategory":"GPE","offset":50,"length":7,"confidenceScore":1},{"text":"Space Needle","category":"Location","offset":90,"length":12,"confidenceScore":0.94}],"warnings":[]},{"id":"2","entities":[{"text":"Saturday","category":"DateTime","subcategory":"Date","offset":25,"length":8,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"book","category":"Product","offset":23,"length":4,"confidenceScore":0.93}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', + 'x-envoy-upstream-service-time', + '5076', + 'apim-request-id', + 'c121601e-d909-4119-9633-214c3106cf39', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:16 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.js new file mode 100644 index 000000000000..8e18ce009bd9 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_exception_for_too_many_inputs.js @@ -0,0 +1,25 @@ +let nock = require('nock'); + +module.exports.hash = "0029a0cad6c6f82703376540f0bd3d32"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/general', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"I didn't like the last book I read at all.","language":"en"},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) + .query(true) + .reply(400, {"error":{"code":"InvalidRequest","message":"Invalid document in request.","innererror":{"code":"InvalidDocumentBatch","message":"Batch request contains too many records. Max 5 records are permitted."}}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + '9b94e613-661b-4064-bec6-47f3e09ad4a8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:28 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.js new file mode 100644 index 000000000000..1185910205a2 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_client_throws_on_empty_list.js @@ -0,0 +1,5 @@ +let nock = require('nock'); + +module.exports.hash = "bbec3f3747719fefd0480adad1387e7d"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.js new file mode 100644 index 000000000000..ae6f43806035 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizeentities/recording_service_errors_on_unsupported_language.js @@ -0,0 +1,25 @@ +let nock = require('nock'); + +module.exports.hash = "d15e29b1e7c287a6a7f9f4eb38f2a277"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/general', {"documents":[{"id":"0","text":"This is some text, but it doesn't matter.","language":"notalanguage"}]}) + .query(true) + .reply(200, {"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. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-06-01"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '3', + 'apim-request-id', + '0cff3d6d-5faa-415c-8312-3fa25dfaab3a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:22 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.js new file mode 100644 index 000000000000..92593f31ca0a --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_mixedlanguage_textdocumentinput.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "9063fb3ac884b0e8a06b081f163417b9"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/linking', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"5","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) + .query(true) + .reply(200, {"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":"2021-06-01"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5', + 'x-envoy-upstream-service-time', + '35', + 'apim-request-id', + 'c55d40aa-168d-446b-b48d-5a802f9ce0b0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:52 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.js new file mode 100644 index 000000000000..310e49e61dd0 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_a_language_specified.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "40df1b35e0e23c65c61cb7f625d8c956"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/linking', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) + .query(true) + .reply(200, {"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":"2021-06-01"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', + 'x-envoy-upstream-service-time', + '15', + 'apim-request-id', + 'b3327d84-0ee6-4d4f-b5ce-7e00ed2a5971', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:52 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.js new file mode 100644 index 000000000000..08ac92ae5253 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_accepts_string_with_no_language.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "fd9441430a75f4afcd27d4647131a0f0"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/linking', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) + .query(true) + .reply(200, {"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":"2021-06-01"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', + 'x-envoy-upstream-service-time', + '24', + 'apim-request-id', + '49de87c4-1bb0-45c3-b76c-812621723641', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:52 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.js new file mode 100644 index 000000000000..e1f681369dd7 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_exception_for_too_many_inputs.js @@ -0,0 +1,25 @@ +let nock = require('nock'); + +module.exports.hash = "0029a0cad6c6f82703376540f0bd3d32"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/general', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"I didn't like the last book I read at all.","language":"en"},{"id":"5","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"6","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) + .query(true) + .reply(400, {"error":{"code":"InvalidRequest","message":"Invalid document in request.","innererror":{"code":"InvalidDocumentBatch","message":"Batch request contains too many records. Max 5 records are permitted."}}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '5', + 'apim-request-id', + 'dbdea2ac-465a-43ea-9a95-88850cf03206', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:52 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.js new file mode 100644 index 000000000000..b70a1257a453 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_client_throws_on_empty_list.js @@ -0,0 +1,5 @@ +let nock = require('nock'); + +module.exports.hash = "a18c30f77c1c7c0ed35bbd9a51da7e8d"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.js new file mode 100644 index 000000000000..960a38a41adb --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizelinkedentities/recording_service_errors_on_unsupported_language.js @@ -0,0 +1,25 @@ +let nock = require('nock'); + +module.exports.hash = "fad55cf856722b5497b225d29f822c2b"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/linking', {"documents":[{"id":"0","text":"This is some text, but it doesn't matter.","language":"notalanguage"}]}) + .query(true) + .reply(200, {"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-06-01"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '4', + 'apim-request-id', + '2b9fcdf6-f28a-4957-be9a-f4d222d5a697', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:52 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.js new file mode 100644 index 000000000000..aca14b6b0b6f --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_domain_filter.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "0503abe68a40b8eb9a93ee2d07ce5d93"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"I work at Microsoft and my phone number is 333-333-3333","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"I work at ********* and my phone number is ************","id":"0","entities":[{"text":"Microsoft","category":"Organization","offset":10,"length":9,"confidenceScore":0.95},{"text":"333-333-3333","category":"PhoneNumber","offset":43,"length":12,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '2534', + 'apim-request-id', + 'f3f746fc-859a-4b22-93f7-6fc3685b8d96', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:51 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.js new file mode 100644 index 000000000000..5ee9ef260a55 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_accepts_pii_categories.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "e022d94350f7224141f9cd7cdfdf4cc3"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"Patient name is Joe and SSN is 859-98-0987","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"Patient name is Joe and SSN is ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":31,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '35', + 'apim-request-id', + 'd35a68f7-b439-4672-b837-327754eb7ca3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:52 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.js new file mode 100644 index 000000000000..fd68b1dcec53 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_mixedlanguage_textdocumentinput.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "c102b5dfd1ffe2c563f80ba16ae00455"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"1","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"2","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"3","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"4","text":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","language":"es"},{"id":"5","text":"La carretera estaba atascada. Había mucho tráfico el día de ayer.","language":"es"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!","id":"1","entities":[{"text":"last week","category":"DateTime","subcategory":"DateRange","offset":34,"length":9,"confidenceScore":0.8}],"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":[]},{"redactedText":"Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.","id":"4","entities":[],"warnings":[]},{"redactedText":"La carretera estaba atascada. Había mucho tráfico el día de ****.","id":"5","entities":[{"text":"ayer","category":"DateTime","subcategory":"Date","offset":60,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=5,CognitiveServices.TextAnalytics.TextRecords=5', + 'x-envoy-upstream-service-time', + '5066', + 'apim-request-id', + '8ee3d4a5-c25e-4145-914f-bc42c8f098c6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:49 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.js new file mode 100644 index 000000000000..62d6773358a1 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_a_language_specified.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "4e3cd609c00a705d03d31f2bf28dfaa2"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!","id":"0","entities":[{"text":"last week","category":"DateTime","subcategory":"DateRange","offset":34,"length":9,"confidenceScore":0.8}],"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":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', + 'x-envoy-upstream-service-time', + '5043', + 'apim-request-id', + '63efa529-68ec-4cd9-8dc5-211fb6fa1a21', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:43 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.js new file mode 100644 index 000000000000..5cb19b45a5e4 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_accepts_string_with_no_language.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "fcd73fcb0c4205d92a523635756d6383"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!","language":"en"},{"id":"1","text":"Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle","language":"en"},{"id":"2","text":"I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.","language":"en"},{"id":"3","text":"I didn't like the last book I read at all.","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"I had a wonderful trip to Seattle ********* and even visited the Space Needle 2 times!","id":"0","entities":[{"text":"last week","category":"DateTime","subcategory":"DateRange","offset":34,"length":9,"confidenceScore":0.8}],"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":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=4,CognitiveServices.TextAnalytics.TextRecords=4', + 'x-envoy-upstream-service-time', + '5066', + 'apim-request-id', + '83168de8-5976-47ca-802a-8abdee1e9a5c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:38 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.js new file mode 100644 index 000000000000..00df02500435 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_correctly_reports_recognition_of_piilike_pattern.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "630be62a5cda2962b4bbaad3db24f9e1"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"Your Social Security Number is 859-98-0987.","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"Your Social Security Number is ***********.","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":31,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '25', + 'apim-request-id', + '94a3a63c-b68e-480e-9af0-ec59562d5343', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:43 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.js new file mode 100644 index 000000000000..f7dfe4b4c8c8 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_client_throws_on_empty_list.js @@ -0,0 +1,25 @@ +let nock = require('nock'); + +module.exports.hash = "ab91690f5ef35c8898e38f3c835cbc21"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[]}) + .query(true) + .reply(400, {"error":{"code":"InvalidRequest","message":"Invalid Request.","innererror":{"code":"MissingInputRecords","message":"Missing input records."}}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '5', + 'apim-request-id', + 'ed2c4a20-3ceb-4a14-9635-ad5e99a500eb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:33 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.js new file mode 100644 index 000000000000..c94b5b87a6e9 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_output_pii_categories_are_accepted_as_input.js @@ -0,0 +1,49 @@ +let nock = require('nock'); + +module.exports.hash = "ccbce5fd6d6bbc1f2ea2f7507f99ae07"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"Patient name is Joe and SSN is 859-98-0987","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"Patient name is *** and SSN is ***********","id":"0","entities":[{"text":"Joe","category":"Person","offset":16,"length":3,"confidenceScore":0.79},{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":31,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '51', + 'apim-request-id', + '9d4447db-d300-4585-b5ae-e516f64202a5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:52 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"Patient name is Joe and SSN is 859-98-0987","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"Patient name is Joe and SSN is ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":31,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '34', + 'apim-request-id', + 'a2a44f5d-1241-4cf8-aaa8-aee99452054a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:52 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.js new file mode 100644 index 000000000000..bd310fa03d30 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_recognizepiientities/recording_service_errors_on_unsupported_language.js @@ -0,0 +1,25 @@ +let nock = require('nock'); + +module.exports.hash = "7a84168b9a25f213e63eae0d9e947364"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"This is some text, but it doesn't matter.","language":"notalanguage"}]}) + .query(true) + .reply(200, {"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,pt-BR,pt-PT,zh-Hans. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '2', + 'apim-request-id', + 'dabb87d7-37d0-4177-b570-490c3c10d0b0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:43 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_fast_tests/recording_recognizepiientities.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.js similarity index 51% rename from sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_fast_tests/recording_recognizepiientities.js rename to sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.js index d154965b8790..d71ff0bf34fd 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_fast_tests/recording_recognizepiientities.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfc.js @@ -1,13 +1,13 @@ let nock = require('nock'); -module.exports.hash = "39d767990aa13284c06a99b13d97e5ad"; +module.exports.hash = "5bf2e604e0628fd3b31f70ada6ce84f6"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/recognition/pii', {"documents":[{"id":"0","text":"Your social-security number is 078-05-1120.","language":"en"}]}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) .query(true) - .reply(200, {"documents":[{"redactedText":"Your social-security number is 078-05-1120.","id":"0","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + .reply(200, {"documents":[{"redactedText":"año SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":9,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -15,13 +15,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'csp-billing-usage', 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', 'x-envoy-upstream-service-time', - '2542', + '27', 'apim-request-id', - '3547aced-639f-40bc-966d-189d13adca33', + '1c04e43e-36d1-4e92-91e3-89773beb99af', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:03:47 GMT' + 'Tue, 29 Jun 2021 21:09:26 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.js new file mode 100644 index 000000000000..a61cbd7b4eab --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_diacritics_nfd.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "0f494b4e64cd921825d9a4e50c6dbda1"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"año SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":10,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '51', + 'apim-request-id', + '9e131f91-c50f-471e-942f-8bbddb154d82', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Tue, 29 Jun 2021 21:09:26 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.js new file mode 100644 index 000000000000..4a3e7916b2e6 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "8bfa650b81f420a536e37e515893d93e"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"👩 SSN: 859-98-0987","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"👩 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '30', + 'apim-request-id', + 'c6162a92-f5c7-42c4-b1e4-7821b7826d03', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Tue, 29 Jun 2021 21:09:26 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.js new file mode 100644 index 000000000000..017b894a5959 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_emoji_with_skin_tone_modifier.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "8ae61a024f008f240e95480d720e5a8f"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻 SSN: 859-98-0987","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"👩🏻 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":10,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '54', + 'apim-request-id', + 'a23236fe-6387-4f19-9d57-06f2754398cf', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Tue, 29 Jun 2021 21:09:26 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.js new file mode 100644 index 000000000000..9815f91c408a --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "3c85f6e020029eb63af79a1fb11eb3b9"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"👩‍👩‍👧‍👧 SSN: 859-98-0987","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"👩‍👩‍👧‍👧 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":17,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '76', + 'apim-request-id', + 'e966ab45-ee10-4ebd-beae-f4f3d4a12617', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Tue, 29 Jun 2021 21:09:26 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_wit_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_wit_skin_tone_modifier.js new file mode 100644 index 000000000000..95f601a5f78b --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_family_emoji_wit_skin_tone_modifier.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "d608400bb61b4dcbcb0e6a1c9134135f"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":25,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '36', + 'apim-request-id', + 'c4e9c699-aaaa-4ebe-95de-9cc7c7e684a6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Tue, 29 Jun 2021 21:09:26 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.js new file mode 100644 index 000000000000..3c927147ce16 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfc.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "1ad6b9965c6e725eee13801e249e18ff"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"아가 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '31', + 'apim-request-id', + 'e8a09a7e-9987-4afc-b5c5-6fd3423fa553', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Tue, 29 Jun 2021 21:09:26 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.js new file mode 100644 index 000000000000..f60b6957dbe2 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_korean_nfd.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "1ad6b9965c6e725eee13801e249e18ff"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"아가 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '30', + 'apim-request-id', + '45cf5498-3dc0-497f-95f8-6d4c67197c21', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Tue, 29 Jun 2021 21:09:26 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.js new file mode 100644 index 000000000000..a6487a1f9f5c --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_default_encoding_utf16codeunit/recording_zalgo.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "54fd02130ea13f400927c60587190bde"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":121,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '234', + 'apim-request-id', + 'be169af7-ebd8-4e5b-b2c1-4d9be9539285', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Tue, 29 Jun 2021 21:09:27 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.js new file mode 100644 index 000000000000..611335f3ddad --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfc.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "89a51aa4719dd90f068e5b56f6377757"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"año SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":9,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '27', + 'apim-request-id', + 'f13828cd-695e-4a25-a95a-c205d0caf933', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Tue, 29 Jun 2021 21:09:29 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.js new file mode 100644 index 000000000000..c84d90354b77 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_diacritics_nfd.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "1d119e0985c97360d15d4d8824690d99"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"año SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":9,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '28', + 'apim-request-id', + '846b3e36-a880-4cf4-a73d-595286142243', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Tue, 29 Jun 2021 21:09:29 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.js new file mode 100644 index 000000000000..bc5de81c608f --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "83521e8e248437ee2888e1997b206de7"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"👩 SSN: 859-98-0987","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"👩 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":7,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '34', + 'apim-request-id', + 'c1839360-d190-4983-90ec-c257843ef126', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Tue, 29 Jun 2021 21:09:28 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.js new file mode 100644 index 000000000000..a8553639e619 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_emoji_with_skin_tone_modifier.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "38e0c461acfe3ddca957670d86bdac0d"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻 SSN: 859-98-0987","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"👩🏻 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '32', + 'apim-request-id', + '220e6fbb-9276-4406-b54a-f1cf1bd04db0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Tue, 29 Jun 2021 21:09:28 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.js new file mode 100644 index 000000000000..9eb1860ff2d5 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "f9f7157c7614ec76faec095e88df709e"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"👩‍👩‍👧‍👧 SSN: 859-98-0987","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"👩‍👩‍👧‍👧 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":13,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '65', + 'apim-request-id', + '5c047447-a3ba-4e22-87bd-45808bc745cb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Tue, 29 Jun 2021 21:09:28 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_wit_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_wit_skin_tone_modifier.js new file mode 100644 index 000000000000..4cede8f7c31a --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_family_emoji_wit_skin_tone_modifier.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "83e235083503e938867e37c3a69e1f27"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":17,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '44', + 'apim-request-id', + '6f4d2fd2-5d58-4f2b-83b9-9d7b0357ea4e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Tue, 29 Jun 2021 21:09:29 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.js new file mode 100644 index 000000000000..90383dfe1836 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfc.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "80f00807f4e5acb097b5d87cf6797700"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"아가 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '31', + 'apim-request-id', + 'bef777d4-f335-4fa8-b83f-97ca3d795947', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Tue, 29 Jun 2021 21:09:29 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.js new file mode 100644 index 000000000000..bf826ed98896 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_korean_nfd.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "80f00807f4e5acb097b5d87cf6797700"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"아가 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '31', + 'apim-request-id', + 'a5782fff-c85a-49f1-b296-f205fcac6c83', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Tue, 29 Jun 2021 21:09:29 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.js new file mode 100644 index 000000000000..c6674f3c48f6 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_textelement_v8/recording_zalgo.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "3d8f5ff2696a159219b33712bbe0cd93"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":9,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '118', + 'apim-request-id', + '3b29306c-1a31-49f8-a92b-66d21a6ca9f3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Tue, 29 Jun 2021 21:09:29 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.js new file mode 100644 index 000000000000..2dc09f9bb8da --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfc.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "75554aece4db56a794c8fd18e29f84aa"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"año SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":9,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '53', + 'apim-request-id', + 'b3f0d0ed-d4b1-4dd4-8105-2a0d912d785a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Tue, 29 Jun 2021 21:09:27 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.js new file mode 100644 index 000000000000..8921be37d0a0 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_diacritics_nfd.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "29c8e9f857f7d02d5af8c0102f103450"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"año SSN: 859-98-0987","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"año SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":10,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '29', + 'apim-request-id', + 'ed75ca7b-d2de-412d-a732-bd6ddda1c42e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Tue, 29 Jun 2021 21:09:28 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.js new file mode 100644 index 000000000000..50307e05c3f1 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "12b6a334f86fe91d41114a8211ae608e"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"👩 SSN: 859-98-0987","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"👩 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":7,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '57', + 'apim-request-id', + 'bb9a8eb9-529a-4c54-b2c5-9d810573fd50', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Tue, 29 Jun 2021 21:09:27 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.js new file mode 100644 index 000000000000..a1c0b1271699 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_emoji_with_skin_tone_modifier.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "7c8d4de95da91bbbef328a9fd5fde2f1"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻 SSN: 859-98-0987","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"👩🏻 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '57', + 'apim-request-id', + '21088fa7-8140-4ef0-bacf-2e09e7797961', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Tue, 29 Jun 2021 21:09:27 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.js new file mode 100644 index 000000000000..f914f56836f4 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "6e5e53c2e27941c69921ae711a3d42b5"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"👩‍👩‍👧‍👧 SSN: 859-98-0987","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"👩‍👩‍👧‍👧 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":13,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '37', + 'apim-request-id', + '3caac812-9ec1-4e27-b26b-7c2365e2bbc4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Tue, 29 Jun 2021 21:09:27 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_wit_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_wit_skin_tone_modifier.js new file mode 100644 index 000000000000..1a2f9302e4be --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_family_emoji_wit_skin_tone_modifier.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "d2d93f114abe1fa04b62c793fc5dc2c9"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":17,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '72', + 'apim-request-id', + '9b7685e5-cb31-408d-b068-c05219b7ba5c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Tue, 29 Jun 2021 21:09:27 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.js new file mode 100644 index 000000000000..c412445f8d0b --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfc.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "f91e444e2f56aecc8a364f85827407d8"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"아가 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '56', + 'apim-request-id', + '0d2491d7-b432-4d99-b3e6-fa6d427e1ab1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Tue, 29 Jun 2021 21:09:28 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.js new file mode 100644 index 000000000000..674e9b7332e8 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_korean_nfd.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "f91e444e2f56aecc8a364f85827407d8"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"아가 SSN: 859-98-0987","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"아가 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":8,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '30', + 'apim-request-id', + '5212fff5-bae6-4116-b97d-dbf8314a73c4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Tue, 29 Jun 2021 21:09:28 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.js new file mode 100644 index 000000000000..e1961c304849 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_fast_tests_string_encoding_unicodecodepoint/recording_zalgo.js @@ -0,0 +1,27 @@ +let nock = require('nock'); + +module.exports.hash = "c88cafad4fdf81af74bb9cc82d9b2af9"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/recognition/pii', {"documents":[{"id":"0","text":"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987","language":"en"}]}) + .query(true) + .reply(200, {"documents":[{"redactedText":"ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":121,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'csp-billing-usage', + 'CognitiveServices.TextAnalytics.BatchScoring=1,CognitiveServices.TextAnalytics.TextRecords=1', + 'x-envoy-upstream-service-time', + '215', + 'apim-request-id', + '4a910c4c-0540-4209-a606-4e1321d644db', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Tue, 29 Jun 2021 21:09:28 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.js new file mode 100644 index 000000000000..5115fc984bd9 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_all_documents_with_errors_and_multiple_actions.js @@ -0,0 +1,324 @@ +let nock = require('nock'); + +module.exports.hash = "b049e4ddfd7c51daa804a404b9c3e1d8"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"1","text":"","language":""},{"id":"2","text":"I did not like the hotel we stayed at. It was too expensive.","language":"english"},{"id":"3","text":"","language":"en"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/d6d8037e-0aef-4b62-9e71-f7d68abfe02e', + 'x-envoy-upstream-service-time', + '353', + 'apim-request-id', + '4d89403a-8d99-40dc-8d28-28777344ec68', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:41 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/d6d8037e-0aef-4b62-9e71-f7d68abfe02e') + .query(true) + .reply(200, {"jobId":"d6d8037e-0aef-4b62-9e71-f7d68abfe02e","lastUpdateDateTime":"2021-06-25T19:50:42Z","createdDateTime":"2021-06-25T19:50:42Z","expirationDateTime":"2021-06-26T19:50:42Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'b4f84fd3-30a7-4ceb-8fde-272822f59c36', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:41 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/d6d8037e-0aef-4b62-9e71-f7d68abfe02e') + .query(true) + .reply(200, {"jobId":"d6d8037e-0aef-4b62-9e71-f7d68abfe02e","lastUpdateDateTime":"2021-06-25T19:50:42Z","createdDateTime":"2021-06-25T19:50:42Z","expirationDateTime":"2021-06-26T19:50:42Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '8cd0cd39-0670-4c73-bcdf-5d9556a74c2e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:41 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/d6d8037e-0aef-4b62-9e71-f7d68abfe02e') + .query(true) + .reply(200, {"jobId":"d6d8037e-0aef-4b62-9e71-f7d68abfe02e","lastUpdateDateTime":"2021-06-25T19:50:43Z","createdDateTime":"2021-06-25T19:50:42Z","expirationDateTime":"2021-06-26T19:50:42Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'b21706fb-d9bd-4a47-8786-a3b24f8e099f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:43 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/d6d8037e-0aef-4b62-9e71-f7d68abfe02e') + .query(true) + .reply(200, {"jobId":"d6d8037e-0aef-4b62-9e71-f7d68abfe02e","lastUpdateDateTime":"2021-06-25T19:50:43Z","createdDateTime":"2021-06-25T19:50:42Z","expirationDateTime":"2021-06-26T19:50:42Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + 'f142a89b-b117-4766-bb66-5d19a8ad61e0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:46 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/d6d8037e-0aef-4b62-9e71-f7d68abfe02e') + .query(true) + .reply(200, {"jobId":"d6d8037e-0aef-4b62-9e71-f7d68abfe02e","lastUpdateDateTime":"2021-06-25T19:50:43Z","createdDateTime":"2021-06-25T19:50:42Z","expirationDateTime":"2021-06-26T19:50:42Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'cee4a618-21de-4c00-b87c-dfc2eea5ea7e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:48 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/d6d8037e-0aef-4b62-9e71-f7d68abfe02e') + .query(true) + .reply(200, {"jobId":"d6d8037e-0aef-4b62-9e71-f7d68abfe02e","lastUpdateDateTime":"2021-06-25T19:50:43Z","createdDateTime":"2021-06-25T19:50:42Z","expirationDateTime":"2021-06-26T19:50:42Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '31176cd2-8c00-4779-98f5-c1482656dac9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:50 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/d6d8037e-0aef-4b62-9e71-f7d68abfe02e') + .query(true) + .reply(200, {"jobId":"d6d8037e-0aef-4b62-9e71-f7d68abfe02e","lastUpdateDateTime":"2021-06-25T19:50:52Z","createdDateTime":"2021-06-25T19:50:42Z","expirationDateTime":"2021-06-26T19:50:42Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '41743b74-9f01-4b1b-9724-ff9e7dd5e0bd', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:52 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/d6d8037e-0aef-4b62-9e71-f7d68abfe02e') + .query(true) + .reply(200, {"jobId":"d6d8037e-0aef-4b62-9e71-f7d68abfe02e","lastUpdateDateTime":"2021-06-25T19:50:52Z","createdDateTime":"2021-06-25T19:50:42Z","expirationDateTime":"2021-06-26T19:50:42Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + 'd009b1b1-3017-4195-bbac-a8c5943d4dbe', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:54 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/d6d8037e-0aef-4b62-9e71-f7d68abfe02e') + .query(true) + .reply(200, {"jobId":"d6d8037e-0aef-4b62-9e71-f7d68abfe02e","lastUpdateDateTime":"2021-06-25T19:50:52Z","createdDateTime":"2021-06-25T19:50:42Z","expirationDateTime":"2021-06-26T19:50:42Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'c15f3390-bfce-43ad-8f23-cc93a101785e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:56 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/d6d8037e-0aef-4b62-9e71-f7d68abfe02e') + .query(true) + .reply(200, {"jobId":"d6d8037e-0aef-4b62-9e71-f7d68abfe02e","lastUpdateDateTime":"2021-06-25T19:50:52Z","createdDateTime":"2021-06-25T19:50:42Z","expirationDateTime":"2021-06-26T19:50:42Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'fe8fc3f1-1277-412c-82b3-2358ed510970', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:58 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/d6d8037e-0aef-4b62-9e71-f7d68abfe02e') + .query(true) + .reply(200, {"jobId":"d6d8037e-0aef-4b62-9e71-f7d68abfe02e","lastUpdateDateTime":"2021-06-25T19:51:01Z","createdDateTime":"2021-06-25T19:50:42Z","expirationDateTime":"2021-06-26T19:50:42Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:01.2621706Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '64', + 'apim-request-id', + 'f4fada6e-36c7-40ac-8281-12d0b27e0382', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:00 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/d6d8037e-0aef-4b62-9e71-f7d68abfe02e') + .query(true) + .reply(200, {"jobId":"d6d8037e-0aef-4b62-9e71-f7d68abfe02e","lastUpdateDateTime":"2021-06-25T19:51:02Z","createdDateTime":"2021-06-25T19:50:42Z","expirationDateTime":"2021-06-26T19:50:42Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:02.7556751Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:01.2621706Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '116', + 'apim-request-id', + '6b5293da-239b-41e6-9c2f-b8070f58e0f7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:02 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/d6d8037e-0aef-4b62-9e71-f7d68abfe02e') + .query(true) + .reply(200, {"jobId":"d6d8037e-0aef-4b62-9e71-f7d68abfe02e","lastUpdateDateTime":"2021-06-25T19:51:02Z","createdDateTime":"2021-06-25T19:50:42Z","expirationDateTime":"2021-06-26T19:50:42Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:02.7556751Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:01.2621706Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '156', + 'apim-request-id', + 'c7be29a5-b69e-4a98-aafe-a3a3dc142a39', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:05 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/d6d8037e-0aef-4b62-9e71-f7d68abfe02e') + .query(true) + .reply(200, {"jobId":"d6d8037e-0aef-4b62-9e71-f7d68abfe02e","lastUpdateDateTime":"2021-06-25T19:51:06Z","createdDateTime":"2021-06-25T19:50:42Z","expirationDateTime":"2021-06-26T19:50:42Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:02.7556751Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:06.6192266Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:01.2621706Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '268', + 'apim-request-id', + 'd01374e8-30d1-45c8-a3d1-c1934938574e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:08 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/d6d8037e-0aef-4b62-9e71-f7d68abfe02e') + .query(true) + .reply(200, {"jobId":"d6d8037e-0aef-4b62-9e71-f7d68abfe02e","lastUpdateDateTime":"2021-06-25T19:51:06Z","createdDateTime":"2021-06-25T19:50:42Z","expirationDateTime":"2021-06-26T19:50:42Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:02.7556751Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:06.6192266Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:01.2621706Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '166', + 'apim-request-id', + '900d8b55-aba0-4b05-8691-74e32c1692a9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:08 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.js new file mode 100644 index 000000000000..fc4bc645be5e --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_bad_request_empty_string.js @@ -0,0 +1,24 @@ +let nock = require('nock'); + +module.exports.hash = "28b46fe46c0398ac35b3cb4483489f27"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"0","text":"","language":"en"}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]}}) + .reply(400, {"error":{"code":"InvalidRequest","message":"Invalid document in request.","innererror":{"code":"InvalidDocumentBatch","message":"Document text is empty."}}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '5', + 'apim-request-id', + '83c8c48b-b684-4114-a1f0-de2fe99a4759', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:07 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.js new file mode 100644 index 000000000000..e59edf412b9c --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_each_doc_has_a_language_hint.js @@ -0,0 +1,204 @@ +let nock = require('nock'); + +module.exports.hash = "555792f3517ec51d7745afe8b6b42f91"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"1","text":"I will go to the park.","language":""},{"id":"2","text":"I did not like the hotel we stayed at.","language":""},{"id":"3","text":"The restaurant had really good food."}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/b16f54d6-0d9c-42b2-a1b4-e457942b2ecf', + 'x-envoy-upstream-service-time', + '311', + 'apim-request-id', + 'cb63519e-e0d8-4eee-99ed-1fbe656ee3e6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:54 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/b16f54d6-0d9c-42b2-a1b4-e457942b2ecf') + .query(true) + .reply(200, {"jobId":"b16f54d6-0d9c-42b2-a1b4-e457942b2ecf","lastUpdateDateTime":"2021-06-25T19:53:55Z","createdDateTime":"2021-06-25T19:53:55Z","expirationDateTime":"2021-06-26T19:53:55Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '9', + 'apim-request-id', + 'dd1b7d91-db53-4e34-9d50-0d7a9a0ac30b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:54 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/b16f54d6-0d9c-42b2-a1b4-e457942b2ecf') + .query(true) + .reply(200, {"jobId":"b16f54d6-0d9c-42b2-a1b4-e457942b2ecf","lastUpdateDateTime":"2021-06-25T19:53:55Z","createdDateTime":"2021-06-25T19:53:55Z","expirationDateTime":"2021-06-26T19:53:55Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'fadfebe5-9d29-47dc-b129-877dce34f411', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:54 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/b16f54d6-0d9c-42b2-a1b4-e457942b2ecf') + .query(true) + .reply(200, {"jobId":"b16f54d6-0d9c-42b2-a1b4-e457942b2ecf","lastUpdateDateTime":"2021-06-25T19:53:55Z","createdDateTime":"2021-06-25T19:53:55Z","expirationDateTime":"2021-06-26T19:53:55Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '16', + 'apim-request-id', + 'b80b661e-a0d2-4a97-b68b-3f0d476a09b5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:56 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/b16f54d6-0d9c-42b2-a1b4-e457942b2ecf') + .query(true) + .reply(200, {"jobId":"b16f54d6-0d9c-42b2-a1b4-e457942b2ecf","lastUpdateDateTime":"2021-06-25T19:53:55Z","createdDateTime":"2021-06-25T19:53:55Z","expirationDateTime":"2021-06-26T19:53:55Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + '976dafbd-28f5-45f2-90fe-a3be40e0d50e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:58 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/b16f54d6-0d9c-42b2-a1b4-e457942b2ecf') + .query(true) + .reply(200, {"jobId":"b16f54d6-0d9c-42b2-a1b4-e457942b2ecf","lastUpdateDateTime":"2021-06-25T19:53:55Z","createdDateTime":"2021-06-25T19:53:55Z","expirationDateTime":"2021-06-26T19:53:55Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + 'eeef4570-3a2b-447f-b472-103b5cf3ebe4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:00 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/b16f54d6-0d9c-42b2-a1b4-e457942b2ecf') + .query(true) + .reply(200, {"jobId":"b16f54d6-0d9c-42b2-a1b4-e457942b2ecf","lastUpdateDateTime":"2021-06-25T19:54:01Z","createdDateTime":"2021-06-25T19:53:55Z","expirationDateTime":"2021-06-26T19:53:55Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:01.8178373Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '66', + 'apim-request-id', + 'b5dc880b-4a91-42c3-aa09-82cb9b3047c3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:03 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/b16f54d6-0d9c-42b2-a1b4-e457942b2ecf') + .query(true) + .reply(200, {"jobId":"b16f54d6-0d9c-42b2-a1b4-e457942b2ecf","lastUpdateDateTime":"2021-06-25T19:54:01Z","createdDateTime":"2021-06-25T19:53:55Z","expirationDateTime":"2021-06-26T19:53:55Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:01.8178373Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '78', + 'apim-request-id', + '12465318-bfde-405e-bcf4-f33173decc72', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:06 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/b16f54d6-0d9c-42b2-a1b4-e457942b2ecf') + .query(true) + .reply(200, {"jobId":"b16f54d6-0d9c-42b2-a1b4-e457942b2ecf","lastUpdateDateTime":"2021-06-25T19:54:07Z","createdDateTime":"2021-06-25T19:53:55Z","expirationDateTime":"2021-06-26T19:53:55Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:01.8178373Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:07.924904Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at.","id":"2","entities":[],"warnings":[]},{"redactedText":"The restaurant had really good food.","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:06.6285123Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["hotel"],"warnings":[]},{"id":"3","keyPhrases":["good food","restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '200', + 'apim-request-id', + 'f7db15a5-c9cd-44db-9f7a-2aece38ca4f4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:08 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/b16f54d6-0d9c-42b2-a1b4-e457942b2ecf') + .query(true) + .reply(200, {"jobId":"b16f54d6-0d9c-42b2-a1b4-e457942b2ecf","lastUpdateDateTime":"2021-06-25T19:54:07Z","createdDateTime":"2021-06-25T19:53:55Z","expirationDateTime":"2021-06-26T19:53:55Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:01.8178373Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:07.924904Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at.","id":"2","entities":[],"warnings":[]},{"redactedText":"The restaurant had really good food.","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:06.6285123Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["hotel"],"warnings":[]},{"id":"3","keyPhrases":["good food","restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '201', + 'apim-request-id', + 'e67eac2d-0657-4fd8-820e-8e7a6d35c684', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:08 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.js new file mode 100644 index 000000000000..6aa275ba43b1 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_family_emoji_wit_skin_tone_modifier.js @@ -0,0 +1,144 @@ +let nock = require('nock'); + +module.exports.hash = "586a571f3405fc4a91192c8057f26eba"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987","language":"en"}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"UnicodeCodePoint"}}]}}) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/5668b7cf-1841-432f-9b38-69fb0af8fd2b', + 'x-envoy-upstream-service-time', + '214', + 'apim-request-id', + 'f4ac1d59-c97a-432a-b7b6-3e47b68912d6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:21 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/5668b7cf-1841-432f-9b38-69fb0af8fd2b') + .query(true) + .reply(200, {"jobId":"5668b7cf-1841-432f-9b38-69fb0af8fd2b","lastUpdateDateTime":"2021-06-25T19:55:21Z","createdDateTime":"2021-06-25T19:55:21Z","expirationDateTime":"2021-06-26T19:55:21Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '945cd6f6-f524-4c4a-bf69-2d9ba91daa00', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:21 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/5668b7cf-1841-432f-9b38-69fb0af8fd2b') + .query(true) + .reply(200, {"jobId":"5668b7cf-1841-432f-9b38-69fb0af8fd2b","lastUpdateDateTime":"2021-06-25T19:55:21Z","createdDateTime":"2021-06-25T19:55:21Z","expirationDateTime":"2021-06-26T19:55:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '473d75e1-3f0e-42db-8818-5070d8cb158a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:21 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/5668b7cf-1841-432f-9b38-69fb0af8fd2b') + .query(true) + .reply(200, {"jobId":"5668b7cf-1841-432f-9b38-69fb0af8fd2b","lastUpdateDateTime":"2021-06-25T19:55:21Z","createdDateTime":"2021-06-25T19:55:21Z","expirationDateTime":"2021-06-26T19:55:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '44', + 'apim-request-id', + '81b49ed4-d2a5-48aa-a102-31d0924e78b0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:23 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/5668b7cf-1841-432f-9b38-69fb0af8fd2b') + .query(true) + .reply(200, {"jobId":"5668b7cf-1841-432f-9b38-69fb0af8fd2b","lastUpdateDateTime":"2021-06-25T19:55:21Z","createdDateTime":"2021-06-25T19:55:21Z","expirationDateTime":"2021-06-26T19:55:21Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '17', + 'apim-request-id', + 'dfe31c3b-324a-4d8e-88be-09ca06fe6bb0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:25 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/5668b7cf-1841-432f-9b38-69fb0af8fd2b') + .query(true) + .reply(200, {"jobId":"5668b7cf-1841-432f-9b38-69fb0af8fd2b","lastUpdateDateTime":"2021-06-25T19:55:27Z","createdDateTime":"2021-06-25T19:55:21Z","expirationDateTime":"2021-06-26T19:55:21Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:55:27.0427821Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":17,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '45', + 'apim-request-id', + '9b7977d0-bc85-4e54-bb35-fce49d6fa1c9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:27 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/5668b7cf-1841-432f-9b38-69fb0af8fd2b') + .query(true) + .reply(200, {"jobId":"5668b7cf-1841-432f-9b38-69fb0af8fd2b","lastUpdateDateTime":"2021-06-25T19:55:27Z","createdDateTime":"2021-06-25T19:55:21Z","expirationDateTime":"2021-06-26T19:55:21Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:55:27.0427821Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: ***********","id":"0","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":17,"length":11,"confidenceScore":0.65}],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '54', + 'apim-request-id', + '3afc8c4f-13dd-4af7-9f89-be99212bee13', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:28 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_invalid_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_invalid_language_hint.js new file mode 100644 index 000000000000..6c8e22d79a6b --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_invalid_language_hint.js @@ -0,0 +1,224 @@ +let nock = require('nock'); + +module.exports.hash = "cd38c4c6eb5d8af4f0f3e496da5ffdf1"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"0","text":"This should fail because we're passing in an invalid language hint","language":"notalanguage"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/33bbdb89-f8bc-416c-9615-c90873b610e9', + 'x-envoy-upstream-service-time', + '221', + 'apim-request-id', + '53661851-8612-4146-9f38-cc99a7598913', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:34 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/33bbdb89-f8bc-416c-9615-c90873b610e9') + .query(true) + .reply(200, {"jobId":"33bbdb89-f8bc-416c-9615-c90873b610e9","lastUpdateDateTime":"2021-06-25T19:54:35Z","createdDateTime":"2021-06-25T19:54:34Z","expirationDateTime":"2021-06-26T19:54:34Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + '484f9c9e-1cf4-4611-b848-a534fd1a61e6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:34 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/33bbdb89-f8bc-416c-9615-c90873b610e9') + .query(true) + .reply(200, {"jobId":"33bbdb89-f8bc-416c-9615-c90873b610e9","lastUpdateDateTime":"2021-06-25T19:54:35Z","createdDateTime":"2021-06-25T19:54:34Z","expirationDateTime":"2021-06-26T19:54:34Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + 'c898bd57-abbd-4280-a3bc-b81f982f6947', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:34 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/33bbdb89-f8bc-416c-9615-c90873b610e9') + .query(true) + .reply(200, {"jobId":"33bbdb89-f8bc-416c-9615-c90873b610e9","lastUpdateDateTime":"2021-06-25T19:54:35Z","createdDateTime":"2021-06-25T19:54:34Z","expirationDateTime":"2021-06-26T19:54:34Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '86b94501-51ba-4b50-abf4-a027c5dec250', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:36 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/33bbdb89-f8bc-416c-9615-c90873b610e9') + .query(true) + .reply(200, {"jobId":"33bbdb89-f8bc-416c-9615-c90873b610e9","lastUpdateDateTime":"2021-06-25T19:54:35Z","createdDateTime":"2021-06-25T19:54:34Z","expirationDateTime":"2021-06-26T19:54:34Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'a7efd33c-ad67-4582-9381-50b5c30aebad', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:39 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/33bbdb89-f8bc-416c-9615-c90873b610e9') + .query(true) + .reply(200, {"jobId":"33bbdb89-f8bc-416c-9615-c90873b610e9","lastUpdateDateTime":"2021-06-25T19:54:35Z","createdDateTime":"2021-06-25T19:54:34Z","expirationDateTime":"2021-06-26T19:54:34Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + 'ff99b519-0708-4ca9-a269-412681e90454', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:41 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/33bbdb89-f8bc-416c-9615-c90873b610e9') + .query(true) + .reply(200, {"jobId":"33bbdb89-f8bc-416c-9615-c90873b610e9","lastUpdateDateTime":"2021-06-25T19:54:41Z","createdDateTime":"2021-06-25T19:54:34Z","expirationDateTime":"2021-06-26T19:54:34Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:41.7544541Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:41.6537417Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '81', + 'apim-request-id', + '1f6a945c-876b-4a81-8226-8d7f66dd0e0a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:43 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/33bbdb89-f8bc-416c-9615-c90873b610e9') + .query(true) + .reply(200, {"jobId":"33bbdb89-f8bc-416c-9615-c90873b610e9","lastUpdateDateTime":"2021-06-25T19:54:41Z","createdDateTime":"2021-06-25T19:54:34Z","expirationDateTime":"2021-06-26T19:54:34Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:41.7544541Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:41.6537417Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '221', + 'apim-request-id', + 'f88ff13f-a597-4d97-9a59-138399927e87', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:45 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/33bbdb89-f8bc-416c-9615-c90873b610e9') + .query(true) + .reply(200, {"jobId":"33bbdb89-f8bc-416c-9615-c90873b610e9","lastUpdateDateTime":"2021-06-25T19:54:41Z","createdDateTime":"2021-06-25T19:54:34Z","expirationDateTime":"2021-06-26T19:54:34Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:41.7544541Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:41.6537417Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '92', + 'apim-request-id', + 'cff1fdef-f21e-456b-89cb-9526b7d720b7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:47 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/33bbdb89-f8bc-416c-9615-c90873b610e9') + .query(true) + .reply(200, {"jobId":"33bbdb89-f8bc-416c-9615-c90873b610e9","lastUpdateDateTime":"2021-06-25T19:54:49Z","createdDateTime":"2021-06-25T19:54:34Z","expirationDateTime":"2021-06-26T19:54:34Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:41.7544541Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:49.3379301Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:41.6537417Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '181', + 'apim-request-id', + '6e2bee33-b861-4b19-9eb4-873d4f64ae98', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:49 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/33bbdb89-f8bc-416c-9615-c90873b610e9') + .query(true) + .reply(200, {"jobId":"33bbdb89-f8bc-416c-9615-c90873b610e9","lastUpdateDateTime":"2021-06-25T19:54:49Z","createdDateTime":"2021-06-25T19:54:34Z","expirationDateTime":"2021-06-26T19:54:34Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:41.7544541Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:49.3379301Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:41.6537417Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '112', + 'apim-request-id', + '305bc187-b0e3-484b-8827-225b61cf4b82', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:50 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_malformed_actions.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_malformed_actions.js new file mode 100644 index 000000000000..845efa6d9b47 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_malformed_actions.js @@ -0,0 +1,24 @@ +let nock = require('nock'); + +module.exports.hash = "fdbacce056d3180da0a43c0748bb1396"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"1","text":"I will go to the park."}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"bad","stringIndexType":"TextElement_v8"}}]}}) + .reply(400, {"error":{"code":"InvalidRequest","message":"Invalid parameter in request","innererror":{"code":"InvalidParameterValue","message":"Job task parameter value bad is not supported for model-version parameter for job task type PersonallyIdentifiableInformation. Supported values latest,2020-07-01,2021-01-15."}}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '500', + 'apim-request-id', + '64828a2b-e275-4849-bb71-805d0e804ed9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Wed, 30 Jun 2021 19:34:36 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_multiple_actions_per_type_are_disallowed.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_multiple_actions_per_type_are_disallowed.js new file mode 100644 index 000000000000..08c9c8b35f31 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_multiple_actions_per_type_are_disallowed.js @@ -0,0 +1,5 @@ +let nock = require('nock'); + +module.exports.hash = "d1c43b9d04e7f9e2d9e2bac6086a994c"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_operation_metadata.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_operation_metadata.js new file mode 100644 index 000000000000..60863a036098 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_operation_metadata.js @@ -0,0 +1,144 @@ +let nock = require('nock'); + +module.exports.hash = "204756a0ef7bb31d61c833d32a9152fa"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/analyze', {"displayName":"testJob","analysisInput":{"documents":[{"id":"1","text":"I will go to the park."},{"id":"2","text":"Este es un document escrito en Español."},{"id":"3","text":"猫は幸せ"}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]}}) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/07e6a9b5-f94f-4f7a-a52b-72dfeedb7663', + 'x-envoy-upstream-service-time', + '167', + 'apim-request-id', + '83b4e7c7-dbd4-4209-a230-6541e26d52ce', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:11 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/07e6a9b5-f94f-4f7a-a52b-72dfeedb7663') + .query(true) + .reply(200, {"jobId":"07e6a9b5-f94f-4f7a-a52b-72dfeedb7663","lastUpdateDateTime":"2021-06-25T19:55:12Z","createdDateTime":"2021-06-25T19:55:12Z","expirationDateTime":"2021-06-26T19:55:12Z","status":"notStarted","errors":[],"displayName":"testJob","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '9978b729-5856-406b-b262-c4e61a7d1b75', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:11 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/07e6a9b5-f94f-4f7a-a52b-72dfeedb7663') + .query(true) + .reply(200, {"jobId":"07e6a9b5-f94f-4f7a-a52b-72dfeedb7663","lastUpdateDateTime":"2021-06-25T19:55:12Z","createdDateTime":"2021-06-25T19:55:12Z","expirationDateTime":"2021-06-26T19:55:12Z","status":"running","errors":[],"displayName":"testJob","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '9c4be965-0d1f-4bd5-a134-fdde2a994ee2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:12 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/07e6a9b5-f94f-4f7a-a52b-72dfeedb7663') + .query(true) + .reply(200, {"jobId":"07e6a9b5-f94f-4f7a-a52b-72dfeedb7663","lastUpdateDateTime":"2021-06-25T19:55:12Z","createdDateTime":"2021-06-25T19:55:12Z","expirationDateTime":"2021-06-26T19:55:12Z","status":"running","errors":[],"displayName":"testJob","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '6eff8be9-23ad-498a-b46f-ad697deb616d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:14 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/07e6a9b5-f94f-4f7a-a52b-72dfeedb7663') + .query(true) + .reply(200, {"jobId":"07e6a9b5-f94f-4f7a-a52b-72dfeedb7663","lastUpdateDateTime":"2021-06-25T19:55:12Z","createdDateTime":"2021-06-25T19:55:12Z","expirationDateTime":"2021-06-26T19:55:12Z","status":"running","errors":[],"displayName":"testJob","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '3be20669-dcfa-4257-a6e8-9dd0ad75f522', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:17 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/07e6a9b5-f94f-4f7a-a52b-72dfeedb7663') + .query(true) + .reply(200, {"jobId":"07e6a9b5-f94f-4f7a-a52b-72dfeedb7663","lastUpdateDateTime":"2021-06-25T19:55:12Z","createdDateTime":"2021-06-25T19:55:12Z","expirationDateTime":"2021-06-26T19:55:12Z","status":"running","errors":[],"displayName":"testJob","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '12', + 'apim-request-id', + 'af95f344-e51e-4b21-827f-bc0e1ce905b5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:19 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/07e6a9b5-f94f-4f7a-a52b-72dfeedb7663') + .query(true) + .reply(200, {"jobId":"07e6a9b5-f94f-4f7a-a52b-72dfeedb7663","lastUpdateDateTime":"2021-06-25T19:55:19Z","createdDateTime":"2021-06-25T19:55:12Z","expirationDateTime":"2021-06-26T19:55:12Z","status":"succeeded","errors":[],"displayName":"testJob","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:55:19.5336533Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '58', + 'apim-request-id', + 'f2c61db9-01a5-48c6-ad41-f7f57e5f4aa7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:21 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.js new file mode 100644 index 000000000000..2ae01d75528e --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_out_of_order_input_ids_with_multiple_actions.js @@ -0,0 +1,324 @@ +let nock = require('nock'); + +module.exports.hash = "ce68d594d903ed92dd603e6d0dc15d1d"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"56","text":":)"},{"id":"0","text":":("},{"id":"22","text":"w"},{"id":"19","text":":P"},{"id":"1","text":":D"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/2ede272a-0f96-4ea8-a1a7-b6f04f223fce', + 'x-envoy-upstream-service-time', + '438', + 'apim-request-id', + '2f699a23-24c4-49a4-b5bc-ac0325b81c6d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:24 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/2ede272a-0f96-4ea8-a1a7-b6f04f223fce') + .query(true) + .reply(200, {"jobId":"2ede272a-0f96-4ea8-a1a7-b6f04f223fce","lastUpdateDateTime":"2021-06-25T19:51:25Z","createdDateTime":"2021-06-25T19:51:25Z","expirationDateTime":"2021-06-26T19:51:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '75228dd9-fcd6-4210-b335-c74b7cb80db9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:24 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/2ede272a-0f96-4ea8-a1a7-b6f04f223fce') + .query(true) + .reply(200, {"jobId":"2ede272a-0f96-4ea8-a1a7-b6f04f223fce","lastUpdateDateTime":"2021-06-25T19:51:25Z","createdDateTime":"2021-06-25T19:51:25Z","expirationDateTime":"2021-06-26T19:51:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + 'ca559e99-267b-451e-81dd-7eb45b5b81e7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:24 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/2ede272a-0f96-4ea8-a1a7-b6f04f223fce') + .query(true) + .reply(200, {"jobId":"2ede272a-0f96-4ea8-a1a7-b6f04f223fce","lastUpdateDateTime":"2021-06-25T19:51:25Z","createdDateTime":"2021-06-25T19:51:25Z","expirationDateTime":"2021-06-26T19:51:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'b11009e0-27a7-4cf5-af63-1feb914fa561', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:26 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/2ede272a-0f96-4ea8-a1a7-b6f04f223fce') + .query(true) + .reply(200, {"jobId":"2ede272a-0f96-4ea8-a1a7-b6f04f223fce","lastUpdateDateTime":"2021-06-25T19:51:25Z","createdDateTime":"2021-06-25T19:51:25Z","expirationDateTime":"2021-06-26T19:51:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '9', + 'apim-request-id', + '29ea279a-6752-4a0f-8595-dc3682d1b14f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:29 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/2ede272a-0f96-4ea8-a1a7-b6f04f223fce') + .query(true) + .reply(200, {"jobId":"2ede272a-0f96-4ea8-a1a7-b6f04f223fce","lastUpdateDateTime":"2021-06-25T19:51:31Z","createdDateTime":"2021-06-25T19:51:25Z","expirationDateTime":"2021-06-26T19:51:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:31.8517641Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":":)","id":"56","entities":[],"warnings":[]},{"redactedText":":(","id":"0","entities":[],"warnings":[]},{"redactedText":"w","id":"22","entities":[],"warnings":[]},{"redactedText":":P","id":"19","entities":[],"warnings":[]},{"redactedText":":D","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '122', + 'apim-request-id', + '63086936-e35e-4b72-b404-e728813a5dea', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:31 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/2ede272a-0f96-4ea8-a1a7-b6f04f223fce') + .query(true) + .reply(200, {"jobId":"2ede272a-0f96-4ea8-a1a7-b6f04f223fce","lastUpdateDateTime":"2021-06-25T19:51:33Z","createdDateTime":"2021-06-25T19:51:25Z","expirationDateTime":"2021-06-26T19:51:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:31.8517641Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":":)","id":"56","entities":[],"warnings":[]},{"redactedText":":(","id":"0","entities":[],"warnings":[]},{"redactedText":"w","id":"22","entities":[],"warnings":[]},{"redactedText":":P","id":"19","entities":[],"warnings":[]},{"redactedText":":D","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '87', + 'apim-request-id', + '383ff65d-3dc2-4736-83df-c3a51d674026', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:34 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/2ede272a-0f96-4ea8-a1a7-b6f04f223fce') + .query(true) + .reply(200, {"jobId":"2ede272a-0f96-4ea8-a1a7-b6f04f223fce","lastUpdateDateTime":"2021-06-25T19:51:33Z","createdDateTime":"2021-06-25T19:51:25Z","expirationDateTime":"2021-06-26T19:51:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:31.8517641Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":":)","id":"56","entities":[],"warnings":[]},{"redactedText":":(","id":"0","entities":[],"warnings":[]},{"redactedText":"w","id":"22","entities":[],"warnings":[]},{"redactedText":":P","id":"19","entities":[],"warnings":[]},{"redactedText":":D","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '84', + 'apim-request-id', + 'd1a6afb6-3e21-4103-aa22-2c3e2d25c3f8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:36 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/2ede272a-0f96-4ea8-a1a7-b6f04f223fce') + .query(true) + .reply(200, {"jobId":"2ede272a-0f96-4ea8-a1a7-b6f04f223fce","lastUpdateDateTime":"2021-06-25T19:51:33Z","createdDateTime":"2021-06-25T19:51:25Z","expirationDateTime":"2021-06-26T19:51:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:31.8517641Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":":)","id":"56","entities":[],"warnings":[]},{"redactedText":":(","id":"0","entities":[],"warnings":[]},{"redactedText":"w","id":"22","entities":[],"warnings":[]},{"redactedText":":P","id":"19","entities":[],"warnings":[]},{"redactedText":":D","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '80', + 'apim-request-id', + '4a0f4f96-0646-42e5-b3c6-b3e71bc0c033', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:38 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/2ede272a-0f96-4ea8-a1a7-b6f04f223fce') + .query(true) + .reply(200, {"jobId":"2ede272a-0f96-4ea8-a1a7-b6f04f223fce","lastUpdateDateTime":"2021-06-25T19:51:40Z","createdDateTime":"2021-06-25T19:51:25Z","expirationDateTime":"2021-06-26T19:51:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:31.8517641Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":":)","id":"56","entities":[],"warnings":[]},{"redactedText":":(","id":"0","entities":[],"warnings":[]},{"redactedText":"w","id":"22","entities":[],"warnings":[]},{"redactedText":":P","id":"19","entities":[],"warnings":[]},{"redactedText":":D","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:40.1975875Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"56","keyPhrases":[],"warnings":[]},{"id":"0","keyPhrases":[],"warnings":[]},{"id":"22","keyPhrases":[],"warnings":[]},{"id":"19","keyPhrases":[],"warnings":[]},{"id":"1","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '178', + 'apim-request-id', + '4dcc8576-491b-4555-9e5f-f1b3d5de70cb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:40 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/2ede272a-0f96-4ea8-a1a7-b6f04f223fce') + .query(true) + .reply(200, {"jobId":"2ede272a-0f96-4ea8-a1a7-b6f04f223fce","lastUpdateDateTime":"2021-06-25T19:51:40Z","createdDateTime":"2021-06-25T19:51:25Z","expirationDateTime":"2021-06-26T19:51:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:31.8517641Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":":)","id":"56","entities":[],"warnings":[]},{"redactedText":":(","id":"0","entities":[],"warnings":[]},{"redactedText":"w","id":"22","entities":[],"warnings":[]},{"redactedText":":P","id":"19","entities":[],"warnings":[]},{"redactedText":":D","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:40.1975875Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"56","keyPhrases":[],"warnings":[]},{"id":"0","keyPhrases":[],"warnings":[]},{"id":"22","keyPhrases":[],"warnings":[]},{"id":"19","keyPhrases":[],"warnings":[]},{"id":"1","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '172', + 'apim-request-id', + '9ad529f7-8553-4dc7-a861-79a1e03b6af9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:42 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/2ede272a-0f96-4ea8-a1a7-b6f04f223fce') + .query(true) + .reply(200, {"jobId":"2ede272a-0f96-4ea8-a1a7-b6f04f223fce","lastUpdateDateTime":"2021-06-25T19:51:40Z","createdDateTime":"2021-06-25T19:51:25Z","expirationDateTime":"2021-06-26T19:51:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:31.8517641Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":":)","id":"56","entities":[],"warnings":[]},{"redactedText":":(","id":"0","entities":[],"warnings":[]},{"redactedText":"w","id":"22","entities":[],"warnings":[]},{"redactedText":":P","id":"19","entities":[],"warnings":[]},{"redactedText":":D","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:40.1975875Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"56","keyPhrases":[],"warnings":[]},{"id":"0","keyPhrases":[],"warnings":[]},{"id":"22","keyPhrases":[],"warnings":[]},{"id":"19","keyPhrases":[],"warnings":[]},{"id":"1","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '141', + 'apim-request-id', + '7785a341-a6a2-4800-abe6-f12b25457cb3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:45 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/2ede272a-0f96-4ea8-a1a7-b6f04f223fce') + .query(true) + .reply(200, {"jobId":"2ede272a-0f96-4ea8-a1a7-b6f04f223fce","lastUpdateDateTime":"2021-06-25T19:51:40Z","createdDateTime":"2021-06-25T19:51:25Z","expirationDateTime":"2021-06-26T19:51:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:31.8517641Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":":)","id":"56","entities":[],"warnings":[]},{"redactedText":":(","id":"0","entities":[],"warnings":[]},{"redactedText":"w","id":"22","entities":[],"warnings":[]},{"redactedText":":P","id":"19","entities":[],"warnings":[]},{"redactedText":":D","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:40.1975875Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"56","keyPhrases":[],"warnings":[]},{"id":"0","keyPhrases":[],"warnings":[]},{"id":"22","keyPhrases":[],"warnings":[]},{"id":"19","keyPhrases":[],"warnings":[]},{"id":"1","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '151', + 'apim-request-id', + 'ddcd0f3e-3cff-4bd6-9ae2-77af017eed00', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:47 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/2ede272a-0f96-4ea8-a1a7-b6f04f223fce') + .query(true) + .reply(200, {"jobId":"2ede272a-0f96-4ea8-a1a7-b6f04f223fce","lastUpdateDateTime":"2021-06-25T19:51:40Z","createdDateTime":"2021-06-25T19:51:25Z","expirationDateTime":"2021-06-26T19:51:25Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:31.8517641Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":":)","id":"56","entities":[],"warnings":[]},{"redactedText":":(","id":"0","entities":[],"warnings":[]},{"redactedText":"w","id":"22","entities":[],"warnings":[]},{"redactedText":":P","id":"19","entities":[],"warnings":[]},{"redactedText":":D","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:40.1975875Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"56","keyPhrases":[],"warnings":[]},{"id":"0","keyPhrases":[],"warnings":[]},{"id":"22","keyPhrases":[],"warnings":[]},{"id":"19","keyPhrases":[],"warnings":[]},{"id":"1","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '157', + 'apim-request-id', + 'adf300d4-82e5-4270-b48b-9d2f0abfd57d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:49 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/2ede272a-0f96-4ea8-a1a7-b6f04f223fce') + .query(true) + .reply(200, {"jobId":"2ede272a-0f96-4ea8-a1a7-b6f04f223fce","lastUpdateDateTime":"2021-06-25T19:51:50Z","createdDateTime":"2021-06-25T19:51:25Z","expirationDateTime":"2021-06-26T19:51:25Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:50.6708537Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"56","entities":[],"warnings":[]},{"id":"0","entities":[],"warnings":[]},{"id":"22","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:31.8517641Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":":)","id":"56","entities":[],"warnings":[]},{"redactedText":":(","id":"0","entities":[],"warnings":[]},{"redactedText":"w","id":"22","entities":[],"warnings":[]},{"redactedText":":P","id":"19","entities":[],"warnings":[]},{"redactedText":":D","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:40.1975875Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"56","keyPhrases":[],"warnings":[]},{"id":"0","keyPhrases":[],"warnings":[]},{"id":"22","keyPhrases":[],"warnings":[]},{"id":"19","keyPhrases":[],"warnings":[]},{"id":"1","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '231', + 'apim-request-id', + '19ea55b1-7fad-4235-8d60-e17a3e4f88a0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:51 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/2ede272a-0f96-4ea8-a1a7-b6f04f223fce') + .query(true) + .reply(200, {"jobId":"2ede272a-0f96-4ea8-a1a7-b6f04f223fce","lastUpdateDateTime":"2021-06-25T19:51:50Z","createdDateTime":"2021-06-25T19:51:25Z","expirationDateTime":"2021-06-26T19:51:25Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:50.6708537Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"56","entities":[],"warnings":[]},{"id":"0","entities":[],"warnings":[]},{"id":"22","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:31.8517641Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":":)","id":"56","entities":[],"warnings":[]},{"redactedText":":(","id":"0","entities":[],"warnings":[]},{"redactedText":"w","id":"22","entities":[],"warnings":[]},{"redactedText":":P","id":"19","entities":[],"warnings":[]},{"redactedText":":D","id":"1","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:40.1975875Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"56","keyPhrases":[],"warnings":[]},{"id":"0","keyPhrases":[],"warnings":[]},{"id":"22","keyPhrases":[],"warnings":[]},{"id":"19","keyPhrases":[],"warnings":[]},{"id":"1","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '253', + 'apim-request-id', + '1ae2f2a9-e891-425e-83fb-52100f88e1e0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:52 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.js new file mode 100644 index 000000000000..2ad5acabb9fe --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_output_order_is_same_as_the_inputs_one_with_multiple_actions.js @@ -0,0 +1,224 @@ +let nock = require('nock'); + +module.exports.hash = "0d0220320898553ba2b19148d77076f4"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"1","text":"one"},{"id":"2","text":"two"},{"id":"3","text":"three"},{"id":"4","text":"four"},{"id":"5","text":"five"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/750cd76f-0c68-4537-83c8-510dd38bec73', + 'x-envoy-upstream-service-time', + '428', + 'apim-request-id', + '37bc758e-ea56-4773-888d-935525982701', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:09 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/750cd76f-0c68-4537-83c8-510dd38bec73') + .query(true) + .reply(200, {"jobId":"750cd76f-0c68-4537-83c8-510dd38bec73","lastUpdateDateTime":"2021-06-25T19:51:09Z","createdDateTime":"2021-06-25T19:51:08Z","expirationDateTime":"2021-06-26T19:51:08Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + 'f400cb0b-e38d-4a76-843c-47660f284a89', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:09 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/750cd76f-0c68-4537-83c8-510dd38bec73') + .query(true) + .reply(200, {"jobId":"750cd76f-0c68-4537-83c8-510dd38bec73","lastUpdateDateTime":"2021-06-25T19:51:09Z","createdDateTime":"2021-06-25T19:51:08Z","expirationDateTime":"2021-06-26T19:51:08Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '02c05a06-be71-497f-977c-2b511ae9ba02', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:09 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/750cd76f-0c68-4537-83c8-510dd38bec73') + .query(true) + .reply(200, {"jobId":"750cd76f-0c68-4537-83c8-510dd38bec73","lastUpdateDateTime":"2021-06-25T19:51:10Z","createdDateTime":"2021-06-25T19:51:08Z","expirationDateTime":"2021-06-26T19:51:08Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '4998ba5e-a8fc-4579-a27a-61d77cab8b98', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:11 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/750cd76f-0c68-4537-83c8-510dd38bec73') + .query(true) + .reply(200, {"jobId":"750cd76f-0c68-4537-83c8-510dd38bec73","lastUpdateDateTime":"2021-06-25T19:51:10Z","createdDateTime":"2021-06-25T19:51:08Z","expirationDateTime":"2021-06-26T19:51:08Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '63b7d234-25da-4074-b9f0-9de5b8625d95', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:13 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/750cd76f-0c68-4537-83c8-510dd38bec73') + .query(true) + .reply(200, {"jobId":"750cd76f-0c68-4537-83c8-510dd38bec73","lastUpdateDateTime":"2021-06-25T19:51:10Z","createdDateTime":"2021-06-25T19:51:08Z","expirationDateTime":"2021-06-26T19:51:08Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + 'b1ddfff3-0da3-4a58-a6f5-c1d8d53f2a9b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:15 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/750cd76f-0c68-4537-83c8-510dd38bec73') + .query(true) + .reply(200, {"jobId":"750cd76f-0c68-4537-83c8-510dd38bec73","lastUpdateDateTime":"2021-06-25T19:51:16Z","createdDateTime":"2021-06-25T19:51:08Z","expirationDateTime":"2021-06-26T19:51:08Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:16.7043461Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"one","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"two","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"three","category":"Quantity","subcategory":"Number","offset":0,"length":5,"confidenceScore":0.8}],"warnings":[]},{"id":"4","entities":[{"text":"four","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]},{"id":"5","entities":[{"text":"five","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:16.0826854Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '152', + 'apim-request-id', + 'd2c79561-8653-4f0d-99ae-9ef3e883cd79', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:17 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/750cd76f-0c68-4537-83c8-510dd38bec73') + .query(true) + .reply(200, {"jobId":"750cd76f-0c68-4537-83c8-510dd38bec73","lastUpdateDateTime":"2021-06-25T19:51:16Z","createdDateTime":"2021-06-25T19:51:08Z","expirationDateTime":"2021-06-26T19:51:08Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:16.7043461Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"one","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"two","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"three","category":"Quantity","subcategory":"Number","offset":0,"length":5,"confidenceScore":0.8}],"warnings":[]},{"id":"4","entities":[{"text":"four","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]},{"id":"5","entities":[{"text":"five","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:16.0826854Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '183', + 'apim-request-id', + '02aadba2-3b04-4ab5-a914-1b989dfc5c06', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:19 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/750cd76f-0c68-4537-83c8-510dd38bec73') + .query(true) + .reply(200, {"jobId":"750cd76f-0c68-4537-83c8-510dd38bec73","lastUpdateDateTime":"2021-06-25T19:51:16Z","createdDateTime":"2021-06-25T19:51:08Z","expirationDateTime":"2021-06-26T19:51:08Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:16.7043461Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"one","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"two","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"three","category":"Quantity","subcategory":"Number","offset":0,"length":5,"confidenceScore":0.8}],"warnings":[]},{"id":"4","entities":[{"text":"four","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]},{"id":"5","entities":[{"text":"five","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:16.0826854Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '153', + 'apim-request-id', + '6b504b3f-723e-41ef-9f27-17172a5f99a1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:21 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/750cd76f-0c68-4537-83c8-510dd38bec73') + .query(true) + .reply(200, {"jobId":"750cd76f-0c68-4537-83c8-510dd38bec73","lastUpdateDateTime":"2021-06-25T19:51:23Z","createdDateTime":"2021-06-25T19:51:08Z","expirationDateTime":"2021-06-26T19:51:08Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:16.7043461Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"one","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"two","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"three","category":"Quantity","subcategory":"Number","offset":0,"length":5,"confidenceScore":0.8}],"warnings":[]},{"id":"4","entities":[{"text":"four","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]},{"id":"5","entities":[{"text":"five","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:23.8884808Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:16.0826854Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '247', + 'apim-request-id', + 'cdae66d2-a624-44af-98ec-01e66efb33b5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:23 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/750cd76f-0c68-4537-83c8-510dd38bec73') + .query(true) + .reply(200, {"jobId":"750cd76f-0c68-4537-83c8-510dd38bec73","lastUpdateDateTime":"2021-06-25T19:51:23Z","createdDateTime":"2021-06-25T19:51:08Z","expirationDateTime":"2021-06-26T19:51:08Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:16.7043461Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"one","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"two","category":"Quantity","subcategory":"Number","offset":0,"length":3,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"three","category":"Quantity","subcategory":"Number","offset":0,"length":5,"confidenceScore":0.8}],"warnings":[]},{"id":"4","entities":[{"text":"four","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]},{"id":"5","entities":[{"text":"five","category":"Quantity","subcategory":"Number","offset":0,"length":4,"confidenceScore":0.8}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:23.8884808Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"one","id":"1","entities":[],"warnings":[]},{"redactedText":"two","id":"2","entities":[],"warnings":[]},{"redactedText":"three","id":"3","entities":[],"warnings":[]},{"redactedText":"four","id":"4","entities":[],"warnings":[]},{"redactedText":"five","id":"5","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:51:16.0826854Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":[],"warnings":[]},{"id":"2","keyPhrases":[],"warnings":[]},{"id":"3","keyPhrases":[],"warnings":[]},{"id":"4","keyPhrases":[],"warnings":[]},{"id":"5","keyPhrases":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '224', + 'apim-request-id', + 'f4cd97a5-0919-47c3-b080-bf38593af20d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:24 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.js new file mode 100644 index 000000000000..666f43781fbb --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_paged_results_with_custom_page_size.js @@ -0,0 +1,224 @@ +let nock = require('nock'); + +module.exports.hash = "fcf347f6cb241de657ea5d5a47554eaf"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"0","text":"random text","language":"en"},{"id":"1","text":"random text","language":"en"},{"id":"2","text":"random text","language":"en"},{"id":"3","text":"random text","language":"en"},{"id":"4","text":"random text","language":"en"},{"id":"5","text":"random text","language":"en"},{"id":"6","text":"random text","language":"en"},{"id":"7","text":"random text","language":"en"},{"id":"8","text":"random text","language":"en"},{"id":"9","text":"random text","language":"en"},{"id":"10","text":"random text","language":"en"},{"id":"11","text":"random text","language":"en"},{"id":"12","text":"random text","language":"en"},{"id":"13","text":"random text","language":"en"},{"id":"14","text":"random text","language":"en"},{"id":"15","text":"random text","language":"en"},{"id":"16","text":"random text","language":"en"},{"id":"17","text":"random text","language":"en"},{"id":"18","text":"random text","language":"en"},{"id":"19","text":"random text","language":"en"},{"id":"20","text":"random text","language":"en"},{"id":"21","text":"random text","language":"en"},{"id":"22","text":"random text","language":"en"},{"id":"23","text":"random text","language":"en"},{"id":"24","text":"Microsoft was founded by Bill Gates and Paul Allen","language":"en"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/df7cd524-a6fe-455b-a63f-68d2a7e44e69', + 'x-envoy-upstream-service-time', + '768', + 'apim-request-id', + '8743ed78-e487-402c-b3c8-e443affc225e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:50 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/df7cd524-a6fe-455b-a63f-68d2a7e44e69') + .query(true) + .reply(200, {"jobId":"df7cd524-a6fe-455b-a63f-68d2a7e44e69","lastUpdateDateTime":"2021-06-25T19:54:51Z","createdDateTime":"2021-06-25T19:54:50Z","expirationDateTime":"2021-06-26T19:54:50Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":2,"total":2}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + 'b7543782-54d5-4e5d-a0eb-2fc610f3bf2a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:51 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/df7cd524-a6fe-455b-a63f-68d2a7e44e69') + .query(true) + .reply(200, {"jobId":"df7cd524-a6fe-455b-a63f-68d2a7e44e69","lastUpdateDateTime":"2021-06-25T19:54:51Z","createdDateTime":"2021-06-25T19:54:50Z","expirationDateTime":"2021-06-26T19:54:50Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":2,"total":2}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '482a627e-940d-4214-8813-c37d5bb42643', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:51 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/df7cd524-a6fe-455b-a63f-68d2a7e44e69') + .query(true) + .reply(200, {"jobId":"df7cd524-a6fe-455b-a63f-68d2a7e44e69","lastUpdateDateTime":"2021-06-25T19:54:51Z","createdDateTime":"2021-06-25T19:54:50Z","expirationDateTime":"2021-06-26T19:54:50Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":2,"total":2}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + 'e7c7c200-3222-4a0b-8957-6a462e99aab2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:53 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/df7cd524-a6fe-455b-a63f-68d2a7e44e69') + .query(true) + .reply(200, {"jobId":"df7cd524-a6fe-455b-a63f-68d2a7e44e69","lastUpdateDateTime":"2021-06-25T19:54:51Z","createdDateTime":"2021-06-25T19:54:50Z","expirationDateTime":"2021-06-26T19:54:50Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":2,"total":2}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'f8113aec-e367-479e-839c-8be3f5050069', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:55 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/df7cd524-a6fe-455b-a63f-68d2a7e44e69') + .query(true) + .reply(200, {"jobId":"df7cd524-a6fe-455b-a63f-68d2a7e44e69","lastUpdateDateTime":"2021-06-25T19:54:57Z","createdDateTime":"2021-06-25T19:54:50Z","expirationDateTime":"2021-06-26T19:54:50Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":2,"total":2}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + 'd679ab8d-0ffd-4dec-8eda-d6a28ae2bf20', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:57 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/df7cd524-a6fe-455b-a63f-68d2a7e44e69') + .query(true) + .reply(200, {"jobId":"df7cd524-a6fe-455b-a63f-68d2a7e44e69","lastUpdateDateTime":"2021-06-25T19:54:59Z","createdDateTime":"2021-06-25T19:54:50Z","expirationDateTime":"2021-06-26T19:54:50Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":1,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:58.4255638Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]},{"id":"2","entities":[],"warnings":[]},{"id":"3","entities":[],"warnings":[]},{"id":"4","entities":[],"warnings":[]},{"id":"5","entities":[],"warnings":[]},{"id":"6","entities":[],"warnings":[]},{"id":"7","entities":[],"warnings":[]},{"id":"8","entities":[],"warnings":[]},{"id":"9","entities":[],"warnings":[]},{"id":"10","entities":[],"warnings":[]},{"id":"11","entities":[],"warnings":[]},{"id":"12","entities":[],"warnings":[]},{"id":"13","entities":[],"warnings":[]},{"id":"14","entities":[],"warnings":[]},{"id":"15","entities":[],"warnings":[]},{"id":"16","entities":[],"warnings":[]},{"id":"17","entities":[],"warnings":[]},{"id":"18","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]},"@nextLink":"https://endpoint/text/analytics/v3.1/analyze/jobs/df7cd524-a6fe-455b-a63f-68d2a7e44e69?$skip=20&$top=5&showStats=False"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '243', + 'apim-request-id', + 'c0eeff2b-f28d-48a3-b69c-bdd5fb563421', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:59 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/df7cd524-a6fe-455b-a63f-68d2a7e44e69') + .query(true) + .reply(200, {"jobId":"df7cd524-a6fe-455b-a63f-68d2a7e44e69","lastUpdateDateTime":"2021-06-25T19:55:00Z","createdDateTime":"2021-06-25T19:54:50Z","expirationDateTime":"2021-06-26T19:54:50Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":0,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:58.4255638Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]},{"id":"2","entities":[],"warnings":[]},{"id":"3","entities":[],"warnings":[]},{"id":"4","entities":[],"warnings":[]},{"id":"5","entities":[],"warnings":[]},{"id":"6","entities":[],"warnings":[]},{"id":"7","entities":[],"warnings":[]},{"id":"8","entities":[],"warnings":[]},{"id":"9","entities":[],"warnings":[]},{"id":"10","entities":[],"warnings":[]},{"id":"11","entities":[],"warnings":[]},{"id":"12","entities":[],"warnings":[]},{"id":"13","entities":[],"warnings":[]},{"id":"14","entities":[],"warnings":[]},{"id":"15","entities":[],"warnings":[]},{"id":"16","entities":[],"warnings":[]},{"id":"17","entities":[],"warnings":[]},{"id":"18","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:55:00.8189036Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["random text"],"warnings":[]},{"id":"1","keyPhrases":["random text"],"warnings":[]},{"id":"2","keyPhrases":["random text"],"warnings":[]},{"id":"3","keyPhrases":["random text"],"warnings":[]},{"id":"4","keyPhrases":["random text"],"warnings":[]},{"id":"5","keyPhrases":["random text"],"warnings":[]},{"id":"6","keyPhrases":["random text"],"warnings":[]},{"id":"7","keyPhrases":["random text"],"warnings":[]},{"id":"8","keyPhrases":["random text"],"warnings":[]},{"id":"9","keyPhrases":["random text"],"warnings":[]},{"id":"10","keyPhrases":["random text"],"warnings":[]},{"id":"11","keyPhrases":["random text"],"warnings":[]},{"id":"12","keyPhrases":["random text"],"warnings":[]},{"id":"13","keyPhrases":["random text"],"warnings":[]},{"id":"14","keyPhrases":["random text"],"warnings":[]},{"id":"15","keyPhrases":["random text"],"warnings":[]},{"id":"16","keyPhrases":["random text"],"warnings":[]},{"id":"17","keyPhrases":["random text"],"warnings":[]},{"id":"18","keyPhrases":["random text"],"warnings":[]},{"id":"19","keyPhrases":["random text"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]},"@nextLink":"https://endpoint/text/analytics/v3.1/analyze/jobs/df7cd524-a6fe-455b-a63f-68d2a7e44e69?$skip=20&$top=5&showStats=False"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '404', + 'apim-request-id', + 'f29ba5a8-2efb-48bb-8baa-e3244db8db69', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:01 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/df7cd524-a6fe-455b-a63f-68d2a7e44e69') + .query(true) + .reply(200, {"jobId":"df7cd524-a6fe-455b-a63f-68d2a7e44e69","lastUpdateDateTime":"2021-06-25T19:55:00Z","createdDateTime":"2021-06-25T19:54:50Z","expirationDateTime":"2021-06-26T19:54:50Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":0,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:58.4255638Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[],"warnings":[]},{"id":"2","entities":[],"warnings":[]},{"id":"3","entities":[],"warnings":[]},{"id":"4","entities":[],"warnings":[]},{"id":"5","entities":[],"warnings":[]},{"id":"6","entities":[],"warnings":[]},{"id":"7","entities":[],"warnings":[]},{"id":"8","entities":[],"warnings":[]},{"id":"9","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:55:00.8189036Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["random text"],"warnings":[]},{"id":"1","keyPhrases":["random text"],"warnings":[]},{"id":"2","keyPhrases":["random text"],"warnings":[]},{"id":"3","keyPhrases":["random text"],"warnings":[]},{"id":"4","keyPhrases":["random text"],"warnings":[]},{"id":"5","keyPhrases":["random text"],"warnings":[]},{"id":"6","keyPhrases":["random text"],"warnings":[]},{"id":"7","keyPhrases":["random text"],"warnings":[]},{"id":"8","keyPhrases":["random text"],"warnings":[]},{"id":"9","keyPhrases":["random text"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]},"@nextLink":"https://endpoint/text/analytics/v3.1/analyze/jobs/df7cd524-a6fe-455b-a63f-68d2a7e44e69?$skip=10&$top=10&showStats=False"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '278', + 'apim-request-id', + '9c5ea9a9-54e6-47c6-9980-c4694df67d92', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:02 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/df7cd524-a6fe-455b-a63f-68d2a7e44e69') + .query(true) + .reply(200, {"jobId":"df7cd524-a6fe-455b-a63f-68d2a7e44e69","lastUpdateDateTime":"2021-06-25T19:55:00Z","createdDateTime":"2021-06-25T19:54:50Z","expirationDateTime":"2021-06-26T19:54:50Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":0,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:58.4255638Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"10","entities":[],"warnings":[]},{"id":"11","entities":[],"warnings":[]},{"id":"12","entities":[],"warnings":[]},{"id":"13","entities":[],"warnings":[]},{"id":"14","entities":[],"warnings":[]},{"id":"15","entities":[],"warnings":[]},{"id":"16","entities":[],"warnings":[]},{"id":"17","entities":[],"warnings":[]},{"id":"18","entities":[],"warnings":[]},{"id":"19","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:55:00.8189036Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"10","keyPhrases":["random text"],"warnings":[]},{"id":"11","keyPhrases":["random text"],"warnings":[]},{"id":"12","keyPhrases":["random text"],"warnings":[]},{"id":"13","keyPhrases":["random text"],"warnings":[]},{"id":"14","keyPhrases":["random text"],"warnings":[]},{"id":"15","keyPhrases":["random text"],"warnings":[]},{"id":"16","keyPhrases":["random text"],"warnings":[]},{"id":"17","keyPhrases":["random text"],"warnings":[]},{"id":"18","keyPhrases":["random text"],"warnings":[]},{"id":"19","keyPhrases":["random text"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]},"@nextLink":"https://endpoint/text/analytics/v3.1/analyze/jobs/df7cd524-a6fe-455b-a63f-68d2a7e44e69?$skip=20&$top=5&showStats=False"}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '295', + 'apim-request-id', + 'cd2e9994-af09-49b5-b603-7f76c4e3a06c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:02 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/df7cd524-a6fe-455b-a63f-68d2a7e44e69') + .query(true) + .reply(200, {"jobId":"df7cd524-a6fe-455b-a63f-68d2a7e44e69","lastUpdateDateTime":"2021-06-25T19:55:00Z","createdDateTime":"2021-06-25T19:54:50Z","expirationDateTime":"2021-06-26T19:54:50Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":0,"total":2,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:58.4255638Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"20","entities":[],"warnings":[]},{"id":"21","entities":[],"warnings":[]},{"id":"22","entities":[],"warnings":[]},{"id":"23","entities":[],"warnings":[]},{"id":"24","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":25,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":40,"length":10,"confidenceScore":1}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:55:00.8189036Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"20","keyPhrases":["random text"],"warnings":[]},{"id":"21","keyPhrases":["random text"],"warnings":[]},{"id":"22","keyPhrases":["random text"],"warnings":[]},{"id":"23","keyPhrases":["random text"],"warnings":[]},{"id":"24","keyPhrases":["Bill Gates","Paul Allen","Microsoft"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '180', + 'apim-request-id', + 'e01b076c-395e-4f89-af8f-9fd6282495b2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:02 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.js new file mode 100644 index 000000000000..bd941c0f04b7 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_pii_redacted_test_is_not_empty.js @@ -0,0 +1,164 @@ +let nock = require('nock'); + +module.exports.hash = "53edc15aa669bdf8a052f15fbf8840b3"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"1","text":"I will go to the park."},{"id":"2","text":"Este es un document escrito en Español."},{"id":"3","text":"猫は幸せ"}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]}}) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/8d9925aa-96e2-4abc-a06d-0681fc923b8b', + 'x-envoy-upstream-service-time', + '185', + 'apim-request-id', + 'beb7214d-ebd3-49d3-a414-c8e18601d3b0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:03 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8d9925aa-96e2-4abc-a06d-0681fc923b8b') + .query(true) + .reply(200, {"jobId":"8d9925aa-96e2-4abc-a06d-0681fc923b8b","lastUpdateDateTime":"2021-06-25T19:55:03Z","createdDateTime":"2021-06-25T19:55:03Z","expirationDateTime":"2021-06-26T19:55:03Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '4549f977-3775-4bd3-8113-a3c4715c29e9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:03 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8d9925aa-96e2-4abc-a06d-0681fc923b8b') + .query(true) + .reply(200, {"jobId":"8d9925aa-96e2-4abc-a06d-0681fc923b8b","lastUpdateDateTime":"2021-06-25T19:55:03Z","createdDateTime":"2021-06-25T19:55:03Z","expirationDateTime":"2021-06-26T19:55:03Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '6cb68a02-ee16-4a45-8e0d-16450dc2835e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:03 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8d9925aa-96e2-4abc-a06d-0681fc923b8b') + .query(true) + .reply(200, {"jobId":"8d9925aa-96e2-4abc-a06d-0681fc923b8b","lastUpdateDateTime":"2021-06-25T19:55:04Z","createdDateTime":"2021-06-25T19:55:03Z","expirationDateTime":"2021-06-26T19:55:03Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '591e60f8-4db0-446a-bcf8-512303ffea40', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:05 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8d9925aa-96e2-4abc-a06d-0681fc923b8b') + .query(true) + .reply(200, {"jobId":"8d9925aa-96e2-4abc-a06d-0681fc923b8b","lastUpdateDateTime":"2021-06-25T19:55:04Z","createdDateTime":"2021-06-25T19:55:03Z","expirationDateTime":"2021-06-26T19:55:03Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + 'f3dabb31-126c-4283-81e3-7e42fa6f6645', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:07 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8d9925aa-96e2-4abc-a06d-0681fc923b8b') + .query(true) + .reply(200, {"jobId":"8d9925aa-96e2-4abc-a06d-0681fc923b8b","lastUpdateDateTime":"2021-06-25T19:55:04Z","createdDateTime":"2021-06-25T19:55:03Z","expirationDateTime":"2021-06-26T19:55:03Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '0559be89-25da-4aaa-8ce4-11ffd34d0137', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:09 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8d9925aa-96e2-4abc-a06d-0681fc923b8b') + .query(true) + .reply(200, {"jobId":"8d9925aa-96e2-4abc-a06d-0681fc923b8b","lastUpdateDateTime":"2021-06-25T19:55:11Z","createdDateTime":"2021-06-25T19:55:03Z","expirationDateTime":"2021-06-26T19:55:03Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:55:11.2048044Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '65', + 'apim-request-id', + '4f62fb98-ecf4-44f6-87e1-9a5134b58f59', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:11 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8d9925aa-96e2-4abc-a06d-0681fc923b8b') + .query(true) + .reply(200, {"jobId":"8d9925aa-96e2-4abc-a06d-0681fc923b8b","lastUpdateDateTime":"2021-06-25T19:55:11Z","createdDateTime":"2021-06-25T19:55:03Z","expirationDateTime":"2021-06-26T19:55:03Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:55:11.2048044Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '62', + 'apim-request-id', + '3e7ad06f-5e92-4c5c-8dcc-65ca11d5d290', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:11 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.js new file mode 100644 index 000000000000..084a50ea27f4 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entities_linking_action.js @@ -0,0 +1,124 @@ +let nock = require('nock'); + +module.exports.hash = "ce1022e89d106988559f82afe6baea1e"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"0","text":"Microsoft moved its headquarters to Bellevue, Washington in January 1979.","language":"en"},{"id":"1","text":"Steve Ballmer stepped down as CEO of Microsoft and was succeeded by Satya Nadella.","language":"en"}]},"tasks":{"entityLinkingTasks":[{"parameters":{"stringIndexType":"Utf16CodeUnit"}}]}}) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/c9ccf7b8-b322-4983-8644-b7a738a51dbd', + 'x-envoy-upstream-service-time', + '2706', + 'apim-request-id', + 'fd23129f-ad3e-407f-8fd8-cd3db3cbd90e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:54 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/c9ccf7b8-b322-4983-8644-b7a738a51dbd') + .query(true) + .reply(200, {"jobId":"c9ccf7b8-b322-4983-8644-b7a738a51dbd","lastUpdateDateTime":"2021-06-25T19:48:55Z","createdDateTime":"2021-06-25T19:48:52Z","expirationDateTime":"2021-06-26T19:48:52Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '84133019-8c65-4504-bb8f-691c70e0ed15', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:54 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/c9ccf7b8-b322-4983-8644-b7a738a51dbd') + .query(true) + .reply(200, {"jobId":"c9ccf7b8-b322-4983-8644-b7a738a51dbd","lastUpdateDateTime":"2021-06-25T19:48:55Z","createdDateTime":"2021-06-25T19:48:52Z","expirationDateTime":"2021-06-26T19:48:52Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'a2f812b4-a220-44bc-9743-9157e6b2be75', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:54 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/c9ccf7b8-b322-4983-8644-b7a738a51dbd') + .query(true) + .reply(200, {"jobId":"c9ccf7b8-b322-4983-8644-b7a738a51dbd","lastUpdateDateTime":"2021-06-25T19:48:56Z","createdDateTime":"2021-06-25T19:48:52Z","expirationDateTime":"2021-06-26T19:48:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '5107a1fd-75bf-4168-9498-f70d5c1d9897', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:56 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/c9ccf7b8-b322-4983-8644-b7a738a51dbd') + .query(true) + .reply(200, {"jobId":"c9ccf7b8-b322-4983-8644-b7a738a51dbd","lastUpdateDateTime":"2021-06-25T19:48:57Z","createdDateTime":"2021-06-25T19:48:52Z","expirationDateTime":"2021-06-26T19:48:52Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityLinkingTasks":[{"lastUpdateDateTime":"2021-06-25T19:48:57.8841197Z","taskName":"EntityLinking_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[{"name":"Bellevue, Washington","matches":[{"text":"Bellevue, Washington","offset":36,"length":20,"confidenceScore":0.87}],"language":"en","id":"Bellevue, Washington","url":"https://en.wikipedia.org/wiki/Bellevue,_Washington","dataSource":"Wikipedia"},{"name":"Microsoft","matches":[{"text":"Microsoft","offset":0,"length":9,"confidenceScore":0.39}],"language":"en","id":"Microsoft","url":"https://en.wikipedia.org/wiki/Microsoft","dataSource":"Wikipedia"},{"name":"Briann January","matches":[{"text":"January","offset":60,"length":7,"confidenceScore":0.14}],"language":"en","id":"Briann January","url":"https://en.wikipedia.org/wiki/Briann_January","dataSource":"Wikipedia"}],"warnings":[]},{"id":"1","entities":[{"name":"Steve Ballmer","matches":[{"text":"Steve Ballmer","offset":0,"length":13,"confidenceScore":0.92}],"language":"en","id":"Steve Ballmer","url":"https://en.wikipedia.org/wiki/Steve_Ballmer","dataSource":"Wikipedia"},{"name":"Satya Nadella","matches":[{"text":"Satya Nadella","offset":68,"length":13,"confidenceScore":0.9}],"language":"en","id":"Satya Nadella","url":"https://en.wikipedia.org/wiki/Satya_Nadella","dataSource":"Wikipedia"},{"name":"Microsoft","matches":[{"text":"Microsoft","offset":37,"length":9,"confidenceScore":0.36}],"language":"en","id":"Microsoft","url":"https://en.wikipedia.org/wiki/Microsoft","dataSource":"Wikipedia"},{"name":"Chief executive officer","matches":[{"text":"CEO","offset":30,"length":3,"confidenceScore":0.25}],"language":"en","id":"Chief executive officer","url":"https://en.wikipedia.org/wiki/Chief_executive_officer","dataSource":"Wikipedia"}],"warnings":[]}],"errors":[],"modelVersion":"2020-02-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '203', + 'apim-request-id', + '647bf501-5821-460c-aa7d-7a6e7704173a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:58 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/c9ccf7b8-b322-4983-8644-b7a738a51dbd') + .query(true) + .reply(200, {"jobId":"c9ccf7b8-b322-4983-8644-b7a738a51dbd","lastUpdateDateTime":"2021-06-25T19:48:57Z","createdDateTime":"2021-06-25T19:48:52Z","expirationDateTime":"2021-06-26T19:48:52Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityLinkingTasks":[{"lastUpdateDateTime":"2021-06-25T19:48:57.8841197Z","taskName":"EntityLinking_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[{"name":"Bellevue, Washington","matches":[{"text":"Bellevue, Washington","offset":36,"length":20,"confidenceScore":0.87}],"language":"en","id":"Bellevue, Washington","url":"https://en.wikipedia.org/wiki/Bellevue,_Washington","dataSource":"Wikipedia"},{"name":"Microsoft","matches":[{"text":"Microsoft","offset":0,"length":9,"confidenceScore":0.39}],"language":"en","id":"Microsoft","url":"https://en.wikipedia.org/wiki/Microsoft","dataSource":"Wikipedia"},{"name":"Briann January","matches":[{"text":"January","offset":60,"length":7,"confidenceScore":0.14}],"language":"en","id":"Briann January","url":"https://en.wikipedia.org/wiki/Briann_January","dataSource":"Wikipedia"}],"warnings":[]},{"id":"1","entities":[{"name":"Steve Ballmer","matches":[{"text":"Steve Ballmer","offset":0,"length":13,"confidenceScore":0.92}],"language":"en","id":"Steve Ballmer","url":"https://en.wikipedia.org/wiki/Steve_Ballmer","dataSource":"Wikipedia"},{"name":"Satya Nadella","matches":[{"text":"Satya Nadella","offset":68,"length":13,"confidenceScore":0.9}],"language":"en","id":"Satya Nadella","url":"https://en.wikipedia.org/wiki/Satya_Nadella","dataSource":"Wikipedia"},{"name":"Microsoft","matches":[{"text":"Microsoft","offset":37,"length":9,"confidenceScore":0.36}],"language":"en","id":"Microsoft","url":"https://en.wikipedia.org/wiki/Microsoft","dataSource":"Wikipedia"},{"name":"Chief executive officer","matches":[{"text":"CEO","offset":30,"length":3,"confidenceScore":0.25}],"language":"en","id":"Chief executive officer","url":"https://en.wikipedia.org/wiki/Chief_executive_officer","dataSource":"Wikipedia"}],"warnings":[]}],"errors":[],"modelVersion":"2020-02-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '93', + 'apim-request-id', + '38f8a34f-ae98-4511-9f2f-982b57b9a99c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:58 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.js new file mode 100644 index 000000000000..543b0d10df1b --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entities_recognition_action.js @@ -0,0 +1,484 @@ +let nock = require('nock'); + +module.exports.hash = "d3883c1b02faf3494e22c243c4aaf823"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"1","text":"Microsoft was founded by Bill Gates and Paul Allen on April 4, 1975.","language":"en"},{"id":"2","text":"Microsoft fue fundado por Bill Gates y Paul Allen el 4 de abril de 1975.","language":"es"},{"id":"3","text":"Microsoft wurde am 4. April 1975 von Bill Gates und Paul Allen gegründet.","language":"de"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]}}) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/cfd6bbb8-93ce-4c22-8115-a7e41cb576e2', + 'x-envoy-upstream-service-time', + '175', + 'apim-request-id', + '7cfed1f7-51dc-462d-a6d3-b05f273c2acc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:09 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/cfd6bbb8-93ce-4c22-8115-a7e41cb576e2') + .query(true) + .reply(200, {"jobId":"cfd6bbb8-93ce-4c22-8115-a7e41cb576e2","lastUpdateDateTime":"2021-06-25T19:48:10Z","createdDateTime":"2021-06-25T19:48:10Z","expirationDateTime":"2021-06-26T19:48:10Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'e60f74ba-d9e8-4ff2-9da0-dc1e19e8aafe', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:09 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/cfd6bbb8-93ce-4c22-8115-a7e41cb576e2') + .query(true) + .reply(200, {"jobId":"cfd6bbb8-93ce-4c22-8115-a7e41cb576e2","lastUpdateDateTime":"2021-06-25T19:48:10Z","createdDateTime":"2021-06-25T19:48:10Z","expirationDateTime":"2021-06-26T19:48:10Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '5', + 'apim-request-id', + '1fb6ef7d-2f22-4631-8ef0-1c34c3ea9d31', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:10 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/cfd6bbb8-93ce-4c22-8115-a7e41cb576e2') + .query(true) + .reply(200, {"jobId":"cfd6bbb8-93ce-4c22-8115-a7e41cb576e2","lastUpdateDateTime":"2021-06-25T19:48:10Z","createdDateTime":"2021-06-25T19:48:10Z","expirationDateTime":"2021-06-26T19:48:10Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '8dc2ca56-f15f-474c-a0b8-2f9cfccb4e2b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:11 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/cfd6bbb8-93ce-4c22-8115-a7e41cb576e2') + .query(true) + .reply(200, {"jobId":"cfd6bbb8-93ce-4c22-8115-a7e41cb576e2","lastUpdateDateTime":"2021-06-25T19:48:10Z","createdDateTime":"2021-06-25T19:48:10Z","expirationDateTime":"2021-06-26T19:48:10Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '764e12f4-760e-4e6c-b62a-53729de2ade0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:14 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/cfd6bbb8-93ce-4c22-8115-a7e41cb576e2') + .query(true) + .reply(200, {"jobId":"cfd6bbb8-93ce-4c22-8115-a7e41cb576e2","lastUpdateDateTime":"2021-06-25T19:48:10Z","createdDateTime":"2021-06-25T19:48:10Z","expirationDateTime":"2021-06-26T19:48:10Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '6bbd5da1-5aaa-473b-965f-20857f6cc4d1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:16 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/cfd6bbb8-93ce-4c22-8115-a7e41cb576e2') + .query(true) + .reply(200, {"jobId":"cfd6bbb8-93ce-4c22-8115-a7e41cb576e2","lastUpdateDateTime":"2021-06-25T19:48:10Z","createdDateTime":"2021-06-25T19:48:10Z","expirationDateTime":"2021-06-26T19:48:10Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + 'db94479d-4083-4e54-a14d-a49446b96b4d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:18 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/cfd6bbb8-93ce-4c22-8115-a7e41cb576e2') + .query(true) + .reply(200, {"jobId":"cfd6bbb8-93ce-4c22-8115-a7e41cb576e2","lastUpdateDateTime":"2021-06-25T19:48:10Z","createdDateTime":"2021-06-25T19:48:10Z","expirationDateTime":"2021-06-26T19:48:10Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '11', + 'apim-request-id', + 'c5d85be8-0fa8-4e6f-b058-46b598e427f7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:20 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/cfd6bbb8-93ce-4c22-8115-a7e41cb576e2') + .query(true) + .reply(200, {"jobId":"cfd6bbb8-93ce-4c22-8115-a7e41cb576e2","lastUpdateDateTime":"2021-06-25T19:48:10Z","createdDateTime":"2021-06-25T19:48:10Z","expirationDateTime":"2021-06-26T19:48:10Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + 'bef7f118-6b8a-43af-b034-96049cc47a3a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:22 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/cfd6bbb8-93ce-4c22-8115-a7e41cb576e2') + .query(true) + .reply(200, {"jobId":"cfd6bbb8-93ce-4c22-8115-a7e41cb576e2","lastUpdateDateTime":"2021-06-25T19:48:23Z","createdDateTime":"2021-06-25T19:48:10Z","expirationDateTime":"2021-06-26T19:48:10Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + 'aac0aae2-0ece-48c8-86b0-f5c7808f2e12', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:24 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/cfd6bbb8-93ce-4c22-8115-a7e41cb576e2') + .query(true) + .reply(200, {"jobId":"cfd6bbb8-93ce-4c22-8115-a7e41cb576e2","lastUpdateDateTime":"2021-06-25T19:48:23Z","createdDateTime":"2021-06-25T19:48:10Z","expirationDateTime":"2021-06-26T19:48:10Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '17', + 'apim-request-id', + 'c2f9e3df-e620-4e45-9c60-10870640a640', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:26 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/cfd6bbb8-93ce-4c22-8115-a7e41cb576e2') + .query(true) + .reply(200, {"jobId":"cfd6bbb8-93ce-4c22-8115-a7e41cb576e2","lastUpdateDateTime":"2021-06-25T19:48:23Z","createdDateTime":"2021-06-25T19:48:10Z","expirationDateTime":"2021-06-26T19:48:10Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'e12271a9-94ff-424f-914c-75f2179fc2b9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:28 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/cfd6bbb8-93ce-4c22-8115-a7e41cb576e2') + .query(true) + .reply(200, {"jobId":"cfd6bbb8-93ce-4c22-8115-a7e41cb576e2","lastUpdateDateTime":"2021-06-25T19:48:23Z","createdDateTime":"2021-06-25T19:48:10Z","expirationDateTime":"2021-06-26T19:48:10Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '10', + 'apim-request-id', + '86c1b052-3bbd-42f8-ad9d-8d89c05ff08b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:30 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/cfd6bbb8-93ce-4c22-8115-a7e41cb576e2') + .query(true) + .reply(200, {"jobId":"cfd6bbb8-93ce-4c22-8115-a7e41cb576e2","lastUpdateDateTime":"2021-06-25T19:48:23Z","createdDateTime":"2021-06-25T19:48:10Z","expirationDateTime":"2021-06-26T19:48:10Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + '2405d77c-afe7-4453-b06b-be24862b9841', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:32 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/cfd6bbb8-93ce-4c22-8115-a7e41cb576e2') + .query(true) + .reply(200, {"jobId":"cfd6bbb8-93ce-4c22-8115-a7e41cb576e2","lastUpdateDateTime":"2021-06-25T19:48:23Z","createdDateTime":"2021-06-25T19:48:10Z","expirationDateTime":"2021-06-26T19:48:10Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '9', + 'apim-request-id', + '31918f77-df13-4910-8053-d631328b6bd9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:34 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/cfd6bbb8-93ce-4c22-8115-a7e41cb576e2') + .query(true) + .reply(200, {"jobId":"cfd6bbb8-93ce-4c22-8115-a7e41cb576e2","lastUpdateDateTime":"2021-06-25T19:48:23Z","createdDateTime":"2021-06-25T19:48:10Z","expirationDateTime":"2021-06-26T19:48:10Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '55656dc2-19c0-42f3-bf9c-1025330a854b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:36 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/cfd6bbb8-93ce-4c22-8115-a7e41cb576e2') + .query(true) + .reply(200, {"jobId":"cfd6bbb8-93ce-4c22-8115-a7e41cb576e2","lastUpdateDateTime":"2021-06-25T19:48:23Z","createdDateTime":"2021-06-25T19:48:10Z","expirationDateTime":"2021-06-26T19:48:10Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + 'fb3eb443-6bd1-4af6-a9be-c6f487dec78a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:38 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/cfd6bbb8-93ce-4c22-8115-a7e41cb576e2') + .query(true) + .reply(200, {"jobId":"cfd6bbb8-93ce-4c22-8115-a7e41cb576e2","lastUpdateDateTime":"2021-06-25T19:48:23Z","createdDateTime":"2021-06-25T19:48:10Z","expirationDateTime":"2021-06-26T19:48:10Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '0e5ec21d-d548-4687-88fe-8714dcab869a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:41 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/cfd6bbb8-93ce-4c22-8115-a7e41cb576e2') + .query(true) + .reply(200, {"jobId":"cfd6bbb8-93ce-4c22-8115-a7e41cb576e2","lastUpdateDateTime":"2021-06-25T19:48:23Z","createdDateTime":"2021-06-25T19:48:10Z","expirationDateTime":"2021-06-26T19:48:10Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '22', + 'apim-request-id', + '79f43970-aa01-461e-af8f-36e86adc9dfa', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:43 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/cfd6bbb8-93ce-4c22-8115-a7e41cb576e2') + .query(true) + .reply(200, {"jobId":"cfd6bbb8-93ce-4c22-8115-a7e41cb576e2","lastUpdateDateTime":"2021-06-25T19:48:23Z","createdDateTime":"2021-06-25T19:48:10Z","expirationDateTime":"2021-06-26T19:48:10Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '15', + 'apim-request-id', + '038754b3-3b42-4791-996b-f4aba8abb60b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:45 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/cfd6bbb8-93ce-4c22-8115-a7e41cb576e2') + .query(true) + .reply(200, {"jobId":"cfd6bbb8-93ce-4c22-8115-a7e41cb576e2","lastUpdateDateTime":"2021-06-25T19:48:23Z","createdDateTime":"2021-06-25T19:48:10Z","expirationDateTime":"2021-06-26T19:48:10Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '108b23fc-7994-4bfe-bff6-22a6fe61ece7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:47 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/cfd6bbb8-93ce-4c22-8115-a7e41cb576e2') + .query(true) + .reply(200, {"jobId":"cfd6bbb8-93ce-4c22-8115-a7e41cb576e2","lastUpdateDateTime":"2021-06-25T19:48:23Z","createdDateTime":"2021-06-25T19:48:10Z","expirationDateTime":"2021-06-26T19:48:10Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + 'e485ff44-d471-4fb4-b8ee-5dd57f31dbfa', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:49 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/cfd6bbb8-93ce-4c22-8115-a7e41cb576e2') + .query(true) + .reply(200, {"jobId":"cfd6bbb8-93ce-4c22-8115-a7e41cb576e2","lastUpdateDateTime":"2021-06-25T19:48:50Z","createdDateTime":"2021-06-25T19:48:10Z","expirationDateTime":"2021-06-26T19:48:10Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:48:50.3273457Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":25,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":40,"length":10,"confidenceScore":1},{"text":"April 4, 1975","category":"DateTime","subcategory":"Date","offset":54,"length":13,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":26,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":39,"length":10,"confidenceScore":0.99},{"text":"4 de abril de 1975","category":"DateTime","subcategory":"Date","offset":53,"length":18,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"4. April 1975","category":"DateTime","subcategory":"Date","offset":19,"length":13,"confidenceScore":0.8},{"text":"Bill Gates","category":"Person","offset":37,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":52,"length":10,"confidenceScore":1}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '62', + 'apim-request-id', + 'f0866d21-c52b-4f72-9263-6456cf8b2525', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:51 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/cfd6bbb8-93ce-4c22-8115-a7e41cb576e2') + .query(true) + .reply(200, {"jobId":"cfd6bbb8-93ce-4c22-8115-a7e41cb576e2","lastUpdateDateTime":"2021-06-25T19:48:50Z","createdDateTime":"2021-06-25T19:48:10Z","expirationDateTime":"2021-06-26T19:48:10Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:48:50.3273457Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":25,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":40,"length":10,"confidenceScore":1},{"text":"April 4, 1975","category":"DateTime","subcategory":"Date","offset":54,"length":13,"confidenceScore":0.8}],"warnings":[]},{"id":"2","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":26,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":39,"length":10,"confidenceScore":0.99},{"text":"4 de abril de 1975","category":"DateTime","subcategory":"Date","offset":53,"length":18,"confidenceScore":0.8}],"warnings":[]},{"id":"3","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"4. April 1975","category":"DateTime","subcategory":"Date","offset":19,"length":13,"confidenceScore":0.8},{"text":"Bill Gates","category":"Person","offset":37,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":52,"length":10,"confidenceScore":1}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '67', + 'apim-request-id', + 'ffa8c0b8-9cef-4f2b-aa32-2fdde0f36fca', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:51 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.js new file mode 100644 index 000000000000..092a71c723e8 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_entity_recognition_action.js @@ -0,0 +1,364 @@ +let nock = require('nock'); + +module.exports.hash = "de35700ea43a39df2d66af7075d93f38"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"1","text":"Microsoft was founded by Bill Gates and Paul Allen","language":"en"},{"id":"2","text":"Microsoft fue fundado por Bill Gates y Paul Allen","language":"es"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]}}) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/9a5fa160-d89d-4445-b29d-a3e471ae5d66', + 'x-envoy-upstream-service-time', + '153', + 'apim-request-id', + 'a641a9d2-5cbc-41b5-9b4e-bdfc1cfcda5b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:56 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9a5fa160-d89d-4445-b29d-a3e471ae5d66') + .query(true) + .reply(200, {"jobId":"9a5fa160-d89d-4445-b29d-a3e471ae5d66","lastUpdateDateTime":"2021-06-25T19:46:56Z","createdDateTime":"2021-06-25T19:46:56Z","expirationDateTime":"2021-06-26T19:46:56Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '10', + 'apim-request-id', + '3ded192b-8e55-4900-add6-d05ae4c7798e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:56 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9a5fa160-d89d-4445-b29d-a3e471ae5d66') + .query(true) + .reply(200, {"jobId":"9a5fa160-d89d-4445-b29d-a3e471ae5d66","lastUpdateDateTime":"2021-06-25T19:46:56Z","createdDateTime":"2021-06-25T19:46:56Z","expirationDateTime":"2021-06-26T19:46:56Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '12', + 'apim-request-id', + '6deecec9-836d-4573-829e-5e4d42e3f61d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:56 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9a5fa160-d89d-4445-b29d-a3e471ae5d66') + .query(true) + .reply(200, {"jobId":"9a5fa160-d89d-4445-b29d-a3e471ae5d66","lastUpdateDateTime":"2021-06-25T19:46:56Z","createdDateTime":"2021-06-25T19:46:56Z","expirationDateTime":"2021-06-26T19:46:56Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '17', + 'apim-request-id', + 'c53a7258-1c7f-4c66-a4ef-44180ad47a77', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:46:58 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9a5fa160-d89d-4445-b29d-a3e471ae5d66') + .query(true) + .reply(200, {"jobId":"9a5fa160-d89d-4445-b29d-a3e471ae5d66","lastUpdateDateTime":"2021-06-25T19:46:59Z","createdDateTime":"2021-06-25T19:46:56Z","expirationDateTime":"2021-06-26T19:46:56Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '7153e53f-20f1-4399-b58b-dec53394a660', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:00 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9a5fa160-d89d-4445-b29d-a3e471ae5d66') + .query(true) + .reply(200, {"jobId":"9a5fa160-d89d-4445-b29d-a3e471ae5d66","lastUpdateDateTime":"2021-06-25T19:46:59Z","createdDateTime":"2021-06-25T19:46:56Z","expirationDateTime":"2021-06-26T19:46:56Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'a7b5cd2e-3220-44e9-9346-62cf5e981f6f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:02 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9a5fa160-d89d-4445-b29d-a3e471ae5d66') + .query(true) + .reply(200, {"jobId":"9a5fa160-d89d-4445-b29d-a3e471ae5d66","lastUpdateDateTime":"2021-06-25T19:46:59Z","createdDateTime":"2021-06-25T19:46:56Z","expirationDateTime":"2021-06-26T19:46:56Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '10', + 'apim-request-id', + 'e2c6cf36-f66c-4f7f-a3bb-354a5aafe059', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:04 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9a5fa160-d89d-4445-b29d-a3e471ae5d66') + .query(true) + .reply(200, {"jobId":"9a5fa160-d89d-4445-b29d-a3e471ae5d66","lastUpdateDateTime":"2021-06-25T19:46:59Z","createdDateTime":"2021-06-25T19:46:56Z","expirationDateTime":"2021-06-26T19:46:56Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '09be9edf-63c9-4022-ba2b-a4202e4b0055', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:06 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9a5fa160-d89d-4445-b29d-a3e471ae5d66') + .query(true) + .reply(200, {"jobId":"9a5fa160-d89d-4445-b29d-a3e471ae5d66","lastUpdateDateTime":"2021-06-25T19:46:59Z","createdDateTime":"2021-06-25T19:46:56Z","expirationDateTime":"2021-06-26T19:46:56Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + 'abd05698-d8b5-4da8-8505-c41cc8eddef2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:08 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9a5fa160-d89d-4445-b29d-a3e471ae5d66') + .query(true) + .reply(200, {"jobId":"9a5fa160-d89d-4445-b29d-a3e471ae5d66","lastUpdateDateTime":"2021-06-25T19:46:59Z","createdDateTime":"2021-06-25T19:46:56Z","expirationDateTime":"2021-06-26T19:46:56Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '38bc736b-0f39-40df-9dfe-db6d1980bd9b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:10 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9a5fa160-d89d-4445-b29d-a3e471ae5d66') + .query(true) + .reply(200, {"jobId":"9a5fa160-d89d-4445-b29d-a3e471ae5d66","lastUpdateDateTime":"2021-06-25T19:46:59Z","createdDateTime":"2021-06-25T19:46:56Z","expirationDateTime":"2021-06-26T19:46:56Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + 'adbe738b-06e2-4a1b-a0a9-f6f9397c7a08', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:12 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9a5fa160-d89d-4445-b29d-a3e471ae5d66') + .query(true) + .reply(200, {"jobId":"9a5fa160-d89d-4445-b29d-a3e471ae5d66","lastUpdateDateTime":"2021-06-25T19:46:59Z","createdDateTime":"2021-06-25T19:46:56Z","expirationDateTime":"2021-06-26T19:46:56Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '830313b0-55be-4bf6-9eb7-7c92b2bb4e92', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:15 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9a5fa160-d89d-4445-b29d-a3e471ae5d66') + .query(true) + .reply(200, {"jobId":"9a5fa160-d89d-4445-b29d-a3e471ae5d66","lastUpdateDateTime":"2021-06-25T19:46:59Z","createdDateTime":"2021-06-25T19:46:56Z","expirationDateTime":"2021-06-26T19:46:56Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '9', + 'apim-request-id', + 'd259afe2-c6c0-4599-9fe8-0b40ccf4135d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:17 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9a5fa160-d89d-4445-b29d-a3e471ae5d66') + .query(true) + .reply(200, {"jobId":"9a5fa160-d89d-4445-b29d-a3e471ae5d66","lastUpdateDateTime":"2021-06-25T19:46:59Z","createdDateTime":"2021-06-25T19:46:56Z","expirationDateTime":"2021-06-26T19:46:56Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '10', + 'apim-request-id', + '8804cea6-4ef1-4122-af2d-f85f14554180', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:19 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9a5fa160-d89d-4445-b29d-a3e471ae5d66') + .query(true) + .reply(200, {"jobId":"9a5fa160-d89d-4445-b29d-a3e471ae5d66","lastUpdateDateTime":"2021-06-25T19:46:59Z","createdDateTime":"2021-06-25T19:46:56Z","expirationDateTime":"2021-06-26T19:46:56Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + 'b0e54e93-f1e1-4dde-99bf-2a82b20b96a1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:21 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9a5fa160-d89d-4445-b29d-a3e471ae5d66') + .query(true) + .reply(200, {"jobId":"9a5fa160-d89d-4445-b29d-a3e471ae5d66","lastUpdateDateTime":"2021-06-25T19:46:59Z","createdDateTime":"2021-06-25T19:46:56Z","expirationDateTime":"2021-06-26T19:46:56Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '0908e7e2-8728-44fa-8bf7-6dbc99510b11', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:23 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9a5fa160-d89d-4445-b29d-a3e471ae5d66') + .query(true) + .reply(200, {"jobId":"9a5fa160-d89d-4445-b29d-a3e471ae5d66","lastUpdateDateTime":"2021-06-25T19:47:25Z","createdDateTime":"2021-06-25T19:46:56Z","expirationDateTime":"2021-06-26T19:46:56Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:47:25.5252938Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":25,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":40,"length":10,"confidenceScore":1}],"warnings":[]},{"id":"2","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":26,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":39,"length":10,"confidenceScore":0.99}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '53', + 'apim-request-id', + 'b1179534-f7cd-455c-be52-42405967fdb1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:25 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/9a5fa160-d89d-4445-b29d-a3e471ae5d66') + .query(true) + .reply(200, {"jobId":"9a5fa160-d89d-4445-b29d-a3e471ae5d66","lastUpdateDateTime":"2021-06-25T19:47:25Z","createdDateTime":"2021-06-25T19:46:56Z","expirationDateTime":"2021-06-26T19:46:56Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:47:25.5252938Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":25,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":40,"length":10,"confidenceScore":1}],"warnings":[]},{"id":"2","entities":[{"text":"Microsoft","category":"Organization","offset":0,"length":9,"confidenceScore":1},{"text":"Bill Gates","category":"Person","offset":26,"length":10,"confidenceScore":1},{"text":"Paul Allen","category":"Person","offset":39,"length":10,"confidenceScore":0.99}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '68', + 'apim-request-id', + '4a438903-a91a-4e44-8cc9-8a6f39c4111f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:25 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.js new file mode 100644 index 000000000000..986accafbd2d --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_key_phrases_action.js @@ -0,0 +1,404 @@ +let nock = require('nock'); + +module.exports.hash = "d7e8054512e98cb5ba9ae070e69b37f0"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"1","text":"Microsoft was founded by Bill Gates and Paul Allen","language":"en"},{"id":"2","text":"Microsoft fue fundado por Bill Gates y Paul Allen","language":"es"}]},"tasks":{"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/4501a5f9-015f-4844-8541-2b491751b1d3', + 'x-envoy-upstream-service-time', + '2754', + 'apim-request-id', + 'a135bb8a-3113-4363-ae6e-1a2e319139ee', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:28 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/4501a5f9-015f-4844-8541-2b491751b1d3') + .query(true) + .reply(200, {"jobId":"4501a5f9-015f-4844-8541-2b491751b1d3","lastUpdateDateTime":"2021-06-25T19:47:28Z","createdDateTime":"2021-06-25T19:47:26Z","expirationDateTime":"2021-06-26T19:47:26Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '11', + 'apim-request-id', + '74172180-dcdd-4bb4-b5ab-1f594dfe03bf', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:28 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/4501a5f9-015f-4844-8541-2b491751b1d3') + .query(true) + .reply(200, {"jobId":"4501a5f9-015f-4844-8541-2b491751b1d3","lastUpdateDateTime":"2021-06-25T19:47:28Z","createdDateTime":"2021-06-25T19:47:26Z","expirationDateTime":"2021-06-26T19:47:26Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '11', + 'apim-request-id', + 'e9774018-b516-496e-9cf4-aeefc5f23289', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:28 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/4501a5f9-015f-4844-8541-2b491751b1d3') + .query(true) + .reply(200, {"jobId":"4501a5f9-015f-4844-8541-2b491751b1d3","lastUpdateDateTime":"2021-06-25T19:47:29Z","createdDateTime":"2021-06-25T19:47:26Z","expirationDateTime":"2021-06-26T19:47:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + '30824b9c-af09-42a5-8f50-7531147a319c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:30 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/4501a5f9-015f-4844-8541-2b491751b1d3') + .query(true) + .reply(200, {"jobId":"4501a5f9-015f-4844-8541-2b491751b1d3","lastUpdateDateTime":"2021-06-25T19:47:29Z","createdDateTime":"2021-06-25T19:47:26Z","expirationDateTime":"2021-06-26T19:47:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + 'c43fcdd9-550f-49a0-bfea-7ac32244eade', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:32 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/4501a5f9-015f-4844-8541-2b491751b1d3') + .query(true) + .reply(200, {"jobId":"4501a5f9-015f-4844-8541-2b491751b1d3","lastUpdateDateTime":"2021-06-25T19:47:29Z","createdDateTime":"2021-06-25T19:47:26Z","expirationDateTime":"2021-06-26T19:47:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '70a5a3d3-e9d6-4bd9-85ce-1b375cad628c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:34 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/4501a5f9-015f-4844-8541-2b491751b1d3') + .query(true) + .reply(200, {"jobId":"4501a5f9-015f-4844-8541-2b491751b1d3","lastUpdateDateTime":"2021-06-25T19:47:29Z","createdDateTime":"2021-06-25T19:47:26Z","expirationDateTime":"2021-06-26T19:47:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'fdf35e21-d335-43ea-b60d-b2dd0c896181', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:36 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/4501a5f9-015f-4844-8541-2b491751b1d3') + .query(true) + .reply(200, {"jobId":"4501a5f9-015f-4844-8541-2b491751b1d3","lastUpdateDateTime":"2021-06-25T19:47:29Z","createdDateTime":"2021-06-25T19:47:26Z","expirationDateTime":"2021-06-26T19:47:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '5', + 'apim-request-id', + 'adb93d7c-76da-4751-8d62-aa845685ef81', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:38 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/4501a5f9-015f-4844-8541-2b491751b1d3') + .query(true) + .reply(200, {"jobId":"4501a5f9-015f-4844-8541-2b491751b1d3","lastUpdateDateTime":"2021-06-25T19:47:29Z","createdDateTime":"2021-06-25T19:47:26Z","expirationDateTime":"2021-06-26T19:47:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '2e25c3d0-e7a3-4129-8fc1-b6fd0632a1ec', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:40 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/4501a5f9-015f-4844-8541-2b491751b1d3') + .query(true) + .reply(200, {"jobId":"4501a5f9-015f-4844-8541-2b491751b1d3","lastUpdateDateTime":"2021-06-25T19:47:29Z","createdDateTime":"2021-06-25T19:47:26Z","expirationDateTime":"2021-06-26T19:47:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + '744d947f-14db-4c6d-aa92-d7f7083810db', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:42 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/4501a5f9-015f-4844-8541-2b491751b1d3') + .query(true) + .reply(200, {"jobId":"4501a5f9-015f-4844-8541-2b491751b1d3","lastUpdateDateTime":"2021-06-25T19:47:29Z","createdDateTime":"2021-06-25T19:47:26Z","expirationDateTime":"2021-06-26T19:47:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'a6628575-06b2-4228-9302-2b90190787d2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:44 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/4501a5f9-015f-4844-8541-2b491751b1d3') + .query(true) + .reply(200, {"jobId":"4501a5f9-015f-4844-8541-2b491751b1d3","lastUpdateDateTime":"2021-06-25T19:47:29Z","createdDateTime":"2021-06-25T19:47:26Z","expirationDateTime":"2021-06-26T19:47:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '923be5c7-5173-4b12-9a0c-1459a2eb060a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:47 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/4501a5f9-015f-4844-8541-2b491751b1d3') + .query(true) + .reply(200, {"jobId":"4501a5f9-015f-4844-8541-2b491751b1d3","lastUpdateDateTime":"2021-06-25T19:47:29Z","createdDateTime":"2021-06-25T19:47:26Z","expirationDateTime":"2021-06-26T19:47:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '5ea86265-ad82-43f3-bb22-13b16c5ff72a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:49 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/4501a5f9-015f-4844-8541-2b491751b1d3') + .query(true) + .reply(200, {"jobId":"4501a5f9-015f-4844-8541-2b491751b1d3","lastUpdateDateTime":"2021-06-25T19:47:29Z","createdDateTime":"2021-06-25T19:47:26Z","expirationDateTime":"2021-06-26T19:47:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '9', + 'apim-request-id', + 'ce118157-48e4-4e4a-89c0-2c5550b4488d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:51 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/4501a5f9-015f-4844-8541-2b491751b1d3') + .query(true) + .reply(200, {"jobId":"4501a5f9-015f-4844-8541-2b491751b1d3","lastUpdateDateTime":"2021-06-25T19:47:29Z","createdDateTime":"2021-06-25T19:47:26Z","expirationDateTime":"2021-06-26T19:47:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + 'c0978b28-2f18-4d34-8093-c0e3e7fb5734', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:53 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/4501a5f9-015f-4844-8541-2b491751b1d3') + .query(true) + .reply(200, {"jobId":"4501a5f9-015f-4844-8541-2b491751b1d3","lastUpdateDateTime":"2021-06-25T19:47:29Z","createdDateTime":"2021-06-25T19:47:26Z","expirationDateTime":"2021-06-26T19:47:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '18', + 'apim-request-id', + 'ec9da051-aa3c-465e-bf51-1dd86b7ff198', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:55 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/4501a5f9-015f-4844-8541-2b491751b1d3') + .query(true) + .reply(200, {"jobId":"4501a5f9-015f-4844-8541-2b491751b1d3","lastUpdateDateTime":"2021-06-25T19:47:29Z","createdDateTime":"2021-06-25T19:47:26Z","expirationDateTime":"2021-06-26T19:47:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '9', + 'apim-request-id', + 'e4194517-75de-48be-bb7b-0a66e7b27126', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:57 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/4501a5f9-015f-4844-8541-2b491751b1d3') + .query(true) + .reply(200, {"jobId":"4501a5f9-015f-4844-8541-2b491751b1d3","lastUpdateDateTime":"2021-06-25T19:47:29Z","createdDateTime":"2021-06-25T19:47:26Z","expirationDateTime":"2021-06-26T19:47:26Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '9', + 'apim-request-id', + 'a9a8e857-4bfb-407c-a943-bd218a9cfb31', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:47:59 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/4501a5f9-015f-4844-8541-2b491751b1d3') + .query(true) + .reply(200, {"jobId":"4501a5f9-015f-4844-8541-2b491751b1d3","lastUpdateDateTime":"2021-06-25T19:48:01Z","createdDateTime":"2021-06-25T19:47:26Z","expirationDateTime":"2021-06-26T19:47:26Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:48:01.3716213Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["Bill Gates","Paul Allen","Microsoft"],"warnings":[]},{"id":"2","keyPhrases":["Bill Gates","Paul Allen","Microsoft"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '59', + 'apim-request-id', + '69e64a82-ad21-4e1d-93d5-102762d8ce77', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:02 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/4501a5f9-015f-4844-8541-2b491751b1d3') + .query(true) + .reply(200, {"jobId":"4501a5f9-015f-4844-8541-2b491751b1d3","lastUpdateDateTime":"2021-06-25T19:48:01Z","createdDateTime":"2021-06-25T19:47:26Z","expirationDateTime":"2021-06-26T19:47:26Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:48:01.3716213Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["Bill Gates","Paul Allen","Microsoft"],"warnings":[]},{"id":"2","keyPhrases":["Bill Gates","Paul Allen","Microsoft"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7686', + 'apim-request-id', + 'c8ac4444-27f4-45f1-8bb2-7bcc3079f9e4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:48:09 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.js new file mode 100644 index 000000000000..1a3554828299 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_pii_entities_recognition_action.js @@ -0,0 +1,304 @@ +let nock = require('nock'); + +module.exports.hash = "ac00d978031a3ea05adbfa89b8857468"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"1","text":"My SSN is 859-98-0987."},{"id":"2","text":"Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check."},{"id":"3","text":"Is 998.214.865-68 your Brazilian CPF number?"}]},"tasks":{"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}]}}) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/77267cc8-3ebf-4469-bde4-cd90d43b6cf6', + 'x-envoy-upstream-service-time', + '213', + 'apim-request-id', + '626c24f2-dd02-488e-af2a-7dfdf4036726', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:00 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/77267cc8-3ebf-4469-bde4-cd90d43b6cf6') + .query(true) + .reply(200, {"jobId":"77267cc8-3ebf-4469-bde4-cd90d43b6cf6","lastUpdateDateTime":"2021-06-25T19:49:00Z","createdDateTime":"2021-06-25T19:49:00Z","expirationDateTime":"2021-06-26T19:49:00Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + '7d225ff4-b2c1-43fb-8c37-7b691e49534f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:00 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/77267cc8-3ebf-4469-bde4-cd90d43b6cf6') + .query(true) + .reply(200, {"jobId":"77267cc8-3ebf-4469-bde4-cd90d43b6cf6","lastUpdateDateTime":"2021-06-25T19:49:00Z","createdDateTime":"2021-06-25T19:49:00Z","expirationDateTime":"2021-06-26T19:49:00Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '5c848121-8d8b-47dc-9509-0a8064f35bcd', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:00 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/77267cc8-3ebf-4469-bde4-cd90d43b6cf6') + .query(true) + .reply(200, {"jobId":"77267cc8-3ebf-4469-bde4-cd90d43b6cf6","lastUpdateDateTime":"2021-06-25T19:49:00Z","createdDateTime":"2021-06-25T19:49:00Z","expirationDateTime":"2021-06-26T19:49:00Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '5', + 'apim-request-id', + 'c8e90e9b-5cb2-420b-bfe0-918aed695a1c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:02 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/77267cc8-3ebf-4469-bde4-cd90d43b6cf6') + .query(true) + .reply(200, {"jobId":"77267cc8-3ebf-4469-bde4-cd90d43b6cf6","lastUpdateDateTime":"2021-06-25T19:49:00Z","createdDateTime":"2021-06-25T19:49:00Z","expirationDateTime":"2021-06-26T19:49:00Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '8691536d-f257-4b64-93c9-dfeebc58e673', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:04 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/77267cc8-3ebf-4469-bde4-cd90d43b6cf6') + .query(true) + .reply(200, {"jobId":"77267cc8-3ebf-4469-bde4-cd90d43b6cf6","lastUpdateDateTime":"2021-06-25T19:49:00Z","createdDateTime":"2021-06-25T19:49:00Z","expirationDateTime":"2021-06-26T19:49:00Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + 'af08d124-de2a-46b5-8226-c486bd0b8631', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:06 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/77267cc8-3ebf-4469-bde4-cd90d43b6cf6') + .query(true) + .reply(200, {"jobId":"77267cc8-3ebf-4469-bde4-cd90d43b6cf6","lastUpdateDateTime":"2021-06-25T19:49:00Z","createdDateTime":"2021-06-25T19:49:00Z","expirationDateTime":"2021-06-26T19:49:00Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '10', + 'apim-request-id', + 'df5541f7-b86c-4ff1-bcb5-8eed89684a64', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:08 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/77267cc8-3ebf-4469-bde4-cd90d43b6cf6') + .query(true) + .reply(200, {"jobId":"77267cc8-3ebf-4469-bde4-cd90d43b6cf6","lastUpdateDateTime":"2021-06-25T19:49:00Z","createdDateTime":"2021-06-25T19:49:00Z","expirationDateTime":"2021-06-26T19:49:00Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '7552b5f7-a3f5-42c4-9d6d-cc4102b8b545', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:10 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/77267cc8-3ebf-4469-bde4-cd90d43b6cf6') + .query(true) + .reply(200, {"jobId":"77267cc8-3ebf-4469-bde4-cd90d43b6cf6","lastUpdateDateTime":"2021-06-25T19:49:00Z","createdDateTime":"2021-06-25T19:49:00Z","expirationDateTime":"2021-06-26T19:49:00Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '9', + 'apim-request-id', + '013bff44-728b-43ad-b77b-a58ba4e1cb71', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:12 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/77267cc8-3ebf-4469-bde4-cd90d43b6cf6') + .query(true) + .reply(200, {"jobId":"77267cc8-3ebf-4469-bde4-cd90d43b6cf6","lastUpdateDateTime":"2021-06-25T19:49:00Z","createdDateTime":"2021-06-25T19:49:00Z","expirationDateTime":"2021-06-26T19:49:00Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '566a3c29-cac5-4ae7-ba4b-80534cfd51ec', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:14 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/77267cc8-3ebf-4469-bde4-cd90d43b6cf6') + .query(true) + .reply(200, {"jobId":"77267cc8-3ebf-4469-bde4-cd90d43b6cf6","lastUpdateDateTime":"2021-06-25T19:49:00Z","createdDateTime":"2021-06-25T19:49:00Z","expirationDateTime":"2021-06-26T19:49:00Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '5', + 'apim-request-id', + '0e2fa0b5-f03e-4610-9ba4-9ff600cca470', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:16 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/77267cc8-3ebf-4469-bde4-cd90d43b6cf6') + .query(true) + .reply(200, {"jobId":"77267cc8-3ebf-4469-bde4-cd90d43b6cf6","lastUpdateDateTime":"2021-06-25T19:49:00Z","createdDateTime":"2021-06-25T19:49:00Z","expirationDateTime":"2021-06-26T19:49:00Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'a0038342-b3be-4ee4-92ce-aa11e0f0c058', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:18 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/77267cc8-3ebf-4469-bde4-cd90d43b6cf6') + .query(true) + .reply(200, {"jobId":"77267cc8-3ebf-4469-bde4-cd90d43b6cf6","lastUpdateDateTime":"2021-06-25T19:49:00Z","createdDateTime":"2021-06-25T19:49:00Z","expirationDateTime":"2021-06-26T19:49:00Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '45c4d363-6d31-4399-8930-5e3ed6111c86', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:20 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/77267cc8-3ebf-4469-bde4-cd90d43b6cf6') + .query(true) + .reply(200, {"jobId":"77267cc8-3ebf-4469-bde4-cd90d43b6cf6","lastUpdateDateTime":"2021-06-25T19:49:23Z","createdDateTime":"2021-06-25T19:49:00Z","expirationDateTime":"2021-06-26T19:49:00Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:49:23.0251551Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"My SSN is ***********.","id":"1","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":10,"length":11,"confidenceScore":0.65}],"warnings":[]},{"redactedText":"Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.","id":"2","entities":[{"text":"111000025","category":"PhoneNumber","offset":18,"length":9,"confidenceScore":0.8},{"text":"111000025","category":"ABARoutingNumber","offset":18,"length":9,"confidenceScore":0.75},{"text":"111000025","category":"NZSocialWelfareNumber","offset":18,"length":9,"confidenceScore":0.65}],"warnings":[]},{"redactedText":"Is 998.214.865-68 your Brazilian CPF number?","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '69', + 'apim-request-id', + '00a38baf-35ac-4416-871e-099b9609cf03', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:23 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/77267cc8-3ebf-4469-bde4-cd90d43b6cf6') + .query(true) + .reply(200, {"jobId":"77267cc8-3ebf-4469-bde4-cd90d43b6cf6","lastUpdateDateTime":"2021-06-25T19:49:23Z","createdDateTime":"2021-06-25T19:49:00Z","expirationDateTime":"2021-06-26T19:49:00Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:49:23.0251551Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"My SSN is ***********.","id":"1","entities":[{"text":"859-98-0987","category":"USSocialSecurityNumber","offset":10,"length":11,"confidenceScore":0.65}],"warnings":[]},{"redactedText":"Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.","id":"2","entities":[{"text":"111000025","category":"PhoneNumber","offset":18,"length":9,"confidenceScore":0.8},{"text":"111000025","category":"ABARoutingNumber","offset":18,"length":9,"confidenceScore":0.75},{"text":"111000025","category":"NZSocialWelfareNumber","offset":18,"length":9,"confidenceScore":0.65}],"warnings":[]},{"redactedText":"Is 998.214.865-68 your Brazilian CPF number?","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '65', + 'apim-request-id', + '85753cbf-7fec-46b1-9b20-fc25f143a317', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:23 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.js new file mode 100644 index 000000000000..cca63a539f4c --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_single_sentiment_analysis_action.js @@ -0,0 +1,504 @@ +let nock = require('nock'); + +module.exports.hash = "bec5840cf2c9dabcf50655ab317beba1"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"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"}]},"tasks":{"sentimentAnalysisTasks":[{"parameters":{"opinionMining":true,"stringIndexType":"Utf16CodeUnit"}}]}}) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/34427250-608e-4192-9f6d-760c2905a346', + 'x-envoy-upstream-service-time', + '319', + 'apim-request-id', + 'ceaf0ef0-a001-49f0-a95e-df15c0f86a16', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:23 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/34427250-608e-4192-9f6d-760c2905a346') + .query(true) + .reply(200, {"jobId":"34427250-608e-4192-9f6d-760c2905a346","lastUpdateDateTime":"2021-06-25T19:49:23Z","createdDateTime":"2021-06-25T19:49:23Z","expirationDateTime":"2021-06-26T19:49:23Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'bbabe9a7-d263-4e35-8089-6cc6db6d72c7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:23 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/34427250-608e-4192-9f6d-760c2905a346') + .query(true) + .reply(200, {"jobId":"34427250-608e-4192-9f6d-760c2905a346","lastUpdateDateTime":"2021-06-25T19:49:23Z","createdDateTime":"2021-06-25T19:49:23Z","expirationDateTime":"2021-06-26T19:49:23Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '10', + 'apim-request-id', + '8c87efbc-91a8-47c2-ad5e-749d3ac01564', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:23 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/34427250-608e-4192-9f6d-760c2905a346') + .query(true) + .reply(200, {"jobId":"34427250-608e-4192-9f6d-760c2905a346","lastUpdateDateTime":"2021-06-25T19:49:24Z","createdDateTime":"2021-06-25T19:49:23Z","expirationDateTime":"2021-06-26T19:49:23Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '27', + 'apim-request-id', + '6d44930e-e318-4051-83e6-096290c350f9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:25 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/34427250-608e-4192-9f6d-760c2905a346') + .query(true) + .reply(200, {"jobId":"34427250-608e-4192-9f6d-760c2905a346","lastUpdateDateTime":"2021-06-25T19:49:24Z","createdDateTime":"2021-06-25T19:49:23Z","expirationDateTime":"2021-06-26T19:49:23Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '10', + 'apim-request-id', + '4e695e57-48cf-48c6-8b7c-6060d2b52a35', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:27 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/34427250-608e-4192-9f6d-760c2905a346') + .query(true) + .reply(200, {"jobId":"34427250-608e-4192-9f6d-760c2905a346","lastUpdateDateTime":"2021-06-25T19:49:24Z","createdDateTime":"2021-06-25T19:49:23Z","expirationDateTime":"2021-06-26T19:49:23Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '12', + 'apim-request-id', + 'ceea1b31-a5de-4ac8-9e82-420d5689aad4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:30 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/34427250-608e-4192-9f6d-760c2905a346') + .query(true) + .reply(200, {"jobId":"34427250-608e-4192-9f6d-760c2905a346","lastUpdateDateTime":"2021-06-25T19:49:24Z","createdDateTime":"2021-06-25T19:49:23Z","expirationDateTime":"2021-06-26T19:49:23Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + '5c6e8816-9e71-4f47-a0c0-27d68023114b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:32 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/34427250-608e-4192-9f6d-760c2905a346') + .query(true) + .reply(200, {"jobId":"34427250-608e-4192-9f6d-760c2905a346","lastUpdateDateTime":"2021-06-25T19:49:24Z","createdDateTime":"2021-06-25T19:49:23Z","expirationDateTime":"2021-06-26T19:49:23Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '5a827910-5a8e-4102-88d8-e8151c30de5f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:34 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/34427250-608e-4192-9f6d-760c2905a346') + .query(true) + .reply(200, {"jobId":"34427250-608e-4192-9f6d-760c2905a346","lastUpdateDateTime":"2021-06-25T19:49:24Z","createdDateTime":"2021-06-25T19:49:23Z","expirationDateTime":"2021-06-26T19:49:23Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + 'c8e080f7-ed94-4e25-bb0f-1dd3cb580e95', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:35 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/34427250-608e-4192-9f6d-760c2905a346') + .query(true) + .reply(200, {"jobId":"34427250-608e-4192-9f6d-760c2905a346","lastUpdateDateTime":"2021-06-25T19:49:24Z","createdDateTime":"2021-06-25T19:49:23Z","expirationDateTime":"2021-06-26T19:49:23Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '38eee1f7-64cf-4132-a056-aa2e3575242b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:37 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/34427250-608e-4192-9f6d-760c2905a346') + .query(true) + .reply(200, {"jobId":"34427250-608e-4192-9f6d-760c2905a346","lastUpdateDateTime":"2021-06-25T19:49:24Z","createdDateTime":"2021-06-25T19:49:23Z","expirationDateTime":"2021-06-26T19:49:23Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + 'b60f77a3-6ce4-44b9-986a-7a03cacd06c2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:39 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/34427250-608e-4192-9f6d-760c2905a346') + .query(true) + .reply(200, {"jobId":"34427250-608e-4192-9f6d-760c2905a346","lastUpdateDateTime":"2021-06-25T19:49:24Z","createdDateTime":"2021-06-25T19:49:23Z","expirationDateTime":"2021-06-26T19:49:23Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '95d2eb07-bea8-4ecc-bdf3-783a77837495', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:41 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/34427250-608e-4192-9f6d-760c2905a346') + .query(true) + .reply(200, {"jobId":"34427250-608e-4192-9f6d-760c2905a346","lastUpdateDateTime":"2021-06-25T19:49:24Z","createdDateTime":"2021-06-25T19:49:23Z","expirationDateTime":"2021-06-26T19:49:23Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '825c7f8a-6f61-428d-8d51-38ba68aa39c5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:43 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/34427250-608e-4192-9f6d-760c2905a346') + .query(true) + .reply(200, {"jobId":"34427250-608e-4192-9f6d-760c2905a346","lastUpdateDateTime":"2021-06-25T19:49:24Z","createdDateTime":"2021-06-25T19:49:23Z","expirationDateTime":"2021-06-26T19:49:23Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '14', + 'apim-request-id', + 'cc525a7c-4753-48fe-b764-0e18e1510e56', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:45 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/34427250-608e-4192-9f6d-760c2905a346') + .query(true) + .reply(200, {"jobId":"34427250-608e-4192-9f6d-760c2905a346","lastUpdateDateTime":"2021-06-25T19:49:24Z","createdDateTime":"2021-06-25T19:49:23Z","expirationDateTime":"2021-06-26T19:49:23Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '12', + 'apim-request-id', + '553f7373-3b60-4d6a-9ef2-257ba683c0ed', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:48 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/34427250-608e-4192-9f6d-760c2905a346') + .query(true) + .reply(200, {"jobId":"34427250-608e-4192-9f6d-760c2905a346","lastUpdateDateTime":"2021-06-25T19:49:24Z","createdDateTime":"2021-06-25T19:49:23Z","expirationDateTime":"2021-06-26T19:49:23Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '074e04cd-ac4f-42eb-b2de-12d25fe53ed3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:50 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/34427250-608e-4192-9f6d-760c2905a346') + .query(true) + .reply(200, {"jobId":"34427250-608e-4192-9f6d-760c2905a346","lastUpdateDateTime":"2021-06-25T19:49:24Z","createdDateTime":"2021-06-25T19:49:23Z","expirationDateTime":"2021-06-26T19:49:23Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '9', + 'apim-request-id', + '9416065d-7fff-4129-81e6-555d8a2764b5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:53 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/34427250-608e-4192-9f6d-760c2905a346') + .query(true) + .reply(200, {"jobId":"34427250-608e-4192-9f6d-760c2905a346","lastUpdateDateTime":"2021-06-25T19:49:24Z","createdDateTime":"2021-06-25T19:49:23Z","expirationDateTime":"2021-06-26T19:49:23Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '711b6c7c-8e75-4fe7-952b-21118036015e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:55 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/34427250-608e-4192-9f6d-760c2905a346') + .query(true) + .reply(200, {"jobId":"34427250-608e-4192-9f6d-760c2905a346","lastUpdateDateTime":"2021-06-25T19:49:24Z","createdDateTime":"2021-06-25T19:49:23Z","expirationDateTime":"2021-06-26T19:49:23Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '4832d24e-71c4-483b-851c-00b58a2a8958', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:57 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/34427250-608e-4192-9f6d-760c2905a346') + .query(true) + .reply(200, {"jobId":"34427250-608e-4192-9f6d-760c2905a346","lastUpdateDateTime":"2021-06-25T19:49:24Z","createdDateTime":"2021-06-25T19:49:23Z","expirationDateTime":"2021-06-26T19:49:23Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '62e7511c-206d-4824-b23d-5e984e9cb701', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:49:59 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/34427250-608e-4192-9f6d-760c2905a346') + .query(true) + .reply(200, {"jobId":"34427250-608e-4192-9f6d-760c2905a346","lastUpdateDateTime":"2021-06-25T19:49:24Z","createdDateTime":"2021-06-25T19:49:23Z","expirationDateTime":"2021-06-26T19:49:23Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '52cad5ce-8489-4de9-87d4-db91ddf6c43c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:01 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/34427250-608e-4192-9f6d-760c2905a346') + .query(true) + .reply(200, {"jobId":"34427250-608e-4192-9f6d-760c2905a346","lastUpdateDateTime":"2021-06-25T19:49:24Z","createdDateTime":"2021-06-25T19:49:23Z","expirationDateTime":"2021-06-26T19:49:23Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '3565d48a-c0a1-44bf-8f5c-f697c77d2082', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:03 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/34427250-608e-4192-9f6d-760c2905a346') + .query(true) + .reply(200, {"jobId":"34427250-608e-4192-9f6d-760c2905a346","lastUpdateDateTime":"2021-06-25T19:49:24Z","createdDateTime":"2021-06-25T19:49:23Z","expirationDateTime":"2021-06-26T19:49:23Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":1,"total":1}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '43275ce0-7295-4796-aaa9-37575ed0bc9e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:05 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/34427250-608e-4192-9f6d-760c2905a346') + .query(true) + .reply(200, {"jobId":"34427250-608e-4192-9f6d-760c2905a346","lastUpdateDateTime":"2021-06-25T19:50:07Z","createdDateTime":"2021-06-25T19:49:23Z","expirationDateTime":"2021-06-26T19:49:23Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"sentimentAnalysisTasks":[{"lastUpdateDateTime":"2021-06-25T19:50:07.6334061Z","taskName":"SentimentAnalysis_latest","state":"succeeded","results":{"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","targets":[{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":4,"length":4,"text":"food","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/0/assessments/0"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":30,"length":2,"text":"AC","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/1/assessments/0"},{"relationType":"assessment","ref":"#/documents/1/sentences/1/assessments/1"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":9,"text":"breakfast","relations":[{"relationType":"assessment","ref":"#/documents/2/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":32,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/2/sentences/0/assessments/1"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":11,"length":5,"text":"hotel","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/0"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":24,"length":9,"text":"breakfast","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/1"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":41,"length":15,"text":"shuttle service","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/2"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":65,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/1"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/3"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/2"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":0.97,"negative":0.03},"offset":27,"length":4,"text":"view","relations":[{"relationType":"assessment","ref":"#/documents/4/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/4/sentences/0/assessments/1"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":5,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":15,"length":9,"text":"bathrooms","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/1"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":42,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/2"}]}],"assessments":[{"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.","targets":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":4,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/0/assessments/0"}]}],"assessments":[{"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', + 'x-envoy-upstream-service-time', + '164', + 'apim-request-id', + '0643025e-d44b-4393-9cff-8fabc6e7b546', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:07 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/34427250-608e-4192-9f6d-760c2905a346') + .query(true) + .reply(200, {"jobId":"34427250-608e-4192-9f6d-760c2905a346","lastUpdateDateTime":"2021-06-25T19:50:07Z","createdDateTime":"2021-06-25T19:49:23Z","expirationDateTime":"2021-06-26T19:49:23Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":0,"total":1,"sentimentAnalysisTasks":[{"lastUpdateDateTime":"2021-06-25T19:50:07.6334061Z","taskName":"SentimentAnalysis_latest","state":"succeeded","results":{"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","targets":[{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":4,"length":4,"text":"food","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/0/assessments/0"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":30,"length":2,"text":"AC","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/1/assessments/0"},{"relationType":"assessment","ref":"#/documents/1/sentences/1/assessments/1"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":4,"length":9,"text":"breakfast","relations":[{"relationType":"assessment","ref":"#/documents/2/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":32,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/2/sentences/0/assessments/1"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":11,"length":5,"text":"hotel","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/0"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":24,"length":9,"text":"breakfast","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/1"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":41,"length":15,"text":"shuttle service","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/2"}]},{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":65,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/1"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/3"},{"relationType":"assessment","ref":"#/documents/3/sentences/0/assessments/2"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":0.97,"negative":0.03},"offset":27,"length":4,"text":"view","relations":[{"relationType":"assessment","ref":"#/documents/4/sentences/0/assessments/0"},{"relationType":"assessment","ref":"#/documents/4/sentences/0/assessments/1"}]}],"assessments":[{"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.","targets":[{"sentiment":"positive","confidenceScores":{"positive":1,"negative":0},"offset":5,"length":5,"text":"rooms","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/0"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":15,"length":9,"text":"bathrooms","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/1"}]},{"sentiment":"negative","confidenceScores":{"positive":0,"negative":1},"offset":42,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/0/sentences/0/assessments/2"}]}],"assessments":[{"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.","targets":[{"sentiment":"negative","confidenceScores":{"positive":0.01,"negative":0.99},"offset":4,"length":6,"text":"toilet","relations":[{"relationType":"assessment","ref":"#/documents/1/sentences/0/assessments/0"}]}],"assessments":[{"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', + 'x-envoy-upstream-service-time', + '128', + 'apim-request-id', + 'e138f04e-c8b8-4a6b-9d52-900f84ee1b51', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:07 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.js new file mode 100644 index 000000000000..7bf21f21d7d8 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_some_documents_with_errors_and_multiple_actions.js @@ -0,0 +1,324 @@ +let nock = require('nock'); + +module.exports.hash = "54aec3c73b9ae9b09b8628e841ec1182"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"1","text":"","language":""},{"id":"2","text":"I did not like the hotel we stayed at. It was too expensive.","language":"english"},{"id":"3","text":"The restaurant had really good food. I recommend you try it.","language":"en"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/5536f727-0a9a-48d1-ad0e-c96b9f994285', + 'x-envoy-upstream-service-time', + '292', + 'apim-request-id', + 'a0a0172a-77b9-46e2-94e5-fbbc8240120e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:07 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/5536f727-0a9a-48d1-ad0e-c96b9f994285') + .query(true) + .reply(200, {"jobId":"5536f727-0a9a-48d1-ad0e-c96b9f994285","lastUpdateDateTime":"2021-06-25T19:50:08Z","createdDateTime":"2021-06-25T19:50:08Z","expirationDateTime":"2021-06-26T19:50:08Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '99dc991f-39fb-4bc7-b5f5-096a2c678054', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:08 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/5536f727-0a9a-48d1-ad0e-c96b9f994285') + .query(true) + .reply(200, {"jobId":"5536f727-0a9a-48d1-ad0e-c96b9f994285","lastUpdateDateTime":"2021-06-25T19:50:08Z","createdDateTime":"2021-06-25T19:50:08Z","expirationDateTime":"2021-06-26T19:50:08Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '9621be03-9cbf-4504-a7cd-d5593039ea95', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:08 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/5536f727-0a9a-48d1-ad0e-c96b9f994285') + .query(true) + .reply(200, {"jobId":"5536f727-0a9a-48d1-ad0e-c96b9f994285","lastUpdateDateTime":"2021-06-25T19:50:10Z","createdDateTime":"2021-06-25T19:50:08Z","expirationDateTime":"2021-06-26T19:50:08Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '9fadc4bd-0366-4de3-837c-2635932a2576', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:10 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/5536f727-0a9a-48d1-ad0e-c96b9f994285') + .query(true) + .reply(200, {"jobId":"5536f727-0a9a-48d1-ad0e-c96b9f994285","lastUpdateDateTime":"2021-06-25T19:50:10Z","createdDateTime":"2021-06-25T19:50:08Z","expirationDateTime":"2021-06-26T19:50:08Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + 'ea566e9a-b128-4583-8cdd-7f2050076609', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:12 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/5536f727-0a9a-48d1-ad0e-c96b9f994285') + .query(true) + .reply(200, {"jobId":"5536f727-0a9a-48d1-ad0e-c96b9f994285","lastUpdateDateTime":"2021-06-25T19:50:10Z","createdDateTime":"2021-06-25T19:50:08Z","expirationDateTime":"2021-06-26T19:50:08Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '5a025f92-fe45-4cb4-b3ff-a2ad9d3eacc7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:14 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/5536f727-0a9a-48d1-ad0e-c96b9f994285') + .query(true) + .reply(200, {"jobId":"5536f727-0a9a-48d1-ad0e-c96b9f994285","lastUpdateDateTime":"2021-06-25T19:50:10Z","createdDateTime":"2021-06-25T19:50:08Z","expirationDateTime":"2021-06-26T19:50:08Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '9', + 'apim-request-id', + '86877864-5336-4f67-8cf0-4ca4d4ee1d8c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:17 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/5536f727-0a9a-48d1-ad0e-c96b9f994285') + .query(true) + .reply(200, {"jobId":"5536f727-0a9a-48d1-ad0e-c96b9f994285","lastUpdateDateTime":"2021-06-25T19:50:10Z","createdDateTime":"2021-06-25T19:50:08Z","expirationDateTime":"2021-06-26T19:50:08Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '70', + 'apim-request-id', + '9d16d4d1-c43c-463c-b8f6-d8d76446c918', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:19 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/5536f727-0a9a-48d1-ad0e-c96b9f994285') + .query(true) + .reply(200, {"jobId":"5536f727-0a9a-48d1-ad0e-c96b9f994285","lastUpdateDateTime":"2021-06-25T19:50:20Z","createdDateTime":"2021-06-25T19:50:08Z","expirationDateTime":"2021-06-26T19:50:08Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '121', + 'apim-request-id', + 'd8f52851-430c-46f3-b744-8f6a0c4a8a7a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:21 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/5536f727-0a9a-48d1-ad0e-c96b9f994285') + .query(true) + .reply(200, {"jobId":"5536f727-0a9a-48d1-ad0e-c96b9f994285","lastUpdateDateTime":"2021-06-25T19:50:20Z","createdDateTime":"2021-06-25T19:50:08Z","expirationDateTime":"2021-06-26T19:50:08Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '31', + 'apim-request-id', + '55ca7633-42b6-464c-a0d4-1b01a937e377', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:23 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/5536f727-0a9a-48d1-ad0e-c96b9f994285') + .query(true) + .reply(200, {"jobId":"5536f727-0a9a-48d1-ad0e-c96b9f994285","lastUpdateDateTime":"2021-06-25T19:50:20Z","createdDateTime":"2021-06-25T19:50:08Z","expirationDateTime":"2021-06-26T19:50:08Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + '9a9eb3d1-535d-4baa-8030-e9dbe547e276', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:25 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/5536f727-0a9a-48d1-ad0e-c96b9f994285') + .query(true) + .reply(200, {"jobId":"5536f727-0a9a-48d1-ad0e-c96b9f994285","lastUpdateDateTime":"2021-06-25T19:50:26Z","createdDateTime":"2021-06-25T19:50:08Z","expirationDateTime":"2021-06-26T19:50:08Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:50:26.5953198Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"The restaurant had really good food. I recommend you try it.","id":"3","entities":[],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '62', + 'apim-request-id', + '9ec5add5-8683-4b5f-ae65-29aaa927594d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:27 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/5536f727-0a9a-48d1-ad0e-c96b9f994285') + .query(true) + .reply(200, {"jobId":"5536f727-0a9a-48d1-ad0e-c96b9f994285","lastUpdateDateTime":"2021-06-25T19:50:26Z","createdDateTime":"2021-06-25T19:50:08Z","expirationDateTime":"2021-06-26T19:50:08Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:50:26.5953198Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"The restaurant had really good food. I recommend you try it.","id":"3","entities":[],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '70', + 'apim-request-id', + 'b2ea2529-77c9-40a1-8995-22b6420cc940', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:29 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/5536f727-0a9a-48d1-ad0e-c96b9f994285') + .query(true) + .reply(200, {"jobId":"5536f727-0a9a-48d1-ad0e-c96b9f994285","lastUpdateDateTime":"2021-06-25T19:50:26Z","createdDateTime":"2021-06-25T19:50:08Z","expirationDateTime":"2021-06-26T19:50:08Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:50:26.5953198Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"The restaurant had really good food. I recommend you try it.","id":"3","entities":[],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7657', + 'apim-request-id', + '1d80ad22-5bb7-46e9-89d1-58b13b17b4dc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:38 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/5536f727-0a9a-48d1-ad0e-c96b9f994285') + .query(true) + .reply(200, {"jobId":"5536f727-0a9a-48d1-ad0e-c96b9f994285","lastUpdateDateTime":"2021-06-25T19:50:40Z","createdDateTime":"2021-06-25T19:50:08Z","expirationDateTime":"2021-06-26T19:50:08Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:50:40.70239Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:50:26.5953198Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"The restaurant had really good food. I recommend you try it.","id":"3","entities":[],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:50:39.9778679Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"3","keyPhrases":["good food","restaurant"],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '188', + 'apim-request-id', + '7b813465-aa9a-4424-8c0f-834fae83ff3c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:40 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/5536f727-0a9a-48d1-ad0e-c96b9f994285') + .query(true) + .reply(200, {"jobId":"5536f727-0a9a-48d1-ad0e-c96b9f994285","lastUpdateDateTime":"2021-06-25T19:50:40Z","createdDateTime":"2021-06-25T19:50:08Z","expirationDateTime":"2021-06-26T19:50:08Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:50:40.70239Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"3","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.97}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en,es,de,fr,zh-Hans,ar,cs,da,fi,hu,it,ja,ko,no,nl,pl,pt-BR,pt-PT,ru,sv,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:50:26.5953198Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"The restaurant had really good food. I recommend you try it.","id":"3","entities":[],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,de,en,es,fr,it,pt-BR,pt-PT. For additional details see https://aka.ms/text-analytics/language-support?tabs=named-entity-recognition"}}}],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:50:39.9778679Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"3","keyPhrases":["good food","restaurant"],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: ja,ko,zh-Hans,da,fi,nl,pl,ru,sv,de,en,es,fr,it,pt-BR,pt-PT,af,bg,ca,el,et,hr,hu,id,lv,no,ro,sk,sl,tr. For additional details see https://aka.ms/text-analytics/language-support?tabs=key-phrase-extraction"}}}],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '189', + 'apim-request-id', + '2ff114ea-625b-4d3e-9621-95dfca2edb4e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:50:41 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.js new file mode 100644 index 000000000000..d3b4e6e879e2 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_input_with_a_language_hint.js @@ -0,0 +1,324 @@ +let nock = require('nock'); + +module.exports.hash = "4ffd3e67d009b80590ba217bf3c541ab"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"1","text":"I will go to the park."},{"id":"2","text":"Este es un document escrito en Español."},{"id":"3","text":"猫は幸せ"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/40dedd22-c918-4b5e-8e21-be9bddcaae5a', + 'x-envoy-upstream-service-time', + '257', + 'apim-request-id', + '7b467243-d53a-4db6-b11f-08ca5843753e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:08 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/40dedd22-c918-4b5e-8e21-be9bddcaae5a') + .query(true) + .reply(200, {"jobId":"40dedd22-c918-4b5e-8e21-be9bddcaae5a","lastUpdateDateTime":"2021-06-25T19:54:08Z","createdDateTime":"2021-06-25T19:54:08Z","expirationDateTime":"2021-06-26T19:54:08Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'b1e81c09-8931-4ca6-9b3e-4708bd90389f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:09 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/40dedd22-c918-4b5e-8e21-be9bddcaae5a') + .query(true) + .reply(200, {"jobId":"40dedd22-c918-4b5e-8e21-be9bddcaae5a","lastUpdateDateTime":"2021-06-25T19:54:08Z","createdDateTime":"2021-06-25T19:54:08Z","expirationDateTime":"2021-06-26T19:54:08Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '36', + 'apim-request-id', + '33947db5-07ab-421b-a79e-ed0db5f1b245', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:09 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/40dedd22-c918-4b5e-8e21-be9bddcaae5a') + .query(true) + .reply(200, {"jobId":"40dedd22-c918-4b5e-8e21-be9bddcaae5a","lastUpdateDateTime":"2021-06-25T19:54:09Z","createdDateTime":"2021-06-25T19:54:08Z","expirationDateTime":"2021-06-26T19:54:08Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'a886eb66-24e3-4cb3-b634-84cf0018afbb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:11 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/40dedd22-c918-4b5e-8e21-be9bddcaae5a') + .query(true) + .reply(200, {"jobId":"40dedd22-c918-4b5e-8e21-be9bddcaae5a","lastUpdateDateTime":"2021-06-25T19:54:11Z","createdDateTime":"2021-06-25T19:54:08Z","expirationDateTime":"2021-06-26T19:54:08Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'ca809cd1-1fc9-484f-b765-75575c67d2b2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:13 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/40dedd22-c918-4b5e-8e21-be9bddcaae5a') + .query(true) + .reply(200, {"jobId":"40dedd22-c918-4b5e-8e21-be9bddcaae5a","lastUpdateDateTime":"2021-06-25T19:54:11Z","createdDateTime":"2021-06-25T19:54:08Z","expirationDateTime":"2021-06-26T19:54:08Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '85aa6e82-a3ac-495a-b9ef-8d8978d72cdf', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:15 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/40dedd22-c918-4b5e-8e21-be9bddcaae5a') + .query(true) + .reply(200, {"jobId":"40dedd22-c918-4b5e-8e21-be9bddcaae5a","lastUpdateDateTime":"2021-06-25T19:54:11Z","createdDateTime":"2021-06-25T19:54:08Z","expirationDateTime":"2021-06-26T19:54:08Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '5bc20038-6e3e-45e9-87f8-6f19465a8477', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:17 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/40dedd22-c918-4b5e-8e21-be9bddcaae5a') + .query(true) + .reply(200, {"jobId":"40dedd22-c918-4b5e-8e21-be9bddcaae5a","lastUpdateDateTime":"2021-06-25T19:54:11Z","createdDateTime":"2021-06-25T19:54:08Z","expirationDateTime":"2021-06-26T19:54:08Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '15', + 'apim-request-id', + '5ac124da-d03c-4a22-8a84-442f8a8bf497', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:19 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/40dedd22-c918-4b5e-8e21-be9bddcaae5a') + .query(true) + .reply(200, {"jobId":"40dedd22-c918-4b5e-8e21-be9bddcaae5a","lastUpdateDateTime":"2021-06-25T19:54:11Z","createdDateTime":"2021-06-25T19:54:08Z","expirationDateTime":"2021-06-26T19:54:08Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '9', + 'apim-request-id', + '8f26050e-67d4-4a56-ae7a-6847b8ab4c47', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:21 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/40dedd22-c918-4b5e-8e21-be9bddcaae5a') + .query(true) + .reply(200, {"jobId":"40dedd22-c918-4b5e-8e21-be9bddcaae5a","lastUpdateDateTime":"2021-06-25T19:54:11Z","createdDateTime":"2021-06-25T19:54:08Z","expirationDateTime":"2021-06-26T19:54:08Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '9', + 'apim-request-id', + '687aacc3-41bc-46d9-93e0-c66c9b194339', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:23 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/40dedd22-c918-4b5e-8e21-be9bddcaae5a') + .query(true) + .reply(200, {"jobId":"40dedd22-c918-4b5e-8e21-be9bddcaae5a","lastUpdateDateTime":"2021-06-25T19:54:11Z","createdDateTime":"2021-06-25T19:54:08Z","expirationDateTime":"2021-06-26T19:54:08Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'd69fec67-a430-4f44-93e4-24c2b3a903f3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:25 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/40dedd22-c918-4b5e-8e21-be9bddcaae5a') + .query(true) + .reply(200, {"jobId":"40dedd22-c918-4b5e-8e21-be9bddcaae5a","lastUpdateDateTime":"2021-06-25T19:54:27Z","createdDateTime":"2021-06-25T19:54:08Z","expirationDateTime":"2021-06-26T19:54:08Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:27.0832107Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '61', + 'apim-request-id', + 'a288665b-c395-4a68-b549-2ea020e158e2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:27 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/40dedd22-c918-4b5e-8e21-be9bddcaae5a') + .query(true) + .reply(200, {"jobId":"40dedd22-c918-4b5e-8e21-be9bddcaae5a","lastUpdateDateTime":"2021-06-25T19:54:29Z","createdDateTime":"2021-06-25T19:54:08Z","expirationDateTime":"2021-06-26T19:54:08Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:29.4045408Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"Español","category":"Skill","offset":31,"length":7,"confidenceScore":0.92}],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:27.0832107Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '122', + 'apim-request-id', + '916c1851-cfc6-4950-b156-57363395e200', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:29 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/40dedd22-c918-4b5e-8e21-be9bddcaae5a') + .query(true) + .reply(200, {"jobId":"40dedd22-c918-4b5e-8e21-be9bddcaae5a","lastUpdateDateTime":"2021-06-25T19:54:29Z","createdDateTime":"2021-06-25T19:54:08Z","expirationDateTime":"2021-06-26T19:54:08Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:29.4045408Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"Español","category":"Skill","offset":31,"length":7,"confidenceScore":0.92}],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:27.0832107Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '135', + 'apim-request-id', + '04557aa8-6195-4015-9d20-c44ef6e06097', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:31 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/40dedd22-c918-4b5e-8e21-be9bddcaae5a') + .query(true) + .reply(200, {"jobId":"40dedd22-c918-4b5e-8e21-be9bddcaae5a","lastUpdateDateTime":"2021-06-25T19:54:33Z","createdDateTime":"2021-06-25T19:54:08Z","expirationDateTime":"2021-06-26T19:54:08Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:29.4045408Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"Español","category":"Skill","offset":31,"length":7,"confidenceScore":0.92}],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:27.0832107Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:33.9261088Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["Español","document"],"warnings":[]},{"id":"3","keyPhrases":["せ"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '170', + 'apim-request-id', + '31c2adc4-9726-4d5b-bb3e-afdb112669e4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:33 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/40dedd22-c918-4b5e-8e21-be9bddcaae5a') + .query(true) + .reply(200, {"jobId":"40dedd22-c918-4b5e-8e21-be9bddcaae5a","lastUpdateDateTime":"2021-06-25T19:54:33Z","createdDateTime":"2021-06-25T19:54:08Z","expirationDateTime":"2021-06-26T19:54:08Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:29.4045408Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"1","entities":[{"text":"park","category":"Location","offset":17,"length":4,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"Español","category":"Skill","offset":31,"length":7,"confidenceScore":0.92}],"warnings":[]},{"id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:27.0832107Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"I will go to the park.","id":"1","entities":[],"warnings":[]},{"redactedText":"Este es un document escrito en Español.","id":"2","entities":[],"warnings":[]},{"redactedText":"猫は幸せ","id":"3","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:54:33.9261088Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"1","keyPhrases":["park"],"warnings":[]},{"id":"2","keyPhrases":["Español","document"],"warnings":[]},{"id":"3","keyPhrases":["せ"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '171', + 'apim-request-id', + '13126df1-6737-4fde-92d0-785cbbc9c5e0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:54:33 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.js new file mode 100644 index 000000000000..e9bb3dd3e601 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_language_hint.js @@ -0,0 +1,824 @@ +let nock = require('nock'); + +module.exports.hash = "eaed6985137e04614de2332c909af32f"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"0","text":"This was the best day of my life.","language":"en"},{"id":"1","text":"I did not like the hotel we stayed at. It was too expensive.","language":"en"},{"id":"2","text":"The restaurant was not as good as I hoped.","language":"en"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb', + 'x-envoy-upstream-service-time', + '302', + 'apim-request-id', + 'f0cb266b-24b4-4b33-9291-5a92dcfbfe1a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:52 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:51:52Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '6214ef2b-3ef8-4981-89f7-9b86b729d437', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:52 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:51:52Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + 'dd4d6dc7-1409-495c-a102-f880380af7ba', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:52 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:51:53Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '900343e0-5b6f-41ab-a91e-7da087747611', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:54 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:51:53Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + 'bb5cf691-24fa-4152-99a5-e84b1e26fb7c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:56 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:51:53Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '10', + 'apim-request-id', + 'a95f80b2-a3ee-4159-a026-1f74787187f8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:51:58 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:00Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '117', + 'apim-request-id', + '567b7b24-8959-4f3b-9bab-b0d265c0ab58', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:52:00 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:00Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '110', + 'apim-request-id', + '467f19b1-970d-4474-9a62-be8b0e4e2b6b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:52:02 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:00Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '111', + 'apim-request-id', + '5664c387-e7be-42ce-8d97-9186793e0b80', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:52:04 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:00Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '115', + 'apim-request-id', + '6f94ddcd-d1f8-47e5-8d26-334752a73530', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:52:06 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:00Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '113', + 'apim-request-id', + '1d19ee8d-f9b8-48b3-bb91-30417dd81926', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:52:09 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:00Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '105', + 'apim-request-id', + 'af2ea1a5-5e7b-4313-977b-32a39dd65d57', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:52:12 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:00Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '124', + 'apim-request-id', + '1e768319-7b30-4487-a7cf-e0ee7bb8930b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:52:14 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:00Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '155', + 'apim-request-id', + 'ffd42650-13f3-4e6b-b070-e8974c6398bd', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:52:16 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:00Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '217', + 'apim-request-id', + '6ec86317-1d0b-409d-a157-c8212a294e83', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:52:18 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:00Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '200', + 'apim-request-id', + '4b17c543-0715-4093-a399-39ccbc16131c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:52:20 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:00Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '145', + 'apim-request-id', + '6737ad49-f715-4395-bd0f-7fba05b02e52', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:52:22 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:00Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '118', + 'apim-request-id', + '17867ddb-6f22-4c19-b617-ddfc2b93bb58', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:52:25 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:00Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '101', + 'apim-request-id', + 'e42d1514-9124-4d39-8bf3-ef2fe55bf320', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:52:27 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:00Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '147', + 'apim-request-id', + '3b500d12-621a-4d4c-9092-5137e67a6d61', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:52:29 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:00Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '444', + 'apim-request-id', + '54aa4a73-1280-464e-9dbb-3dc95a323c9d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:52:31 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:00Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '116', + 'apim-request-id', + '644ee69f-9b6b-44e6-a0b2-3c48ae1a699f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:52:33 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:00Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '153', + 'apim-request-id', + '24d51bef-5b36-4bab-a641-70dea3f7a471', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:52:35 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:00Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '139', + 'apim-request-id', + '258a7492-e80b-4adb-8b61-8d2b2b26bb6d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:52:38 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:00Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '116', + 'apim-request-id', + 'de5893b6-ec34-4af2-9db5-8cb62714b94e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:52:41 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:00Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '147', + 'apim-request-id', + '75e082a5-fefc-4998-8299-19f10579cafd', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:52:43 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:00Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '114', + 'apim-request-id', + 'ec9088d9-9b05-443e-9f11-3ae3173025a8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:52:45 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:00Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '113', + 'apim-request-id', + 'c60bd722-e9a6-4f81-8170-9bdc6b92fd09', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:52:47 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:00Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '147', + 'apim-request-id', + '9835094f-73fe-454a-9daa-c90624bea19d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:52:49 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:00Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '145', + 'apim-request-id', + 'ebe34b7e-6331-41fb-9cbc-4fde5546d790', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:52:52 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:53Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '111', + 'apim-request-id', + '28061262-fa93-4e4e-96a8-ce58a71956b8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:52:54 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:53Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '128', + 'apim-request-id', + '78e8623d-1aa9-4b80-8803-7b21e2570f5b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:52:56 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:53Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '126', + 'apim-request-id', + '800a99ab-00d4-44cf-8616-ffc428955dc5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:52:58 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:53Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '121', + 'apim-request-id', + '6ab90042-a204-4f64-b8a4-2efaa0693dd3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:00 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:53Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '200', + 'apim-request-id', + '6fa648a7-3466-4d67-a9af-650f6a462a9d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:02 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:53Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '139', + 'apim-request-id', + '66cbe6d8-3e56-481f-ac2a-64e1e562887b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:05 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:53Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '119', + 'apim-request-id', + 'c7973a97-5b55-46aa-bc7d-df526a086060', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:07 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:53Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '171', + 'apim-request-id', + 'ab178947-d031-4843-90a2-9f63616164f9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:09 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:52:53Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '126', + 'apim-request-id', + '9109c566-d9f9-462b-a3b6-e37ea6195d34', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:11 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:53:12Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:12.875933Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '171', + 'apim-request-id', + 'ff716811-7811-4643-aadf-ecef919794f0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:13 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/8c8c6b63-2ce2-4f19-9437-336829efb2eb') + .query(true) + .reply(200, {"jobId":"8c8c6b63-2ce2-4f19-9437-336829efb2eb","lastUpdateDateTime":"2021-06-25T19:53:12Z","createdDateTime":"2021-06-25T19:51:52Z","expirationDateTime":"2021-06-26T19:51:52Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:12.875933Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.9000206Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:52:00.1482753Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '188', + 'apim-request-id', + '16cf89de-51b3-4925-a7d2-b10e0a88f59e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:13 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.js new file mode 100644 index 000000000000..16f0175bf645 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_analyze/recording_whole_batch_with_no_language_hint.js @@ -0,0 +1,444 @@ +let nock = require('nock'); + +module.exports.hash = "633fb369e5e1dfb1aa2335c3687e008f"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/analyze', {"analysisInput":{"documents":[{"id":"0","text":"This was the best day of my life.","language":"en"},{"id":"1","text":"I did not like the hotel we stayed at. It was too expensive.","language":"en"},{"id":"2","text":"The restaurant was not as good as I hoped.","language":"en"}]},"tasks":{"entityRecognitionTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"entityRecognitionPiiTasks":[{"parameters":{"model-version":"latest","stringIndexType":"Utf16CodeUnit"}}],"keyPhraseExtractionTasks":[{"parameters":{"model-version":"latest"}}]}}) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/analyze/jobs/99814070-33c6-4867-9330-b9eb0385889f', + 'x-envoy-upstream-service-time', + '274', + 'apim-request-id', + 'f2b8f71c-14c0-48ec-a31f-83fa6f96be7d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:14 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/99814070-33c6-4867-9330-b9eb0385889f') + .query(true) + .reply(200, {"jobId":"99814070-33c6-4867-9330-b9eb0385889f","lastUpdateDateTime":"2021-06-25T19:53:15Z","createdDateTime":"2021-06-25T19:53:14Z","expirationDateTime":"2021-06-26T19:53:14Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '9', + 'apim-request-id', + 'e1c3a6ef-346f-4ea3-a5b1-6fb4396c665b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:14 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/99814070-33c6-4867-9330-b9eb0385889f') + .query(true) + .reply(200, {"jobId":"99814070-33c6-4867-9330-b9eb0385889f","lastUpdateDateTime":"2021-06-25T19:53:15Z","createdDateTime":"2021-06-25T19:53:14Z","expirationDateTime":"2021-06-26T19:53:14Z","status":"notStarted","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + '4d073897-d538-4d21-b350-cb820eed3bd6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:14 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/99814070-33c6-4867-9330-b9eb0385889f') + .query(true) + .reply(200, {"jobId":"99814070-33c6-4867-9330-b9eb0385889f","lastUpdateDateTime":"2021-06-25T19:53:15Z","createdDateTime":"2021-06-25T19:53:14Z","expirationDateTime":"2021-06-26T19:53:14Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'ae7f96de-3ea7-42bf-a37d-be739ed84289', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:16 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/99814070-33c6-4867-9330-b9eb0385889f') + .query(true) + .reply(200, {"jobId":"99814070-33c6-4867-9330-b9eb0385889f","lastUpdateDateTime":"2021-06-25T19:53:15Z","createdDateTime":"2021-06-25T19:53:14Z","expirationDateTime":"2021-06-26T19:53:14Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '12', + 'apim-request-id', + 'c267ca42-68fc-4680-aee2-816333780f22', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:18 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/99814070-33c6-4867-9330-b9eb0385889f') + .query(true) + .reply(200, {"jobId":"99814070-33c6-4867-9330-b9eb0385889f","lastUpdateDateTime":"2021-06-25T19:53:15Z","createdDateTime":"2021-06-25T19:53:14Z","expirationDateTime":"2021-06-26T19:53:14Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":0,"failed":0,"inProgress":3,"total":3}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '14c993ef-85c5-4800-853b-28a2339bd006', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:20 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/99814070-33c6-4867-9330-b9eb0385889f') + .query(true) + .reply(200, {"jobId":"99814070-33c6-4867-9330-b9eb0385889f","lastUpdateDateTime":"2021-06-25T19:53:21Z","createdDateTime":"2021-06-25T19:53:14Z","expirationDateTime":"2021-06-26T19:53:14Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:21.7860829Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '100', + 'apim-request-id', + 'bb4aa3b2-4561-47dd-ac5f-2e83fdf49414', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:22 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/99814070-33c6-4867-9330-b9eb0385889f') + .query(true) + .reply(200, {"jobId":"99814070-33c6-4867-9330-b9eb0385889f","lastUpdateDateTime":"2021-06-25T19:53:21Z","createdDateTime":"2021-06-25T19:53:14Z","expirationDateTime":"2021-06-26T19:53:14Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:21.7860829Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '113', + 'apim-request-id', + '250d205a-b698-442e-8df7-a25993fd6efd', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:25 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/99814070-33c6-4867-9330-b9eb0385889f') + .query(true) + .reply(200, {"jobId":"99814070-33c6-4867-9330-b9eb0385889f","lastUpdateDateTime":"2021-06-25T19:53:21Z","createdDateTime":"2021-06-25T19:53:14Z","expirationDateTime":"2021-06-26T19:53:14Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":1,"failed":0,"inProgress":2,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:21.7860829Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '306', + 'apim-request-id', + '2786396f-ac8a-41d2-8ec4-125c9640f457', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:28 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/99814070-33c6-4867-9330-b9eb0385889f') + .query(true) + .reply(200, {"jobId":"99814070-33c6-4867-9330-b9eb0385889f","lastUpdateDateTime":"2021-06-25T19:53:28Z","createdDateTime":"2021-06-25T19:53:14Z","expirationDateTime":"2021-06-26T19:53:14Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:21.7860829Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:28.9130117Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '143', + 'apim-request-id', + 'd06dd8e9-c705-4cb7-b0d7-470ec8484c7a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:30 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/99814070-33c6-4867-9330-b9eb0385889f') + .query(true) + .reply(200, {"jobId":"99814070-33c6-4867-9330-b9eb0385889f","lastUpdateDateTime":"2021-06-25T19:53:28Z","createdDateTime":"2021-06-25T19:53:14Z","expirationDateTime":"2021-06-26T19:53:14Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:21.7860829Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:28.9130117Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '129', + 'apim-request-id', + '1e7831f5-43ed-452e-a11e-618c1303a3c6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:32 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/99814070-33c6-4867-9330-b9eb0385889f') + .query(true) + .reply(200, {"jobId":"99814070-33c6-4867-9330-b9eb0385889f","lastUpdateDateTime":"2021-06-25T19:53:28Z","createdDateTime":"2021-06-25T19:53:14Z","expirationDateTime":"2021-06-26T19:53:14Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:21.7860829Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:28.9130117Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '129', + 'apim-request-id', + '5ab22296-9f18-4c07-990a-58bd7a7bc83a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:34 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/99814070-33c6-4867-9330-b9eb0385889f') + .query(true) + .reply(200, {"jobId":"99814070-33c6-4867-9330-b9eb0385889f","lastUpdateDateTime":"2021-06-25T19:53:28Z","createdDateTime":"2021-06-25T19:53:14Z","expirationDateTime":"2021-06-26T19:53:14Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:21.7860829Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:28.9130117Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '127', + 'apim-request-id', + '3e24346a-82a7-42de-80e5-3c10cc11ebc3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:36 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/99814070-33c6-4867-9330-b9eb0385889f') + .query(true) + .reply(200, {"jobId":"99814070-33c6-4867-9330-b9eb0385889f","lastUpdateDateTime":"2021-06-25T19:53:28Z","createdDateTime":"2021-06-25T19:53:14Z","expirationDateTime":"2021-06-26T19:53:14Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:21.7860829Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:28.9130117Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '131', + 'apim-request-id', + 'b5026ba1-9fd2-4d21-94c2-1071e08d38e7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:39 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/99814070-33c6-4867-9330-b9eb0385889f') + .query(true) + .reply(200, {"jobId":"99814070-33c6-4867-9330-b9eb0385889f","lastUpdateDateTime":"2021-06-25T19:53:28Z","createdDateTime":"2021-06-25T19:53:14Z","expirationDateTime":"2021-06-26T19:53:14Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:21.7860829Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:28.9130117Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '113', + 'apim-request-id', + '4c5be3b8-2eae-42c9-b2e4-529799205e33', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:41 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/99814070-33c6-4867-9330-b9eb0385889f') + .query(true) + .reply(200, {"jobId":"99814070-33c6-4867-9330-b9eb0385889f","lastUpdateDateTime":"2021-06-25T19:53:28Z","createdDateTime":"2021-06-25T19:53:14Z","expirationDateTime":"2021-06-26T19:53:14Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:21.7860829Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:28.9130117Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '118', + 'apim-request-id', + '36575301-4170-4fd1-987f-05f19139d04a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:43 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/99814070-33c6-4867-9330-b9eb0385889f') + .query(true) + .reply(200, {"jobId":"99814070-33c6-4867-9330-b9eb0385889f","lastUpdateDateTime":"2021-06-25T19:53:28Z","createdDateTime":"2021-06-25T19:53:14Z","expirationDateTime":"2021-06-26T19:53:14Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:21.7860829Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:28.9130117Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '123', + 'apim-request-id', + 'b2319756-379d-4037-b074-f36f66e8b7f0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:45 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/99814070-33c6-4867-9330-b9eb0385889f') + .query(true) + .reply(200, {"jobId":"99814070-33c6-4867-9330-b9eb0385889f","lastUpdateDateTime":"2021-06-25T19:53:28Z","createdDateTime":"2021-06-25T19:53:14Z","expirationDateTime":"2021-06-26T19:53:14Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:21.7860829Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:28.9130117Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '124', + 'apim-request-id', + 'f4573b71-23d2-41cc-9122-3d7affb1c40c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:47 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/99814070-33c6-4867-9330-b9eb0385889f') + .query(true) + .reply(200, {"jobId":"99814070-33c6-4867-9330-b9eb0385889f","lastUpdateDateTime":"2021-06-25T19:53:28Z","createdDateTime":"2021-06-25T19:53:14Z","expirationDateTime":"2021-06-26T19:53:14Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:21.7860829Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:28.9130117Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '132', + 'apim-request-id', + '756cafcd-e4cf-4a7d-b173-1b3535cdd1ce', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:49 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/99814070-33c6-4867-9330-b9eb0385889f') + .query(true) + .reply(200, {"jobId":"99814070-33c6-4867-9330-b9eb0385889f","lastUpdateDateTime":"2021-06-25T19:53:28Z","createdDateTime":"2021-06-25T19:53:14Z","expirationDateTime":"2021-06-26T19:53:14Z","status":"running","errors":[],"displayName":"NA","tasks":{"completed":2,"failed":0,"inProgress":1,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:21.7860829Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:28.9130117Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '120', + 'apim-request-id', + 'ad501c72-6704-4089-aa86-1fe430464f72', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:51 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/99814070-33c6-4867-9330-b9eb0385889f') + .query(true) + .reply(200, {"jobId":"99814070-33c6-4867-9330-b9eb0385889f","lastUpdateDateTime":"2021-06-25T19:53:54Z","createdDateTime":"2021-06-25T19:53:14Z","expirationDateTime":"2021-06-26T19:53:14Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:21.7860829Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:28.9130117Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:54.069663Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '170', + 'apim-request-id', + '9da5bd5c-0e1a-46bd-b0dc-a902cf265886', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:54 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/analyze/jobs/99814070-33c6-4867-9330-b9eb0385889f') + .query(true) + .reply(200, {"jobId":"99814070-33c6-4867-9330-b9eb0385889f","lastUpdateDateTime":"2021-06-25T19:53:54Z","createdDateTime":"2021-06-25T19:53:14Z","expirationDateTime":"2021-06-26T19:53:14Z","status":"succeeded","errors":[],"displayName":"NA","tasks":{"completed":3,"failed":0,"inProgress":0,"total":3,"entityRecognitionTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:21.7860829Z","taskName":"NamedEntityRecognition_latest","state":"succeeded","results":{"documents":[{"id":"0","entities":[],"warnings":[]},{"id":"1","entities":[{"text":"hotel","category":"Location","offset":19,"length":5,"confidenceScore":0.99}],"warnings":[]},{"id":"2","entities":[{"text":"restaurant","category":"Location","subcategory":"Structural","offset":4,"length":10,"confidenceScore":0.96}],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}],"entityRecognitionPiiTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:28.9130117Z","taskName":"PersonallyIdentifiableInformation_latest","state":"succeeded","results":{"documents":[{"redactedText":"This was the best day of my life.","id":"0","entities":[],"warnings":[]},{"redactedText":"I did not like the hotel we stayed at. It was too expensive.","id":"1","entities":[],"warnings":[]},{"redactedText":"The restaurant was not as good as I hoped.","id":"2","entities":[],"warnings":[]}],"errors":[],"modelVersion":"2021-01-15"}}],"keyPhraseExtractionTasks":[{"lastUpdateDateTime":"2021-06-25T19:53:54.069663Z","taskName":"KeyPhraseExtraction_latest","state":"succeeded","results":{"documents":[{"id":"0","keyPhrases":["best day","life"],"warnings":[]},{"id":"1","keyPhrases":["hotel"],"warnings":[]},{"id":"2","keyPhrases":["restaurant"],"warnings":[]}],"errors":[],"modelVersion":"2021-06-01"}}]}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '163', + 'apim-request-id', + 'd7d3e0aa-350b-41ee-8965-e00c2a142976', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:53:54 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_all_documents_have_errors.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_all_documents_have_errors.js similarity index 80% rename from sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_all_documents_have_errors.js rename to sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_all_documents_have_errors.js index 0cb98f035a7f..d951907c1ed5 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_all_documents_have_errors.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_all_documents_have_errors.js @@ -1,53 +1,53 @@ let nock = require('nock'); -module.exports.hash = "db46235452f19566ad5f83dabef0ca4f"; +module.exports.hash = "815354ea5278df76f87bbbeb9918c9d0"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/health/jobs', {"documents":[{"id":"1","text":""},{"id":"2","text":"I did not like the hotel we stayed at.","language":"english"},{"id":"3","text":"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}]}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"1","text":""},{"id":"2","text":"I did not like the hotel we stayed at.","language":"english"},{"id":"3","text":"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}]}) .query(true) .reply(202, "", [ 'Transfer-Encoding', 'chunked', 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/c8539740-0d67-4225-b59b-78e441aee457', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/10e0485f-7955-4202-a551-a0bfd49657b6', 'x-envoy-upstream-service-time', - '132', + '178', 'apim-request-id', - 'b2c17104-a500-48d3-b35e-9c153679ac51', + '77f9016f-05aa-4e46-97e6-7a5c2c051e13', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:05:45 GMT' + 'Fri, 25 Jun 2021 19:56:52 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/c8539740-0d67-4225-b59b-78e441aee457') + .get('//text/analytics/v3.1/entities/health/jobs/10e0485f-7955-4202-a551-a0bfd49657b6') .query(true) - .reply(200, {"jobId":"c8539740-0d67-4225-b59b-78e441aee457","lastUpdateDateTime":"2021-05-12T19:05:45Z","createdDateTime":"2021-05-12T19:05:45Z","expirationDateTime":"2021-05-13T19:05:45Z","status":"notStarted","errors":[]}, [ + .reply(200, {"jobId":"10e0485f-7955-4202-a551-a0bfd49657b6","lastUpdateDateTime":"2021-06-25T19:56:53Z","createdDateTime":"2021-06-25T19:56:53Z","expirationDateTime":"2021-06-26T19:56:53Z","status":"notStarted","errors":[]}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '5', + '7', 'apim-request-id', - 'b2158377-8646-498b-b33d-a3376e67ff98', + '98b79d32-db2a-483a-90fc-8d5210285cc2', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:05:45 GMT' + 'Fri, 25 Jun 2021 19:56:53 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/c8539740-0d67-4225-b59b-78e441aee457') + .get('//text/analytics/v3.1/entities/health/jobs/10e0485f-7955-4202-a551-a0bfd49657b6') .query(true) - .reply(200, {"jobId":"c8539740-0d67-4225-b59b-78e441aee457","lastUpdateDateTime":"2021-05-12T19:05:45Z","createdDateTime":"2021-05-12T19:05:45Z","expirationDateTime":"2021-05-13T19:05:45Z","status":"notStarted","errors":[]}, [ + .reply(200, {"jobId":"10e0485f-7955-4202-a551-a0bfd49657b6","lastUpdateDateTime":"2021-06-25T19:56:53Z","createdDateTime":"2021-06-25T19:56:53Z","expirationDateTime":"2021-06-26T19:56:53Z","status":"running","errors":[]}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -55,51 +55,51 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '6', 'apim-request-id', - 'c93f35e0-cd35-436a-8dde-4a88c4ba5292', + '5498bb05-3671-4123-96ee-a76364d5f509', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:05:45 GMT' + 'Fri, 25 Jun 2021 19:56:53 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/c8539740-0d67-4225-b59b-78e441aee457') + .get('//text/analytics/v3.1/entities/health/jobs/10e0485f-7955-4202-a551-a0bfd49657b6') .query(true) - .reply(200, {"jobId":"c8539740-0d67-4225-b59b-78e441aee457","lastUpdateDateTime":"2021-05-12T19:05:47Z","createdDateTime":"2021-05-12T19:05:45Z","expirationDateTime":"2021-05-13T19:05:45Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"A document within the request was too large to be processed. Limit document size to: 5120 text elements. For additional details on the data limitations see https://aka.ms/text-analytics-data-limits"}}}],"modelVersion":"2021-03-01"}}, [ + .reply(200, {"jobId":"10e0485f-7955-4202-a551-a0bfd49657b6","lastUpdateDateTime":"2021-06-25T19:56:54Z","createdDateTime":"2021-06-25T19:56:53Z","expirationDateTime":"2021-06-26T19:56:53Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"A document within the request was too large to be processed. Limit document size to: 5120 text elements. For additional details on the data limitations see https://aka.ms/text-analytics-data-limits"}}}],"modelVersion":"2021-05-15"}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '54', + '80', 'apim-request-id', - 'c951f6fd-e2db-4c8b-a026-04bee520bb9b', + '02b9ea77-3867-49f1-b4a3-557716718e7d', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:05:47 GMT' + 'Fri, 25 Jun 2021 19:56:55 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/c8539740-0d67-4225-b59b-78e441aee457') + .get('//text/analytics/v3.1/entities/health/jobs/10e0485f-7955-4202-a551-a0bfd49657b6') .query(true) - .reply(200, {"jobId":"c8539740-0d67-4225-b59b-78e441aee457","lastUpdateDateTime":"2021-05-12T19:05:47Z","createdDateTime":"2021-05-12T19:05:45Z","expirationDateTime":"2021-05-13T19:05:45Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"A document within the request was too large to be processed. Limit document size to: 5120 text elements. For additional details on the data limitations see https://aka.ms/text-analytics-data-limits"}}}],"modelVersion":"2021-03-01"}}, [ + .reply(200, {"jobId":"10e0485f-7955-4202-a551-a0bfd49657b6","lastUpdateDateTime":"2021-06-25T19:56:54Z","createdDateTime":"2021-06-25T19:56:53Z","expirationDateTime":"2021-06-26T19:56:53Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"A document within the request was too large to be processed. Limit document size to: 5120 text elements. For additional details on the data limitations see https://aka.ms/text-analytics-data-limits"}}}],"modelVersion":"2021-05-15"}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '54', + '78', 'apim-request-id', - 'ee40415d-d2fc-4702-a038-14d2a9e1dbfe', + 'cbdfdbfc-5643-4e51-bd23-869dbf065cc5', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:05:47 GMT' + 'Fri, 25 Jun 2021 19:56:55 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_all_inputs_with_errors.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_all_inputs_with_errors.js similarity index 51% rename from sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_all_inputs_with_errors.js rename to sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_all_inputs_with_errors.js index 735f493da8ca..2f5a5ef70438 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_all_inputs_with_errors.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_all_inputs_with_errors.js @@ -1,125 +1,105 @@ let nock = require('nock'); -module.exports.hash = "502c2a738b30a7fc46c968423a28b552"; +module.exports.hash = "0c018911d7b8c915100686d9373b4af8"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/health/jobs', {"documents":[{"id":"1","text":"","language":"en"},{"id":"2","text":"Patient does not suffer from high blood pressure.","language":"english"},{"id":"3","text":"","language":"en"}]}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"1","text":"","language":"en"},{"id":"2","text":"Patient does not suffer from high blood pressure.","language":"english"},{"id":"3","text":"","language":"en"}]}) .query(true) .reply(202, "", [ 'Transfer-Encoding', 'chunked', 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/0c5bc7b0-8bdb-4819-a15c-77e4c497d1f7', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/a4c37b16-f653-486a-a29e-41a55edfa3f0', 'x-envoy-upstream-service-time', - '114', + '205', 'apim-request-id', - 'd6a7fae8-118c-46dd-9450-c8d15072606f', + '24a5619f-a8fc-4f56-b8a1-750ab78d5c80', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:04:43 GMT' + 'Fri, 25 Jun 2021 19:56:20 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/0c5bc7b0-8bdb-4819-a15c-77e4c497d1f7') + .get('//text/analytics/v3.1/entities/health/jobs/a4c37b16-f653-486a-a29e-41a55edfa3f0') .query(true) - .reply(200, {"jobId":"0c5bc7b0-8bdb-4819-a15c-77e4c497d1f7","lastUpdateDateTime":"2021-05-12T19:04:43Z","createdDateTime":"2021-05-12T19:04:43Z","expirationDateTime":"2021-05-13T19:04:43Z","status":"notStarted","errors":[]}, [ + .reply(200, {"jobId":"a4c37b16-f653-486a-a29e-41a55edfa3f0","lastUpdateDateTime":"2021-06-25T19:56:21Z","createdDateTime":"2021-06-25T19:56:20Z","expirationDateTime":"2021-06-26T19:56:20Z","status":"running","errors":[]}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '9', 'apim-request-id', - '26902e56-5083-4c0a-93f3-5180e17bb375', + 'cce7d183-47f5-44c6-9be1-4502b990dc00', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:04:43 GMT' + 'Fri, 25 Jun 2021 19:56:20 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/0c5bc7b0-8bdb-4819-a15c-77e4c497d1f7') + .get('//text/analytics/v3.1/entities/health/jobs/a4c37b16-f653-486a-a29e-41a55edfa3f0') .query(true) - .reply(200, {"jobId":"0c5bc7b0-8bdb-4819-a15c-77e4c497d1f7","lastUpdateDateTime":"2021-05-12T19:04:43Z","createdDateTime":"2021-05-12T19:04:43Z","expirationDateTime":"2021-05-13T19:04:43Z","status":"notStarted","errors":[]}, [ + .reply(200, {"jobId":"a4c37b16-f653-486a-a29e-41a55edfa3f0","lastUpdateDateTime":"2021-06-25T19:56:21Z","createdDateTime":"2021-06-25T19:56:20Z","expirationDateTime":"2021-06-26T19:56:20Z","status":"running","errors":[]}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '7', 'apim-request-id', - '994a87b8-4326-4c26-b168-84ddef4e78f8', + '10527dc3-0849-4645-94c4-274148f8ec24', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:04:43 GMT' + 'Fri, 25 Jun 2021 19:56:20 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/0c5bc7b0-8bdb-4819-a15c-77e4c497d1f7') + .get('//text/analytics/v3.1/entities/health/jobs/a4c37b16-f653-486a-a29e-41a55edfa3f0') .query(true) - .reply(200, {"jobId":"0c5bc7b0-8bdb-4819-a15c-77e4c497d1f7","lastUpdateDateTime":"2021-05-12T19:04:43Z","createdDateTime":"2021-05-12T19:04:43Z","expirationDateTime":"2021-05-13T19:04:43Z","status":"notStarted","errors":[]}, [ + .reply(200, {"jobId":"a4c37b16-f653-486a-a29e-41a55edfa3f0","lastUpdateDateTime":"2021-06-25T19:56:21Z","createdDateTime":"2021-06-25T19:56:20Z","expirationDateTime":"2021-06-26T19:56:20Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-05-15"}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '78', 'apim-request-id', - 'dda82688-a216-4d47-9e65-c37043ae173f', + 'eb3fbcd0-c4b1-49b4-b573-c1b7d8fa18df', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:04:45 GMT' + 'Fri, 25 Jun 2021 19:56:23 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/0c5bc7b0-8bdb-4819-a15c-77e4c497d1f7') + .get('//text/analytics/v3.1/entities/health/jobs/a4c37b16-f653-486a-a29e-41a55edfa3f0') .query(true) - .reply(200, {"jobId":"0c5bc7b0-8bdb-4819-a15c-77e4c497d1f7","lastUpdateDateTime":"2021-05-12T19:04:46Z","createdDateTime":"2021-05-12T19:04:43Z","expirationDateTime":"2021-05-13T19:04:43Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-03-01"}}, [ + .reply(200, {"jobId":"a4c37b16-f653-486a-a29e-41a55edfa3f0","lastUpdateDateTime":"2021-06-25T19:56:21Z","createdDateTime":"2021-06-25T19:56:20Z","expirationDateTime":"2021-06-26T19:56:20Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-05-15"}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '48', + '74', 'apim-request-id', - 'c9d45d81-5034-4f28-bb63-8f8ad743c7e3', + 'c1ee8a4d-2d36-408b-b0d5-37c5e35a69f7', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:04:47 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/0c5bc7b0-8bdb-4819-a15c-77e4c497d1f7') - .query(true) - .reply(200, {"jobId":"0c5bc7b0-8bdb-4819-a15c-77e4c497d1f7","lastUpdateDateTime":"2021-05-12T19:04:46Z","createdDateTime":"2021-05-12T19:04:43Z","expirationDateTime":"2021-05-13T19:04:43Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}},{"id":"3","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-03-01"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '47', - 'apim-request-id', - '23c5dff1-0648-45a3-b7d2-eb066420fb77', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:04:47 GMT' + 'Fri, 25 Jun 2021 19:56:23 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_cancelled.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_cancelled.js new file mode 100644 index 000000000000..0fc05d025190 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_cancelled.js @@ -0,0 +1,64 @@ +let nock = require('nock'); + +module.exports.hash = "d0dea63ab7cc530d4397e7208f975080"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"1","text":"Patient does not suffer from high blood pressure.","language":"en"},{"id":"2","text":"Prescribed 100mg ibuprofen, taken twice daily.","language":"en"}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/f80e12eb-e715-4e61-9ebd-fbdc971af35a', + 'x-envoy-upstream-service-time', + '151', + 'apim-request-id', + '4567ecab-6b9f-4fd7-a19a-fc3eb59209aa', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:55 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/f80e12eb-e715-4e61-9ebd-fbdc971af35a') + .query(true) + .reply(200, {"jobId":"f80e12eb-e715-4e61-9ebd-fbdc971af35a","lastUpdateDateTime":"2021-06-25T19:56:56Z","createdDateTime":"2021-06-25T19:56:56Z","expirationDateTime":"2021-06-26T19:56:56Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'c2f098df-6ae5-451d-8491-d3adb49b7dce', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:55 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .delete('//text/analytics/v3.1/entities/health/jobs/f80e12eb-e715-4e61-9ebd-fbdc971af35a') + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/f80e12eb-e715-4e61-9ebd-fbdc971af35a', + 'x-envoy-upstream-service-time', + '16', + 'apim-request-id', + 'c49477af-8175-4683-8658-5831b781b6f8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:55 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_document_warnings.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_document_warnings.js similarity index 52% rename from sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_document_warnings.js rename to sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_document_warnings.js index 4fbbeaf1cc73..af4a65792ee3 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_document_warnings.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_document_warnings.js @@ -1,105 +1,105 @@ let nock = require('nock'); -module.exports.hash = "f8a5f7ad0b9546a9cbb856f66ab9f72e"; +module.exports.hash = "fcf7c06497229418e8940596f0f9de59"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/health/jobs', {"documents":[{"id":"1","text":"This won't actually create a warning :'("}]}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"1","text":"This won't actually create a warning :'("}]}) .query(true) .reply(202, "", [ 'Transfer-Encoding', 'chunked', 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/763d1b09-7957-4e46-824d-58a0411f7d3b', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/fb29d471-cec9-4687-9a6d-d79ab08caa16', 'x-envoy-upstream-service-time', - '94', + '131', 'apim-request-id', - '0f7df88c-07a6-47f7-b78c-062fc200eb50', + '8a74d81a-30c8-4012-b1a7-e325538f78f9', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:04:49 GMT' + 'Fri, 25 Jun 2021 19:56:26 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/763d1b09-7957-4e46-824d-58a0411f7d3b') + .get('//text/analytics/v3.1/entities/health/jobs/fb29d471-cec9-4687-9a6d-d79ab08caa16') .query(true) - .reply(200, {"jobId":"763d1b09-7957-4e46-824d-58a0411f7d3b","lastUpdateDateTime":"2021-05-12T19:04:50Z","createdDateTime":"2021-05-12T19:04:50Z","expirationDateTime":"2021-05-13T19:04:50Z","status":"notStarted","errors":[]}, [ + .reply(200, {"jobId":"fb29d471-cec9-4687-9a6d-d79ab08caa16","lastUpdateDateTime":"2021-06-25T19:56:26Z","createdDateTime":"2021-06-25T19:56:26Z","expirationDateTime":"2021-06-26T19:56:26Z","status":"notStarted","errors":[]}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '9', 'apim-request-id', - '7a992fd1-96f7-413b-a154-bb254eabbcf6', + 'f3d7105e-3b30-468d-9767-f62442431b28', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:04:49 GMT' + 'Fri, 25 Jun 2021 19:56:26 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/763d1b09-7957-4e46-824d-58a0411f7d3b') + .get('//text/analytics/v3.1/entities/health/jobs/fb29d471-cec9-4687-9a6d-d79ab08caa16') .query(true) - .reply(200, {"jobId":"763d1b09-7957-4e46-824d-58a0411f7d3b","lastUpdateDateTime":"2021-05-12T19:04:50Z","createdDateTime":"2021-05-12T19:04:50Z","expirationDateTime":"2021-05-13T19:04:50Z","status":"notStarted","errors":[]}, [ + .reply(200, {"jobId":"fb29d471-cec9-4687-9a6d-d79ab08caa16","lastUpdateDateTime":"2021-06-25T19:56:26Z","createdDateTime":"2021-06-25T19:56:26Z","expirationDateTime":"2021-06-26T19:56:26Z","status":"notStarted","errors":[]}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '7', + '6', 'apim-request-id', - '3aeecffc-9871-4c82-a10e-f7eb5bd92a77', + 'bbdfd4a4-8e6c-42c8-a447-a4b139595669', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:04:49 GMT' + 'Fri, 25 Jun 2021 19:56:26 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/763d1b09-7957-4e46-824d-58a0411f7d3b') + .get('//text/analytics/v3.1/entities/health/jobs/fb29d471-cec9-4687-9a6d-d79ab08caa16') .query(true) - .reply(200, {"jobId":"763d1b09-7957-4e46-824d-58a0411f7d3b","lastUpdateDateTime":"2021-05-12T19:04:51Z","createdDateTime":"2021-05-12T19:04:50Z","expirationDateTime":"2021-05-13T19:04:50Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-03-01"}}, [ + .reply(200, {"jobId":"fb29d471-cec9-4687-9a6d-d79ab08caa16","lastUpdateDateTime":"2021-06-25T19:56:29Z","createdDateTime":"2021-06-25T19:56:26Z","expirationDateTime":"2021-06-26T19:56:26Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '34', + '54', 'apim-request-id', - 'ff82c641-f9e2-458d-a482-17f72072658e', + 'c1bc58db-dc3c-48f7-be5b-742b952af9b0', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:04:51 GMT' + 'Fri, 25 Jun 2021 19:56:29 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/763d1b09-7957-4e46-824d-58a0411f7d3b') + .get('//text/analytics/v3.1/entities/health/jobs/fb29d471-cec9-4687-9a6d-d79ab08caa16') .query(true) - .reply(200, {"jobId":"763d1b09-7957-4e46-824d-58a0411f7d3b","lastUpdateDateTime":"2021-05-12T19:04:51Z","createdDateTime":"2021-05-12T19:04:50Z","expirationDateTime":"2021-05-13T19:04:50Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-03-01"}}, [ + .reply(200, {"jobId":"fb29d471-cec9-4687-9a6d-d79ab08caa16","lastUpdateDateTime":"2021-06-25T19:56:29Z","createdDateTime":"2021-06-25T19:56:26Z","expirationDateTime":"2021-06-26T19:56:26Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '35', + '64', 'apim-request-id', - '81fe95a3-4e6c-495a-bfa5-aaa1e75ab034', + '7d0449d2-4c77-4682-9980-0c84c782bc07', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:04:52 GMT' + 'Fri, 25 Jun 2021 19:56:29 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.js similarity index 67% rename from sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.js rename to sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.js index ad53694d88c9..fd4070d0e07c 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_documents_with_duplicate_ids.js @@ -1,11 +1,11 @@ let nock = require('nock'); -module.exports.hash = "e54d5f4d8fca2689c41edeeb26fc3382"; +module.exports.hash = "f3f46cab08b3670e4445e7d19a63d3c5"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/health/jobs', {"documents":[{"id":"1","text":"hello world"},{"id":"1","text":"I did not like the hotel we stayed at."}]}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"1","text":"hello world"},{"id":"1","text":"I did not like the hotel we stayed at."}]}) .query(true) .reply(400, {"error":{"code":"InvalidRequest","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Request contains duplicated Ids. Make sure each document has a unique Id."}}}, [ 'Transfer-Encoding', @@ -13,13 +13,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '31', + '4', 'apim-request-id', - 'e582f457-eb5a-4ad1-91d9-2c74bb9f142d', + 'dd4d5c09-0930-44c4-98b2-2d2d3a0cc3d3', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:05:47 GMT' + 'Fri, 25 Jun 2021 19:56:55 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_entity_assertions.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_entity_assertions.js similarity index 81% rename from sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_entity_assertions.js rename to sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_entity_assertions.js index 968f74b715f0..00d585926db4 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_entity_assertions.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_entity_assertions.js @@ -1,145 +1,105 @@ let nock = require('nock'); -module.exports.hash = "5840d4625aa6b1eec9bfc70b7813a971"; +module.exports.hash = "6c84b95328582df279435043ada9d912"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/health/jobs', {"documents":[{"id":"0","text":"Baby not likely to have Meningitis. in case of fever in the mother, consider Penicillin for the baby too.","language":"en"}]}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"0","text":"Baby not likely to have Meningitis. in case of fever in the mother, consider Penicillin for the baby too.","language":"en"}]}) .query(true) .reply(202, "", [ 'Transfer-Encoding', 'chunked', 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/f4f000c7-2543-488e-8959-c31ee70303f9', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/a358c1c9-3e10-4e77-9171-76eddb1111f3', 'x-envoy-upstream-service-time', - '7731', + '152', 'apim-request-id', - '6a75ed34-05e2-41a4-a478-a46068829d83', + '36c383a8-432b-4396-a66b-0e2630fd4ff0', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Mon, 07 Jun 2021 21:25:30 GMT' + 'Fri, 25 Jun 2021 19:55:58 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/f4f000c7-2543-488e-8959-c31ee70303f9') + .get('//text/analytics/v3.1/entities/health/jobs/a358c1c9-3e10-4e77-9171-76eddb1111f3') .query(true) - .reply(200, {"jobId":"f4f000c7-2543-488e-8959-c31ee70303f9","lastUpdateDateTime":"2021-06-07T21:25:31Z","createdDateTime":"2021-06-07T21:25:23Z","expirationDateTime":"2021-06-08T21:25:23Z","status":"notStarted","errors":[]}, [ + .reply(200, {"jobId":"a358c1c9-3e10-4e77-9171-76eddb1111f3","lastUpdateDateTime":"2021-06-25T19:55:58Z","createdDateTime":"2021-06-25T19:55:58Z","expirationDateTime":"2021-06-26T19:55:58Z","status":"notStarted","errors":[]}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '7586', + '7', 'apim-request-id', - '818f3a0d-6c82-443c-9e9f-0d176dab7e78', + '4a32db19-2253-4243-bf36-38bd7c81e532', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Mon, 07 Jun 2021 21:25:38 GMT' + 'Fri, 25 Jun 2021 19:55:58 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/f4f000c7-2543-488e-8959-c31ee70303f9') + .get('//text/analytics/v3.1/entities/health/jobs/a358c1c9-3e10-4e77-9171-76eddb1111f3') .query(true) - .reply(200, {"jobId":"f4f000c7-2543-488e-8959-c31ee70303f9","lastUpdateDateTime":"2021-06-07T21:25:31Z","createdDateTime":"2021-06-07T21:25:23Z","expirationDateTime":"2021-06-08T21:25:23Z","status":"notStarted","errors":[]}, [ + .reply(200, {"jobId":"a358c1c9-3e10-4e77-9171-76eddb1111f3","lastUpdateDateTime":"2021-06-25T19:55:58Z","createdDateTime":"2021-06-25T19:55:58Z","expirationDateTime":"2021-06-26T19:55:58Z","status":"notStarted","errors":[]}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '2588', + '9', 'apim-request-id', - 'b5cc8148-19f5-4c3f-af06-072410710891', + '4b0a6ae9-cd3f-4161-af0d-5e89c5c10b04', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Mon, 07 Jun 2021 21:25:40 GMT' + 'Fri, 25 Jun 2021 19:55:58 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/f4f000c7-2543-488e-8959-c31ee70303f9') + .get('//text/analytics/v3.1/entities/health/jobs/a358c1c9-3e10-4e77-9171-76eddb1111f3') .query(true) - .reply(200, {"jobId":"f4f000c7-2543-488e-8959-c31ee70303f9","lastUpdateDateTime":"2021-06-07T21:25:43Z","createdDateTime":"2021-06-07T21:25:23Z","expirationDateTime":"2021-06-08T21:25:23Z","status":"running","errors":[]}, [ + .reply(200, {"jobId":"a358c1c9-3e10-4e77-9171-76eddb1111f3","lastUpdateDateTime":"2021-06-25T19:55:58Z","createdDateTime":"2021-06-25T19:55:58Z","expirationDateTime":"2021-06-26T19:55:58Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":0,"length":4,"text":"Baby","category":"Age","confidenceScore":0.94,"name":"Infant","links":[{"dataSource":"UMLS","id":"C0021270"},{"dataSource":"AOD","id":"0000005273"},{"dataSource":"CCPSS","id":"0030805"},{"dataSource":"CHV","id":"0000006675"},{"dataSource":"DXP","id":"U002089"},{"dataSource":"LCH","id":"U002421"},{"dataSource":"LCH_NW","id":"sh85066022"},{"dataSource":"LNC","id":"LA19747-7"},{"dataSource":"MDR","id":"10021731"},{"dataSource":"MSH","id":"D007223"},{"dataSource":"NCI","id":"C27956"},{"dataSource":"NCI_FDA","id":"C27956"},{"dataSource":"NCI_NICHD","id":"C27956"},{"dataSource":"SNOMEDCT_US","id":"133931009"}]},{"offset":24,"length":10,"text":"Meningitis","category":"Diagnosis","confidenceScore":1,"assertion":{"certainty":"negativePossible"},"name":"Meningitis","links":[{"dataSource":"UMLS","id":"C0025289"},{"dataSource":"AOD","id":"0000006185"},{"dataSource":"BI","id":"BI00546"},{"dataSource":"CCPSS","id":"1018016"},{"dataSource":"CCSR_10","id":"NVS001"},{"dataSource":"CHV","id":"0000007932"},{"dataSource":"COSTAR","id":"478"},{"dataSource":"CSP","id":"2042-5301"},{"dataSource":"CST","id":"MENINGITIS"},{"dataSource":"DXP","id":"U002543"},{"dataSource":"HPO","id":"HP:0001287"},{"dataSource":"ICD10","id":"G03.9"},{"dataSource":"ICD10AM","id":"G03.9"},{"dataSource":"ICD10CM","id":"G03.9"},{"dataSource":"ICD9CM","id":"322.9"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU048434"},{"dataSource":"ICPC2P","id":"N71002"},{"dataSource":"LCH","id":"U002901"},{"dataSource":"LCH_NW","id":"sh85083562"},{"dataSource":"LNC","id":"LP20756-0"},{"dataSource":"MDR","id":"10027199"},{"dataSource":"MEDCIN","id":"31192"},{"dataSource":"MEDLINEPLUS","id":"324"},{"dataSource":"MSH","id":"D008581"},{"dataSource":"NANDA-I","id":"02899"},{"dataSource":"NCI","id":"C26828"},{"dataSource":"NCI_CPTAC","id":"C26828"},{"dataSource":"NCI_CTCAE","id":"E11458"},{"dataSource":"NCI_FDA","id":"2389"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000471780"},{"dataSource":"NCI_NICHD","id":"C26828"},{"dataSource":"OMIM","id":"MTHU005994"},{"dataSource":"PSY","id":"30660"},{"dataSource":"RCD","id":"X000H"},{"dataSource":"SNM","id":"M-40000"},{"dataSource":"SNMI","id":"DA-10010"},{"dataSource":"SNOMEDCT_US","id":"7180009"},{"dataSource":"WHO","id":"0955"}]},{"offset":47,"length":5,"text":"fever","category":"SymptomOrSign","confidenceScore":1,"name":"Fever","links":[{"dataSource":"UMLS","id":"C0015967"},{"dataSource":"AIR","id":"FEVER"},{"dataSource":"AOD","id":"0000004396"},{"dataSource":"BI","id":"BI00751"},{"dataSource":"CCC","id":"K25.2"},{"dataSource":"CCPSS","id":"1017166"},{"dataSource":"CCSR_10","id":"SYM002"},{"dataSource":"CHV","id":"0000005010"},{"dataSource":"COSTAR","id":"300"},{"dataSource":"CPM","id":"65287"},{"dataSource":"CSP","id":"2871-4310"},{"dataSource":"CST","id":"FEVER"},{"dataSource":"DXP","id":"U001483"},{"dataSource":"GO","id":"GO:0001660"},{"dataSource":"HPO","id":"HP:0001945"},{"dataSource":"ICD10","id":"R50.9"},{"dataSource":"ICD10AM","id":"R50.9"},{"dataSource":"ICD10CM","id":"R50.9"},{"dataSource":"ICD9CM","id":"780.60"},{"dataSource":"ICNP","id":"10041539"},{"dataSource":"ICPC","id":"A03"},{"dataSource":"ICPC2EENG","id":"A03"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU041751"},{"dataSource":"ICPC2P","id":"A03002"},{"dataSource":"LCH","id":"U001776"},{"dataSource":"LCH_NW","id":"sh85047994"},{"dataSource":"LNC","id":"MTHU013518"},{"dataSource":"MDR","id":"10005911"},{"dataSource":"MEDCIN","id":"6005"},{"dataSource":"MEDLINEPLUS","id":"511"},{"dataSource":"MSH","id":"D005334"},{"dataSource":"MTHICD9","id":"780.60"},{"dataSource":"NANDA-I","id":"01128"},{"dataSource":"NCI","id":"C3038"},{"dataSource":"NCI_CTCAE","id":"E11102"},{"dataSource":"NCI_FDA","id":"1858"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000450108"},{"dataSource":"NCI_NICHD","id":"C3038"},{"dataSource":"NOC","id":"070307"},{"dataSource":"OMIM","id":"MTHU005439"},{"dataSource":"OMS","id":"50.03"},{"dataSource":"PCDS","id":"PRB_11020.02"},{"dataSource":"PDQ","id":"CDR0000775882"},{"dataSource":"PSY","id":"23840"},{"dataSource":"QMR","id":"Q0200115"},{"dataSource":"RCD","id":"X76EI"},{"dataSource":"SNM","id":"F-03003"},{"dataSource":"SNMI","id":"F-03003"},{"dataSource":"SNOMEDCT_US","id":"386661006"},{"dataSource":"WHO","id":"0725"}]},{"offset":60,"length":6,"text":"mother","category":"FamilyRelation","confidenceScore":0.99,"name":"Mother (person)","links":[{"dataSource":"UMLS","id":"C0026591"},{"dataSource":"AOD","id":"0000027173"},{"dataSource":"CCPSS","id":"U000286"},{"dataSource":"CHV","id":"0000008266"},{"dataSource":"CSP","id":"1124-5492"},{"dataSource":"HL7V3.0","id":"MTH"},{"dataSource":"LCH","id":"U003028"},{"dataSource":"LCH_NW","id":"sh85087526"},{"dataSource":"LNC","id":"LA10417-6"},{"dataSource":"MSH","id":"D009035"},{"dataSource":"NCI","id":"C25189"},{"dataSource":"NCI_CDISC","id":"C25189"},{"dataSource":"NCI_GDC","id":"C25189"},{"dataSource":"PSY","id":"32140"},{"dataSource":"RCD","id":"X78ym"},{"dataSource":"SNMI","id":"S-10120"},{"dataSource":"SNOMEDCT_US","id":"72705000"}]},{"offset":77,"length":10,"text":"Penicillin","category":"MedicationName","confidenceScore":0.9,"assertion":{"certainty":"neutralPossible"},"name":"penicillins","links":[{"dataSource":"UMLS","id":"C0030842"},{"dataSource":"AOD","id":"0000019206"},{"dataSource":"ATC","id":"J01C"},{"dataSource":"CCPSS","id":"0014106"},{"dataSource":"CHV","id":"0000009423"},{"dataSource":"CSP","id":"0199-8025"},{"dataSource":"GS","id":"4011"},{"dataSource":"LCH","id":"U003521"},{"dataSource":"LCH_NW","id":"sh85099402"},{"dataSource":"LNC","id":"LP14319-5"},{"dataSource":"MEDCIN","id":"40319"},{"dataSource":"MMSL","id":"d00116"},{"dataSource":"MSH","id":"D010406"},{"dataSource":"NCI","id":"C1500"},{"dataSource":"NCI_DTP","id":"NSC0402815"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000045296"},{"dataSource":"NDDF","id":"016121"},{"dataSource":"PSY","id":"37190"},{"dataSource":"RCD","id":"x009C"},{"dataSource":"SNM","id":"E-7260"},{"dataSource":"SNMI","id":"C-54000"},{"dataSource":"SNOMEDCT_US","id":"764146007"},{"dataSource":"VANDF","id":"4019880"}]},{"offset":96,"length":4,"text":"baby","category":"FamilyRelation","confidenceScore":1,"name":"Infant","links":[{"dataSource":"UMLS","id":"C0021270"},{"dataSource":"AOD","id":"0000005273"},{"dataSource":"CCPSS","id":"0030805"},{"dataSource":"CHV","id":"0000006675"},{"dataSource":"DXP","id":"U002089"},{"dataSource":"LCH","id":"U002421"},{"dataSource":"LCH_NW","id":"sh85066022"},{"dataSource":"LNC","id":"LA19747-7"},{"dataSource":"MDR","id":"10021731"},{"dataSource":"MSH","id":"D007223"},{"dataSource":"NCI","id":"C27956"},{"dataSource":"NCI_FDA","id":"C27956"},{"dataSource":"NCI_NICHD","id":"C27956"},{"dataSource":"SNOMEDCT_US","id":"133931009"}]}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '5031', + '47', 'apim-request-id', - '25fb5f62-5b08-4f3f-bb7a-efd6675537aa', + '322ca7a1-b088-4b32-989f-56eb8ceb4183', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Mon, 07 Jun 2021 21:25:48 GMT' + 'Fri, 25 Jun 2021 19:56:00 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/f4f000c7-2543-488e-8959-c31ee70303f9') + .get('//text/analytics/v3.1/entities/health/jobs/a358c1c9-3e10-4e77-9171-76eddb1111f3') .query(true) - .reply(200, {"jobId":"f4f000c7-2543-488e-8959-c31ee70303f9","lastUpdateDateTime":"2021-06-07T21:25:43Z","createdDateTime":"2021-06-07T21:25:23Z","expirationDateTime":"2021-06-08T21:25:23Z","status":"running","errors":[]}, [ + .reply(200, {"jobId":"a358c1c9-3e10-4e77-9171-76eddb1111f3","lastUpdateDateTime":"2021-06-25T19:55:58Z","createdDateTime":"2021-06-25T19:55:58Z","expirationDateTime":"2021-06-26T19:55:58Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":0,"length":4,"text":"Baby","category":"Age","confidenceScore":0.94,"name":"Infant","links":[{"dataSource":"UMLS","id":"C0021270"},{"dataSource":"AOD","id":"0000005273"},{"dataSource":"CCPSS","id":"0030805"},{"dataSource":"CHV","id":"0000006675"},{"dataSource":"DXP","id":"U002089"},{"dataSource":"LCH","id":"U002421"},{"dataSource":"LCH_NW","id":"sh85066022"},{"dataSource":"LNC","id":"LA19747-7"},{"dataSource":"MDR","id":"10021731"},{"dataSource":"MSH","id":"D007223"},{"dataSource":"NCI","id":"C27956"},{"dataSource":"NCI_FDA","id":"C27956"},{"dataSource":"NCI_NICHD","id":"C27956"},{"dataSource":"SNOMEDCT_US","id":"133931009"}]},{"offset":24,"length":10,"text":"Meningitis","category":"Diagnosis","confidenceScore":1,"assertion":{"certainty":"negativePossible"},"name":"Meningitis","links":[{"dataSource":"UMLS","id":"C0025289"},{"dataSource":"AOD","id":"0000006185"},{"dataSource":"BI","id":"BI00546"},{"dataSource":"CCPSS","id":"1018016"},{"dataSource":"CCSR_10","id":"NVS001"},{"dataSource":"CHV","id":"0000007932"},{"dataSource":"COSTAR","id":"478"},{"dataSource":"CSP","id":"2042-5301"},{"dataSource":"CST","id":"MENINGITIS"},{"dataSource":"DXP","id":"U002543"},{"dataSource":"HPO","id":"HP:0001287"},{"dataSource":"ICD10","id":"G03.9"},{"dataSource":"ICD10AM","id":"G03.9"},{"dataSource":"ICD10CM","id":"G03.9"},{"dataSource":"ICD9CM","id":"322.9"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU048434"},{"dataSource":"ICPC2P","id":"N71002"},{"dataSource":"LCH","id":"U002901"},{"dataSource":"LCH_NW","id":"sh85083562"},{"dataSource":"LNC","id":"LP20756-0"},{"dataSource":"MDR","id":"10027199"},{"dataSource":"MEDCIN","id":"31192"},{"dataSource":"MEDLINEPLUS","id":"324"},{"dataSource":"MSH","id":"D008581"},{"dataSource":"NANDA-I","id":"02899"},{"dataSource":"NCI","id":"C26828"},{"dataSource":"NCI_CPTAC","id":"C26828"},{"dataSource":"NCI_CTCAE","id":"E11458"},{"dataSource":"NCI_FDA","id":"2389"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000471780"},{"dataSource":"NCI_NICHD","id":"C26828"},{"dataSource":"OMIM","id":"MTHU005994"},{"dataSource":"PSY","id":"30660"},{"dataSource":"RCD","id":"X000H"},{"dataSource":"SNM","id":"M-40000"},{"dataSource":"SNMI","id":"DA-10010"},{"dataSource":"SNOMEDCT_US","id":"7180009"},{"dataSource":"WHO","id":"0955"}]},{"offset":47,"length":5,"text":"fever","category":"SymptomOrSign","confidenceScore":1,"name":"Fever","links":[{"dataSource":"UMLS","id":"C0015967"},{"dataSource":"AIR","id":"FEVER"},{"dataSource":"AOD","id":"0000004396"},{"dataSource":"BI","id":"BI00751"},{"dataSource":"CCC","id":"K25.2"},{"dataSource":"CCPSS","id":"1017166"},{"dataSource":"CCSR_10","id":"SYM002"},{"dataSource":"CHV","id":"0000005010"},{"dataSource":"COSTAR","id":"300"},{"dataSource":"CPM","id":"65287"},{"dataSource":"CSP","id":"2871-4310"},{"dataSource":"CST","id":"FEVER"},{"dataSource":"DXP","id":"U001483"},{"dataSource":"GO","id":"GO:0001660"},{"dataSource":"HPO","id":"HP:0001945"},{"dataSource":"ICD10","id":"R50.9"},{"dataSource":"ICD10AM","id":"R50.9"},{"dataSource":"ICD10CM","id":"R50.9"},{"dataSource":"ICD9CM","id":"780.60"},{"dataSource":"ICNP","id":"10041539"},{"dataSource":"ICPC","id":"A03"},{"dataSource":"ICPC2EENG","id":"A03"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU041751"},{"dataSource":"ICPC2P","id":"A03002"},{"dataSource":"LCH","id":"U001776"},{"dataSource":"LCH_NW","id":"sh85047994"},{"dataSource":"LNC","id":"MTHU013518"},{"dataSource":"MDR","id":"10005911"},{"dataSource":"MEDCIN","id":"6005"},{"dataSource":"MEDLINEPLUS","id":"511"},{"dataSource":"MSH","id":"D005334"},{"dataSource":"MTHICD9","id":"780.60"},{"dataSource":"NANDA-I","id":"01128"},{"dataSource":"NCI","id":"C3038"},{"dataSource":"NCI_CTCAE","id":"E11102"},{"dataSource":"NCI_FDA","id":"1858"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000450108"},{"dataSource":"NCI_NICHD","id":"C3038"},{"dataSource":"NOC","id":"070307"},{"dataSource":"OMIM","id":"MTHU005439"},{"dataSource":"OMS","id":"50.03"},{"dataSource":"PCDS","id":"PRB_11020.02"},{"dataSource":"PDQ","id":"CDR0000775882"},{"dataSource":"PSY","id":"23840"},{"dataSource":"QMR","id":"Q0200115"},{"dataSource":"RCD","id":"X76EI"},{"dataSource":"SNM","id":"F-03003"},{"dataSource":"SNMI","id":"F-03003"},{"dataSource":"SNOMEDCT_US","id":"386661006"},{"dataSource":"WHO","id":"0725"}]},{"offset":60,"length":6,"text":"mother","category":"FamilyRelation","confidenceScore":0.99,"name":"Mother (person)","links":[{"dataSource":"UMLS","id":"C0026591"},{"dataSource":"AOD","id":"0000027173"},{"dataSource":"CCPSS","id":"U000286"},{"dataSource":"CHV","id":"0000008266"},{"dataSource":"CSP","id":"1124-5492"},{"dataSource":"HL7V3.0","id":"MTH"},{"dataSource":"LCH","id":"U003028"},{"dataSource":"LCH_NW","id":"sh85087526"},{"dataSource":"LNC","id":"LA10417-6"},{"dataSource":"MSH","id":"D009035"},{"dataSource":"NCI","id":"C25189"},{"dataSource":"NCI_CDISC","id":"C25189"},{"dataSource":"NCI_GDC","id":"C25189"},{"dataSource":"PSY","id":"32140"},{"dataSource":"RCD","id":"X78ym"},{"dataSource":"SNMI","id":"S-10120"},{"dataSource":"SNOMEDCT_US","id":"72705000"}]},{"offset":77,"length":10,"text":"Penicillin","category":"MedicationName","confidenceScore":0.9,"assertion":{"certainty":"neutralPossible"},"name":"penicillins","links":[{"dataSource":"UMLS","id":"C0030842"},{"dataSource":"AOD","id":"0000019206"},{"dataSource":"ATC","id":"J01C"},{"dataSource":"CCPSS","id":"0014106"},{"dataSource":"CHV","id":"0000009423"},{"dataSource":"CSP","id":"0199-8025"},{"dataSource":"GS","id":"4011"},{"dataSource":"LCH","id":"U003521"},{"dataSource":"LCH_NW","id":"sh85099402"},{"dataSource":"LNC","id":"LP14319-5"},{"dataSource":"MEDCIN","id":"40319"},{"dataSource":"MMSL","id":"d00116"},{"dataSource":"MSH","id":"D010406"},{"dataSource":"NCI","id":"C1500"},{"dataSource":"NCI_DTP","id":"NSC0402815"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000045296"},{"dataSource":"NDDF","id":"016121"},{"dataSource":"PSY","id":"37190"},{"dataSource":"RCD","id":"x009C"},{"dataSource":"SNM","id":"E-7260"},{"dataSource":"SNMI","id":"C-54000"},{"dataSource":"SNOMEDCT_US","id":"764146007"},{"dataSource":"VANDF","id":"4019880"}]},{"offset":96,"length":4,"text":"baby","category":"FamilyRelation","confidenceScore":1,"name":"Infant","links":[{"dataSource":"UMLS","id":"C0021270"},{"dataSource":"AOD","id":"0000005273"},{"dataSource":"CCPSS","id":"0030805"},{"dataSource":"CHV","id":"0000006675"},{"dataSource":"DXP","id":"U002089"},{"dataSource":"LCH","id":"U002421"},{"dataSource":"LCH_NW","id":"sh85066022"},{"dataSource":"LNC","id":"LA19747-7"},{"dataSource":"MDR","id":"10021731"},{"dataSource":"MSH","id":"D007223"},{"dataSource":"NCI","id":"C27956"},{"dataSource":"NCI_FDA","id":"C27956"},{"dataSource":"NCI_NICHD","id":"C27956"},{"dataSource":"SNOMEDCT_US","id":"133931009"}]}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '2697', + '55', 'apim-request-id', - 'a12aee4f-946f-4fb9-b41b-27fb94723442', + '181e1e4a-62d1-4ff3-8e12-c59f75ac1ad8', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Mon, 07 Jun 2021 21:25:53 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/f4f000c7-2543-488e-8959-c31ee70303f9') - .query(true) - .reply(200, {"jobId":"f4f000c7-2543-488e-8959-c31ee70303f9","lastUpdateDateTime":"2021-06-07T21:25:56Z","createdDateTime":"2021-06-07T21:25:23Z","expirationDateTime":"2021-06-08T21:25:23Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":0,"length":4,"text":"Baby","category":"Age","confidenceScore":0.94,"name":"Infant","links":[{"dataSource":"UMLS","id":"C0021270"},{"dataSource":"AOD","id":"0000005273"},{"dataSource":"CCPSS","id":"0030805"},{"dataSource":"CHV","id":"0000006675"},{"dataSource":"DXP","id":"U002089"},{"dataSource":"LCH","id":"U002421"},{"dataSource":"LCH_NW","id":"sh85066022"},{"dataSource":"LNC","id":"LA19747-7"},{"dataSource":"MDR","id":"10021731"},{"dataSource":"MSH","id":"D007223"},{"dataSource":"NCI","id":"C27956"},{"dataSource":"NCI_FDA","id":"C27956"},{"dataSource":"NCI_NICHD","id":"C27956"},{"dataSource":"SNOMEDCT_US","id":"133931009"}]},{"offset":24,"length":10,"text":"Meningitis","category":"Diagnosis","confidenceScore":1,"assertion":{"certainty":"negativePossible"},"name":"Meningitis","links":[{"dataSource":"UMLS","id":"C0025289"},{"dataSource":"AOD","id":"0000006185"},{"dataSource":"BI","id":"BI00546"},{"dataSource":"CCPSS","id":"1018016"},{"dataSource":"CCSR_10","id":"NVS001"},{"dataSource":"CHV","id":"0000007932"},{"dataSource":"COSTAR","id":"478"},{"dataSource":"CSP","id":"2042-5301"},{"dataSource":"CST","id":"MENINGITIS"},{"dataSource":"DXP","id":"U002543"},{"dataSource":"HPO","id":"HP:0001287"},{"dataSource":"ICD10","id":"G03.9"},{"dataSource":"ICD10AM","id":"G03.9"},{"dataSource":"ICD10CM","id":"G03.9"},{"dataSource":"ICD9CM","id":"322.9"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU048434"},{"dataSource":"ICPC2P","id":"N71002"},{"dataSource":"LCH","id":"U002901"},{"dataSource":"LCH_NW","id":"sh85083562"},{"dataSource":"LNC","id":"LP20756-0"},{"dataSource":"MDR","id":"10027199"},{"dataSource":"MEDCIN","id":"31192"},{"dataSource":"MEDLINEPLUS","id":"324"},{"dataSource":"MSH","id":"D008581"},{"dataSource":"NANDA-I","id":"02899"},{"dataSource":"NCI","id":"C26828"},{"dataSource":"NCI_CPTAC","id":"C26828"},{"dataSource":"NCI_CTCAE","id":"E11458"},{"dataSource":"NCI_FDA","id":"2389"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000471780"},{"dataSource":"NCI_NICHD","id":"C26828"},{"dataSource":"OMIM","id":"MTHU005994"},{"dataSource":"PSY","id":"30660"},{"dataSource":"RCD","id":"X000H"},{"dataSource":"SNM","id":"M-40000"},{"dataSource":"SNMI","id":"DA-10010"},{"dataSource":"SNOMEDCT_US","id":"7180009"},{"dataSource":"WHO","id":"0955"}]},{"offset":47,"length":5,"text":"fever","category":"SymptomOrSign","confidenceScore":1,"name":"Fever","links":[{"dataSource":"UMLS","id":"C0015967"},{"dataSource":"AIR","id":"FEVER"},{"dataSource":"AOD","id":"0000004396"},{"dataSource":"BI","id":"BI00751"},{"dataSource":"CCC","id":"K25.2"},{"dataSource":"CCPSS","id":"1017166"},{"dataSource":"CCSR_10","id":"SYM002"},{"dataSource":"CHV","id":"0000005010"},{"dataSource":"COSTAR","id":"300"},{"dataSource":"CPM","id":"65287"},{"dataSource":"CSP","id":"2871-4310"},{"dataSource":"CST","id":"FEVER"},{"dataSource":"DXP","id":"U001483"},{"dataSource":"GO","id":"GO:0001660"},{"dataSource":"HPO","id":"HP:0001945"},{"dataSource":"ICD10","id":"R50.9"},{"dataSource":"ICD10AM","id":"R50.9"},{"dataSource":"ICD10CM","id":"R50.9"},{"dataSource":"ICD9CM","id":"780.60"},{"dataSource":"ICNP","id":"10041539"},{"dataSource":"ICPC","id":"A03"},{"dataSource":"ICPC2EENG","id":"A03"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU041751"},{"dataSource":"ICPC2P","id":"A03002"},{"dataSource":"LCH","id":"U001776"},{"dataSource":"LCH_NW","id":"sh85047994"},{"dataSource":"LNC","id":"MTHU013518"},{"dataSource":"MDR","id":"10005911"},{"dataSource":"MEDCIN","id":"6005"},{"dataSource":"MEDLINEPLUS","id":"511"},{"dataSource":"MSH","id":"D005334"},{"dataSource":"MTHICD9","id":"780.60"},{"dataSource":"NANDA-I","id":"01128"},{"dataSource":"NCI","id":"C3038"},{"dataSource":"NCI_CTCAE","id":"E11102"},{"dataSource":"NCI_FDA","id":"1858"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000450108"},{"dataSource":"NCI_NICHD","id":"C3038"},{"dataSource":"NOC","id":"070307"},{"dataSource":"OMIM","id":"MTHU005439"},{"dataSource":"OMS","id":"50.03"},{"dataSource":"PCDS","id":"PRB_11020.02"},{"dataSource":"PDQ","id":"CDR0000775882"},{"dataSource":"PSY","id":"23840"},{"dataSource":"QMR","id":"Q0200115"},{"dataSource":"RCD","id":"X76EI"},{"dataSource":"SNM","id":"F-03003"},{"dataSource":"SNMI","id":"F-03003"},{"dataSource":"SNOMEDCT_US","id":"386661006"},{"dataSource":"WHO","id":"0725"}]},{"offset":60,"length":6,"text":"mother","category":"FamilyRelation","confidenceScore":0.99,"name":"Mother (person)","links":[{"dataSource":"UMLS","id":"C0026591"},{"dataSource":"AOD","id":"0000027173"},{"dataSource":"CCPSS","id":"U000286"},{"dataSource":"CHV","id":"0000008266"},{"dataSource":"CSP","id":"1124-5492"},{"dataSource":"HL7V3.0","id":"MTH"},{"dataSource":"LCH","id":"U003028"},{"dataSource":"LCH_NW","id":"sh85087526"},{"dataSource":"LNC","id":"LA10417-6"},{"dataSource":"MSH","id":"D009035"},{"dataSource":"NCI","id":"C25189"},{"dataSource":"NCI_CDISC","id":"C25189"},{"dataSource":"NCI_GDC","id":"C25189"},{"dataSource":"PSY","id":"32140"},{"dataSource":"RCD","id":"X78ym"},{"dataSource":"SNMI","id":"S-10120"},{"dataSource":"SNOMEDCT_US","id":"72705000"}]},{"offset":77,"length":10,"text":"Penicillin","category":"MedicationName","confidenceScore":0.9,"assertion":{"certainty":"neutralPossible"},"name":"penicillins","links":[{"dataSource":"UMLS","id":"C0030842"},{"dataSource":"AOD","id":"0000019206"},{"dataSource":"ATC","id":"J01C"},{"dataSource":"CCPSS","id":"0014106"},{"dataSource":"CHV","id":"0000009423"},{"dataSource":"CSP","id":"0199-8025"},{"dataSource":"GS","id":"4011"},{"dataSource":"LCH","id":"U003521"},{"dataSource":"LCH_NW","id":"sh85099402"},{"dataSource":"LNC","id":"LP14319-5"},{"dataSource":"MEDCIN","id":"40319"},{"dataSource":"MMSL","id":"d00116"},{"dataSource":"MSH","id":"D010406"},{"dataSource":"NCI","id":"C1500"},{"dataSource":"NCI_DTP","id":"NSC0402815"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000045296"},{"dataSource":"NDDF","id":"016121"},{"dataSource":"PSY","id":"37190"},{"dataSource":"RCD","id":"x009C"},{"dataSource":"SNM","id":"E-7260"},{"dataSource":"SNMI","id":"C-54000"},{"dataSource":"SNOMEDCT_US","id":"764146007"},{"dataSource":"VANDF","id":"4019880"}]},{"offset":96,"length":4,"text":"baby","category":"FamilyRelation","confidenceScore":1,"name":"Infant","links":[{"dataSource":"UMLS","id":"C0021270"},{"dataSource":"AOD","id":"0000005273"},{"dataSource":"CCPSS","id":"0030805"},{"dataSource":"CHV","id":"0000006675"},{"dataSource":"DXP","id":"U002089"},{"dataSource":"LCH","id":"U002421"},{"dataSource":"LCH_NW","id":"sh85066022"},{"dataSource":"LNC","id":"LA19747-7"},{"dataSource":"MDR","id":"10021731"},{"dataSource":"MSH","id":"D007223"},{"dataSource":"NCI","id":"C27956"},{"dataSource":"NCI_FDA","id":"C27956"},{"dataSource":"NCI_NICHD","id":"C27956"},{"dataSource":"SNOMEDCT_US","id":"133931009"}]}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '5277', - 'apim-request-id', - '5ad1aa6a-ed33-421f-b4ce-54f5203c20b8', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 07 Jun 2021 21:26:00 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/f4f000c7-2543-488e-8959-c31ee70303f9') - .query(true) - .reply(200, {"jobId":"f4f000c7-2543-488e-8959-c31ee70303f9","lastUpdateDateTime":"2021-06-07T21:25:56Z","createdDateTime":"2021-06-07T21:25:23Z","expirationDateTime":"2021-06-08T21:25:23Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":0,"length":4,"text":"Baby","category":"Age","confidenceScore":0.94,"name":"Infant","links":[{"dataSource":"UMLS","id":"C0021270"},{"dataSource":"AOD","id":"0000005273"},{"dataSource":"CCPSS","id":"0030805"},{"dataSource":"CHV","id":"0000006675"},{"dataSource":"DXP","id":"U002089"},{"dataSource":"LCH","id":"U002421"},{"dataSource":"LCH_NW","id":"sh85066022"},{"dataSource":"LNC","id":"LA19747-7"},{"dataSource":"MDR","id":"10021731"},{"dataSource":"MSH","id":"D007223"},{"dataSource":"NCI","id":"C27956"},{"dataSource":"NCI_FDA","id":"C27956"},{"dataSource":"NCI_NICHD","id":"C27956"},{"dataSource":"SNOMEDCT_US","id":"133931009"}]},{"offset":24,"length":10,"text":"Meningitis","category":"Diagnosis","confidenceScore":1,"assertion":{"certainty":"negativePossible"},"name":"Meningitis","links":[{"dataSource":"UMLS","id":"C0025289"},{"dataSource":"AOD","id":"0000006185"},{"dataSource":"BI","id":"BI00546"},{"dataSource":"CCPSS","id":"1018016"},{"dataSource":"CCSR_10","id":"NVS001"},{"dataSource":"CHV","id":"0000007932"},{"dataSource":"COSTAR","id":"478"},{"dataSource":"CSP","id":"2042-5301"},{"dataSource":"CST","id":"MENINGITIS"},{"dataSource":"DXP","id":"U002543"},{"dataSource":"HPO","id":"HP:0001287"},{"dataSource":"ICD10","id":"G03.9"},{"dataSource":"ICD10AM","id":"G03.9"},{"dataSource":"ICD10CM","id":"G03.9"},{"dataSource":"ICD9CM","id":"322.9"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU048434"},{"dataSource":"ICPC2P","id":"N71002"},{"dataSource":"LCH","id":"U002901"},{"dataSource":"LCH_NW","id":"sh85083562"},{"dataSource":"LNC","id":"LP20756-0"},{"dataSource":"MDR","id":"10027199"},{"dataSource":"MEDCIN","id":"31192"},{"dataSource":"MEDLINEPLUS","id":"324"},{"dataSource":"MSH","id":"D008581"},{"dataSource":"NANDA-I","id":"02899"},{"dataSource":"NCI","id":"C26828"},{"dataSource":"NCI_CPTAC","id":"C26828"},{"dataSource":"NCI_CTCAE","id":"E11458"},{"dataSource":"NCI_FDA","id":"2389"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000471780"},{"dataSource":"NCI_NICHD","id":"C26828"},{"dataSource":"OMIM","id":"MTHU005994"},{"dataSource":"PSY","id":"30660"},{"dataSource":"RCD","id":"X000H"},{"dataSource":"SNM","id":"M-40000"},{"dataSource":"SNMI","id":"DA-10010"},{"dataSource":"SNOMEDCT_US","id":"7180009"},{"dataSource":"WHO","id":"0955"}]},{"offset":47,"length":5,"text":"fever","category":"SymptomOrSign","confidenceScore":1,"name":"Fever","links":[{"dataSource":"UMLS","id":"C0015967"},{"dataSource":"AIR","id":"FEVER"},{"dataSource":"AOD","id":"0000004396"},{"dataSource":"BI","id":"BI00751"},{"dataSource":"CCC","id":"K25.2"},{"dataSource":"CCPSS","id":"1017166"},{"dataSource":"CCSR_10","id":"SYM002"},{"dataSource":"CHV","id":"0000005010"},{"dataSource":"COSTAR","id":"300"},{"dataSource":"CPM","id":"65287"},{"dataSource":"CSP","id":"2871-4310"},{"dataSource":"CST","id":"FEVER"},{"dataSource":"DXP","id":"U001483"},{"dataSource":"GO","id":"GO:0001660"},{"dataSource":"HPO","id":"HP:0001945"},{"dataSource":"ICD10","id":"R50.9"},{"dataSource":"ICD10AM","id":"R50.9"},{"dataSource":"ICD10CM","id":"R50.9"},{"dataSource":"ICD9CM","id":"780.60"},{"dataSource":"ICNP","id":"10041539"},{"dataSource":"ICPC","id":"A03"},{"dataSource":"ICPC2EENG","id":"A03"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU041751"},{"dataSource":"ICPC2P","id":"A03002"},{"dataSource":"LCH","id":"U001776"},{"dataSource":"LCH_NW","id":"sh85047994"},{"dataSource":"LNC","id":"MTHU013518"},{"dataSource":"MDR","id":"10005911"},{"dataSource":"MEDCIN","id":"6005"},{"dataSource":"MEDLINEPLUS","id":"511"},{"dataSource":"MSH","id":"D005334"},{"dataSource":"MTHICD9","id":"780.60"},{"dataSource":"NANDA-I","id":"01128"},{"dataSource":"NCI","id":"C3038"},{"dataSource":"NCI_CTCAE","id":"E11102"},{"dataSource":"NCI_FDA","id":"1858"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000450108"},{"dataSource":"NCI_NICHD","id":"C3038"},{"dataSource":"NOC","id":"070307"},{"dataSource":"OMIM","id":"MTHU005439"},{"dataSource":"OMS","id":"50.03"},{"dataSource":"PCDS","id":"PRB_11020.02"},{"dataSource":"PDQ","id":"CDR0000775882"},{"dataSource":"PSY","id":"23840"},{"dataSource":"QMR","id":"Q0200115"},{"dataSource":"RCD","id":"X76EI"},{"dataSource":"SNM","id":"F-03003"},{"dataSource":"SNMI","id":"F-03003"},{"dataSource":"SNOMEDCT_US","id":"386661006"},{"dataSource":"WHO","id":"0725"}]},{"offset":60,"length":6,"text":"mother","category":"FamilyRelation","confidenceScore":0.99,"name":"Mother (person)","links":[{"dataSource":"UMLS","id":"C0026591"},{"dataSource":"AOD","id":"0000027173"},{"dataSource":"CCPSS","id":"U000286"},{"dataSource":"CHV","id":"0000008266"},{"dataSource":"CSP","id":"1124-5492"},{"dataSource":"HL7V3.0","id":"MTH"},{"dataSource":"LCH","id":"U003028"},{"dataSource":"LCH_NW","id":"sh85087526"},{"dataSource":"LNC","id":"LA10417-6"},{"dataSource":"MSH","id":"D009035"},{"dataSource":"NCI","id":"C25189"},{"dataSource":"NCI_CDISC","id":"C25189"},{"dataSource":"NCI_GDC","id":"C25189"},{"dataSource":"PSY","id":"32140"},{"dataSource":"RCD","id":"X78ym"},{"dataSource":"SNMI","id":"S-10120"},{"dataSource":"SNOMEDCT_US","id":"72705000"}]},{"offset":77,"length":10,"text":"Penicillin","category":"MedicationName","confidenceScore":0.9,"assertion":{"certainty":"neutralPossible"},"name":"penicillins","links":[{"dataSource":"UMLS","id":"C0030842"},{"dataSource":"AOD","id":"0000019206"},{"dataSource":"ATC","id":"J01C"},{"dataSource":"CCPSS","id":"0014106"},{"dataSource":"CHV","id":"0000009423"},{"dataSource":"CSP","id":"0199-8025"},{"dataSource":"GS","id":"4011"},{"dataSource":"LCH","id":"U003521"},{"dataSource":"LCH_NW","id":"sh85099402"},{"dataSource":"LNC","id":"LP14319-5"},{"dataSource":"MEDCIN","id":"40319"},{"dataSource":"MMSL","id":"d00116"},{"dataSource":"MSH","id":"D010406"},{"dataSource":"NCI","id":"C1500"},{"dataSource":"NCI_DTP","id":"NSC0402815"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000045296"},{"dataSource":"NDDF","id":"016121"},{"dataSource":"PSY","id":"37190"},{"dataSource":"RCD","id":"x009C"},{"dataSource":"SNM","id":"E-7260"},{"dataSource":"SNMI","id":"C-54000"},{"dataSource":"SNOMEDCT_US","id":"764146007"},{"dataSource":"VANDF","id":"4019880"}]},{"offset":96,"length":4,"text":"baby","category":"FamilyRelation","confidenceScore":1,"name":"Infant","links":[{"dataSource":"UMLS","id":"C0021270"},{"dataSource":"AOD","id":"0000005273"},{"dataSource":"CCPSS","id":"0030805"},{"dataSource":"CHV","id":"0000006675"},{"dataSource":"DXP","id":"U002089"},{"dataSource":"LCH","id":"U002421"},{"dataSource":"LCH_NW","id":"sh85066022"},{"dataSource":"LNC","id":"LA19747-7"},{"dataSource":"MDR","id":"10021731"},{"dataSource":"MSH","id":"D007223"},{"dataSource":"NCI","id":"C27956"},{"dataSource":"NCI_FDA","id":"C27956"},{"dataSource":"NCI_NICHD","id":"C27956"},{"dataSource":"SNOMEDCT_US","id":"133931009"}]}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '5096', - 'apim-request-id', - '63e38be6-1280-4ccc-9bbb-98f4c9d2ddd5', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Mon, 07 Jun 2021 21:26:05 GMT' + 'Fri, 25 Jun 2021 19:56:00 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.js similarity index 66% rename from sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.js rename to sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.js index 0128a366f991..cc7f5c6776c6 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_unicodecodepoint.js @@ -1,125 +1,125 @@ let nock = require('nock'); -module.exports.hash = "d975b16d2add4541fc29814b032688e0"; +module.exports.hash = "6197be518bc787450217d0b89ab9001b"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/health/jobs', {"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 ibuprofen","language":"en"}]}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 ibuprofen","language":"en"}]}) .query(true) .reply(202, "", [ 'Transfer-Encoding', 'chunked', 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/6cdc427c-b9f3-4e3c-b4d5-2ffc713cbf60', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/eba73647-e324-4fa2-9dfd-fccda2216b8f', 'x-envoy-upstream-service-time', - '78', + '132', 'apim-request-id', - '4c9c91de-15cb-4d32-a51a-cee5c5b0c90c', + 'b46361b1-bbe3-4e6a-9667-3860fedb4bbc', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:05:57 GMT' + 'Fri, 25 Jun 2021 19:57:31 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/6cdc427c-b9f3-4e3c-b4d5-2ffc713cbf60') + .get('//text/analytics/v3.1/entities/health/jobs/eba73647-e324-4fa2-9dfd-fccda2216b8f') .query(true) - .reply(200, {"jobId":"6cdc427c-b9f3-4e3c-b4d5-2ffc713cbf60","lastUpdateDateTime":"2021-05-12T19:05:58Z","createdDateTime":"2021-05-12T19:05:58Z","expirationDateTime":"2021-05-13T19:05:58Z","status":"notStarted","errors":[]}, [ + .reply(200, {"jobId":"eba73647-e324-4fa2-9dfd-fccda2216b8f","lastUpdateDateTime":"2021-06-25T19:57:31Z","createdDateTime":"2021-06-25T19:57:31Z","expirationDateTime":"2021-06-26T19:57:31Z","status":"notStarted","errors":[]}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '13', + '8', 'apim-request-id', - '0983228c-82e6-49d3-98d8-9246f095dc07', + 'b6d71491-26fd-4b26-92f3-5e136436d9b5', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:05:57 GMT' + 'Fri, 25 Jun 2021 19:57:31 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/6cdc427c-b9f3-4e3c-b4d5-2ffc713cbf60') + .get('//text/analytics/v3.1/entities/health/jobs/eba73647-e324-4fa2-9dfd-fccda2216b8f') .query(true) - .reply(200, {"jobId":"6cdc427c-b9f3-4e3c-b4d5-2ffc713cbf60","lastUpdateDateTime":"2021-05-12T19:05:58Z","createdDateTime":"2021-05-12T19:05:58Z","expirationDateTime":"2021-05-13T19:05:58Z","status":"notStarted","errors":[]}, [ + .reply(200, {"jobId":"eba73647-e324-4fa2-9dfd-fccda2216b8f","lastUpdateDateTime":"2021-06-25T19:57:31Z","createdDateTime":"2021-06-25T19:57:31Z","expirationDateTime":"2021-06-26T19:57:31Z","status":"notStarted","errors":[]}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '9', + '12', 'apim-request-id', - '3ba1d217-654f-4398-9d63-e77079f481d7', + '9230a1d0-cc39-4cab-8d5a-a86c7d922e72', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:05:57 GMT' + 'Fri, 25 Jun 2021 19:57:31 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/6cdc427c-b9f3-4e3c-b4d5-2ffc713cbf60') + .get('//text/analytics/v3.1/entities/health/jobs/eba73647-e324-4fa2-9dfd-fccda2216b8f') .query(true) - .reply(200, {"jobId":"6cdc427c-b9f3-4e3c-b4d5-2ffc713cbf60","lastUpdateDateTime":"2021-05-12T19:05:58Z","createdDateTime":"2021-05-12T19:05:58Z","expirationDateTime":"2021-05-13T19:05:58Z","status":"notStarted","errors":[]}, [ + .reply(200, {"jobId":"eba73647-e324-4fa2-9dfd-fccda2216b8f","lastUpdateDateTime":"2021-06-25T19:57:31Z","createdDateTime":"2021-06-25T19:57:31Z","expirationDateTime":"2021-06-26T19:57:31Z","status":"notStarted","errors":[]}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '11', 'apim-request-id', - 'a1741e54-9f2a-40de-a015-0dc5bfff126c', + '626f2bfe-5490-4041-9d67-3d769411f53e', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:05:59 GMT' + 'Fri, 25 Jun 2021 19:57:33 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/6cdc427c-b9f3-4e3c-b4d5-2ffc713cbf60') + .get('//text/analytics/v3.1/entities/health/jobs/eba73647-e324-4fa2-9dfd-fccda2216b8f') .query(true) - .reply(200, {"jobId":"6cdc427c-b9f3-4e3c-b4d5-2ffc713cbf60","lastUpdateDateTime":"2021-05-12T19:06:02Z","createdDateTime":"2021-05-12T19:05:58Z","expirationDateTime":"2021-05-13T19:05:58Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":12,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":0.89,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-03-01"}}, [ + .reply(200, {"jobId":"eba73647-e324-4fa2-9dfd-fccda2216b8f","lastUpdateDateTime":"2021-06-25T19:57:34Z","createdDateTime":"2021-06-25T19:57:31Z","expirationDateTime":"2021-06-26T19:57:31Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":12,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":0.99,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '35', + '46', 'apim-request-id', - '6ca4d378-a879-4b74-9605-af351bce88b0', + '3545b446-5b55-473e-a5fd-9229d2bdb115', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:02 GMT' + 'Fri, 25 Jun 2021 19:57:35 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/6cdc427c-b9f3-4e3c-b4d5-2ffc713cbf60') + .get('//text/analytics/v3.1/entities/health/jobs/eba73647-e324-4fa2-9dfd-fccda2216b8f') .query(true) - .reply(200, {"jobId":"6cdc427c-b9f3-4e3c-b4d5-2ffc713cbf60","lastUpdateDateTime":"2021-05-12T19:06:02Z","createdDateTime":"2021-05-12T19:05:58Z","expirationDateTime":"2021-05-13T19:05:58Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":12,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":0.89,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-03-01"}}, [ + .reply(200, {"jobId":"eba73647-e324-4fa2-9dfd-fccda2216b8f","lastUpdateDateTime":"2021-06-25T19:57:34Z","createdDateTime":"2021-06-25T19:57:31Z","expirationDateTime":"2021-06-26T19:57:31Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":12,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":0.99,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '37', + '48', 'apim-request-id', - 'c97a2880-bbe4-4fe0-b8a6-08442ae2fe70', + 'c87e444f-3bda-4915-828d-6a7a42ed9f2c', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:06:02 GMT' + 'Fri, 25 Jun 2021 19:57:35 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.js new file mode 100644 index 000000000000..415cf6daaf8d --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_family_emoji_wit_skin_tone_modifier_with_utf16codeunit.js @@ -0,0 +1,365 @@ +let nock = require('nock'); + +module.exports.hash = "b05b4bf7009369b70b036897b144ee54"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"0","text":"👩🏻‍👩🏽‍👧🏾‍👦🏿 ibuprofen","language":"en"}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0', + 'x-envoy-upstream-service-time', + '190', + 'apim-request-id', + 'f5642e14-c5da-47b1-8fc5-20220f1bc81e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:57:01 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0') + .query(true) + .reply(200, {"jobId":"c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0","lastUpdateDateTime":"2021-06-25T19:57:01Z","createdDateTime":"2021-06-25T19:57:01Z","expirationDateTime":"2021-06-26T19:57:01Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '10', + 'apim-request-id', + '8003cf20-4184-40f3-9b67-a3072a34a7cf', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:57:01 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0') + .query(true) + .reply(200, {"jobId":"c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0","lastUpdateDateTime":"2021-06-25T19:57:01Z","createdDateTime":"2021-06-25T19:57:01Z","expirationDateTime":"2021-06-26T19:57:01Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + 'ae1cb81c-4b7f-4373-aeda-2d414c662819', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:57:01 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0') + .query(true) + .reply(200, {"jobId":"c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0","lastUpdateDateTime":"2021-06-25T19:57:01Z","createdDateTime":"2021-06-25T19:57:01Z","expirationDateTime":"2021-06-26T19:57:01Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '10', + 'apim-request-id', + 'd3baa2ec-5c22-4e39-9888-a30d5b6bc632', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:57:03 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0') + .query(true) + .reply(200, {"jobId":"c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0","lastUpdateDateTime":"2021-06-25T19:57:01Z","createdDateTime":"2021-06-25T19:57:01Z","expirationDateTime":"2021-06-26T19:57:01Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'a8a36748-4f1e-4120-ade1-ad5c9a0a4f04', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:57:05 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0') + .query(true) + .reply(200, {"jobId":"c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0","lastUpdateDateTime":"2021-06-25T19:57:01Z","createdDateTime":"2021-06-25T19:57:01Z","expirationDateTime":"2021-06-26T19:57:01Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'cb17ec1f-ba85-459f-8a14-5cd040a9987e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:57:08 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0') + .query(true) + .reply(200, {"jobId":"c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0","lastUpdateDateTime":"2021-06-25T19:57:01Z","createdDateTime":"2021-06-25T19:57:01Z","expirationDateTime":"2021-06-26T19:57:01Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '09b287d2-897b-4584-92e0-bfaf55279b3a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:57:10 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0') + .query(true) + .reply(200, {"jobId":"c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0","lastUpdateDateTime":"2021-06-25T19:57:01Z","createdDateTime":"2021-06-25T19:57:01Z","expirationDateTime":"2021-06-26T19:57:01Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '0d235c90-7204-402c-ae07-8cd123be2483', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:57:12 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0') + .query(true) + .reply(200, {"jobId":"c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0","lastUpdateDateTime":"2021-06-25T19:57:01Z","createdDateTime":"2021-06-25T19:57:01Z","expirationDateTime":"2021-06-26T19:57:01Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + 'c9a45e25-e32e-45fa-9b74-e922fcd08fd0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:57:14 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0') + .query(true) + .reply(200, {"jobId":"c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0","lastUpdateDateTime":"2021-06-25T19:57:01Z","createdDateTime":"2021-06-25T19:57:01Z","expirationDateTime":"2021-06-26T19:57:01Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '73d66e9b-a35a-4eab-b4a4-69eb7e8edca3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:57:16 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0') + .query(true) + .reply(200, {"jobId":"c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0","lastUpdateDateTime":"2021-06-25T19:57:16Z","createdDateTime":"2021-06-25T19:57:01Z","expirationDateTime":"2021-06-26T19:57:01Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '10cf561d-38c8-4be8-81e1-182f211dc437', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:57:18 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0') + .query(true) + .reply(200, {"jobId":"c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0","lastUpdateDateTime":"2021-06-25T19:57:16Z","createdDateTime":"2021-06-25T19:57:01Z","expirationDateTime":"2021-06-26T19:57:01Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '65e8c616-9b2a-4ff4-abe3-7ae6bb7ccfec', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:57:20 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0') + .query(true) + .reply(200, {"jobId":"c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0","lastUpdateDateTime":"2021-06-25T19:57:16Z","createdDateTime":"2021-06-25T19:57:01Z","expirationDateTime":"2021-06-26T19:57:01Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '10', + 'apim-request-id', + '4f6ece24-04f8-469b-a5e7-7848aad4fdf3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:57:22 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0') + .query(true) + .reply(200, {"jobId":"c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0","lastUpdateDateTime":"2021-06-25T19:57:16Z","createdDateTime":"2021-06-25T19:57:01Z","expirationDateTime":"2021-06-26T19:57:01Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '97', + 'apim-request-id', + '25253237-7373-4e8e-8557-a0c716c8568f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:57:24 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0') + .query(true) + .reply(200, {"jobId":"c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0","lastUpdateDateTime":"2021-06-25T19:57:16Z","createdDateTime":"2021-06-25T19:57:01Z","expirationDateTime":"2021-06-26T19:57:01Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + '64790aef-89a7-49ca-9fb8-338014a3b3c5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:57:26 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0') + .query(true) + .reply(200, {"jobId":"c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0","lastUpdateDateTime":"2021-06-25T19:57:16Z","createdDateTime":"2021-06-25T19:57:01Z","expirationDateTime":"2021-06-26T19:57:01Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '9', + 'apim-request-id', + '6a80377f-5ee8-48ef-9f7a-10bdad65ccd6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:57:28 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0') + .query(true) + .reply(200, {"jobId":"c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0","lastUpdateDateTime":"2021-06-25T19:57:29Z","createdDateTime":"2021-06-25T19:57:01Z","expirationDateTime":"2021-06-26T19:57:01Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":20,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":0.99,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '134', + 'apim-request-id', + '4fc61ac6-c4b6-40e5-8b66-ff42bb4101a5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:57:30 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0') + .query(true) + .reply(200, {"jobId":"c872b8c3-8ba0-41cf-bd51-8dd7c274a0a0","lastUpdateDateTime":"2021-06-25T19:57:29Z","createdDateTime":"2021-06-25T19:57:01Z","expirationDateTime":"2021-06-26T19:57:01Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":20,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":0.99,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '58', + 'apim-request-id', + '04a82b15-30db-40c9-9eea-ae3bc7d62222', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:57:30 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_input_documents.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_input_documents.js new file mode 100644 index 000000000000..c8147570c473 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_input_documents.js @@ -0,0 +1,245 @@ +let nock = require('nock'); + +module.exports.hash = "43b3d39525e456cf5912f65d3d091d10"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"1","text":"Patient does not suffer from high blood pressure.","language":"en"},{"id":"2","text":"Prescribed 100mg ibuprofen, taken twice daily.","language":"en"}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/b79c7e0d-3024-458f-a379-fea143fab95c', + 'x-envoy-upstream-service-time', + '154', + 'apim-request-id', + 'e4017392-7f23-4aca-8312-de419c434f40', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:00 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b79c7e0d-3024-458f-a379-fea143fab95c') + .query(true) + .reply(200, {"jobId":"b79c7e0d-3024-458f-a379-fea143fab95c","lastUpdateDateTime":"2021-06-25T19:56:00Z","createdDateTime":"2021-06-25T19:56:00Z","expirationDateTime":"2021-06-26T19:56:00Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '80282564-ad69-4f89-a1d2-595f7dc30de0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:00 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b79c7e0d-3024-458f-a379-fea143fab95c') + .query(true) + .reply(200, {"jobId":"b79c7e0d-3024-458f-a379-fea143fab95c","lastUpdateDateTime":"2021-06-25T19:56:00Z","createdDateTime":"2021-06-25T19:56:00Z","expirationDateTime":"2021-06-26T19:56:00Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + '1126fa47-3650-4cf8-b403-75be46ba9f60', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:01 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b79c7e0d-3024-458f-a379-fea143fab95c') + .query(true) + .reply(200, {"jobId":"b79c7e0d-3024-458f-a379-fea143fab95c","lastUpdateDateTime":"2021-06-25T19:56:00Z","createdDateTime":"2021-06-25T19:56:00Z","expirationDateTime":"2021-06-26T19:56:00Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '9', + 'apim-request-id', + '06cc8de3-7aef-424b-8fda-a8c4173435fd', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:02 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b79c7e0d-3024-458f-a379-fea143fab95c') + .query(true) + .reply(200, {"jobId":"b79c7e0d-3024-458f-a379-fea143fab95c","lastUpdateDateTime":"2021-06-25T19:56:00Z","createdDateTime":"2021-06-25T19:56:00Z","expirationDateTime":"2021-06-26T19:56:00Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + 'e2140a39-75ba-402d-aeee-4df6ee7633e0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:05 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b79c7e0d-3024-458f-a379-fea143fab95c') + .query(true) + .reply(200, {"jobId":"b79c7e0d-3024-458f-a379-fea143fab95c","lastUpdateDateTime":"2021-06-25T19:56:06Z","createdDateTime":"2021-06-25T19:56:00Z","expirationDateTime":"2021-06-26T19:56:00Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '11', + 'apim-request-id', + 'ca9c5bf9-4110-472e-bd5a-49007ade526f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:07 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b79c7e0d-3024-458f-a379-fea143fab95c') + .query(true) + .reply(200, {"jobId":"b79c7e0d-3024-458f-a379-fea143fab95c","lastUpdateDateTime":"2021-06-25T19:56:06Z","createdDateTime":"2021-06-25T19:56:00Z","expirationDateTime":"2021-06-26T19:56:00Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '42e65764-13dc-451c-b4d0-5bf9c2b0c47a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:08 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b79c7e0d-3024-458f-a379-fea143fab95c') + .query(true) + .reply(200, {"jobId":"b79c7e0d-3024-458f-a379-fea143fab95c","lastUpdateDateTime":"2021-06-25T19:56:06Z","createdDateTime":"2021-06-25T19:56:00Z","expirationDateTime":"2021-06-26T19:56:00Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + 'd5b2cb06-74b4-47f6-ba0c-aea92d703452', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:10 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b79c7e0d-3024-458f-a379-fea143fab95c') + .query(true) + .reply(200, {"jobId":"b79c7e0d-3024-458f-a379-fea143fab95c","lastUpdateDateTime":"2021-06-25T19:56:06Z","createdDateTime":"2021-06-25T19:56:00Z","expirationDateTime":"2021-06-26T19:56:00Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '9', + 'apim-request-id', + 'a49a6102-ad81-42d6-a0d8-e4cd0219510f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:12 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b79c7e0d-3024-458f-a379-fea143fab95c') + .query(true) + .reply(200, {"jobId":"b79c7e0d-3024-458f-a379-fea143fab95c","lastUpdateDateTime":"2021-06-25T19:56:06Z","createdDateTime":"2021-06-25T19:56:00Z","expirationDateTime":"2021-06-26T19:56:00Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'ef70077b-4905-4857-acf2-bed38791e66f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:14 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b79c7e0d-3024-458f-a379-fea143fab95c') + .query(true) + .reply(200, {"jobId":"b79c7e0d-3024-458f-a379-fea143fab95c","lastUpdateDateTime":"2021-06-25T19:56:16Z","createdDateTime":"2021-06-25T19:56:00Z","expirationDateTime":"2021-06-26T19:56:00Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[{"offset":29,"length":19,"text":"high blood pressure","category":"SymptomOrSign","confidenceScore":1,"assertion":{"certainty":"negative"},"name":"Hypertensive disease","links":[{"dataSource":"UMLS","id":"C0020538"},{"dataSource":"AOD","id":"0000023317"},{"dataSource":"BI","id":"BI00001"},{"dataSource":"CCPSS","id":"1017493"},{"dataSource":"CCS","id":"7.1"},{"dataSource":"CHV","id":"0000015800"},{"dataSource":"COSTAR","id":"397"},{"dataSource":"CSP","id":"0571-5243"},{"dataSource":"CST","id":"HYPERTENS"},{"dataSource":"DXP","id":"U002034"},{"dataSource":"HPO","id":"HP:0000822"},{"dataSource":"ICD10","id":"I10-I15.9"},{"dataSource":"ICD10AM","id":"I10-I15.9"},{"dataSource":"ICD10CM","id":"I10"},{"dataSource":"ICD9CM","id":"997.91"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU035456"},{"dataSource":"ICPC2P","id":"K85004"},{"dataSource":"LCH","id":"U002317"},{"dataSource":"LCH_NW","id":"sh85063723"},{"dataSource":"LNC","id":"LA14293-7"},{"dataSource":"MDR","id":"10020772"},{"dataSource":"MEDCIN","id":"33288"},{"dataSource":"MEDLINEPLUS","id":"34"},{"dataSource":"MSH","id":"D006973"},{"dataSource":"MTH","id":"005"},{"dataSource":"MTHICD9","id":"997.91"},{"dataSource":"NANDA-I","id":"00905"},{"dataSource":"NCI","id":"C3117"},{"dataSource":"NCI_CPTAC","id":"C3117"},{"dataSource":"NCI_CTCAE","id":"E13785"},{"dataSource":"NCI_CTRP","id":"C3117"},{"dataSource":"NCI_FDA","id":"1908"},{"dataSource":"NCI_GDC","id":"C3117"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000458091"},{"dataSource":"NCI_NICHD","id":"C3117"},{"dataSource":"NOC","id":"060808"},{"dataSource":"OMIM","id":"MTHU002068"},{"dataSource":"PCDS","id":"PRB_11000.06"},{"dataSource":"PDQ","id":"CDR0000686951"},{"dataSource":"PSY","id":"23830"},{"dataSource":"RCD","id":"XE0Ub"},{"dataSource":"SNM","id":"F-70700"},{"dataSource":"SNMI","id":"D3-02000"},{"dataSource":"SNOMEDCT_US","id":"38341003"},{"dataSource":"WHO","id":"0210"}]}],"relations":[],"warnings":[]},{"id":"2","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/1/entities/0","role":"Dosage"},{"ref":"#/results/documents/1/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/1/entities/1","role":"Medication"},{"ref":"#/results/documents/1/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '60', + 'apim-request-id', + '811c3d50-51de-490b-ac55-991fdb6c7652', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:17 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b79c7e0d-3024-458f-a379-fea143fab95c') + .query(true) + .reply(200, {"jobId":"b79c7e0d-3024-458f-a379-fea143fab95c","lastUpdateDateTime":"2021-06-25T19:56:16Z","createdDateTime":"2021-06-25T19:56:00Z","expirationDateTime":"2021-06-26T19:56:00Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[{"offset":29,"length":19,"text":"high blood pressure","category":"SymptomOrSign","confidenceScore":1,"assertion":{"certainty":"negative"},"name":"Hypertensive disease","links":[{"dataSource":"UMLS","id":"C0020538"},{"dataSource":"AOD","id":"0000023317"},{"dataSource":"BI","id":"BI00001"},{"dataSource":"CCPSS","id":"1017493"},{"dataSource":"CCS","id":"7.1"},{"dataSource":"CHV","id":"0000015800"},{"dataSource":"COSTAR","id":"397"},{"dataSource":"CSP","id":"0571-5243"},{"dataSource":"CST","id":"HYPERTENS"},{"dataSource":"DXP","id":"U002034"},{"dataSource":"HPO","id":"HP:0000822"},{"dataSource":"ICD10","id":"I10-I15.9"},{"dataSource":"ICD10AM","id":"I10-I15.9"},{"dataSource":"ICD10CM","id":"I10"},{"dataSource":"ICD9CM","id":"997.91"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU035456"},{"dataSource":"ICPC2P","id":"K85004"},{"dataSource":"LCH","id":"U002317"},{"dataSource":"LCH_NW","id":"sh85063723"},{"dataSource":"LNC","id":"LA14293-7"},{"dataSource":"MDR","id":"10020772"},{"dataSource":"MEDCIN","id":"33288"},{"dataSource":"MEDLINEPLUS","id":"34"},{"dataSource":"MSH","id":"D006973"},{"dataSource":"MTH","id":"005"},{"dataSource":"MTHICD9","id":"997.91"},{"dataSource":"NANDA-I","id":"00905"},{"dataSource":"NCI","id":"C3117"},{"dataSource":"NCI_CPTAC","id":"C3117"},{"dataSource":"NCI_CTCAE","id":"E13785"},{"dataSource":"NCI_CTRP","id":"C3117"},{"dataSource":"NCI_FDA","id":"1908"},{"dataSource":"NCI_GDC","id":"C3117"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000458091"},{"dataSource":"NCI_NICHD","id":"C3117"},{"dataSource":"NOC","id":"060808"},{"dataSource":"OMIM","id":"MTHU002068"},{"dataSource":"PCDS","id":"PRB_11000.06"},{"dataSource":"PDQ","id":"CDR0000686951"},{"dataSource":"PSY","id":"23830"},{"dataSource":"RCD","id":"XE0Ub"},{"dataSource":"SNM","id":"F-70700"},{"dataSource":"SNMI","id":"D3-02000"},{"dataSource":"SNOMEDCT_US","id":"38341003"},{"dataSource":"WHO","id":"0210"}]}],"relations":[],"warnings":[]},{"id":"2","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/1/entities/0","role":"Dosage"},{"ref":"#/results/documents/1/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/1/entities/1","role":"Medication"},{"ref":"#/results/documents/1/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '72', + 'apim-request-id', + '7ed6dbed-6d76-4fe2-8a94-04cd37cfe862', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:17 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_input_strings.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_input_strings.js new file mode 100644 index 000000000000..fd13df112eda --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_input_strings.js @@ -0,0 +1,365 @@ +let nock = require('nock'); + +module.exports.hash = "e8fe4b7a699e69181a6d1d694a0b8992"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"0","text":"Patient does not suffer from high blood pressure.","language":"en"},{"id":"1","text":"Prescribed 100mg ibuprofen, taken twice daily.","language":"en"}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/b403a3df-4de3-4763-9e14-14e8ecc76174', + 'x-envoy-upstream-service-time', + '178', + 'apim-request-id', + 'b332f371-5799-48aa-8a52-6f3b1025023b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:28 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b403a3df-4de3-4763-9e14-14e8ecc76174') + .query(true) + .reply(200, {"jobId":"b403a3df-4de3-4763-9e14-14e8ecc76174","lastUpdateDateTime":"2021-06-25T19:55:28Z","createdDateTime":"2021-06-25T19:55:28Z","expirationDateTime":"2021-06-26T19:55:28Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'cf70648d-d293-4296-a6c0-a7efca09074d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:28 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b403a3df-4de3-4763-9e14-14e8ecc76174') + .query(true) + .reply(200, {"jobId":"b403a3df-4de3-4763-9e14-14e8ecc76174","lastUpdateDateTime":"2021-06-25T19:55:28Z","createdDateTime":"2021-06-25T19:55:28Z","expirationDateTime":"2021-06-26T19:55:28Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'dc700053-6557-4f6b-86ef-e790b7c77171', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:28 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b403a3df-4de3-4763-9e14-14e8ecc76174') + .query(true) + .reply(200, {"jobId":"b403a3df-4de3-4763-9e14-14e8ecc76174","lastUpdateDateTime":"2021-06-25T19:55:28Z","createdDateTime":"2021-06-25T19:55:28Z","expirationDateTime":"2021-06-26T19:55:28Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '4c420389-eb1b-409a-a488-05325650b1fd', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:30 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b403a3df-4de3-4763-9e14-14e8ecc76174') + .query(true) + .reply(200, {"jobId":"b403a3df-4de3-4763-9e14-14e8ecc76174","lastUpdateDateTime":"2021-06-25T19:55:28Z","createdDateTime":"2021-06-25T19:55:28Z","expirationDateTime":"2021-06-26T19:55:28Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '45166bef-3094-4e19-9a9d-c3068ba228fb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:32 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b403a3df-4de3-4763-9e14-14e8ecc76174') + .query(true) + .reply(200, {"jobId":"b403a3df-4de3-4763-9e14-14e8ecc76174","lastUpdateDateTime":"2021-06-25T19:55:28Z","createdDateTime":"2021-06-25T19:55:28Z","expirationDateTime":"2021-06-26T19:55:28Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '4153aaad-5eb3-444d-b55a-f643ec134875', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:34 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b403a3df-4de3-4763-9e14-14e8ecc76174') + .query(true) + .reply(200, {"jobId":"b403a3df-4de3-4763-9e14-14e8ecc76174","lastUpdateDateTime":"2021-06-25T19:55:28Z","createdDateTime":"2021-06-25T19:55:28Z","expirationDateTime":"2021-06-26T19:55:28Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'bef067c5-3b5d-4d8a-ba4d-4105d8dd9a07', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:36 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b403a3df-4de3-4763-9e14-14e8ecc76174') + .query(true) + .reply(200, {"jobId":"b403a3df-4de3-4763-9e14-14e8ecc76174","lastUpdateDateTime":"2021-06-25T19:55:28Z","createdDateTime":"2021-06-25T19:55:28Z","expirationDateTime":"2021-06-26T19:55:28Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '6f22ce61-e6ec-4df5-89d8-db4388f84537', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:38 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b403a3df-4de3-4763-9e14-14e8ecc76174') + .query(true) + .reply(200, {"jobId":"b403a3df-4de3-4763-9e14-14e8ecc76174","lastUpdateDateTime":"2021-06-25T19:55:28Z","createdDateTime":"2021-06-25T19:55:28Z","expirationDateTime":"2021-06-26T19:55:28Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + '671c97cf-bc30-48ff-acbc-8a53defdc94e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:40 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b403a3df-4de3-4763-9e14-14e8ecc76174') + .query(true) + .reply(200, {"jobId":"b403a3df-4de3-4763-9e14-14e8ecc76174","lastUpdateDateTime":"2021-06-25T19:55:28Z","createdDateTime":"2021-06-25T19:55:28Z","expirationDateTime":"2021-06-26T19:55:28Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '9', + 'apim-request-id', + '17430a29-7cfb-4bc5-901f-ed8dcbd55b18', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:42 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b403a3df-4de3-4763-9e14-14e8ecc76174') + .query(true) + .reply(200, {"jobId":"b403a3df-4de3-4763-9e14-14e8ecc76174","lastUpdateDateTime":"2021-06-25T19:55:43Z","createdDateTime":"2021-06-25T19:55:28Z","expirationDateTime":"2021-06-26T19:55:28Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '9', + 'apim-request-id', + '869a9c19-5da8-452d-9781-1d1701e807d8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:44 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b403a3df-4de3-4763-9e14-14e8ecc76174') + .query(true) + .reply(200, {"jobId":"b403a3df-4de3-4763-9e14-14e8ecc76174","lastUpdateDateTime":"2021-06-25T19:55:43Z","createdDateTime":"2021-06-25T19:55:28Z","expirationDateTime":"2021-06-26T19:55:28Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '02be75e8-25cb-4093-bb76-7468d09f3353', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:46 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b403a3df-4de3-4763-9e14-14e8ecc76174') + .query(true) + .reply(200, {"jobId":"b403a3df-4de3-4763-9e14-14e8ecc76174","lastUpdateDateTime":"2021-06-25T19:55:43Z","createdDateTime":"2021-06-25T19:55:28Z","expirationDateTime":"2021-06-26T19:55:28Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '11', + 'apim-request-id', + '7eb44855-b592-47e7-9c2c-ce61cec83e7a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:48 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b403a3df-4de3-4763-9e14-14e8ecc76174') + .query(true) + .reply(200, {"jobId":"b403a3df-4de3-4763-9e14-14e8ecc76174","lastUpdateDateTime":"2021-06-25T19:55:43Z","createdDateTime":"2021-06-25T19:55:28Z","expirationDateTime":"2021-06-26T19:55:28Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '9d239647-ab77-4c71-935f-b95dead3d10b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:50 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b403a3df-4de3-4763-9e14-14e8ecc76174') + .query(true) + .reply(200, {"jobId":"b403a3df-4de3-4763-9e14-14e8ecc76174","lastUpdateDateTime":"2021-06-25T19:55:43Z","createdDateTime":"2021-06-25T19:55:28Z","expirationDateTime":"2021-06-26T19:55:28Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '13', + 'apim-request-id', + 'a6f14dab-36ae-480d-bf33-0ea3535ba848', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:52 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b403a3df-4de3-4763-9e14-14e8ecc76174') + .query(true) + .reply(200, {"jobId":"b403a3df-4de3-4763-9e14-14e8ecc76174","lastUpdateDateTime":"2021-06-25T19:55:43Z","createdDateTime":"2021-06-25T19:55:28Z","expirationDateTime":"2021-06-26T19:55:28Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '89064c19-87ac-49db-9356-4aa6450b77be', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:54 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b403a3df-4de3-4763-9e14-14e8ecc76174') + .query(true) + .reply(200, {"jobId":"b403a3df-4de3-4763-9e14-14e8ecc76174","lastUpdateDateTime":"2021-06-25T19:55:56Z","createdDateTime":"2021-06-25T19:55:28Z","expirationDateTime":"2021-06-26T19:55:28Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":29,"length":19,"text":"high blood pressure","category":"SymptomOrSign","confidenceScore":1,"assertion":{"certainty":"negative"},"name":"Hypertensive disease","links":[{"dataSource":"UMLS","id":"C0020538"},{"dataSource":"AOD","id":"0000023317"},{"dataSource":"BI","id":"BI00001"},{"dataSource":"CCPSS","id":"1017493"},{"dataSource":"CCS","id":"7.1"},{"dataSource":"CHV","id":"0000015800"},{"dataSource":"COSTAR","id":"397"},{"dataSource":"CSP","id":"0571-5243"},{"dataSource":"CST","id":"HYPERTENS"},{"dataSource":"DXP","id":"U002034"},{"dataSource":"HPO","id":"HP:0000822"},{"dataSource":"ICD10","id":"I10-I15.9"},{"dataSource":"ICD10AM","id":"I10-I15.9"},{"dataSource":"ICD10CM","id":"I10"},{"dataSource":"ICD9CM","id":"997.91"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU035456"},{"dataSource":"ICPC2P","id":"K85004"},{"dataSource":"LCH","id":"U002317"},{"dataSource":"LCH_NW","id":"sh85063723"},{"dataSource":"LNC","id":"LA14293-7"},{"dataSource":"MDR","id":"10020772"},{"dataSource":"MEDCIN","id":"33288"},{"dataSource":"MEDLINEPLUS","id":"34"},{"dataSource":"MSH","id":"D006973"},{"dataSource":"MTH","id":"005"},{"dataSource":"MTHICD9","id":"997.91"},{"dataSource":"NANDA-I","id":"00905"},{"dataSource":"NCI","id":"C3117"},{"dataSource":"NCI_CPTAC","id":"C3117"},{"dataSource":"NCI_CTCAE","id":"E13785"},{"dataSource":"NCI_CTRP","id":"C3117"},{"dataSource":"NCI_FDA","id":"1908"},{"dataSource":"NCI_GDC","id":"C3117"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000458091"},{"dataSource":"NCI_NICHD","id":"C3117"},{"dataSource":"NOC","id":"060808"},{"dataSource":"OMIM","id":"MTHU002068"},{"dataSource":"PCDS","id":"PRB_11000.06"},{"dataSource":"PDQ","id":"CDR0000686951"},{"dataSource":"PSY","id":"23830"},{"dataSource":"RCD","id":"XE0Ub"},{"dataSource":"SNM","id":"F-70700"},{"dataSource":"SNMI","id":"D3-02000"},{"dataSource":"SNOMEDCT_US","id":"38341003"},{"dataSource":"WHO","id":"0210"}]}],"relations":[],"warnings":[]},{"id":"1","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/1/entities/0","role":"Dosage"},{"ref":"#/results/documents/1/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/1/entities/1","role":"Medication"},{"ref":"#/results/documents/1/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '65', + 'apim-request-id', + '3112286d-3db1-4be9-9ea8-0206d1ac714d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:57 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b403a3df-4de3-4763-9e14-14e8ecc76174') + .query(true) + .reply(200, {"jobId":"b403a3df-4de3-4763-9e14-14e8ecc76174","lastUpdateDateTime":"2021-06-25T19:55:56Z","createdDateTime":"2021-06-25T19:55:28Z","expirationDateTime":"2021-06-26T19:55:28Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[{"offset":29,"length":19,"text":"high blood pressure","category":"SymptomOrSign","confidenceScore":1,"assertion":{"certainty":"negative"},"name":"Hypertensive disease","links":[{"dataSource":"UMLS","id":"C0020538"},{"dataSource":"AOD","id":"0000023317"},{"dataSource":"BI","id":"BI00001"},{"dataSource":"CCPSS","id":"1017493"},{"dataSource":"CCS","id":"7.1"},{"dataSource":"CHV","id":"0000015800"},{"dataSource":"COSTAR","id":"397"},{"dataSource":"CSP","id":"0571-5243"},{"dataSource":"CST","id":"HYPERTENS"},{"dataSource":"DXP","id":"U002034"},{"dataSource":"HPO","id":"HP:0000822"},{"dataSource":"ICD10","id":"I10-I15.9"},{"dataSource":"ICD10AM","id":"I10-I15.9"},{"dataSource":"ICD10CM","id":"I10"},{"dataSource":"ICD9CM","id":"997.91"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU035456"},{"dataSource":"ICPC2P","id":"K85004"},{"dataSource":"LCH","id":"U002317"},{"dataSource":"LCH_NW","id":"sh85063723"},{"dataSource":"LNC","id":"LA14293-7"},{"dataSource":"MDR","id":"10020772"},{"dataSource":"MEDCIN","id":"33288"},{"dataSource":"MEDLINEPLUS","id":"34"},{"dataSource":"MSH","id":"D006973"},{"dataSource":"MTH","id":"005"},{"dataSource":"MTHICD9","id":"997.91"},{"dataSource":"NANDA-I","id":"00905"},{"dataSource":"NCI","id":"C3117"},{"dataSource":"NCI_CPTAC","id":"C3117"},{"dataSource":"NCI_CTCAE","id":"E13785"},{"dataSource":"NCI_CTRP","id":"C3117"},{"dataSource":"NCI_FDA","id":"1908"},{"dataSource":"NCI_GDC","id":"C3117"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000458091"},{"dataSource":"NCI_NICHD","id":"C3117"},{"dataSource":"NOC","id":"060808"},{"dataSource":"OMIM","id":"MTHU002068"},{"dataSource":"PCDS","id":"PRB_11000.06"},{"dataSource":"PDQ","id":"CDR0000686951"},{"dataSource":"PSY","id":"23830"},{"dataSource":"RCD","id":"XE0Ub"},{"dataSource":"SNM","id":"F-70700"},{"dataSource":"SNMI","id":"D3-02000"},{"dataSource":"SNOMEDCT_US","id":"38341003"},{"dataSource":"WHO","id":"0210"}]}],"relations":[],"warnings":[]},{"id":"1","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/1/entities/0","role":"Dosage"},{"ref":"#/results/documents/1/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/1/entities/1","role":"Medication"},{"ref":"#/results/documents/1/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '68', + 'apim-request-id', + '4c8acc94-eca6-4932-8242-834f3828d90e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:55:57 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint.js new file mode 100644 index 000000000000..a365d91b17b8 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint.js @@ -0,0 +1,105 @@ +let nock = require('nock'); + +module.exports.hash = "4fe6d983363e697807ee4c3c068d2783"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"0","text":"This should fail because we're passing in an invalid language hint","language":"notalanguage"}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/91942678-1be1-4917-9784-7f15b88d94e5', + 'x-envoy-upstream-service-time', + '128', + 'apim-request-id', + '9078b509-ea59-41f0-9349-f59f1f6f9326', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:47 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/91942678-1be1-4917-9784-7f15b88d94e5') + .query(true) + .reply(200, {"jobId":"91942678-1be1-4917-9784-7f15b88d94e5","lastUpdateDateTime":"2021-06-25T19:56:48Z","createdDateTime":"2021-06-25T19:56:48Z","expirationDateTime":"2021-06-26T19:56:48Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '24e5704c-debe-4262-b2fb-23233737e5a8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:47 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/91942678-1be1-4917-9784-7f15b88d94e5') + .query(true) + .reply(200, {"jobId":"91942678-1be1-4917-9784-7f15b88d94e5","lastUpdateDateTime":"2021-06-25T19:56:48Z","createdDateTime":"2021-06-25T19:56:48Z","expirationDateTime":"2021-06-26T19:56:48Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '9', + 'apim-request-id', + '1ae897f2-e406-4357-8aea-d9067502aa41', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:48 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/91942678-1be1-4917-9784-7f15b88d94e5') + .query(true) + .reply(200, {"jobId":"91942678-1be1-4917-9784-7f15b88d94e5","lastUpdateDateTime":"2021-06-25T19:56:48Z","createdDateTime":"2021-06-25T19:56:48Z","expirationDateTime":"2021-06-26T19:56:48Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}}],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '45', + 'apim-request-id', + 'b26da439-df73-4fde-9e41-60ff63683151', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:50 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/91942678-1be1-4917-9784-7f15b88d94e5') + .query(true) + .reply(200, {"jobId":"91942678-1be1-4917-9784-7f15b88d94e5","lastUpdateDateTime":"2021-06-25T19:56:48Z","createdDateTime":"2021-06-25T19:56:48Z","expirationDateTime":"2021-06-26T19:56:48Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"0","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}}],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '46', + 'apim-request-id', + 'e91964b3-e65f-46c0-ac48-dfa68167c760', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:50 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.js new file mode 100644 index 000000000000..ed4434ae89ee --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_invalid_language_hint_in_doc.js @@ -0,0 +1,105 @@ +let nock = require('nock'); + +module.exports.hash = "95091b45dc61495bb4243ad632fd8fa2"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"1","text":"This should fail because we're passing in an invalid language hint","language":"notalanguage"}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/40f5adea-ec31-47e3-98cd-6dfc82814c94', + 'x-envoy-upstream-service-time', + '129', + 'apim-request-id', + 'eb835e4e-7adb-44d7-895e-81fecc42ace9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:50 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/40f5adea-ec31-47e3-98cd-6dfc82814c94') + .query(true) + .reply(200, {"jobId":"40f5adea-ec31-47e3-98cd-6dfc82814c94","lastUpdateDateTime":"2021-06-25T19:56:51Z","createdDateTime":"2021-06-25T19:56:50Z","expirationDateTime":"2021-06-26T19:56:50Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + 'e29da8c0-7a72-4dc7-b2af-42ecf4fcfb3c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:50 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/40f5adea-ec31-47e3-98cd-6dfc82814c94') + .query(true) + .reply(200, {"jobId":"40f5adea-ec31-47e3-98cd-6dfc82814c94","lastUpdateDateTime":"2021-06-25T19:56:51Z","createdDateTime":"2021-06-25T19:56:50Z","expirationDateTime":"2021-06-26T19:56:50Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '7a1d38df-7e2c-461d-9c1e-0664e91488b9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:50 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/40f5adea-ec31-47e3-98cd-6dfc82814c94') + .query(true) + .reply(200, {"jobId":"40f5adea-ec31-47e3-98cd-6dfc82814c94","lastUpdateDateTime":"2021-06-25T19:56:51Z","createdDateTime":"2021-06-25T19:56:50Z","expirationDateTime":"2021-06-26T19:56:50Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}}],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '41', + 'apim-request-id', + 'cbd75f1a-41d9-4f8a-b68e-c48ae816e07a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:52 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/40f5adea-ec31-47e3-98cd-6dfc82814c94') + .query(true) + .reply(200, {"jobId":"40f5adea-ec31-47e3-98cd-6dfc82814c94","lastUpdateDateTime":"2021-06-25T19:56:51Z","createdDateTime":"2021-06-25T19:56:50Z","expirationDateTime":"2021-06-26T19:56:50Z","status":"succeeded","errors":[],"results":{"documents":[],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}}],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '45', + 'apim-request-id', + 'e5d42af7-2142-415d-80bd-ea97eaf9dc79', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:52 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_operation_metadata.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_operation_metadata.js new file mode 100644 index 000000000000..4848b9343610 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_operation_metadata.js @@ -0,0 +1,105 @@ +let nock = require('nock'); + +module.exports.hash = "bbda09162538e6d84e10b61e5d705319"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"1","text":"Patient does not suffer from high blood pressure.","language":"en"},{"id":"2","text":"Prescribed 100mg ibuprofen, taken twice daily.","language":"en"}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/193b2a3e-a3c1-43bc-8767-14dc71d4606b', + 'x-envoy-upstream-service-time', + '145', + 'apim-request-id', + 'e3058384-d7d7-45c6-ac2e-cf724d710abf', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:55 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/193b2a3e-a3c1-43bc-8767-14dc71d4606b') + .query(true) + .reply(200, {"jobId":"193b2a3e-a3c1-43bc-8767-14dc71d4606b","lastUpdateDateTime":"2021-06-25T19:56:56Z","createdDateTime":"2021-06-25T19:56:56Z","expirationDateTime":"2021-06-26T19:56:56Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '9e9cec7e-6548-43b5-bb15-04bd5c944bd8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:55 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/193b2a3e-a3c1-43bc-8767-14dc71d4606b') + .query(true) + .reply(200, {"jobId":"193b2a3e-a3c1-43bc-8767-14dc71d4606b","lastUpdateDateTime":"2021-06-25T19:56:56Z","createdDateTime":"2021-06-25T19:56:56Z","expirationDateTime":"2021-06-26T19:56:56Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'b881f082-06a9-4eec-a09b-09d61c019894', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:56 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/193b2a3e-a3c1-43bc-8767-14dc71d4606b') + .query(true) + .reply(200, {"jobId":"193b2a3e-a3c1-43bc-8767-14dc71d4606b","lastUpdateDateTime":"2021-06-25T19:56:59Z","createdDateTime":"2021-06-25T19:56:56Z","expirationDateTime":"2021-06-26T19:56:56Z","status":"running","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '0e86325e-b961-4d17-a5a5-2ccb44f2c824', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:59 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/193b2a3e-a3c1-43bc-8767-14dc71d4606b') + .query(true) + .reply(200, {"jobId":"193b2a3e-a3c1-43bc-8767-14dc71d4606b","lastUpdateDateTime":"2021-06-25T19:56:59Z","createdDateTime":"2021-06-25T19:56:56Z","expirationDateTime":"2021-06-26T19:56:56Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[{"offset":29,"length":19,"text":"high blood pressure","category":"SymptomOrSign","confidenceScore":1,"assertion":{"certainty":"negative"},"name":"Hypertensive disease","links":[{"dataSource":"UMLS","id":"C0020538"},{"dataSource":"AOD","id":"0000023317"},{"dataSource":"BI","id":"BI00001"},{"dataSource":"CCPSS","id":"1017493"},{"dataSource":"CCS","id":"7.1"},{"dataSource":"CHV","id":"0000015800"},{"dataSource":"COSTAR","id":"397"},{"dataSource":"CSP","id":"0571-5243"},{"dataSource":"CST","id":"HYPERTENS"},{"dataSource":"DXP","id":"U002034"},{"dataSource":"HPO","id":"HP:0000822"},{"dataSource":"ICD10","id":"I10-I15.9"},{"dataSource":"ICD10AM","id":"I10-I15.9"},{"dataSource":"ICD10CM","id":"I10"},{"dataSource":"ICD9CM","id":"997.91"},{"dataSource":"ICPC2ICD10ENG","id":"MTHU035456"},{"dataSource":"ICPC2P","id":"K85004"},{"dataSource":"LCH","id":"U002317"},{"dataSource":"LCH_NW","id":"sh85063723"},{"dataSource":"LNC","id":"LA14293-7"},{"dataSource":"MDR","id":"10020772"},{"dataSource":"MEDCIN","id":"33288"},{"dataSource":"MEDLINEPLUS","id":"34"},{"dataSource":"MSH","id":"D006973"},{"dataSource":"MTH","id":"005"},{"dataSource":"MTHICD9","id":"997.91"},{"dataSource":"NANDA-I","id":"00905"},{"dataSource":"NCI","id":"C3117"},{"dataSource":"NCI_CPTAC","id":"C3117"},{"dataSource":"NCI_CTCAE","id":"E13785"},{"dataSource":"NCI_CTRP","id":"C3117"},{"dataSource":"NCI_FDA","id":"1908"},{"dataSource":"NCI_GDC","id":"C3117"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000458091"},{"dataSource":"NCI_NICHD","id":"C3117"},{"dataSource":"NOC","id":"060808"},{"dataSource":"OMIM","id":"MTHU002068"},{"dataSource":"PCDS","id":"PRB_11000.06"},{"dataSource":"PDQ","id":"CDR0000686951"},{"dataSource":"PSY","id":"23830"},{"dataSource":"RCD","id":"XE0Ub"},{"dataSource":"SNM","id":"F-70700"},{"dataSource":"SNMI","id":"D3-02000"},{"dataSource":"SNOMEDCT_US","id":"38341003"},{"dataSource":"WHO","id":"0210"}]}],"relations":[],"warnings":[]},{"id":"2","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/1/entities/0","role":"Dosage"},{"ref":"#/results/documents/1/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/1/entities/1","role":"Medication"},{"ref":"#/results/documents/1/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '63', + 'apim-request-id', + '54969ea1-6e3a-4343-a335-9303c3e7621c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:57:01 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.js new file mode 100644 index 000000000000..4b2fedeef694 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input.js @@ -0,0 +1,105 @@ +let nock = require('nock'); + +module.exports.hash = "0e70f96b1e4ef4786849ff26599336e7"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"1","text":"one"},{"id":"2","text":"two"},{"id":"3","text":"three"},{"id":"4","text":"four"},{"id":"5","text":"five"}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/34b0732c-2583-4702-9e35-55ba7bbbc70b', + 'x-envoy-upstream-service-time', + '210', + 'apim-request-id', + '64564237-04fa-4c3d-9802-f87bdc776e44', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:29 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/34b0732c-2583-4702-9e35-55ba7bbbc70b') + .query(true) + .reply(200, {"jobId":"34b0732c-2583-4702-9e35-55ba7bbbc70b","lastUpdateDateTime":"2021-06-25T19:56:29Z","createdDateTime":"2021-06-25T19:56:29Z","expirationDateTime":"2021-06-26T19:56:29Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '08ef14bf-3c6a-4c00-84ee-0a815dea13bf', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:29 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/34b0732c-2583-4702-9e35-55ba7bbbc70b') + .query(true) + .reply(200, {"jobId":"34b0732c-2583-4702-9e35-55ba7bbbc70b","lastUpdateDateTime":"2021-06-25T19:56:29Z","createdDateTime":"2021-06-25T19:56:29Z","expirationDateTime":"2021-06-26T19:56:29Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + '2f2eb403-c166-41ec-afa0-9d63d4422db4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:29 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/34b0732c-2583-4702-9e35-55ba7bbbc70b') + .query(true) + .reply(200, {"jobId":"34b0732c-2583-4702-9e35-55ba7bbbc70b","lastUpdateDateTime":"2021-06-25T19:56:31Z","createdDateTime":"2021-06-25T19:56:29Z","expirationDateTime":"2021-06-26T19:56:29Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]},{"id":"4","entities":[],"relations":[],"warnings":[]},{"id":"5","entities":[{"offset":0,"length":4,"text":"five","category":"Dosage","confidenceScore":0.58}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '150', + 'apim-request-id', + '8f0f3628-f76e-4e5d-a773-0be32f77ce79', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:31 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/34b0732c-2583-4702-9e35-55ba7bbbc70b') + .query(true) + .reply(200, {"jobId":"34b0732c-2583-4702-9e35-55ba7bbbc70b","lastUpdateDateTime":"2021-06-25T19:56:31Z","createdDateTime":"2021-06-25T19:56:29Z","expirationDateTime":"2021-06-26T19:56:29Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]},{"id":"4","entities":[],"relations":[],"warnings":[]},{"id":"5","entities":[{"offset":0,"length":4,"text":"five","category":"Dosage","confidenceScore":0.58}],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '81', + 'apim-request-id', + 'e9fe1a73-9dc9-4b8a-8165-55e7808f235f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:31 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.js new file mode 100644 index 000000000000..9fab7e613585 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_output_has_the_same_order_as_input_with_out_of_order_ids.js @@ -0,0 +1,105 @@ +let nock = require('nock'); + +module.exports.hash = "4b2220c5d74f5da44971fae0df1a3912"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"56","text":":)"},{"id":"0","text":":("},{"id":"22","text":""},{"id":"19","text":":P"},{"id":"1","text":":D"}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/b92072c8-9cf5-449a-9fb4-364a14abc9a0', + 'x-envoy-upstream-service-time', + '225', + 'apim-request-id', + '79242d16-0d7a-4589-9528-b2ffabae26bc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:32 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b92072c8-9cf5-449a-9fb4-364a14abc9a0') + .query(true) + .reply(200, {"jobId":"b92072c8-9cf5-449a-9fb4-364a14abc9a0","lastUpdateDateTime":"2021-06-25T19:56:32Z","createdDateTime":"2021-06-25T19:56:32Z","expirationDateTime":"2021-06-26T19:56:32Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '12', + 'apim-request-id', + 'aee15d89-d562-4471-9417-b3fb8117cf5e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:32 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b92072c8-9cf5-449a-9fb4-364a14abc9a0') + .query(true) + .reply(200, {"jobId":"b92072c8-9cf5-449a-9fb4-364a14abc9a0","lastUpdateDateTime":"2021-06-25T19:56:32Z","createdDateTime":"2021-06-25T19:56:32Z","expirationDateTime":"2021-06-26T19:56:32Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '468d00be-4fcb-4da3-879b-da989235238a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:32 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b92072c8-9cf5-449a-9fb4-364a14abc9a0') + .query(true) + .reply(200, {"jobId":"b92072c8-9cf5-449a-9fb4-364a14abc9a0","lastUpdateDateTime":"2021-06-25T19:56:34Z","createdDateTime":"2021-06-25T19:56:32Z","expirationDateTime":"2021-06-26T19:56:32Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"56","entities":[],"relations":[],"warnings":[]},{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"19","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]}],"errors":[{"id":"22","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '79', + 'apim-request-id', + 'b1a31914-768b-4b4f-962f-f0eb68ef7805', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:34 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/b92072c8-9cf5-449a-9fb4-364a14abc9a0') + .query(true) + .reply(200, {"jobId":"b92072c8-9cf5-449a-9fb4-364a14abc9a0","lastUpdateDateTime":"2021-06-25T19:56:34Z","createdDateTime":"2021-06-25T19:56:32Z","expirationDateTime":"2021-06-26T19:56:32Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"56","entities":[],"relations":[],"warnings":[]},{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"19","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]}],"errors":[{"id":"22","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '82', + 'apim-request-id', + '1945d99e-2110-4614-b50e-4ebd8d17fc25', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:34 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_payload_too_large.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_payload_too_large.js new file mode 100644 index 000000000000..8c62449d9112 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_payload_too_large.js @@ -0,0 +1,25 @@ +let nock = require('nock'); + +module.exports.hash = "f016ed25d69cac1c7432466f1a7578fc"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"0","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"1","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"2","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"3","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"4","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"5","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"6","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"7","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"8","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"9","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"10","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"11","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"12","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"13","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"14","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"15","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"16","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"17","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"18","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"19","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"20","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"21","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"22","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"23","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"24","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"25","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"26","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"27","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"28","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"29","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"30","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"31","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"32","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"33","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"34","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"35","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"36","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"37","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"38","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"39","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"40","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"41","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"42","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"43","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"44","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"45","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"46","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"47","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"48","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"49","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"50","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"51","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"52","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"53","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"54","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"55","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"56","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"57","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"58","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"59","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"60","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"61","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"62","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"63","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"64","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"65","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"66","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"67","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"68","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"69","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"70","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"71","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"72","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"73","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"74","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"75","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"76","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"77","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"78","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"79","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"80","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"81","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"82","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"83","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"84","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"85","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"86","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"87","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"88","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"89","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"90","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"91","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"92","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"93","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"94","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"95","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"96","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"97","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"98","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"99","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"100","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"101","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"102","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"103","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"104","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"105","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"106","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"107","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"108","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"109","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"110","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"111","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"112","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"113","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"114","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"115","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"116","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"117","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"118","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"119","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"120","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"121","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"122","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"123","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"124","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"125","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"126","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"127","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"128","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"129","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"130","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"131","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"132","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"133","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"134","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"135","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"136","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"137","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"138","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"139","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"140","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"141","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"142","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"143","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"144","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"145","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"146","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"147","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"148","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"149","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"150","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"151","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"152","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"153","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"154","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"155","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"156","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"157","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"158","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"159","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"160","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"161","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"162","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"163","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"164","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"165","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"166","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"167","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"168","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"169","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"170","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"171","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"172","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"173","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"174","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"175","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"176","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"177","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"178","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"179","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"180","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"181","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"182","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"183","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"184","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"185","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"186","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"187","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"188","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"189","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"190","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"191","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"192","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"193","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"194","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"195","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"196","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"197","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"198","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"199","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"200","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"201","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"202","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"203","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"204","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"205","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"206","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"207","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"208","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"209","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"210","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"211","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"212","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"213","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"214","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"215","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"216","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"217","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"218","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"219","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"220","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"221","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"222","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"223","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"224","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"225","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"226","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"227","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"228","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"229","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"230","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"231","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"232","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"233","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"234","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"235","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"236","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"237","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"238","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"239","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"240","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"241","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"242","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"243","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"244","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"245","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"246","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"247","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"248","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"249","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"250","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"251","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"252","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"253","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"254","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"255","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"256","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"257","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"258","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"259","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"260","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"261","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"262","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"263","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"264","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"265","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"266","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"267","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"268","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"269","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"270","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"271","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"272","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"273","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"274","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"275","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"276","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"277","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"278","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"279","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"280","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"281","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"282","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"283","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"284","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"285","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"286","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"287","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"288","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"289","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"290","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"291","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"292","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"293","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"294","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"295","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"296","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"297","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"298","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"299","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"300","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"301","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"302","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"303","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"304","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"305","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"306","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"307","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"308","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"309","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"310","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"311","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"312","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"313","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"314","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"315","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"316","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"317","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"318","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"319","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"320","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"321","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"322","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"323","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"324","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"325","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"326","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"327","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"328","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"329","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"330","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"331","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"332","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"333","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"334","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"335","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"336","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"337","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"338","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"339","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"340","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"341","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"342","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"343","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"344","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"345","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"346","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"347","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"348","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"349","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"350","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"351","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"352","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"353","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"354","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"355","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"356","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"357","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"358","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"359","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"360","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"361","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"362","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"363","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"364","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"365","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"366","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"367","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"368","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"369","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"370","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"371","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"372","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"373","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"374","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"375","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"376","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"377","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"378","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"379","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"380","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"381","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"382","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"383","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"384","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"385","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"386","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"387","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"388","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"389","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"390","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"391","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"392","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"393","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"394","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"395","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"396","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"397","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"398","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"399","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"400","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"401","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"402","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"403","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"404","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"405","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"406","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"407","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"408","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"409","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"410","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"411","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"412","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"413","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"414","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"415","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"416","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"417","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"418","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"419","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"420","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"421","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"422","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"423","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"424","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"425","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"426","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"427","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"428","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"429","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"430","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"431","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"432","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"433","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"434","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"435","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"436","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"437","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"438","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"439","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"440","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"441","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"442","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"443","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"444","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"445","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"446","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"447","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"448","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"449","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"450","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"451","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"452","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"453","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"454","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"455","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"456","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"457","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"458","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"459","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"460","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"461","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"462","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"463","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"464","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"465","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"466","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"467","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"468","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"469","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"470","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"471","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"472","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"473","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"474","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"475","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"476","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"477","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"478","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"479","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"480","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"481","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"482","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"483","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"484","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"485","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"486","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"487","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"488","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"489","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"490","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"491","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"492","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"493","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"494","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"495","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"496","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"497","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"498","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"},{"id":"499","text":"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery.","language":"en"}]}) + .query(true) + .reply(413, {"error":{"code":"InvalidRequest","message":"Invalid document in request.","innererror":{"code":"InvalidDocumentBatch","message":"Request Payload sent is too large to be processed. Limit request size to: 524288"}}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '65', + 'apim-request-id', + 'b30a6f9a-278e-43f9-9423-9272f81b37d0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:24 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_show_stats_and_model_version.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_show_stats_and_model_version.js new file mode 100644 index 000000000000..f42b2d6361b2 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_show_stats_and_model_version.js @@ -0,0 +1,85 @@ +let nock = require('nock'); + +module.exports.hash = "1e575b94347ebbe18d25ab65a2be1654"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"56","text":":)"},{"id":"0","text":":("},{"id":"22","text":""},{"id":"19","text":":P"},{"id":"1","text":":D"}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/ce2af675-67ab-41df-b827-887a9a5287ed', + 'x-envoy-upstream-service-time', + '208', + 'apim-request-id', + '481ed123-ca49-4961-a138-b44bba4e0e2e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:34 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/ce2af675-67ab-41df-b827-887a9a5287ed') + .query(true) + .reply(200, {"jobId":"ce2af675-67ab-41df-b827-887a9a5287ed","lastUpdateDateTime":"2021-06-25T19:56:35Z","createdDateTime":"2021-06-25T19:56:34Z","expirationDateTime":"2021-06-26T19:56:34Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + 'efa3c09d-a22d-4976-b72e-85241b371451', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:34 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/ce2af675-67ab-41df-b827-887a9a5287ed') + .query(true) + .reply(200, {"jobId":"ce2af675-67ab-41df-b827-887a9a5287ed","lastUpdateDateTime":"2021-06-25T19:56:35Z","createdDateTime":"2021-06-25T19:56:34Z","expirationDateTime":"2021-06-26T19:56:34Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '8', + 'apim-request-id', + '649307ff-af48-426c-8165-a8ac4743a73e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:34 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/ce2af675-67ab-41df-b827-887a9a5287ed') + .query(true) + .reply(200, {"jobId":"ce2af675-67ab-41df-b827-887a9a5287ed","lastUpdateDateTime":"2021-06-25T19:56:36Z","createdDateTime":"2021-06-25T19:56:34Z","expirationDateTime":"2021-06-26T19:56:34Z","status":"succeeded","errors":[],"results":{"statistics":{"documentsCount":5,"validDocumentsCount":4,"erroneousDocumentsCount":1,"transactionsCount":4},"documents":[{"id":"56","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"relations":[],"warnings":[]},{"id":"0","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"relations":[],"warnings":[]},{"id":"19","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"relations":[],"warnings":[]},{"id":"1","statistics":{"charactersCount":2,"transactionsCount":1},"entities":[],"relations":[],"warnings":[]}],"errors":[{"id":"22","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}}],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '89', + 'apim-request-id', + '2abb8355-5cf4-4bc6-8703-026e2d95a745', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:36 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_some_inputs_with_errors.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_some_inputs_with_errors.js similarity index 70% rename from sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_some_inputs_with_errors.js rename to sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_some_inputs_with_errors.js index 7a2100470f9b..a4e689a0f45a 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_some_inputs_with_errors.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_some_inputs_with_errors.js @@ -1,125 +1,105 @@ let nock = require('nock'); -module.exports.hash = "6dc8db0ff1b4a40ee490f6bad3509f1e"; +module.exports.hash = "bab30c0c76dbf2a445ffbcb16eaccc29"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/health/jobs', {"documents":[{"id":"1","text":"","language":"en"},{"id":"2","text":"Patient does not suffer from high blood pressure.","language":"english"},{"id":"3","text":"Prescribed 100mg ibuprofen, taken twice daily.","language":"en"}]}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"1","text":"","language":"en"},{"id":"2","text":"Patient does not suffer from high blood pressure.","language":"english"},{"id":"3","text":"Prescribed 100mg ibuprofen, taken twice daily.","language":"en"}]}) .query(true) .reply(202, "", [ 'Transfer-Encoding', 'chunked', 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/2a42d9bb-059e-4807-93ba-c3e52000b083', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/785de1e1-9e53-4427-bd3e-8f82fc670f88', 'x-envoy-upstream-service-time', - '2712', + '195', 'apim-request-id', - 'edb52e5e-2d66-4655-a66e-23c1a5b1ef09', + 'f5db5cfd-8fd5-471b-8579-11d9d8097714', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:04:38 GMT' + 'Fri, 25 Jun 2021 19:56:17 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/2a42d9bb-059e-4807-93ba-c3e52000b083') + .get('//text/analytics/v3.1/entities/health/jobs/785de1e1-9e53-4427-bd3e-8f82fc670f88') .query(true) - .reply(200, {"jobId":"2a42d9bb-059e-4807-93ba-c3e52000b083","lastUpdateDateTime":"2021-05-12T19:04:39Z","createdDateTime":"2021-05-12T19:04:36Z","expirationDateTime":"2021-05-13T19:04:36Z","status":"notStarted","errors":[]}, [ + .reply(200, {"jobId":"785de1e1-9e53-4427-bd3e-8f82fc670f88","lastUpdateDateTime":"2021-06-25T19:56:18Z","createdDateTime":"2021-06-25T19:56:18Z","expirationDateTime":"2021-06-26T19:56:18Z","status":"notStarted","errors":[]}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '7', + '9', 'apim-request-id', - '2b340364-9ad5-4927-a70e-6e0717e6dad2', + '513477b4-4692-4845-ba60-f50e950b2b01', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:04:38 GMT' + 'Fri, 25 Jun 2021 19:56:17 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/2a42d9bb-059e-4807-93ba-c3e52000b083') + .get('//text/analytics/v3.1/entities/health/jobs/785de1e1-9e53-4427-bd3e-8f82fc670f88') .query(true) - .reply(200, {"jobId":"2a42d9bb-059e-4807-93ba-c3e52000b083","lastUpdateDateTime":"2021-05-12T19:04:39Z","createdDateTime":"2021-05-12T19:04:36Z","expirationDateTime":"2021-05-13T19:04:36Z","status":"notStarted","errors":[]}, [ + .reply(200, {"jobId":"785de1e1-9e53-4427-bd3e-8f82fc670f88","lastUpdateDateTime":"2021-06-25T19:56:18Z","createdDateTime":"2021-06-25T19:56:18Z","expirationDateTime":"2021-06-26T19:56:18Z","status":"notStarted","errors":[]}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '11', 'apim-request-id', - 'a4214889-e3c3-4629-91ca-4b66c39d63de', + '915cb313-a3a6-49ba-a712-188fc3531a46', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:04:38 GMT' + 'Fri, 25 Jun 2021 19:56:17 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/2a42d9bb-059e-4807-93ba-c3e52000b083') + .get('//text/analytics/v3.1/entities/health/jobs/785de1e1-9e53-4427-bd3e-8f82fc670f88') .query(true) - .reply(200, {"jobId":"2a42d9bb-059e-4807-93ba-c3e52000b083","lastUpdateDateTime":"2021-05-12T19:04:39Z","createdDateTime":"2021-05-12T19:04:36Z","expirationDateTime":"2021-05-13T19:04:36Z","status":"notStarted","errors":[]}, [ + .reply(200, {"jobId":"785de1e1-9e53-4427-bd3e-8f82fc670f88","lastUpdateDateTime":"2021-06-25T19:56:19Z","createdDateTime":"2021-06-25T19:56:18Z","expirationDateTime":"2021-06-26T19:56:18Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"3","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/0/entities/0","role":"Dosage"},{"ref":"#/results/documents/0/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/0/entities/1","role":"Medication"},{"ref":"#/results/documents/0/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}}],"modelVersion":"2021-05-15"}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '65', 'apim-request-id', - '24cffa5a-fe06-43fd-91f6-cb65a32be857', + '234bfd67-742f-4244-bf03-1a91d3d4049b', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:04:40 GMT' + 'Fri, 25 Jun 2021 19:56:19 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/2a42d9bb-059e-4807-93ba-c3e52000b083') + .get('//text/analytics/v3.1/entities/health/jobs/785de1e1-9e53-4427-bd3e-8f82fc670f88') .query(true) - .reply(200, {"jobId":"2a42d9bb-059e-4807-93ba-c3e52000b083","lastUpdateDateTime":"2021-05-12T19:04:41Z","createdDateTime":"2021-05-12T19:04:36Z","expirationDateTime":"2021-05-13T19:04:36Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"3","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/0/entities/0","role":"Dosage"},{"ref":"#/results/documents/0/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/0/entities/1","role":"Medication"},{"ref":"#/results/documents/0/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}}],"modelVersion":"2021-03-01"}}, [ + .reply(200, {"jobId":"785de1e1-9e53-4427-bd3e-8f82fc670f88","lastUpdateDateTime":"2021-06-25T19:56:19Z","createdDateTime":"2021-06-25T19:56:18Z","expirationDateTime":"2021-06-26T19:56:18Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"3","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/0/entities/0","role":"Dosage"},{"ref":"#/results/documents/0/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/0/entities/1","role":"Medication"},{"ref":"#/results/documents/0/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}}],"modelVersion":"2021-05-15"}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '63', + '75', 'apim-request-id', - '77ea7516-c21c-41f7-add1-a70f61eb4372', + '299ffa4f-1bfc-4f69-9bbd-dc976d64002f', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:04:42 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/2a42d9bb-059e-4807-93ba-c3e52000b083') - .query(true) - .reply(200, {"jobId":"2a42d9bb-059e-4807-93ba-c3e52000b083","lastUpdateDateTime":"2021-05-12T19:04:41Z","createdDateTime":"2021-05-12T19:04:36Z","expirationDateTime":"2021-05-13T19:04:36Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"3","entities":[{"offset":11,"length":5,"text":"100mg","category":"Dosage","confidenceScore":1},{"offset":17,"length":9,"text":"ibuprofen","category":"MedicationName","confidenceScore":1,"name":"ibuprofen","links":[{"dataSource":"UMLS","id":"C0020740"},{"dataSource":"AOD","id":"0000019879"},{"dataSource":"ATC","id":"M01AE01"},{"dataSource":"CCPSS","id":"0046165"},{"dataSource":"CHV","id":"0000006519"},{"dataSource":"CSP","id":"2270-2077"},{"dataSource":"DRUGBANK","id":"DB01050"},{"dataSource":"GS","id":"1611"},{"dataSource":"LCH_NW","id":"sh97005926"},{"dataSource":"LNC","id":"LP16165-0"},{"dataSource":"MEDCIN","id":"40458"},{"dataSource":"MMSL","id":"d00015"},{"dataSource":"MSH","id":"D007052"},{"dataSource":"MTHSPL","id":"WK2XYI10QM"},{"dataSource":"NCI","id":"C561"},{"dataSource":"NCI_CTRP","id":"C561"},{"dataSource":"NCI_DCP","id":"00803"},{"dataSource":"NCI_DTP","id":"NSC0256857"},{"dataSource":"NCI_FDA","id":"WK2XYI10QM"},{"dataSource":"NCI_NCI-GLOSS","id":"CDR0000613511"},{"dataSource":"NDDF","id":"002377"},{"dataSource":"PDQ","id":"CDR0000040475"},{"dataSource":"RCD","id":"x02MO"},{"dataSource":"RXNORM","id":"5640"},{"dataSource":"SNM","id":"E-7772"},{"dataSource":"SNMI","id":"C-603C0"},{"dataSource":"SNOMEDCT_US","id":"387207008"},{"dataSource":"USP","id":"m39860"},{"dataSource":"USPMG","id":"MTHU000060"},{"dataSource":"VANDF","id":"4017840"}]},{"offset":34,"length":11,"text":"twice daily","category":"Frequency","confidenceScore":1}],"relations":[{"relationType":"DosageOfMedication","entities":[{"ref":"#/results/documents/0/entities/0","role":"Dosage"},{"ref":"#/results/documents/0/entities/1","role":"Medication"}]},{"relationType":"FrequencyOfMedication","entities":[{"ref":"#/results/documents/0/entities/1","role":"Medication"},{"ref":"#/results/documents/0/entities/2","role":"Frequency"}]}],"warnings":[]}],"errors":[{"id":"1","error":{"code":"InvalidArgument","message":"Invalid document in request.","innererror":{"code":"InvalidDocument","message":"Document text is empty."}}},{"id":"2","error":{"code":"InvalidArgument","message":"Invalid Language Code.","innererror":{"code":"UnsupportedLanguageCode","message":"Invalid language code. Supported languages: en. For additional details see https://aka.ms/text-analytics/language-support"}}}],"modelVersion":"2021-03-01"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'x-envoy-upstream-service-time', - '72', - 'apim-request-id', - 'c1ec03d8-a554-4877-b2c6-2b4cbd3590ae', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains; preload', - 'x-content-type-options', - 'nosniff', - 'Date', - 'Wed, 12 May 2021 19:04:42 GMT' + 'Fri, 25 Jun 2021 19:56:19 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_too_many_documents.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_too_many_documents.js new file mode 100644 index 000000000000..2223308c3cdc --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_too_many_documents.js @@ -0,0 +1,25 @@ +let nock = require('nock'); + +module.exports.hash = "c0210bbf785a84e0ff5d893b4b9c8517"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"0","text":"random text","language":"en"},{"id":"1","text":"random text","language":"en"},{"id":"2","text":"random text","language":"en"},{"id":"3","text":"random text","language":"en"},{"id":"4","text":"random text","language":"en"},{"id":"5","text":"random text","language":"en"},{"id":"6","text":"random text","language":"en"},{"id":"7","text":"random text","language":"en"},{"id":"8","text":"random text","language":"en"},{"id":"9","text":"random text","language":"en"},{"id":"10","text":"random text","language":"en"}]}) + .query(true) + .reply(400, {"error":{"code":"InvalidRequest","message":"Invalid document in request.","innererror":{"code":"InvalidDocumentBatch","message":"Batch request contains too many records. Max 10 records are permitted."}}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + '4fb805fb-18fe-4e6f-88ab-04177edf92f4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:23 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.js similarity index 50% rename from sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.js rename to sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.js index 0142208d56c1..64866d5c134e 100644 --- a/sdk/textanalytics/ai-text-analytics/recordings/node/api_key_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.js +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint.js @@ -1,53 +1,53 @@ let nock = require('nock'); -module.exports.hash = "53b8cbb2f8b9222a4857fd83eee00a3a"; +module.exports.hash = "38c89bab41a80575c79a37ce18c38ae0"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} nock('https://endpoint', {"encodedQueryParams":true}) - .post('//text/analytics/v3.1-preview.5/entities/health/jobs', {"documents":[{"id":"0","text":"This was the best day of my life.","language":"en"},{"id":"1","text":"I did not like the hotel we stayed at. It was too expensive.","language":"en"},{"id":"2","text":"The restaurant was not as good as I hoped.","language":"en"}]}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"0","text":"This was the best day of my life.","language":"en"},{"id":"1","text":"I did not like the hotel we stayed at. It was too expensive.","language":"en"},{"id":"2","text":"The restaurant was not as good as I hoped.","language":"en"}]}) .query(true) .reply(202, "", [ 'Transfer-Encoding', 'chunked', 'operation-location', - 'https://endpoint/text/analytics/v3.1-preview.5/entities/health/jobs/009ec67d-9d28-4cd8-8d36-e2bc6ad786de', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/1313fc00-4a95-4d02-9e1e-73920aa2821f', 'x-envoy-upstream-service-time', - '169', + '151', 'apim-request-id', - 'a14fc4e7-4086-48f4-ad84-40c57b2416cf', + '9cd6befb-5c53-42ce-90c9-3eac571468ee', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:05:15 GMT' + 'Fri, 25 Jun 2021 19:56:39 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/009ec67d-9d28-4cd8-8d36-e2bc6ad786de') + .get('//text/analytics/v3.1/entities/health/jobs/1313fc00-4a95-4d02-9e1e-73920aa2821f') .query(true) - .reply(200, {"jobId":"009ec67d-9d28-4cd8-8d36-e2bc6ad786de","lastUpdateDateTime":"2021-05-12T19:05:16Z","createdDateTime":"2021-05-12T19:05:16Z","expirationDateTime":"2021-05-13T19:05:16Z","status":"notStarted","errors":[]}, [ + .reply(200, {"jobId":"1313fc00-4a95-4d02-9e1e-73920aa2821f","lastUpdateDateTime":"2021-06-25T19:56:40Z","createdDateTime":"2021-06-25T19:56:40Z","expirationDateTime":"2021-06-26T19:56:40Z","status":"notStarted","errors":[]}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '6', + '5', 'apim-request-id', - 'b8a359b5-18cf-4588-a676-5e3483169ee1', + 'ec9bc65d-f4a1-4291-9188-45ecbd86160c', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:05:15 GMT' + 'Fri, 25 Jun 2021 19:56:39 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/009ec67d-9d28-4cd8-8d36-e2bc6ad786de') + .get('//text/analytics/v3.1/entities/health/jobs/1313fc00-4a95-4d02-9e1e-73920aa2821f') .query(true) - .reply(200, {"jobId":"009ec67d-9d28-4cd8-8d36-e2bc6ad786de","lastUpdateDateTime":"2021-05-12T19:05:16Z","createdDateTime":"2021-05-12T19:05:16Z","expirationDateTime":"2021-05-13T19:05:16Z","status":"notStarted","errors":[]}, [ + .reply(200, {"jobId":"1313fc00-4a95-4d02-9e1e-73920aa2821f","lastUpdateDateTime":"2021-06-25T19:56:40Z","createdDateTime":"2021-06-25T19:56:40Z","expirationDateTime":"2021-06-26T19:56:40Z","status":"notStarted","errors":[]}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', @@ -55,51 +55,51 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-envoy-upstream-service-time', '6', 'apim-request-id', - '1520d093-abb4-49f7-8850-2d00358e1131', + '230de852-e11a-46a8-903d-f3fab7905b1c', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:05:15 GMT' + 'Fri, 25 Jun 2021 19:56:39 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/009ec67d-9d28-4cd8-8d36-e2bc6ad786de') + .get('//text/analytics/v3.1/entities/health/jobs/1313fc00-4a95-4d02-9e1e-73920aa2821f') .query(true) - .reply(200, {"jobId":"009ec67d-9d28-4cd8-8d36-e2bc6ad786de","lastUpdateDateTime":"2021-05-12T19:05:17Z","createdDateTime":"2021-05-12T19:05:16Z","expirationDateTime":"2021-05-13T19:05:16Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-03-01"}}, [ + .reply(200, {"jobId":"1313fc00-4a95-4d02-9e1e-73920aa2821f","lastUpdateDateTime":"2021-06-25T19:56:41Z","createdDateTime":"2021-06-25T19:56:40Z","expirationDateTime":"2021-06-26T19:56:40Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '52', + '64', 'apim-request-id', - 'bf3beba1-4a39-46a4-b5b3-e3cf871e34ac', + '0d951842-8334-4822-9f00-c93e2cf49e4a', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:05:17 GMT' + 'Fri, 25 Jun 2021 19:56:42 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .get('//text/analytics/v3.1-preview.5/entities/health/jobs/009ec67d-9d28-4cd8-8d36-e2bc6ad786de') + .get('//text/analytics/v3.1/entities/health/jobs/1313fc00-4a95-4d02-9e1e-73920aa2821f') .query(true) - .reply(200, {"jobId":"009ec67d-9d28-4cd8-8d36-e2bc6ad786de","lastUpdateDateTime":"2021-05-12T19:05:17Z","createdDateTime":"2021-05-12T19:05:16Z","expirationDateTime":"2021-05-13T19:05:16Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-03-01"}}, [ + .reply(200, {"jobId":"1313fc00-4a95-4d02-9e1e-73920aa2821f","lastUpdateDateTime":"2021-06-25T19:56:41Z","createdDateTime":"2021-06-25T19:56:40Z","expirationDateTime":"2021-06-26T19:56:40Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ 'Transfer-Encoding', 'chunked', 'Content-Type', 'application/json; charset=utf-8', 'x-envoy-upstream-service-time', - '48', + '63', 'apim-request-id', - '6a8e148f-9c3a-4b0e-994d-0bfde634010a', + '359f80ed-2b31-4e54-95bc-e506d9d3f5c2', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains; preload', 'x-content-type-options', 'nosniff', 'Date', - 'Wed, 12 May 2021 19:05:17 GMT' + 'Fri, 25 Jun 2021 19:56:42 GMT' ]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.js new file mode 100644 index 000000000000..cd129cc9413f --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_empty_language_hint_per_doc.js @@ -0,0 +1,105 @@ +let nock = require('nock'); + +module.exports.hash = "2ef2a9e0010a041394b0a0562051ba4e"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"1","text":"I will go to the park.","language":""},{"id":"2","text":"I did not like the hotel we stayed at.","language":""},{"id":"3","text":"The restaurant had really good food."}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/bd30535e-aea4-4045-a55d-d881df165a4b', + 'x-envoy-upstream-service-time', + '329', + 'apim-request-id', + 'd16e020e-092c-44d4-988f-d9482076351a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:42 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/bd30535e-aea4-4045-a55d-d881df165a4b') + .query(true) + .reply(200, {"jobId":"bd30535e-aea4-4045-a55d-d881df165a4b","lastUpdateDateTime":"2021-06-25T19:56:43Z","createdDateTime":"2021-06-25T19:56:42Z","expirationDateTime":"2021-06-26T19:56:42Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '30b43ca4-6ce9-46af-a663-1b5f702c12ae', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:42 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/bd30535e-aea4-4045-a55d-d881df165a4b') + .query(true) + .reply(200, {"jobId":"bd30535e-aea4-4045-a55d-d881df165a4b","lastUpdateDateTime":"2021-06-25T19:56:43Z","createdDateTime":"2021-06-25T19:56:42Z","expirationDateTime":"2021-06-26T19:56:42Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + 'c82578f5-3355-4c48-a157-bf3f76b5e9b5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:42 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/bd30535e-aea4-4045-a55d-d881df165a4b') + .query(true) + .reply(200, {"jobId":"bd30535e-aea4-4045-a55d-d881df165a4b","lastUpdateDateTime":"2021-06-25T19:56:44Z","createdDateTime":"2021-06-25T19:56:42Z","expirationDateTime":"2021-06-26T19:56:42Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '67', + 'apim-request-id', + '3b75a8d6-ca60-4c06-bdec-76d09ef930e4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:44 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/bd30535e-aea4-4045-a55d-d881df165a4b') + .query(true) + .reply(200, {"jobId":"bd30535e-aea4-4045-a55d-d881df165a4b","lastUpdateDateTime":"2021-06-25T19:56:44Z","createdDateTime":"2021-06-25T19:56:42Z","expirationDateTime":"2021-06-26T19:56:42Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '66', + 'apim-request-id', + '360449ca-8f24-46ec-98a2-d27f06b8f8d3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:45 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_language_hint.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_language_hint.js new file mode 100644 index 000000000000..fc9a86aad20c --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_language_hint.js @@ -0,0 +1,105 @@ +let nock = require('nock'); + +module.exports.hash = "1fb1a57acc331f867912cae0ed39dc23"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"0","text":"This was the best day of my life.","language":"en"},{"id":"1","text":"I did not like the hotel we stayed at. It was too expensive.","language":"en"},{"id":"2","text":"The restaurant was not as good as I hoped.","language":"en"}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/fc94279f-12a1-4543-a465-586ab372438f', + 'x-envoy-upstream-service-time', + '201', + 'apim-request-id', + '74b09a27-ddeb-414b-afb1-b7996d342cfe', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:37 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/fc94279f-12a1-4543-a465-586ab372438f') + .query(true) + .reply(200, {"jobId":"fc94279f-12a1-4543-a465-586ab372438f","lastUpdateDateTime":"2021-06-25T19:56:37Z","createdDateTime":"2021-06-25T19:56:37Z","expirationDateTime":"2021-06-26T19:56:37Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'bcd7c48f-9d18-4408-88d9-35657464d3c2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:37 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/fc94279f-12a1-4543-a465-586ab372438f') + .query(true) + .reply(200, {"jobId":"fc94279f-12a1-4543-a465-586ab372438f","lastUpdateDateTime":"2021-06-25T19:56:37Z","createdDateTime":"2021-06-25T19:56:37Z","expirationDateTime":"2021-06-26T19:56:37Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + 'e7712c70-6c60-4f00-80b2-9ac6f04ae59a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:37 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/fc94279f-12a1-4543-a465-586ab372438f') + .query(true) + .reply(200, {"jobId":"fc94279f-12a1-4543-a465-586ab372438f","lastUpdateDateTime":"2021-06-25T19:56:39Z","createdDateTime":"2021-06-25T19:56:37Z","expirationDateTime":"2021-06-26T19:56:37Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '71', + 'apim-request-id', + '35095389-51e5-4e44-93aa-e12d5fd3f971', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:39 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/fc94279f-12a1-4543-a465-586ab372438f') + .query(true) + .reply(200, {"jobId":"fc94279f-12a1-4543-a465-586ab372438f","lastUpdateDateTime":"2021-06-25T19:56:39Z","createdDateTime":"2021-06-25T19:56:37Z","expirationDateTime":"2021-06-26T19:56:37Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"0","entities":[],"relations":[],"warnings":[]},{"id":"1","entities":[],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '65', + 'apim-request-id', + '7846cf46-2d7a-4ec6-8030-f70f6d73cbf2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:39 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.js b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.js new file mode 100644 index 000000000000..f6471db072c8 --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/recordings/node/apikey_textanalyticsclient_lros_health/recording_whole_batch_with_multiple_languages.js @@ -0,0 +1,105 @@ +let nock = require('nock'); + +module.exports.hash = "475873b6384b961b148934bfd317912c"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://endpoint', {"encodedQueryParams":true}) + .post('//text/analytics/v3.1/entities/health/jobs', {"documents":[{"id":"1","text":"I should take my cat to the veterinarian."},{"id":"2","text":"Este es un document escrito en Español."},{"id":"3","text":"猫は幸せ"}]}) + .query(true) + .reply(202, "", [ + 'Transfer-Encoding', + 'chunked', + 'operation-location', + 'https://endpoint/text/analytics/v3.1/entities/health/jobs/2b5f6da1-2090-4281-bdd0-6792cac81d8b', + 'x-envoy-upstream-service-time', + '166', + 'apim-request-id', + '505e672c-516a-4094-bab8-e2f8e2378abb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:45 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/2b5f6da1-2090-4281-bdd0-6792cac81d8b') + .query(true) + .reply(200, {"jobId":"2b5f6da1-2090-4281-bdd0-6792cac81d8b","lastUpdateDateTime":"2021-06-25T19:56:45Z","createdDateTime":"2021-06-25T19:56:45Z","expirationDateTime":"2021-06-26T19:56:45Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '6', + 'apim-request-id', + 'c973ddc9-734b-43ee-830a-9bb13b84cc37', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:45 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/2b5f6da1-2090-4281-bdd0-6792cac81d8b') + .query(true) + .reply(200, {"jobId":"2b5f6da1-2090-4281-bdd0-6792cac81d8b","lastUpdateDateTime":"2021-06-25T19:56:45Z","createdDateTime":"2021-06-25T19:56:45Z","expirationDateTime":"2021-06-26T19:56:45Z","status":"notStarted","errors":[]}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '7', + 'apim-request-id', + '7195993c-9f79-4923-a7cb-85421ebc2280', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:45 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/2b5f6da1-2090-4281-bdd0-6792cac81d8b') + .query(true) + .reply(200, {"jobId":"2b5f6da1-2090-4281-bdd0-6792cac81d8b","lastUpdateDateTime":"2021-06-25T19:56:46Z","createdDateTime":"2021-06-25T19:56:45Z","expirationDateTime":"2021-06-26T19:56:45Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[{"offset":28,"length":12,"text":"veterinarian","category":"HealthcareProfession","confidenceScore":0.98}],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '81', + 'apim-request-id', + 'cf605c5b-4467-4198-be5e-8ae7757dba64', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:47 GMT' +]); + +nock('https://endpoint', {"encodedQueryParams":true}) + .get('//text/analytics/v3.1/entities/health/jobs/2b5f6da1-2090-4281-bdd0-6792cac81d8b') + .query(true) + .reply(200, {"jobId":"2b5f6da1-2090-4281-bdd0-6792cac81d8b","lastUpdateDateTime":"2021-06-25T19:56:46Z","createdDateTime":"2021-06-25T19:56:45Z","expirationDateTime":"2021-06-26T19:56:45Z","status":"succeeded","errors":[],"results":{"documents":[{"id":"1","entities":[{"offset":28,"length":12,"text":"veterinarian","category":"HealthcareProfession","confidenceScore":0.98}],"relations":[],"warnings":[]},{"id":"2","entities":[],"relations":[],"warnings":[]},{"id":"3","entities":[],"relations":[],"warnings":[]}],"errors":[],"modelVersion":"2021-05-15"}}, [ + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'x-envoy-upstream-service-time', + '67', + 'apim-request-id', + '642b1379-15cb-432c-a231-8d9387f41b6c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains; preload', + 'x-content-type-options', + 'nosniff', + 'Date', + 'Fri, 25 Jun 2021 19:56:47 GMT' +]); diff --git a/sdk/textanalytics/ai-text-analytics/review/ai-text-analytics.api.md b/sdk/textanalytics/ai-text-analytics/review/ai-text-analytics.api.md index ff28eb584e33..faf077f86ab2 100644 --- a/sdk/textanalytics/ai-text-analytics/review/ai-text-analytics.api.md +++ b/sdk/textanalytics/ai-text-analytics/review/ai-text-analytics.api.md @@ -65,12 +65,11 @@ export interface AnalyzeHealthcareOperationState extends AnalysisPollOperationSt } // @public -export type AnalyzeSentimentAction = { - modelVersion?: string; - stringIndexType?: StringIndexType; +export interface AnalyzeSentimentAction extends TextAnalyticsAction { disableServiceLogs?: boolean; includeOpinionMining?: boolean; -}; + stringIndexType?: StringIndexType; +} // @public export type AnalyzeSentimentActionErrorResult = TextAnalyticsActionErrorResult; @@ -209,12 +208,11 @@ export interface EntityDataSource { export type ErrorCode = ErrorCodeValue | InnerErrorCodeValue; // @public -export type ErrorCodeValue = "InvalidRequest" | "InvalidArgument" | "InternalServerError" | "ServiceUnavailable" | "NotFound"; +export type ErrorCodeValue = string; // @public -export interface ExtractKeyPhrasesAction { +export interface ExtractKeyPhrasesAction extends TextAnalyticsAction { disableServiceLogs?: boolean; - modelVersion?: string; } // @public @@ -252,10 +250,14 @@ export interface ExtractKeyPhrasesSuccessResult extends TextAnalyticsSuccessResu // @public export interface HealthcareEntity extends Entity { assertion?: EntityAssertion; + category: HealthcareEntityCategory; dataSources: EntityDataSource[]; normalizedText?: string; } +// @public +export type HealthcareEntityCategory = string; + // @public export interface HealthcareEntityRelation { relationType: HealthcareEntityRelationType; @@ -277,6 +279,62 @@ export type HealthcareEntityRelationType = string; // @public export type InnerErrorCodeValue = string; +// @public +export const enum KnownHealthcareEntityCategory { + // (undocumented) + AdministrativeEvent = "ADMINISTRATIVE_EVENT", + // (undocumented) + AGE = "AGE", + // (undocumented) + BodyStructure = "BODY_STRUCTURE", + // (undocumented) + CareEnvironment = "CARE_ENVIRONMENT", + // (undocumented) + ConditionQualifier = "CONDITION_QUALIFIER", + // (undocumented) + Date = "DATE", + // (undocumented) + Diagnosis = "DIAGNOSIS", + // (undocumented) + Direction = "DIRECTION", + // (undocumented) + Dosage = "DOSAGE", + // (undocumented) + ExaminationName = "EXAMINATION_NAME", + // (undocumented) + FamilyRelation = "FAMILY_RELATION", + // (undocumented) + Frequency = "FREQUENCY", + // (undocumented) + Gender = "GENDER", + // (undocumented) + GeneORProtein = "GENE_OR_PROTEIN", + // (undocumented) + HealthcareProfession = "HEALTHCARE_PROFESSION", + // (undocumented) + MeasurementUnit = "MEASUREMENT_UNIT", + // (undocumented) + MeasurementValue = "MEASUREMENT_VALUE", + // (undocumented) + MedicationClass = "MEDICATION_CLASS", + // (undocumented) + MedicationForm = "MEDICATION_FORM", + // (undocumented) + MedicationName = "MEDICATION_NAME", + // (undocumented) + MedicationRoute = "MEDICATION_ROUTE", + // (undocumented) + RelationalOperator = "RELATIONAL_OPERATOR", + // (undocumented) + SymptomORSign = "SYMPTOM_OR_SIGN", + // (undocumented) + Time = "TIME", + // (undocumented) + TreatmentName = "TREATMENT_NAME", + // (undocumented) + Variant = "VARIANT" +} + // @public export const enum KnownInnerErrorCodeValue { // (undocumented) @@ -370,11 +428,10 @@ export enum PiiEntityDomain { } // @public -export type RecognizeCategorizedEntitiesAction = { - modelVersion?: string; - stringIndexType?: StringIndexType; +export interface RecognizeCategorizedEntitiesAction extends TextAnalyticsAction { disableServiceLogs?: boolean; -}; + stringIndexType?: StringIndexType; +} // @public export type RecognizeCategorizedEntitiesActionErrorResult = TextAnalyticsActionErrorResult; @@ -410,11 +467,10 @@ export interface RecognizeCategorizedEntitiesSuccessResult extends TextAnalytics } // @public -export type RecognizeLinkedEntitiesAction = { - modelVersion?: string; - stringIndexType?: StringIndexType; +export interface RecognizeLinkedEntitiesAction extends TextAnalyticsAction { disableServiceLogs?: boolean; -}; + stringIndexType?: StringIndexType; +} // @public export type RecognizeLinkedEntitiesActionErrorResult = TextAnalyticsActionErrorResult; @@ -450,12 +506,12 @@ export interface RecognizeLinkedEntitiesSuccessResult extends TextAnalyticsSucce } // @public -export type RecognizePiiEntitiesAction = { - domain?: PiiEntityDomain; - modelVersion?: string; - stringIndexType?: StringIndexType; +export interface RecognizePiiEntitiesAction extends TextAnalyticsAction { + categoriesFilter?: PiiEntityCategory[]; disableServiceLogs?: boolean; -}; + domainFilter?: PiiEntityDomain; + stringIndexType?: StringIndexType; +} // @public export type RecognizePiiEntitiesActionErrorResult = TextAnalyticsActionErrorResult; @@ -546,6 +602,12 @@ export interface TargetSentiment { text: string; } +// @public +export interface TextAnalyticsAction { + actionName?: string; + modelVersion?: string; +} + // @public export interface TextAnalyticsActionErrorResult { readonly error: TextAnalyticsError; @@ -618,7 +680,7 @@ export interface TextAnalyticsOperationOptions extends OperationOptions { } // @public -export type TextAnalyticsOperationStatus = "notStarted" | "running" | "succeeded" | "failed" | "rejected" | "cancelled" | "cancelling" | "partiallyCompleted"; +export type TextAnalyticsOperationStatus = "notStarted" | "running" | "succeeded" | "failed" | "rejected" | "cancelled" | "cancelling"; // @public export interface TextAnalyticsSuccessResult { diff --git a/sdk/textanalytics/ai-text-analytics/src/analyzeHealthcareEntitiesResult.ts b/sdk/textanalytics/ai-text-analytics/src/analyzeHealthcareEntitiesResult.ts index 5d81f45f38aa..724f353d0fef 100644 --- a/sdk/textanalytics/ai-text-analytics/src/analyzeHealthcareEntitiesResult.ts +++ b/sdk/textanalytics/ai-text-analytics/src/analyzeHealthcareEntitiesResult.ts @@ -11,7 +11,8 @@ import { TextAnalyticsError, HealthcareAssertion, RelationType, - HealthcareRelationEntity + HealthcareRelationEntity, + HealthcareEntityCategory } from "./generated/models"; import { makeTextAnalyticsErrorResult, @@ -53,6 +54,39 @@ export interface HealthcareEntity extends Entity { * Entity references in known data sources. */ dataSources: EntityDataSource[]; + /** + * Defines values for HealthcareEntityCategory. + * {@link KnownHealthcareEntityCategory} can be used interchangeably with HealthcareEntityCategory, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **BODY_STRUCTURE** + * **AGE** + * **GENDER** + * **EXAMINATION_NAME** + * **DATE** + * **DIRECTION** + * **FREQUENCY** + * **MEASUREMENT_VALUE** + * **MEASUREMENT_UNIT** + * **RELATIONAL_OPERATOR** + * **TIME** + * **GENE_OR_PROTEIN** + * **VARIANT** + * **ADMINISTRATIVE_EVENT** + * **CARE_ENVIRONMENT** + * **HEALTHCARE_PROFESSION** + * **DIAGNOSIS** + * **SYMPTOM_OR_SIGN** + * **CONDITION_QUALIFIER** + * **MEDICATION_CLASS** + * **MEDICATION_NAME** + * **DOSAGE** + * **MEDICATION_FORM** + * **MEDICATION_ROUTE** + * **FAMILY_RELATION** + * **TREATMENT_NAME** + */ + category: HealthcareEntityCategory; } /** @@ -165,7 +199,7 @@ function makeHealthcareEntitiesWithoutNeighbors( offset, text, links, - subCategory, + subcategory, length, name } = entity; @@ -177,7 +211,7 @@ function makeHealthcareEntitiesWithoutNeighbors( length, text, normalizedText: name, - subCategory, + subCategory: subcategory, dataSources: links?.map(({ dataSource, id }): EntityDataSource => ({ name: dataSource, entityId: id })) ?? [] diff --git a/sdk/textanalytics/ai-text-analytics/src/constants.ts b/sdk/textanalytics/ai-text-analytics/src/constants.ts index 50d4201d6783..48d4d8c45c25 100644 --- a/sdk/textanalytics/ai-text-analytics/src/constants.ts +++ b/sdk/textanalytics/ai-text-analytics/src/constants.ts @@ -4,4 +4,4 @@ /** * @internal */ -export const SDK_VERSION: string = "5.1.0-beta.7"; +export const SDK_VERSION: string = "5.1.0"; diff --git a/sdk/textanalytics/ai-text-analytics/src/generated/generatedClient.ts b/sdk/textanalytics/ai-text-analytics/src/generated/generatedClient.ts index 56915808bcbb..c6a7b8b84cc5 100644 --- a/sdk/textanalytics/ai-text-analytics/src/generated/generatedClient.ts +++ b/sdk/textanalytics/ai-text-analytics/src/generated/generatedClient.ts @@ -18,6 +18,7 @@ import { GeneratedClientAnalyzeStatusResponse, GeneratedClientHealthStatusOptionalParams, GeneratedClientHealthStatusResponse, + GeneratedClientCancelHealthJobOptionalParams, GeneratedClientCancelHealthJobResponse, MultiLanguageBatchInput, GeneratedClientHealthOptionalParams, @@ -98,7 +99,7 @@ export class GeneratedClient extends GeneratedClientContext { */ cancelHealthJob( jobId: string, - options?: coreClient.OperationOptions + options?: GeneratedClientCancelHealthJobOptionalParams ): Promise { return this.sendOperationRequest( { jobId, options }, @@ -235,17 +236,12 @@ const analyzeOperationSpec: coreClient.OperationSpec = { 202: { headersMapper: Mappers.GeneratedClientAnalyzeHeaders }, - 400: { - bodyMapper: Mappers.ErrorResponse, - isError: true - }, - 500: { - bodyMapper: Mappers.ErrorResponse, - isError: true + default: { + bodyMapper: Mappers.ErrorResponse } }, requestBody: Parameters.body, - urlParameters: [Parameters.endpoint], + urlParameters: [Parameters.endpoint, Parameters.apiVersion], headerParameters: [Parameters.contentType, Parameters.accept], mediaType: "json", serializer @@ -257,13 +253,8 @@ const analyzeStatusOperationSpec: coreClient.OperationSpec = { 200: { bodyMapper: Mappers.AnalyzeJobState }, - 404: { - bodyMapper: Mappers.ErrorResponse, - isError: true - }, - 500: { - bodyMapper: Mappers.ErrorResponse, - isError: true + default: { + bodyMapper: Mappers.ErrorResponse } }, queryParameters: [ @@ -271,7 +262,7 @@ const analyzeStatusOperationSpec: coreClient.OperationSpec = { Parameters.top, Parameters.skip ], - urlParameters: [Parameters.endpoint, Parameters.jobId], + urlParameters: [Parameters.endpoint, Parameters.apiVersion, Parameters.jobId], headerParameters: [Parameters.accept], serializer }; @@ -282,13 +273,8 @@ const healthStatusOperationSpec: coreClient.OperationSpec = { 200: { bodyMapper: Mappers.HealthcareJobState }, - 404: { - bodyMapper: Mappers.ErrorResponse, - isError: true - }, - 500: { - bodyMapper: Mappers.ErrorResponse, - isError: true + default: { + bodyMapper: Mappers.ErrorResponse } }, queryParameters: [ @@ -296,7 +282,11 @@ const healthStatusOperationSpec: coreClient.OperationSpec = { Parameters.top, Parameters.skip ], - urlParameters: [Parameters.endpoint, Parameters.jobId1], + urlParameters: [ + Parameters.endpoint, + Parameters.apiVersion, + Parameters.jobId1 + ], headerParameters: [Parameters.accept], serializer }; @@ -307,16 +297,15 @@ const cancelHealthJobOperationSpec: coreClient.OperationSpec = { 202: { headersMapper: Mappers.GeneratedClientCancelHealthJobHeaders }, - 404: { - bodyMapper: Mappers.ErrorResponse, - isError: true - }, - 500: { - bodyMapper: Mappers.ErrorResponse, - isError: true + default: { + bodyMapper: Mappers.ErrorResponse } }, - urlParameters: [Parameters.endpoint, Parameters.jobId1], + urlParameters: [ + Parameters.endpoint, + Parameters.apiVersion, + Parameters.jobId1 + ], headerParameters: [Parameters.accept], serializer }; @@ -327,13 +316,8 @@ const healthOperationSpec: coreClient.OperationSpec = { 202: { headersMapper: Mappers.GeneratedClientHealthHeaders }, - 400: { - bodyMapper: Mappers.ErrorResponse, - isError: true - }, - 500: { - bodyMapper: Mappers.ErrorResponse, - isError: true + default: { + bodyMapper: Mappers.ErrorResponse } }, requestBody: Parameters.input, @@ -342,7 +326,7 @@ const healthOperationSpec: coreClient.OperationSpec = { Parameters.stringIndexType, Parameters.loggingOptOut ], - urlParameters: [Parameters.endpoint], + urlParameters: [Parameters.endpoint, Parameters.apiVersion], headerParameters: [Parameters.contentType, Parameters.accept], mediaType: "json", serializer @@ -354,13 +338,8 @@ const entitiesRecognitionGeneralOperationSpec: coreClient.OperationSpec = { 200: { bodyMapper: Mappers.EntitiesResult }, - 400: { - bodyMapper: Mappers.ErrorResponse, - isError: true - }, - 500: { - bodyMapper: Mappers.ErrorResponse, - isError: true + default: { + bodyMapper: Mappers.ErrorResponse } }, requestBody: Parameters.input, @@ -370,7 +349,7 @@ const entitiesRecognitionGeneralOperationSpec: coreClient.OperationSpec = { Parameters.stringIndexType, Parameters.loggingOptOut ], - urlParameters: [Parameters.endpoint], + urlParameters: [Parameters.endpoint, Parameters.apiVersion], headerParameters: [Parameters.contentType, Parameters.accept], mediaType: "json", serializer @@ -382,13 +361,8 @@ const entitiesRecognitionPiiOperationSpec: coreClient.OperationSpec = { 200: { bodyMapper: Mappers.PiiResult }, - 400: { - bodyMapper: Mappers.ErrorResponse, - isError: true - }, - 500: { - bodyMapper: Mappers.ErrorResponse, - isError: true + default: { + bodyMapper: Mappers.ErrorResponse } }, requestBody: Parameters.input, @@ -400,7 +374,7 @@ const entitiesRecognitionPiiOperationSpec: coreClient.OperationSpec = { Parameters.domain, Parameters.piiCategories ], - urlParameters: [Parameters.endpoint], + urlParameters: [Parameters.endpoint, Parameters.apiVersion], headerParameters: [Parameters.contentType, Parameters.accept], mediaType: "json", serializer @@ -412,13 +386,8 @@ const entitiesLinkingOperationSpec: coreClient.OperationSpec = { 200: { bodyMapper: Mappers.EntityLinkingResult }, - 400: { - bodyMapper: Mappers.ErrorResponse, - isError: true - }, - 500: { - bodyMapper: Mappers.ErrorResponse, - isError: true + default: { + bodyMapper: Mappers.ErrorResponse } }, requestBody: Parameters.input, @@ -428,7 +397,7 @@ const entitiesLinkingOperationSpec: coreClient.OperationSpec = { Parameters.stringIndexType, Parameters.loggingOptOut ], - urlParameters: [Parameters.endpoint], + urlParameters: [Parameters.endpoint, Parameters.apiVersion], headerParameters: [Parameters.contentType, Parameters.accept], mediaType: "json", serializer @@ -440,13 +409,8 @@ const keyPhrasesOperationSpec: coreClient.OperationSpec = { 200: { bodyMapper: Mappers.KeyPhraseResult }, - 400: { - bodyMapper: Mappers.ErrorResponse, - isError: true - }, - 500: { - bodyMapper: Mappers.ErrorResponse, - isError: true + default: { + bodyMapper: Mappers.ErrorResponse } }, requestBody: Parameters.input, @@ -455,7 +419,7 @@ const keyPhrasesOperationSpec: coreClient.OperationSpec = { Parameters.modelVersion, Parameters.loggingOptOut ], - urlParameters: [Parameters.endpoint], + urlParameters: [Parameters.endpoint, Parameters.apiVersion], headerParameters: [Parameters.contentType, Parameters.accept], mediaType: "json", serializer @@ -467,13 +431,8 @@ const languagesOperationSpec: coreClient.OperationSpec = { 200: { bodyMapper: Mappers.LanguageResult }, - 400: { - bodyMapper: Mappers.ErrorResponse, - isError: true - }, - 500: { - bodyMapper: Mappers.ErrorResponse, - isError: true + default: { + bodyMapper: Mappers.ErrorResponse } }, requestBody: Parameters.input1, @@ -482,7 +441,7 @@ const languagesOperationSpec: coreClient.OperationSpec = { Parameters.modelVersion, Parameters.loggingOptOut ], - urlParameters: [Parameters.endpoint], + urlParameters: [Parameters.endpoint, Parameters.apiVersion], headerParameters: [Parameters.contentType, Parameters.accept], mediaType: "json", serializer @@ -494,13 +453,8 @@ const sentimentOperationSpec: coreClient.OperationSpec = { 200: { bodyMapper: Mappers.SentimentResponse }, - 400: { - bodyMapper: Mappers.ErrorResponse, - isError: true - }, - 500: { - bodyMapper: Mappers.ErrorResponse, - isError: true + default: { + bodyMapper: Mappers.ErrorResponse } }, requestBody: Parameters.input, @@ -511,7 +465,7 @@ const sentimentOperationSpec: coreClient.OperationSpec = { Parameters.loggingOptOut, Parameters.opinionMining ], - urlParameters: [Parameters.endpoint], + urlParameters: [Parameters.endpoint, Parameters.apiVersion], headerParameters: [Parameters.contentType, Parameters.accept], mediaType: "json", serializer diff --git a/sdk/textanalytics/ai-text-analytics/src/generated/generatedClientContext.ts b/sdk/textanalytics/ai-text-analytics/src/generated/generatedClientContext.ts index caff47016e08..0ddbafcbeac0 100644 --- a/sdk/textanalytics/ai-text-analytics/src/generated/generatedClientContext.ts +++ b/sdk/textanalytics/ai-text-analytics/src/generated/generatedClientContext.ts @@ -12,6 +12,7 @@ import { GeneratedClientOptionalParams } from "./models"; /** @internal */ export class GeneratedClientContext extends coreClient.ServiceClient { endpoint: string; + apiVersion: string; /** * Initializes a new instance of the GeneratedClientContext class. @@ -28,19 +29,29 @@ export class GeneratedClientContext extends coreClient.ServiceClient { if (!options) { options = {}; } - const defaults: GeneratedClientOptionalParams = { requestContentType: "application/json; charset=utf-8" }; + const packageDetails = `azsdk-js-ai-text-analytics/5.1.0`; + const userAgentPrefix = + options.userAgentOptions && options.userAgentOptions.userAgentPrefix + ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}` + : `${packageDetails}`; + const optionsWithDefaults = { ...defaults, ...options, - baseUri: options.endpoint || "{Endpoint}/text/analytics/v3.1-preview.5" + userAgentOptions: { + userAgentPrefix + }, + baseUri: options.endpoint || "{Endpoint}/text/analytics/{ApiVersion}" }; - super(optionsWithDefaults); // Parameter assignments this.endpoint = endpoint; + + // Assigning values to Constant parameters + this.apiVersion = options.apiVersion || "v3.1"; } } diff --git a/sdk/textanalytics/ai-text-analytics/src/generated/models/index.ts b/sdk/textanalytics/ai-text-analytics/src/generated/models/index.ts index b83d602415d3..b02f9839e1be 100644 --- a/sdk/textanalytics/ai-text-analytics/src/generated/models/index.ts +++ b/sdk/textanalytics/ai-text-analytics/src/generated/models/index.ts @@ -8,6 +8,16 @@ import * as coreClient from "@azure/core-client"; +export interface JobDescriptor { + /** Optional display name for the analysis job. */ + displayName?: string; +} + +export interface AnalysisInput { + /** Contains a set of input documents to be analyzed by the service. */ + analysisInput: MultiLanguageBatchInput; +} + /** Contains a set of input documents to be analyzed by the service. */ export interface MultiLanguageBatchInput { /** The set of documents to process as part of this batch. */ @@ -24,11 +34,6 @@ export interface TextDocumentInput { language?: string; } -export interface JobDescriptor { - /** Optional display name for the analysis job. */ - displayName?: string; -} - export interface JobManifest { /** The set of tasks to execute on the input documents. Cannot specify the same task more than once. */ tasks: JobManifestTasks; @@ -127,18 +132,6 @@ export interface InnerError { innererror?: InnerError; } -/** if includeStatistics=true was specified in the request this field will contain information about the request payload. */ -export interface TextDocumentBatchStatistics { - /** Number of documents submitted in the request. */ - documentCount: number; - /** Number of valid documents. This excludes empty, over-size limit or non-supported languages documents. */ - validDocumentCount: number; - /** Number of invalid documents. This includes empty, over-size limit or non-supported languages documents. */ - erroneousDocumentCount: number; - /** Number of transactions for the request. */ - transactionCount: number; -} - export interface JobMetadata { createdDateTime: Date; expirationDateTime?: Date; @@ -147,12 +140,15 @@ export interface JobMetadata { status: State; } +export interface AnalyzeJobDisplayName { + displayName?: string; +} + export interface TasksState { tasks: TasksStateTasks; } export interface TasksStateTasks { - details?: TasksStateTasksDetails; completed: number; failed: number; inProgress: number; @@ -166,11 +162,10 @@ export interface TasksStateTasks { export interface TaskState { lastUpdateDateTime: Date; - name?: string; status: State; } -export interface Components15Gvwi3SchemasTasksstatePropertiesTasksPropertiesEntityrecognitiontasksItemsAllof1 { +export interface EntitiesTaskResult { results?: EntitiesResult; } @@ -235,7 +230,19 @@ export interface DocumentError { error: TextAnalyticsError; } -export interface Components15X8E9LSchemasTasksstatePropertiesTasksPropertiesEntityrecognitionpiitasksItemsAllof1 { +/** if includeStatistics=true was specified in the request this field will contain information about the request payload. */ +export interface TextDocumentBatchStatistics { + /** Number of documents submitted in the request. */ + documentCount: number; + /** Number of valid documents. This excludes empty, over-size limit or non-supported languages documents. */ + validDocumentCount: number; + /** Number of invalid documents. This includes empty, over-size limit or non-supported languages documents. */ + erroneousDocumentCount: number; + /** Number of transactions for the request. */ + transactionCount: number; +} + +export interface PiiTaskResult { results?: PiiResult; } @@ -263,7 +270,7 @@ export interface PiiDocumentEntities { statistics?: TextDocumentStatistics; } -export interface Components1D9IzucSchemasTasksstatePropertiesTasksPropertiesKeyphraseextractiontasksItemsAllof1 { +export interface KeyPhraseTaskResult { results?: KeyPhraseResult; } @@ -289,7 +296,7 @@ export interface DocumentKeyPhrases { statistics?: TextDocumentStatistics; } -export interface ComponentsIfu7BjSchemasTasksstatePropertiesTasksPropertiesEntitylinkingtasksItemsAllof1 { +export interface EntityLinkingTaskResult { results?: EntityLinkingResult; } @@ -345,7 +352,7 @@ export interface Match { length: number; } -export interface Components1C6O47FSchemasTasksstatePropertiesTasksPropertiesSentimentanalysistasksItemsAllof1 { +export interface SentimentTaskResult { results?: SentimentResponse; } @@ -443,10 +450,21 @@ export interface SentenceAssessment { isNegated: boolean; } +export interface AnalyzeJobErrorsAndStatistics { + errors?: TextAnalyticsError[]; + /** if includeStatistics=true was specified in the request this field will contain information about the request payload. */ + statistics?: TextDocumentBatchStatistics; +} + export interface Pagination { nextLink?: string; } +export interface HealthcareTaskResult { + results?: HealthcareResult; + errors?: TextAnalyticsError[]; +} + export interface HealthcareResult { /** Response by document */ documents: DocumentHealthcareEntities[]; @@ -471,6 +489,29 @@ export interface DocumentHealthcareEntities { statistics?: TextDocumentStatistics; } +export interface HealthcareEntityProperties { + /** Entity text as appears in the request. */ + text: string; + /** Healthcare Entity Category. */ + category: HealthcareEntityCategory; + /** (Optional) Entity sub type. */ + subcategory?: string; + /** Start position for the entity text. Use of different 'stringIndexType' values can affect the offset returned. */ + offset: number; + /** Length for the entity text. Use of different 'stringIndexType' values can affect the length returned. */ + length: number; + /** Confidence score between 0 and 1 of the extracted entity. */ + confidenceScore: number; +} + +export interface HealthcareLinkingProperties { + assertion?: HealthcareAssertion; + /** Preferred name for the entity. Example: 'histologically' would have a 'name' of 'histologic'. */ + name?: string; + /** Entity references in known data sources. */ + links?: HealthcareEntityLink[]; +} + export interface HealthcareAssertion { /** Describes any conditionality on the entity. */ conditionality?: Conditionality; @@ -547,53 +588,37 @@ export interface DetectedLanguage { } export type AnalyzeBatchInput = JobDescriptor & - JobManifest & { - /** Contains a set of input documents to be analyzed by the service. */ - analysisInput: MultiLanguageBatchInput; - }; + AnalysisInput & + JobManifest & {}; -export type AnalyzeJobMetadata = JobMetadata & { - displayName?: string; -}; +export type AnalyzeJobMetadata = JobMetadata & AnalyzeJobDisplayName & {}; export type HealthcareJobState = JobMetadata & - Pagination & { - results?: HealthcareResult; - errors?: TextAnalyticsError[]; - }; + HealthcareTaskResult & + Pagination & {}; export type AnalyzeJobState = AnalyzeJobMetadata & TasksState & - Pagination & { - errors?: TextAnalyticsError[]; - /** if includeStatistics=true was specified in the request this field will contain information about the request payload. */ - statistics?: TextDocumentBatchStatistics; - }; - -export type TasksStateTasksDetails = TaskState & {}; + AnalyzeJobErrorsAndStatistics & + Pagination & {}; export type TasksStateTasksEntityRecognitionTasksItem = TaskState & - Components15Gvwi3SchemasTasksstatePropertiesTasksPropertiesEntityrecognitiontasksItemsAllof1 & {}; + EntitiesTaskResult & {}; export type TasksStateTasksEntityRecognitionPiiTasksItem = TaskState & - Components15X8E9LSchemasTasksstatePropertiesTasksPropertiesEntityrecognitionpiitasksItemsAllof1 & {}; + PiiTaskResult & {}; export type TasksStateTasksKeyPhraseExtractionTasksItem = TaskState & - Components1D9IzucSchemasTasksstatePropertiesTasksPropertiesKeyphraseextractiontasksItemsAllof1 & {}; + KeyPhraseTaskResult & {}; export type TasksStateTasksEntityLinkingTasksItem = TaskState & - ComponentsIfu7BjSchemasTasksstatePropertiesTasksPropertiesEntitylinkingtasksItemsAllof1 & {}; + EntityLinkingTaskResult & {}; export type TasksStateTasksSentimentAnalysisTasksItem = TaskState & - Components1C6O47FSchemasTasksstatePropertiesTasksPropertiesSentimentanalysistasksItemsAllof1 & {}; + SentimentTaskResult & {}; -export type HealthcareEntity = Entity & { - assertion?: HealthcareAssertion; - /** Preferred name for the entity. Example: 'histologically' would have a 'name' of 'histologic'. */ - name?: string; - /** Entity references in known data sources. */ - links?: HealthcareEntityLink[]; -}; +export type HealthcareEntity = HealthcareEntityProperties & + HealthcareLinkingProperties & {}; /** Defines headers for GeneratedClient_analyze operation. */ export interface GeneratedClientAnalyzeHeaders { @@ -624,7 +649,7 @@ export const enum KnownStringIndexType { * Defines values for StringIndexType. \ * {@link KnownStringIndexType} can be used interchangeably with StringIndexType, * this enum contains the known values that the service supports. - * ### Know values supported by the service + * ### Known values supported by the service * **TextElement_v8**: Returned offset and length values will correspond to TextElements (Graphemes and Grapheme clusters) confirming to the Unicode 8.0.0 standard. Use this option if your application is written in .Net Framework or .Net Core and you will be using StringInfo. \ * **UnicodeCodePoint**: Returned offset and length values will correspond to Unicode code points. Use this option if your application is written in a language that support Unicode, for example Python. \ * **Utf16CodeUnit**: Returned offset and length values will correspond to UTF-16 code units. Use this option if your application is written in a language that support Unicode, for example Java, JavaScript. @@ -641,7 +666,7 @@ export const enum KnownPiiTaskParametersDomain { * Defines values for PiiTaskParametersDomain. \ * {@link KnownPiiTaskParametersDomain} can be used interchangeably with PiiTaskParametersDomain, * this enum contains the known values that the service supports. - * ### Know values supported by the service + * ### Known values supported by the service * **phi** \ * **none** */ @@ -828,7 +853,7 @@ export const enum KnownPiiCategory { * Defines values for PiiCategory. \ * {@link KnownPiiCategory} can be used interchangeably with PiiCategory, * this enum contains the known values that the service supports. - * ### Know values supported by the service + * ### Known values supported by the service * **ABARoutingNumber** \ * **ARNationalIdentityNumber** \ * **AUBankAccountNumber** \ @@ -1005,6 +1030,28 @@ export const enum KnownPiiCategory { */ export type PiiCategory = string; +/** Known values of {@link ErrorCodeValue} that the service accepts. */ +export const enum KnownErrorCodeValue { + InvalidRequest = "InvalidRequest", + InvalidArgument = "InvalidArgument", + InternalServerError = "InternalServerError", + ServiceUnavailable = "ServiceUnavailable", + NotFound = "NotFound" +} + +/** + * Defines values for ErrorCodeValue. \ + * {@link KnownErrorCodeValue} can be used interchangeably with ErrorCodeValue, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **InvalidRequest** \ + * **InvalidArgument** \ + * **InternalServerError** \ + * **ServiceUnavailable** \ + * **NotFound** + */ +export type ErrorCodeValue = string; + /** Known values of {@link InnerErrorCodeValue} that the service accepts. */ export const enum KnownInnerErrorCodeValue { InvalidParameterValue = "InvalidParameterValue", @@ -1022,7 +1069,7 @@ export const enum KnownInnerErrorCodeValue { * Defines values for InnerErrorCodeValue. \ * {@link KnownInnerErrorCodeValue} can be used interchangeably with InnerErrorCodeValue, * this enum contains the known values that the service supports. - * ### Know values supported by the service + * ### Known values supported by the service * **InvalidParameterValue** \ * **InvalidRequestBodyFormat** \ * **EmptyRequest** \ @@ -1045,12 +1092,76 @@ export const enum KnownWarningCode { * Defines values for WarningCode. \ * {@link KnownWarningCode} can be used interchangeably with WarningCode, * this enum contains the known values that the service supports. - * ### Know values supported by the service + * ### Known values supported by the service * **LongWordsInDocument** \ * **DocumentTruncated** */ export type WarningCode = string; +/** Known values of {@link HealthcareEntityCategory} that the service accepts. */ +export const enum KnownHealthcareEntityCategory { + BodyStructure = "BODY_STRUCTURE", + AGE = "AGE", + Gender = "GENDER", + ExaminationName = "EXAMINATION_NAME", + Date = "DATE", + Direction = "DIRECTION", + Frequency = "FREQUENCY", + MeasurementValue = "MEASUREMENT_VALUE", + MeasurementUnit = "MEASUREMENT_UNIT", + RelationalOperator = "RELATIONAL_OPERATOR", + Time = "TIME", + GeneORProtein = "GENE_OR_PROTEIN", + Variant = "VARIANT", + AdministrativeEvent = "ADMINISTRATIVE_EVENT", + CareEnvironment = "CARE_ENVIRONMENT", + HealthcareProfession = "HEALTHCARE_PROFESSION", + Diagnosis = "DIAGNOSIS", + SymptomORSign = "SYMPTOM_OR_SIGN", + ConditionQualifier = "CONDITION_QUALIFIER", + MedicationClass = "MEDICATION_CLASS", + MedicationName = "MEDICATION_NAME", + Dosage = "DOSAGE", + MedicationForm = "MEDICATION_FORM", + MedicationRoute = "MEDICATION_ROUTE", + FamilyRelation = "FAMILY_RELATION", + TreatmentName = "TREATMENT_NAME" +} + +/** + * Defines values for HealthcareEntityCategory. \ + * {@link KnownHealthcareEntityCategory} can be used interchangeably with HealthcareEntityCategory, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **BODY_STRUCTURE** \ + * **AGE** \ + * **GENDER** \ + * **EXAMINATION_NAME** \ + * **DATE** \ + * **DIRECTION** \ + * **FREQUENCY** \ + * **MEASUREMENT_VALUE** \ + * **MEASUREMENT_UNIT** \ + * **RELATIONAL_OPERATOR** \ + * **TIME** \ + * **GENE_OR_PROTEIN** \ + * **VARIANT** \ + * **ADMINISTRATIVE_EVENT** \ + * **CARE_ENVIRONMENT** \ + * **HEALTHCARE_PROFESSION** \ + * **DIAGNOSIS** \ + * **SYMPTOM_OR_SIGN** \ + * **CONDITION_QUALIFIER** \ + * **MEDICATION_CLASS** \ + * **MEDICATION_NAME** \ + * **DOSAGE** \ + * **MEDICATION_FORM** \ + * **MEDICATION_ROUTE** \ + * **FAMILY_RELATION** \ + * **TREATMENT_NAME** + */ +export type HealthcareEntityCategory = string; + /** Known values of {@link RelationType} that the service accepts. */ export const enum KnownRelationType { Abbreviation = "Abbreviation", @@ -1080,7 +1191,7 @@ export const enum KnownRelationType { * Defines values for RelationType. \ * {@link KnownRelationType} can be used interchangeably with RelationType, * this enum contains the known values that the service supports. - * ### Know values supported by the service + * ### Known values supported by the service * **Abbreviation** \ * **DirectionOfBodyStructure** \ * **DirectionOfCondition** \ @@ -1104,13 +1215,6 @@ export const enum KnownRelationType { * **ValueOfExamination** */ export type RelationType = string; -/** Defines values for ErrorCodeValue. */ -export type ErrorCodeValue = - | "InvalidRequest" - | "InvalidArgument" - | "InternalServerError" - | "ServiceUnavailable" - | "NotFound"; /** Defines values for State. */ export type State = | "notStarted" @@ -1119,8 +1223,7 @@ export type State = | "failed" | "rejected" | "cancelled" - | "cancelling" - | "partiallyCompleted"; + | "cancelling"; /** Defines values for DocumentSentimentLabel. */ export type DocumentSentimentLabel = | "positive" @@ -1183,6 +1286,10 @@ export interface GeneratedClientHealthStatusOptionalParams /** Contains response data for the healthStatus operation. */ export type GeneratedClientHealthStatusResponse = HealthcareJobState; +/** Optional parameters. */ +export interface GeneratedClientCancelHealthJobOptionalParams + extends coreClient.OperationOptions {} + /** Contains response data for the cancelHealthJob operation. */ export type GeneratedClientCancelHealthJobResponse = GeneratedClientCancelHealthJobHeaders; @@ -1301,6 +1408,8 @@ export type GeneratedClientSentimentResponse = SentimentResponse; /** Optional parameters. */ export interface GeneratedClientOptionalParams extends coreClient.ServiceClientOptions { + /** Text Analytics API version (for example, v3.0). */ + apiVersion?: string; /** Overrides client endpoint. */ endpoint?: string; } diff --git a/sdk/textanalytics/ai-text-analytics/src/generated/models/mappers.ts b/sdk/textanalytics/ai-text-analytics/src/generated/models/mappers.ts index 2fd2c92c26b4..ce16bee3ddad 100644 --- a/sdk/textanalytics/ai-text-analytics/src/generated/models/mappers.ts +++ b/sdk/textanalytics/ai-text-analytics/src/generated/models/mappers.ts @@ -8,6 +8,37 @@ import * as coreClient from "@azure/core-client"; +export const JobDescriptor: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "JobDescriptor", + modelProperties: { + displayName: { + serializedName: "displayName", + type: { + name: "String" + } + } + } + } +}; + +export const AnalysisInput: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "AnalysisInput", + modelProperties: { + analysisInput: { + serializedName: "analysisInput", + type: { + name: "Composite", + className: "MultiLanguageBatchInput" + } + } + } + } +}; + export const MultiLanguageBatchInput: coreClient.CompositeMapper = { type: { name: "Composite", @@ -59,21 +90,6 @@ export const TextDocumentInput: coreClient.CompositeMapper = { } }; -export const JobDescriptor: coreClient.CompositeMapper = { - type: { - name: "Composite", - className: "JobDescriptor", - modelProperties: { - displayName: { - serializedName: "displayName", - type: { - name: "String" - } - } - } - } -}; - export const JobManifest: coreClient.CompositeMapper = { type: { name: "Composite", @@ -188,7 +204,6 @@ export const EntitiesTaskParameters: coreClient.CompositeMapper = { } }, loggingOptOut: { - defaultValue: false, serializedName: "loggingOptOut", type: { name: "Boolean" @@ -250,7 +265,7 @@ export const PiiTaskParameters: coreClient.CompositeMapper = { constraints: { UniqueItems: true }, - serializedName: "pii-categories", + serializedName: "piiCategories", type: { name: "Sequence", element: { @@ -299,7 +314,6 @@ export const KeyPhrasesTaskParameters: coreClient.CompositeMapper = { } }, loggingOptOut: { - defaultValue: false, serializedName: "loggingOptOut", type: { name: "Boolean" @@ -338,7 +352,6 @@ export const EntityLinkingTaskParameters: coreClient.CompositeMapper = { } }, loggingOptOut: { - defaultValue: false, serializedName: "loggingOptOut", type: { name: "Boolean" @@ -383,7 +396,6 @@ export const SentimentAnalysisTaskParameters: coreClient.CompositeMapper = { } }, loggingOptOut: { - defaultValue: false, serializedName: "loggingOptOut", type: { name: "Boolean" @@ -430,14 +442,7 @@ export const TextAnalyticsError: coreClient.CompositeMapper = { serializedName: "code", required: true, type: { - name: "Enum", - allowedValues: [ - "InvalidRequest", - "InvalidArgument", - "InternalServerError", - "ServiceUnavailable", - "NotFound" - ] + name: "String" } }, message: { @@ -519,43 +524,6 @@ export const InnerError: coreClient.CompositeMapper = { } }; -export const TextDocumentBatchStatistics: coreClient.CompositeMapper = { - type: { - name: "Composite", - className: "TextDocumentBatchStatistics", - modelProperties: { - documentCount: { - serializedName: "documentsCount", - required: true, - type: { - name: "Number" - } - }, - validDocumentCount: { - serializedName: "validDocumentsCount", - required: true, - type: { - name: "Number" - } - }, - erroneousDocumentCount: { - serializedName: "erroneousDocumentsCount", - required: true, - type: { - name: "Number" - } - }, - transactionCount: { - serializedName: "transactionsCount", - required: true, - type: { - name: "Number" - } - } - } - } -}; - export const JobMetadata: coreClient.CompositeMapper = { type: { name: "Composite", @@ -600,8 +568,7 @@ export const JobMetadata: coreClient.CompositeMapper = { "failed", "rejected", "cancelled", - "cancelling", - "partiallyCompleted" + "cancelling" ] } } @@ -609,6 +576,21 @@ export const JobMetadata: coreClient.CompositeMapper = { } }; +export const AnalyzeJobDisplayName: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "AnalyzeJobDisplayName", + modelProperties: { + displayName: { + serializedName: "displayName", + type: { + name: "String" + } + } + } + } +}; + export const TasksState: coreClient.CompositeMapper = { type: { name: "Composite", @@ -630,13 +612,6 @@ export const TasksStateTasks: coreClient.CompositeMapper = { name: "Composite", className: "TasksStateTasks", modelProperties: { - details: { - serializedName: "details", - type: { - name: "Composite", - className: "TasksStateTasksDetails" - } - }, completed: { serializedName: "completed", required: true, @@ -741,12 +716,6 @@ export const TaskState: coreClient.CompositeMapper = { name: "DateTime" } }, - name: { - serializedName: "name", - type: { - name: "String" - } - }, status: { serializedName: "status", required: true, @@ -759,8 +728,7 @@ export const TaskState: coreClient.CompositeMapper = { "failed", "rejected", "cancelled", - "cancelling", - "partiallyCompleted" + "cancelling" ] } } @@ -768,11 +736,10 @@ export const TaskState: coreClient.CompositeMapper = { } }; -export const Components15Gvwi3SchemasTasksstatePropertiesTasksPropertiesEntityrecognitiontasksItemsAllof1: coreClient.CompositeMapper = { +export const EntitiesTaskResult: coreClient.CompositeMapper = { type: { name: "Composite", - className: - "Components15Gvwi3SchemasTasksstatePropertiesTasksPropertiesEntityrecognitiontasksItemsAllof1", + className: "EntitiesTaskResult", modelProperties: { results: { serializedName: "results", @@ -1002,11 +969,47 @@ export const DocumentError: coreClient.CompositeMapper = { } }; -export const Components15X8E9LSchemasTasksstatePropertiesTasksPropertiesEntityrecognitionpiitasksItemsAllof1: coreClient.CompositeMapper = { +export const TextDocumentBatchStatistics: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "TextDocumentBatchStatistics", + modelProperties: { + documentCount: { + serializedName: "documentsCount", + required: true, + type: { + name: "Number" + } + }, + validDocumentCount: { + serializedName: "validDocumentsCount", + required: true, + type: { + name: "Number" + } + }, + erroneousDocumentCount: { + serializedName: "erroneousDocumentsCount", + required: true, + type: { + name: "Number" + } + }, + transactionCount: { + serializedName: "transactionsCount", + required: true, + type: { + name: "Number" + } + } + } + } +}; + +export const PiiTaskResult: coreClient.CompositeMapper = { type: { name: "Composite", - className: - "Components15X8E9LSchemasTasksstatePropertiesTasksPropertiesEntityrecognitionpiitasksItemsAllof1", + className: "PiiTaskResult", modelProperties: { results: { serializedName: "results", @@ -1124,11 +1127,10 @@ export const PiiDocumentEntities: coreClient.CompositeMapper = { } }; -export const Components1D9IzucSchemasTasksstatePropertiesTasksPropertiesKeyphraseextractiontasksItemsAllof1: coreClient.CompositeMapper = { +export const KeyPhraseTaskResult: coreClient.CompositeMapper = { type: { name: "Composite", - className: - "Components1D9IzucSchemasTasksstatePropertiesTasksPropertiesKeyphraseextractiontasksItemsAllof1", + className: "KeyPhraseTaskResult", modelProperties: { results: { serializedName: "results", @@ -1238,11 +1240,10 @@ export const DocumentKeyPhrases: coreClient.CompositeMapper = { } }; -export const ComponentsIfu7BjSchemasTasksstatePropertiesTasksPropertiesEntitylinkingtasksItemsAllof1: coreClient.CompositeMapper = { +export const EntityLinkingTaskResult: coreClient.CompositeMapper = { type: { name: "Composite", - className: - "ComponentsIfu7BjSchemasTasksstatePropertiesTasksPropertiesEntitylinkingtasksItemsAllof1", + className: "EntityLinkingTaskResult", modelProperties: { results: { serializedName: "results", @@ -1452,11 +1453,10 @@ export const Match: coreClient.CompositeMapper = { } }; -export const Components1C6O47FSchemasTasksstatePropertiesTasksPropertiesSentimentanalysistasksItemsAllof1: coreClient.CompositeMapper = { +export const SentimentTaskResult: coreClient.CompositeMapper = { type: { name: "Composite", - className: - "Components1C6O47FSchemasTasksstatePropertiesTasksPropertiesSentimentanalysistasksItemsAllof1", + className: "SentimentTaskResult", modelProperties: { results: { serializedName: "results", @@ -1838,6 +1838,34 @@ export const SentenceAssessment: coreClient.CompositeMapper = { } }; +export const AnalyzeJobErrorsAndStatistics: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "AnalyzeJobErrorsAndStatistics", + modelProperties: { + errors: { + serializedName: "errors", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "TextAnalyticsError" + } + } + } + }, + statistics: { + serializedName: "statistics", + type: { + name: "Composite", + className: "TextDocumentBatchStatistics" + } + } + } + } +}; + export const Pagination: coreClient.CompositeMapper = { type: { name: "Composite", @@ -1853,6 +1881,34 @@ export const Pagination: coreClient.CompositeMapper = { } }; +export const HealthcareTaskResult: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "HealthcareTaskResult", + modelProperties: { + results: { + serializedName: "results", + type: { + name: "Composite", + className: "HealthcareResult" + } + }, + errors: { + serializedName: "errors", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "TextAnalyticsError" + } + } + } + } + } + } +}; + export const HealthcareResult: coreClient.CompositeMapper = { type: { name: "Composite", @@ -1964,6 +2020,90 @@ export const DocumentHealthcareEntities: coreClient.CompositeMapper = { } }; +export const HealthcareEntityProperties: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "HealthcareEntityProperties", + modelProperties: { + text: { + serializedName: "text", + required: true, + type: { + name: "String" + } + }, + category: { + serializedName: "category", + required: true, + type: { + name: "String" + } + }, + subcategory: { + serializedName: "subcategory", + type: { + name: "String" + } + }, + offset: { + serializedName: "offset", + required: true, + type: { + name: "Number" + } + }, + length: { + serializedName: "length", + required: true, + type: { + name: "Number" + } + }, + confidenceScore: { + serializedName: "confidenceScore", + required: true, + type: { + name: "Number" + } + } + } + } +}; + +export const HealthcareLinkingProperties: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "HealthcareLinkingProperties", + modelProperties: { + assertion: { + serializedName: "assertion", + type: { + name: "Composite", + className: "HealthcareAssertion" + } + }, + name: { + serializedName: "name", + type: { + name: "String" + } + }, + links: { + serializedName: "links", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "HealthcareEntityLink" + } + } + } + } + } + } +}; + export const HealthcareAssertion: coreClient.CompositeMapper = { type: { name: "Composite", @@ -2254,14 +2394,8 @@ export const AnalyzeBatchInput: coreClient.CompositeMapper = { className: "AnalyzeBatchInput", modelProperties: { ...JobDescriptor.type.modelProperties, - ...JobManifest.type.modelProperties, - analysisInput: { - serializedName: "analysisInput", - type: { - name: "Composite", - className: "MultiLanguageBatchInput" - } - } + ...AnalysisInput.type.modelProperties, + ...JobManifest.type.modelProperties } } }; @@ -2272,12 +2406,7 @@ export const AnalyzeJobMetadata: coreClient.CompositeMapper = { className: "AnalyzeJobMetadata", modelProperties: { ...JobMetadata.type.modelProperties, - displayName: { - serializedName: "displayName", - type: { - name: "String" - } - } + ...AnalyzeJobDisplayName.type.modelProperties } } }; @@ -2288,26 +2417,8 @@ export const HealthcareJobState: coreClient.CompositeMapper = { className: "HealthcareJobState", modelProperties: { ...JobMetadata.type.modelProperties, - ...Pagination.type.modelProperties, - results: { - serializedName: "results", - type: { - name: "Composite", - className: "HealthcareResult" - } - }, - errors: { - serializedName: "errors", - type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "TextAnalyticsError" - } - } - } - } + ...HealthcareTaskResult.type.modelProperties, + ...Pagination.type.modelProperties } } }; @@ -2319,36 +2430,8 @@ export const AnalyzeJobState: coreClient.CompositeMapper = { modelProperties: { ...AnalyzeJobMetadata.type.modelProperties, ...TasksState.type.modelProperties, - ...Pagination.type.modelProperties, - errors: { - serializedName: "errors", - type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "TextAnalyticsError" - } - } - } - }, - statistics: { - serializedName: "statistics", - type: { - name: "Composite", - className: "TextDocumentBatchStatistics" - } - } - } - } -}; - -export const TasksStateTasksDetails: coreClient.CompositeMapper = { - type: { - name: "Composite", - className: "TasksStateTasksDetails", - modelProperties: { - ...TaskState.type.modelProperties + ...AnalyzeJobErrorsAndStatistics.type.modelProperties, + ...Pagination.type.modelProperties } } }; @@ -2359,8 +2442,7 @@ export const TasksStateTasksEntityRecognitionTasksItem: coreClient.CompositeMapp className: "TasksStateTasksEntityRecognitionTasksItem", modelProperties: { ...TaskState.type.modelProperties, - ...Components15Gvwi3SchemasTasksstatePropertiesTasksPropertiesEntityrecognitiontasksItemsAllof1 - .type.modelProperties + ...EntitiesTaskResult.type.modelProperties } } }; @@ -2371,8 +2453,7 @@ export const TasksStateTasksEntityRecognitionPiiTasksItem: coreClient.CompositeM className: "TasksStateTasksEntityRecognitionPiiTasksItem", modelProperties: { ...TaskState.type.modelProperties, - ...Components15X8E9LSchemasTasksstatePropertiesTasksPropertiesEntityrecognitionpiitasksItemsAllof1 - .type.modelProperties + ...PiiTaskResult.type.modelProperties } } }; @@ -2383,8 +2464,7 @@ export const TasksStateTasksKeyPhraseExtractionTasksItem: coreClient.CompositeMa className: "TasksStateTasksKeyPhraseExtractionTasksItem", modelProperties: { ...TaskState.type.modelProperties, - ...Components1D9IzucSchemasTasksstatePropertiesTasksPropertiesKeyphraseextractiontasksItemsAllof1 - .type.modelProperties + ...KeyPhraseTaskResult.type.modelProperties } } }; @@ -2395,8 +2475,7 @@ export const TasksStateTasksEntityLinkingTasksItem: coreClient.CompositeMapper = className: "TasksStateTasksEntityLinkingTasksItem", modelProperties: { ...TaskState.type.modelProperties, - ...ComponentsIfu7BjSchemasTasksstatePropertiesTasksPropertiesEntitylinkingtasksItemsAllof1 - .type.modelProperties + ...EntityLinkingTaskResult.type.modelProperties } } }; @@ -2407,8 +2486,7 @@ export const TasksStateTasksSentimentAnalysisTasksItem: coreClient.CompositeMapp className: "TasksStateTasksSentimentAnalysisTasksItem", modelProperties: { ...TaskState.type.modelProperties, - ...Components1C6O47FSchemasTasksstatePropertiesTasksPropertiesSentimentanalysistasksItemsAllof1 - .type.modelProperties + ...SentimentTaskResult.type.modelProperties } } }; @@ -2418,32 +2496,8 @@ export const HealthcareEntity: coreClient.CompositeMapper = { name: "Composite", className: "HealthcareEntity", modelProperties: { - ...Entity.type.modelProperties, - assertion: { - serializedName: "assertion", - type: { - name: "Composite", - className: "HealthcareAssertion" - } - }, - name: { - serializedName: "name", - type: { - name: "String" - } - }, - links: { - serializedName: "links", - type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "HealthcareEntityLink" - } - } - } - } + ...HealthcareEntityProperties.type.modelProperties, + ...HealthcareLinkingProperties.type.modelProperties } } }; diff --git a/sdk/textanalytics/ai-text-analytics/src/generated/models/parameters.ts b/sdk/textanalytics/ai-text-analytics/src/generated/models/parameters.ts index ae81f09a94a4..c8c33c78f0ab 100644 --- a/sdk/textanalytics/ai-text-analytics/src/generated/models/parameters.ts +++ b/sdk/textanalytics/ai-text-analytics/src/generated/models/parameters.ts @@ -58,6 +58,19 @@ export const endpoint: OperationURLParameter = { skipEncoding: true }; +export const apiVersion: OperationURLParameter = { + parameterPath: "apiVersion", + mapper: { + defaultValue: "v3.1", + isConstant: true, + serializedName: "ApiVersion", + type: { + name: "String" + } + }, + skipEncoding: true +}; + export const jobId: OperationURLParameter = { parameterPath: "jobId", mapper: { diff --git a/sdk/textanalytics/ai-text-analytics/src/index.ts b/sdk/textanalytics/ai-text-analytics/src/index.ts index 3c2c4ac34b06..4dca3f4bc81d 100644 --- a/sdk/textanalytics/ai-text-analytics/src/index.ts +++ b/sdk/textanalytics/ai-text-analytics/src/index.ts @@ -119,6 +119,8 @@ export { TextAnalyticsSuccessResult } from "./textAnalyticsResult"; +export { TextAnalyticsAction } from "./textAnalyticsAction"; + // Models export { DetectedLanguage, @@ -147,5 +149,7 @@ export { Association as EntityAssociation, Certainty as EntityCertainty, Conditionality as EntityConditionality, - RelationType as HealthcareEntityRelationType + RelationType as HealthcareEntityRelationType, + KnownHealthcareEntityCategory, + HealthcareEntityCategory } from "./generated/models"; diff --git a/sdk/textanalytics/ai-text-analytics/src/textAnalyticsAction.ts b/sdk/textanalytics/ai-text-analytics/src/textAnalyticsAction.ts new file mode 100644 index 000000000000..053a353d5b0f --- /dev/null +++ b/sdk/textanalytics/ai-text-analytics/src/textAnalyticsAction.ts @@ -0,0 +1,17 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. + +/** + * The type of a text analytics action. + */ +export interface TextAnalyticsAction { + /** + * The version of the text analytics model used by this operation on this + * batch of input documents. + */ + modelVersion?: string; + /** + * The preferred name for this action. + */ + actionName?: string; +} diff --git a/sdk/textanalytics/ai-text-analytics/src/textAnalyticsClient.ts b/sdk/textanalytics/ai-text-analytics/src/textAnalyticsClient.ts index fe0ff1865d32..898f25e700b4 100644 --- a/sdk/textanalytics/ai-text-analytics/src/textAnalyticsClient.ts +++ b/sdk/textanalytics/ai-text-analytics/src/textAnalyticsClient.ts @@ -74,6 +74,7 @@ import { AnalyzeActionsOperationState } from "./lro/analyze/operation"; import { AnalysisPollOperationState, OperationMetadata } from "./lro/poller"; +import { TextAnalyticsAction } from "./textAnalyticsAction"; export { BeginAnalyzeActionsOptions, @@ -170,7 +171,7 @@ export interface RecognizePiiEntitiesOptions extends TextAnalyticsOperationOptio */ stringIndexType?: StringIndexType; /** - * Specifies the list of Pii categories to return. + * Filters entities to ones only included in the specified array of categories */ categoriesFilter?: PiiCategory[]; } @@ -195,12 +196,7 @@ export interface RecognizeLinkedEntitiesOptions extends TextAnalyticsOperationOp /** * Options for an entities recognition action. */ -export type RecognizeCategorizedEntitiesAction = { - /** - * The version of the text analytics model used by this operation on this - * batch of input documents. - */ - modelVersion?: string; +export interface RecognizeCategorizedEntitiesAction extends TextAnalyticsAction { /** * Specifies the measurement unit used to calculate the offset and length properties. * Possible units are "TextElements_v8", "UnicodeCodePoint", and "Utf16CodeUnit". @@ -213,23 +209,22 @@ export type RecognizeCategorizedEntitiesAction = { * disables input logging and may limit our ability to remediate issues that occur. */ disableServiceLogs?: boolean; -}; +} /** * Options for a Pii entities recognition action. */ -export type RecognizePiiEntitiesAction = { +export interface RecognizePiiEntitiesAction extends TextAnalyticsAction { /** * Filters entities to ones only included in the specified domain (e.g., if * set to 'PHI', entities in the Protected Healthcare Information domain will * only be returned). @see {@link https://aka.ms/tanerpii} for more information. */ - domain?: PiiEntityDomain; + domainFilter?: PiiEntityDomain; /** - * The version of the text analytics model used by this operation on this - * batch of input documents. + * Filters entities to ones only included in the specified array of categories */ - modelVersion?: string; + categoriesFilter?: PiiCategory[]; /** * Specifies the measurement unit used to calculate the offset and length properties. * Possible units are "TextElements_v8", "UnicodeCodePoint", and "Utf16CodeUnit". @@ -242,17 +237,12 @@ export type RecognizePiiEntitiesAction = { * enables input logging. */ disableServiceLogs?: boolean; -}; +} /** * Options for a key phrases recognition action. */ -export interface ExtractKeyPhrasesAction { - /** - * The version of the text analytics model used by this operation on this - * batch of input documents. - */ - modelVersion?: string; +export interface ExtractKeyPhrasesAction extends TextAnalyticsAction { /** * If set to false, you opt-in to have your text input logged for troubleshooting. By default, Text Analytics * will not log your input text for pii entities recognition. Setting this parameter to false, @@ -264,12 +254,7 @@ export interface ExtractKeyPhrasesAction { /** * Options for an entities linking action. */ -export type RecognizeLinkedEntitiesAction = { - /** - * The version of the text analytics model used by this operation on this - * batch of input documents. - */ - modelVersion?: string; +export interface RecognizeLinkedEntitiesAction extends TextAnalyticsAction { /** * Specifies the measurement unit used to calculate the offset and length properties. * Possible units are "TextElements_v8", "UnicodeCodePoint", and "Utf16CodeUnit". @@ -282,17 +267,12 @@ export type RecognizeLinkedEntitiesAction = { * disables input logging and may limit our ability to remediate issues that occur. */ disableServiceLogs?: boolean; -}; +} /** * Options for an analyze sentiment action. */ -export type AnalyzeSentimentAction = { - /** - * The version of the text analytics model used by this operation on this - * batch of input documents. - */ - modelVersion?: string; +export interface AnalyzeSentimentAction extends TextAnalyticsAction { /** * Specifies the measurement unit used to calculate the offset and length properties. * Possible units are "TextElements_v8", "UnicodeCodePoint", and "Utf16CodeUnit". @@ -314,30 +294,30 @@ export type AnalyzeSentimentAction = { * More information about the feature can be found here: {@link https://docs.microsoft.com/azure/cognitive-services/text-analytics/how-tos/text-analytics-how-to-sentiment-analysis?tabs=version-3-1#opinion-mining} */ includeOpinionMining?: boolean; -}; +} /** - * Description of collection of actions for the analyze API to perform on input documents + * Description of collection of actions for the analyze API to perform on input documents. However, currently, the service can accept up to one action only per action type. */ export interface TextAnalyticsActions { /** - * A collection of descriptions of entities recognition actions. + * A collection of descriptions of entities recognition actions. However, currently, the service can accept up to one action only for `recognizeEntities`. */ recognizeEntitiesActions?: RecognizeCategorizedEntitiesAction[]; /** - * A collection of descriptions of Pii entities recognition actions. + * A collection of descriptions of Pii entities recognition actions. However, currently, the service can accept up to one action only for `recognizePiiEntities`. */ recognizePiiEntitiesActions?: RecognizePiiEntitiesAction[]; /** - * A collection of descriptions of key phrases recognition actions. + * A collection of descriptions of key phrases recognition actions. However, currently, the service can accept up to one action only for `extractKeyPhrases`. */ extractKeyPhrasesActions?: ExtractKeyPhrasesAction[]; /** - * A collection of descriptions of entities linking actions. + * A collection of descriptions of entities linking actions. However, currently, the service can accept up to one action only for `recognizeLinkedEntities`. */ recognizeLinkedEntitiesActions?: RecognizeLinkedEntitiesAction[]; /** - * A collection of descriptions of sentiment analysis actions. + * A collection of descriptions of sentiment analysis actions. However, currently, the service can accept up to one action only for `analyzeSentiment`. */ analyzeSentimentActions?: AnalyzeSentimentAction[]; } @@ -1014,6 +994,7 @@ export class TextAnalyticsClient { realInputs = documents; realOptions = (languageOrOptions as BeginAnalyzeActionsOptions) || {}; } + validateActions(actions); const compiledActions = compileAnalyzeInput(actions); const { updateIntervalInMs, resumeFrom, ...restOptions } = realOptions; const poller = new BeginAnalyzeActionsPoller({ @@ -1030,6 +1011,21 @@ export class TextAnalyticsClient { } } +function validateActions(actions: TextAnalyticsActions): void { + function validateActionType(actionList: unknown[] | undefined, actionType: string): void { + if ((actionList?.length ?? 0) > 1) { + throw new Error( + `beginAnalyzeActions: Currently, the service can accept up to one action only for ${actionType} actions.` + ); + } + } + validateActionType(actions.analyzeSentimentActions, `analyzeSentiment`); + validateActionType(actions.extractKeyPhrasesActions, `extractKeyPhrases`); + validateActionType(actions.recognizeEntitiesActions, `recognizeEntities`); + validateActionType(actions.recognizeLinkedEntitiesActions, `recognizeLinkedEntities`); + validateActionType(actions.recognizePiiEntitiesActions, `recognizePiiEntities`); +} + /** * @internal */ diff --git a/sdk/textanalytics/ai-text-analytics/src/util.ts b/sdk/textanalytics/ai-text-analytics/src/util.ts index f58d02e0b947..e2fa656c8143 100644 --- a/sdk/textanalytics/ai-text-analytics/src/util.ts +++ b/sdk/textanalytics/ai-text-analytics/src/util.ts @@ -5,6 +5,7 @@ import { RestError } from "@azure/core-rest-pipeline"; import { URL, URLSearchParams } from "./utils/url"; import { logger } from "./logger"; import { StringIndexType as GeneratedStringIndexType } from "./generated"; +import { TextAnalyticsAction } from "./textAnalyticsAction"; /** * @internal @@ -135,8 +136,11 @@ export function setOpinionMining( /** * @internal */ -export function AddParamsToTask(action: X): { parameters?: X } { - return { parameters: action }; +export function AddParamsToTask( + action: X +): { parameters?: Omit; taskName?: string } { + const { actionName, ...params } = action; + return { parameters: params, taskName: actionName }; } /** diff --git a/sdk/textanalytics/ai-text-analytics/swagger/README.md b/sdk/textanalytics/ai-text-analytics/swagger/README.md index 9b260600713f..9301cc043115 100644 --- a/sdk/textanalytics/ai-text-analytics/swagger/README.md +++ b/sdk/textanalytics/ai-text-analytics/swagger/README.md @@ -12,11 +12,12 @@ generate-metadata: false license-header: MICROSOFT_MIT_NO_VERSION output-folder: ../ source-code-folder-path: ./src/generated -input-file: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/1397ebcd89b83e94c674db1763b5fe97c45e74e3/specification/cognitiveservices/data-plane/TextAnalytics/preview/v3.1-preview.5/TextAnalytics.json +input-file: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/cognitiveservices/data-plane/TextAnalytics/stable/v3.1/TextAnalytics.json add-credentials: false -package-version: 5.1.0-beta.6 +package-version: 5.1.0 v3: true hide-clients: true +typescript: true ``` ## Customizations for Track 2 Generator @@ -194,6 +195,16 @@ directive: delete $["targetRef"]; ``` +### Remove taskName + +```yaml +directive: + - from: swagger-document + where: $.definitions..properties + transform: > + delete $["taskName"]; +``` + ### Rename text input objects to avoid "export as" ```yaml diff --git a/sdk/textanalytics/ai-text-analytics/test/public/apiKey.spec.ts b/sdk/textanalytics/ai-text-analytics/test/public/apiKey.spec.ts deleted file mode 100644 index 17f26c0115ff..000000000000 --- a/sdk/textanalytics/ai-text-analytics/test/public/apiKey.spec.ts +++ /dev/null @@ -1,718 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. - -import { assert, use as chaiUse } from "chai"; -import { Suite, Context } from "mocha"; -import chaiPromises from "chai-as-promised"; -chaiUse(chaiPromises); - -import { isPlaybackMode, Recorder } from "@azure/test-utils-recorder"; - -import { createClient, createRecorder } from "./utils/recordedClient"; -import { TextAnalyticsClient } from "../../src"; -import { assertAllSuccess } from "./utils/resultHelper"; -import { checkEntityTextOffset } from "./utils/stringIndexTypeHelpers"; - -const testDataEn = [ - "I had a wonderful trip to Seattle last week and even visited the Space Needle 2 times!", - "Unfortunately, it rained during my entire trip to Seattle. I didn't even get to visit the Space Needle", - "I went to see a movie on Saturday and it was perfectly average, nothing more or less than I expected.", - "I didn't like the last book I read at all." -]; - -describe("[API Key] TextAnalyticsClient", function(this: Suite) { - let recorder: Recorder; - let client: TextAnalyticsClient; - const CLITimeout = this.timeout(); - const fastTimeout = 10000; - - beforeEach(function(this: Context) { - recorder = createRecorder(this); - client = createClient("APIKey"); - }); - - afterEach(async function() { - await recorder.stop(); - }); - - describe("fast tests", function() { - before(function(this: Context) { - this.timeout(fastTimeout); - }); - - it("#analyzeSentiment", async function() { - const results = await client.analyzeSentiment(testDataEn); - assert.equal(results.length, testDataEn.length); - assertAllSuccess(results); - }); - - it("#detectLanguage", async function() { - const results = await client.detectLanguage(["impossible"], "fr"); - assert.equal(results.length, 1); - assertAllSuccess(results); - }); - - it("#extractKeyPhrases", async function() { - const results = await client.extractKeyPhrases([ - "I had a wonderful trip to Seattle last weekend" - ]); - assert.equal(results.length, 1); - assertAllSuccess(results); - }); - - it("#recognizeEntities", async function() { - const results = await client.recognizeEntities([ - "I had a wonderful trip to Seattle last weekend." - ]); - assert.equal(results.length, 1); - assertAllSuccess(results); - }); - - it("#recognizeLinkedEntities", async function() { - const results = await client.recognizeLinkedEntities(["the Roman god Mars"]); - assert.equal(results.length, 1); - assertAllSuccess(results); - }); - - it("#recognizePiiEntities", async function() { - const results = await client.recognizePiiEntities([ - "Your social-security number is 078-05-1120." - ]); - assert.equal(results.length, 1); - assertAllSuccess(results); - }); - }); - - describe("LROs", function() { - const pollingInterval = isPlaybackMode() ? 0 : 2000; - - before(function(this: Context) { - this.timeout(isPlaybackMode() ? fastTimeout : CLITimeout); - }); - - describe("#health", function() { - it("input strings", async function() { - const poller = await client.beginAnalyzeHealthcareEntities( - [ - "Patient does not suffer from high blood pressure.", - "Prescribed 100mg ibuprofen, taken twice daily." - ], - "en", - { - updateIntervalInMs: pollingInterval - } - ); - const result = await poller.pollUntilDone(); - const doc1 = (await result.next()).value; - if (!doc1.error) { - assert.ok(doc1.id); - assert.ok(doc1.entities); - const doc1Entity1 = doc1.entities[0]; - assert.equal(doc1Entity1.text, "high blood pressure"); - assert.equal(doc1Entity1.assertion?.certainty, "negative"); - } - - const doc2 = (await result.next()).value; - if (!doc2.error) { - assert.ok(doc2.id); - assert.ok(doc2.entities); - const doc2Entity1 = doc2.entities[0]; - assert.equal(doc2Entity1.text, "100mg"); - assert.deepEqual(doc2.entityRelations[0], { - relationType: "DosageOfMedication", - roles: [ - { - entity: doc2.entities[0], - name: "Dosage" - }, - { - entity: doc2.entities[1], - name: "Medication" - } - ] - }); - assert.deepEqual(doc2.entityRelations[1], { - relationType: "FrequencyOfMedication", - roles: [ - { - entity: doc2.entities[1], - name: "Medication" - }, - { - entity: doc2.entities[2], - name: "Frequency" - } - ] - }); - - const doc2Entity2 = doc2.entities[1]; - assert.equal(doc2Entity2.text, "ibuprofen"); - - const doc2Entity3 = doc2.entities[2]; - assert.equal(doc2Entity3.text, "twice daily"); - } - }); - - it("entity assertions", async function() { - const poller = await client.beginAnalyzeHealthcareEntities( - [ - "Baby not likely to have Meningitis. in case of fever in the mother, consider Penicillin for the baby too." - ], - "en", - { - updateIntervalInMs: pollingInterval - } - ); - const result = await poller.pollUntilDone(); - const doc1 = (await result.next()).value; - if (!doc1.error) { - assert.ok(doc1.id); - assert.ok(doc1.entities); - const doc1Entity1 = doc1.entities[0]; - assert.equal(doc1Entity1.text, "Baby"); - assert.equal(doc1Entity1.category, "Age"); - assert.equal(doc1Entity1.normalizedText, "Infant"); - assert.isUndefined(doc1Entity1.assertion?.association); - assert.isUndefined(doc1Entity1.assertion?.conditionality); - - const doc1Entity2 = doc1.entities[1]; - assert.equal(doc1Entity2.text, "Meningitis"); - assert.equal(doc1Entity2.category, "Diagnosis"); - assert.equal(doc1Entity2.assertion?.certainty, "negativePossible"); - assert.equal(doc1Entity2.normalizedText, "Meningitis"); - assert.isUndefined(doc1Entity2.assertion?.association); - assert.isUndefined(doc1Entity2.assertion?.conditionality); - - const doc1Entity3 = doc1.entities[2]; - assert.equal(doc1Entity3.text, "fever"); - assert.equal(doc1Entity3.normalizedText, "Fever"); - assert.equal(doc1Entity3.category, "SymptomOrSign"); - assert.isUndefined(doc1Entity3.assertion?.association); - assert.isUndefined(doc1Entity3.assertion?.conditionality); - - const doc1Entity4 = doc1.entities[3]; - assert.equal(doc1Entity4.text, "mother"); - assert.equal(doc1Entity4.normalizedText, "Mother (person)"); - assert.equal(doc1Entity4.category, "FamilyRelation"); - assert.isUndefined(doc1Entity4.assertion?.association); - assert.isUndefined(doc1Entity4.assertion?.conditionality); - - const doc1Entity5 = doc1.entities[4]; - assert.equal(doc1Entity5.text, "Penicillin"); - assert.equal(doc1Entity5.category, "MedicationName"); - assert.equal(doc1Entity5.normalizedText, "penicillins"); - assert.equal(doc1Entity5.assertion?.certainty, "neutralPossible"); - assert.isUndefined(doc1Entity5.assertion?.association); - assert.isUndefined(doc1Entity5.assertion?.conditionality); - - const doc1Entity6 = doc1.entities[5]; - assert.equal(doc1Entity6.text, "baby"); - assert.equal(doc1Entity6.category, "FamilyRelation"); - assert.equal(doc1Entity6.normalizedText, "Infant"); - assert.isUndefined(doc1Entity6.assertion?.association); - assert.isUndefined(doc1Entity6.assertion?.conditionality); - - assert.isEmpty(doc1.entityRelations); - } - }); - - it("input documents", async function() { - const poller = await client.beginAnalyzeHealthcareEntities( - [ - { id: "1", text: "Patient does not suffer from high blood pressure.", language: "en" }, - { id: "2", text: "Prescribed 100mg ibuprofen, taken twice daily.", language: "en" } - ], - { - updateIntervalInMs: pollingInterval - } - ); - const result = await poller.pollUntilDone(); - for await (const doc of result) { - if (!doc.error) { - assert.ok(doc.id); - assert.ok(doc.entities); - } - } - }); - - it("some inputs with errors", async function() { - const docs = [ - { id: "1", language: "en", text: "" }, - { - id: "2", - language: "english", - text: "Patient does not suffer from high blood pressure." - }, - { id: "3", language: "en", text: "Prescribed 100mg ibuprofen, taken twice daily." } - ]; - - const poller = await client.beginAnalyzeHealthcareEntities(docs, { - updateIntervalInMs: pollingInterval - }); - const result = await poller.pollUntilDone(); - const result1 = (await result.next()).value; - const result2 = (await result.next()).value; - const result3 = (await result.next()).value; - if (!result3.error) { - assert.ok(result3.id); - assert.ok(result3.entities); - } - assert.ok(result1.error); - assert.ok(result2.error); - }); - - it("all inputs with errors", async function() { - const docs = [ - { id: "1", language: "en", text: "" }, - { - id: "2", - language: "english", - text: "Patient does not suffer from high blood pressure." - }, - { id: "3", language: "en", text: "" } - ]; - - const poller = await client.beginAnalyzeHealthcareEntities(docs, { - updateIntervalInMs: pollingInterval - }); - const result = await poller.pollUntilDone(); - const result1 = (await result.next()).value; - const result2 = (await result.next()).value; - const result3 = (await result.next()).value; - assert.ok(result1.error); - assert.ok(result2.error); - assert.ok(result3.error); - }); - - it("too many documents", async function() { - const docs = Array(11).fill("random text"); - try { - const response = await client.beginAnalyzeHealthcareEntities(docs, "en", { - updateIntervalInMs: pollingInterval - }); - console.log(response); - assert.fail("Oops, an exception didn't happen."); - } catch (e) { - assert.equal(e.statusCode, 400); - assert.equal(e.code, "InvalidDocumentBatch"); - assert.equal( - e.message, - "Batch request contains too many records. Max 10 records are permitted." - ); - } - }); - - it("payload too large", async function() { - const large_doc = - "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | \ - CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 \ - Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: \ - CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: \ - The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. \ - The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and \ - 50% left main disease , with a strong family history of coronary artery disease with a brother dying at \ - the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. \ - The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities ,\ - but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions \ - in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's \ - increased symptoms and family history and history left main disease with total occasional of his RCA was referred \ - for revascularization with open heart surgery."; - const docs = Array(500).fill(large_doc); - try { - await client.beginAnalyzeHealthcareEntities(docs, "en", { - updateIntervalInMs: pollingInterval - }); - assert.fail("Oops, an exception didn't happen."); - } catch (e) { - assert.equal(e.statusCode, 413); - assert.equal(e.code, "InvalidDocumentBatch"); - assert.equal( - e.message, - "Request Payload sent is too large to be processed. Limit request size to: 524288" - ); - } - }); - - it("document warnings", async function() { - const docs = [{ id: "1", text: "This won't actually create a warning :'(" }]; - const poller = await client.beginAnalyzeHealthcareEntities(docs, { - updateIntervalInMs: pollingInterval - }); - const result = await poller.pollUntilDone(); - for await (const doc of result) { - if (!doc.error) { - assert.equal(doc.warnings.length, 0); - } - } - }); - - it("output has the same order as input", async function() { - const docs = [ - { id: "1", text: "one" }, - { id: "2", text: "two" }, - { id: "3", text: "three" }, - { id: "4", text: "four" }, - { id: "5", text: "five" } - ]; - const poller = await client.beginAnalyzeHealthcareEntities(docs, { - updateIntervalInMs: pollingInterval - }); - const result = await poller.pollUntilDone(); - let i = 0; - for await (const doc of result) { - assert.equal(parseInt(doc.id), ++i); - } - }); - - it("output has the same order as input with out of order IDs", async function() { - const docs = [ - { id: "56", text: ":)" }, - { id: "0", text: ":(" }, - { id: "22", text: "" }, - { id: "19", text: ":P" }, - { id: "1", text: ":D" } - ]; - const poller = await client.beginAnalyzeHealthcareEntities(docs, { - updateIntervalInMs: pollingInterval - }); - const result = await poller.pollUntilDone(); - const in_order = [56, 0, 22, 19, 1]; - let i = 0; - for await (const doc of result) { - assert.equal(parseInt(doc.id), in_order[i++]); - } - }); - - it("show stats and model version", async function() { - const docs = [ - { id: "56", text: ":)" }, - { id: "0", text: ":(" }, - { id: "22", text: "" }, - { id: "19", text: ":P" }, - { id: "1", text: ":D" } - ]; - const poller = await client.beginAnalyzeHealthcareEntities(docs, { - modelVersion: "latest", - includeStatistics: true, - updateIntervalInMs: pollingInterval - }); - const result = await poller.pollUntilDone(); - assert.ok(result); - assert.ok(result.modelVersion); - assert.equal(result.statistics?.documentCount, 5); - assert.equal(result.statistics?.transactionCount, 4); - assert.equal(result.statistics?.validDocumentCount, 4); - assert.equal(result.statistics?.erroneousDocumentCount, 1); - }); - - it("whole batch language hint", async function() { - const docs = [ - "This was the best day of my life.", - "I did not like the hotel we stayed at. It was too expensive.", - "The restaurant was not as good as I hoped." - ]; - - const poller = await client.beginAnalyzeHealthcareEntities(docs, "en", { - updateIntervalInMs: pollingInterval - }); - const result = await poller.pollUntilDone(); - for await (const doc of result) { - assert.isUndefined(doc.error); - } - }); - - it("whole batch empty language hint", async function() { - const docs = [ - "This was the best day of my life.", - "I did not like the hotel we stayed at. It was too expensive.", - "The restaurant was not as good as I hoped." - ]; - - const poller = await client.beginAnalyzeHealthcareEntities(docs, "", { - updateIntervalInMs: pollingInterval - }); - const result = await poller.pollUntilDone(); - for await (const doc of result) { - assert.isUndefined(doc.error); - } - }); - - it("whole batch empty language hint per doc", async function() { - const docs = [ - { id: "1", language: "", text: "I will go to the park." }, - { id: "2", language: "", text: "I did not like the hotel we stayed at." }, - { id: "3", text: "The restaurant had really good food." } - ]; - - const poller = await client.beginAnalyzeHealthcareEntities(docs, { - updateIntervalInMs: pollingInterval - }); - const result = await poller.pollUntilDone(); - for await (const doc of result) { - assert.isUndefined(doc.error); - } - }); - - it("whole batch with multiple languages", async function() { - const docs = [ - { id: "1", text: "I should take my cat to the veterinarian." }, - { id: "2", text: "Este es un document escrito en Español." }, - { id: "3", text: "猫は幸せ" } - ]; - - const poller = await client.beginAnalyzeHealthcareEntities(docs, { - updateIntervalInMs: pollingInterval - }); - const result = await poller.pollUntilDone(); - for await (const doc of result) { - assert.isUndefined(doc.error); - } - }); - - it("invalid language hint", async function() { - const docs = ["This should fail because we're passing in an invalid language hint"]; - - const poller = await client.beginAnalyzeHealthcareEntities(docs, "notalanguage", { - updateIntervalInMs: pollingInterval - }); - const result = await poller.pollUntilDone(); - const firstResult = (await result.next()).value; - assert.equal(firstResult.error?.code, "UnsupportedLanguageCode"); - }); - - it("invalid language hint in doc", async function() { - const docs = [ - { - id: "1", - language: "notalanguage", - text: "This should fail because we're passing in an invalid language hint" - } - ]; - - const poller = await client.beginAnalyzeHealthcareEntities(docs, { - updateIntervalInMs: pollingInterval - }); - const result = await poller.pollUntilDone(); - const firstResult = (await result.next()).value; - assert.equal(firstResult.error?.code, "UnsupportedLanguageCode"); - }); - - /** - * The service accepts bad model names - */ - it.skip("bad model", async function() { - const docs = [ - { - id: "1", - language: "en", - text: "This should fail because we're passing in an invalid language hint" - } - ]; - - try { - await client.beginAnalyzeHealthcareEntities(docs, { - modelVersion: "bad", - updateIntervalInMs: pollingInterval - }); - assert.fail("Oops, an exception didn't happen."); - } catch (e) { - assert.equal(e.code, "ModelVersionIncorrect"); - } - }); - - it("all documents have errors", async function() { - let text = ""; - for (let i = 0; i < 5121; ++i) { - text = text + "x"; - } - const docs = [ - { id: "1", text: "" }, - { id: "2", language: "english", text: "I did not like the hotel we stayed at." }, - { id: "3", text: text } - ]; - - const poller = await client.beginAnalyzeHealthcareEntities(docs, { - updateIntervalInMs: pollingInterval - }); - const doc_errors = await poller.pollUntilDone(); - assert.equal((await doc_errors.next()).value.error?.code, "InvalidDocument"); - assert.equal((await doc_errors.next()).value.error?.code, "UnsupportedLanguageCode"); - assert.equal((await doc_errors.next()).value.error?.code, "InvalidDocument"); - }); - - it("documents with duplicate IDs", async function() { - const docs = [ - { id: "1", text: "hello world" }, - { id: "1", text: "I did not like the hotel we stayed at." } - ]; - - try { - await client.beginAnalyzeHealthcareEntities(docs, { - updateIntervalInMs: pollingInterval - }); - assert.fail("Oops, an exception didn't happen."); - } catch (e) { - assert.equal(e.code, "InvalidRequest"); - } - }); - - /** - * the service by default returns pages of 20 documents each and this test - * makes sure we get all the results and not just the first page. - * - * EDIT: the service decided to process only 10 documents max per request so - * pagination became unneeded. Once the service raises the limit on - * the number of input documents, we should re-enable these tests. - */ - it.skip("paged results one loop", async function() { - const docs = Array(40).fill("random text"); - docs.push("Prescribed 100mg ibuprofen, taken twice daily."); - const poller = await client.beginAnalyzeHealthcareEntities(docs, { - updateIntervalInMs: pollingInterval - }); - const result = await poller.pollUntilDone(); - let count = 0; - for await (const doc of result) { - assert.isUndefined(doc.error); - ++count; - if (!doc.error) { - if (count === 41) { - assert.equal(doc.entities.length, 3); - } else { - assert.equal(doc.entities.length, 0); - } - } - } - assert.equal(docs.length, count); - }); - - it.skip("paged results nested loop", async function() { - const docs = Array(40).fill("random text"); - docs.push("Prescribed 100mg ibuprofen, taken twice daily."); - const poller = await client.beginAnalyzeHealthcareEntities(docs, { - updateIntervalInMs: pollingInterval - }); - const result = await poller.pollUntilDone(); - let docCount = 0, - pageCount = 0; - for await (const pageDocs of result.byPage()) { - ++pageCount; - for (const doc of pageDocs) { - assert.isUndefined(doc.error); - ++docCount; - if (!doc.error) { - if (docCount === 41) { - assert.equal(doc.entities.length, 3); - } else { - assert.equal(doc.entities.length, 0); - } - } - } - } - assert.equal(docs.length, docCount); - assert.equal(Math.ceil(docs.length / 20), pageCount); - }); - - it.skip("paged results with custom page size", async function() { - const docs = Array(40).fill("random text"); - docs.push("Prescribed 100mg ibuprofen, taken twice daily."); - const poller = await client.beginAnalyzeHealthcareEntities(docs, { - updateIntervalInMs: pollingInterval - }); - const result = await poller.pollUntilDone(); - let docCount = 0; - let pageCount = 0; - const pageSize = 10; - for await (const pageDocs of result.byPage({ maxPageSize: pageSize })) { - ++pageCount; - for (const doc of pageDocs) { - assert.isUndefined(doc.error); - ++docCount; - if (!doc.error) { - if (docCount === 41) { - assert.equal(doc.entities.length, 3); - } else { - assert.equal(doc.entities.length, 0); - } - } - } - } - assert.equal(docs.length, docCount); - assert.equal(Math.ceil(docs.length / pageSize), pageCount); - }); - - it("cancelled", async function() { - const poller = await client.beginAnalyzeHealthcareEntities( - [ - { id: "1", text: "Patient does not suffer from high blood pressure.", language: "en" }, - { id: "2", text: "Prescribed 100mg ibuprofen, taken twice daily.", language: "en" } - ], - { - updateIntervalInMs: pollingInterval - } - ); - if (!poller.isDone()) { - await poller.cancelOperation(); - } - assert.ok(poller.getOperationState().isCancelled); - }); - - it("operation metadata", async function() { - const poller = await client.beginAnalyzeHealthcareEntities( - [ - { id: "1", text: "Patient does not suffer from high blood pressure.", language: "en" }, - { id: "2", text: "Prescribed 100mg ibuprofen, taken twice daily.", language: "en" } - ], - { - updateIntervalInMs: pollingInterval - } - ); - poller.onProgress((state) => { - assert.ok(state.createdOn, "createdOn is undefined!"); - assert.ok(state.expiresOn, "expiresOn is undefined!"); - assert.ok(state.lastModifiedOn, "lastModifiedOn is undefined!"); - assert.ok(state.status, "status is undefined!"); - }); - const result = await poller.pollUntilDone(); - assert.ok(result); - }); - - it("family emoji wit skin tone modifier with Utf16CodeUnit", async function() { - const doc = "👩🏻‍👩🏽‍👧🏾‍👦🏿 ibuprofen"; - const poller = await client.beginAnalyzeHealthcareEntities( - [{ id: "0", text: doc, language: "en" }], - { - updateIntervalInMs: pollingInterval - } - ); - const pollerResult = await poller.pollUntilDone(); - const result = (await pollerResult.next()).value; - if (!result.error) { - const entity = result.entities[0]; - const offset = 20; - const length = 9; - assert.equal(entity.offset, 20); - assert.equal(entity.length, 9); - checkEntityTextOffset(doc, entity, offset, length); - } - }); - - it("family emoji wit skin tone modifier with UnicodeCodePoint", async function() { - const poller = await client.beginAnalyzeHealthcareEntities( - [{ id: "0", text: "👩🏻‍👩🏽‍👧🏾‍👦🏿 ibuprofen", language: "en" }], - { - updateIntervalInMs: pollingInterval, - stringIndexType: "UnicodeCodePoint" - } - ); - const pollerResult = await poller.pollUntilDone(); - const result = (await pollerResult.next()).value; - if (!result.error) { - assert.equal(result.entities[0].offset, 12); // 20 with UTF16 - assert.equal(result.entities[0].length, 9); - assert.equal(result.entities[0].text.length, result.entities[0].length); - } - }); - }); - }); -}); diff --git a/sdk/textanalytics/ai-text-analytics/test/public/pipelineOptions.spec.ts b/sdk/textanalytics/ai-text-analytics/test/public/pipelineOptions.spec.ts index e03da927001a..00025a530f5b 100644 --- a/sdk/textanalytics/ai-text-analytics/test/public/pipelineOptions.spec.ts +++ b/sdk/textanalytics/ai-text-analytics/test/public/pipelineOptions.spec.ts @@ -11,7 +11,7 @@ import { PipelineRequest, PipelineResponse, createHttpHeaders } from "@azure/cor describe("TextAnalyticsClient Custom PipelineOptions", function() { it("use custom HTTPClient", async () => { const pipelineTester = new Promise((resolve) => { - const client = createClient("APIKey", { + const client = createClient("DummyAPIKey", { httpClient: { sendRequest: async (request: PipelineRequest): Promise => ({ status: 200, diff --git a/sdk/textanalytics/ai-text-analytics/test/public/textAnalyticsClient.spec.ts b/sdk/textanalytics/ai-text-analytics/test/public/textAnalyticsClient.spec.ts index 1e333c85424c..19f8708283b0 100644 --- a/sdk/textanalytics/ai-text-analytics/test/public/textAnalyticsClient.spec.ts +++ b/sdk/textanalytics/ai-text-analytics/test/public/textAnalyticsClient.spec.ts @@ -3,12 +3,15 @@ /* eslint-disable @typescript-eslint/no-non-null-asserted-optional-chain */ -import { assert } from "chai"; +import { assert, use as chaiUse } from "chai"; import { Suite, Context } from "mocha"; +import chaiPromises from "chai-as-promised"; +chaiUse(chaiPromises); +import { matrix } from "@azure/test-utils"; import { isPlaybackMode, Recorder } from "@azure/test-utils-recorder"; -import { createClient, createRecorder } from "./utils/recordedClient"; +import { AuthMethod, createClient, createRecorder } from "./utils/recordedClient"; import { TextAnalyticsClient, TextDocumentInput, @@ -35,593 +38,567 @@ const testDataEs = [ "Los caminos que llevan hasta Monte Rainier son espectaculares y hermosos.", "La carretera estaba atascada. Había mucho tráfico el día de ayer." ]; -describe("[AAD] TextAnalyticsClient", function(this: Suite) { - let recorder: Recorder; - let client: TextAnalyticsClient; - const CLITimeout = this.timeout(); - const fastTimeout = 10000; - - let getId: () => string; - - beforeEach(function(this: Context) { - recorder = createRecorder(this); - client = createClient("AAD"); - let nextId = 0; - getId = function() { - nextId += 1; - return nextId.toString(); - }; - }); - - afterEach(async function() { - await recorder.stop(); - }); - describe("fast tests", function() { - before(function(this: Context) { - this.timeout(fastTimeout); +matrix([["AAD", "APIKey"]] as const, async (authMethod: AuthMethod) => { + describe(`[${authMethod}] TextAnalyticsClient`, function(this: Suite) { + let recorder: Recorder; + let client: TextAnalyticsClient; + const CLITimeout = this.timeout(); + const fastTimeout = 10000; + + let getId: () => string; + + beforeEach(function(this: Context) { + recorder = createRecorder(this); + client = createClient(authMethod); + let nextId = 0; + getId = function() { + nextId += 1; + return nextId.toString(); + }; }); - describe("#analyzeSentiment", function() { - it("client throws on empty list", async function() { - return assert.isRejected(client.analyzeSentiment([]), /non-empty array/); - }); - - it("client accepts string[] and language", async function() { - const results = await client.analyzeSentiment(testDataEn, "en"); - assert.equal(results.length, testDataEn.length); - assertAllSuccess(results); - }); - - it("client accepts string[] with no language", async function() { - const results = await client.analyzeSentiment(testDataEn); - assert.equal(results.length, testDataEn.length); - assertAllSuccess(results); - }); + afterEach(async function() { + await recorder.stop(); + }); - it("service returns error for invalid language", async function() { - const [result] = await client.analyzeSentiment(["Hello world!"], "notalanguage"); - if (result.error === undefined) { - assert.fail("Expected an error from the service."); - } - assert.equal(result.error.code, "UnsupportedLanguageCode"); + describe("fast tests", function() { + before(function(this: Context) { + this.timeout(fastTimeout); }); - it("service has a bug when referencing assessments in doc #6 or greater", async function() { - 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 result6 = results[5]; - const result7 = results[6]; - if ( - result1.error === undefined && - result6.error === undefined && - result7.error === undefined - ) { - const Assessment1 = result1.sentences[0].opinions[0].assessments[0]; - const Assessment2 = result6.sentences[0].opinions[0].assessments[0]; - assert.notDeepEqual(Assessment1, Assessment2); - - const listAllAssessments = (acc: string[], sentence: SentenceSentiment): string[] => - acc.concat( - sentence.opinions.reduce( - (assessments: string[], opinion: Opinion) => - assessments.concat( - opinion.assessments.map((assessment: AssessmentSentiment) => assessment.text) - ), - [] - ) - ); - const allAssessments1 = result1.sentences.reduce(listAllAssessments, []); - assert.deepEqual(allAssessments1, ["unacceptable"]); - const allAssessments2 = result6.sentences.reduce(listAllAssessments, []); - assert.deepEqual(allAssessments2, ["nice", "old", "dirty"]); - const allAssessments7 = result7.sentences.reduce(listAllAssessments, []); - assert.deepEqual(allAssessments7, ["smelled"]); - } - }); + describe("#analyzeSentiment", function() { + it("client throws on empty list", async function() { + return assert.isRejected(client.analyzeSentiment([]), /non-empty array/); + }); - it("service returns an error for an empty document", async function() { - const data = [...testDataEn]; - data.splice(1, 0, ""); - const results = await client.analyzeSentiment(data); - const errorResult = results[1]; - if (errorResult.error === undefined) { - assert.fail("Expected an error from the service"); - } - assert.equal( - results.filter((result) => result.error === undefined).length, - testDataEn.length - ); - assert.equal(errorResult.error.code, "InvalidDocument"); - }); + it("client accepts string[] and language", async function() { + const results = await client.analyzeSentiment(testDataEn, "en"); + assert.equal(results.length, testDataEn.length); + assertAllSuccess(results); + }); - it("client accepts TextDocumentInput[]", async function() { - const enInputs = testDataEn.map( - (text): TextDocumentInput => ({ - id: getId(), - language: "en", - text - }) - ); - const esInputs = testDataEs.map( - (text): TextDocumentInput => ({ - id: getId(), - language: "es", - text - }) - ); - const allInputs = enInputs.concat(esInputs); - const results = await client.analyzeSentiment(allInputs); - assert.equal(results.length, testDataEn.length + testDataEs.length); - assertAllSuccess(results); - results.map((result) => - (result as AnalyzeSentimentSuccessResult).sentences.map((sentence) => - assert.isEmpty(sentence.opinions) - ) - ); - }); + it("client accepts string[] with no language", async function() { + const results = await client.analyzeSentiment(testDataEn); + assert.equal(results.length, testDataEn.length); + assertAllSuccess(results); + }); - it("client gets positive mined assessments", async function() { - const documents = [ - { - text: "It has a sleek premium aluminum design that makes it beautiful to look at.", - id: "0", - language: "en" + it("service returns error for invalid language", async function() { + const [result] = await client.analyzeSentiment(["Hello world!"], "notalanguage"); + if (result.error === undefined) { + assert.fail("Expected an error from the service."); } - ]; - const results: AnalyzeSentimentResultArray = await client.analyzeSentiment(documents, { - includeOpinionMining: true - }); - assert.equal(results.length, 1); - assertAllSuccess(results); - const documentSentiment: AnalyzeSentimentSuccessResult = results[0] as AnalyzeSentimentSuccessResult; - documentSentiment.sentences.map((sentence) => - sentence.opinions?.map((opinion) => { - const Target = opinion.target; - assert.equal("design", Target.text); - assert.equal("positive", Target.sentiment); - assert.isAtLeast(Target.confidenceScores.positive, 0); - assert.isAtLeast(Target.confidenceScores.negative, 0); - assert.equal(Target.offset, 32); - assert.equal(Target.length, 6); - assert.equal(Target.text.length, Target.length); - - const sleekAssessment = opinion.assessments[0]; - assert.equal("sleek", sleekAssessment.text); - assert.equal("positive", sleekAssessment.sentiment); - assert.isAtLeast(sleekAssessment.confidenceScores.positive, 0); - assert.isAtLeast(sleekAssessment.confidenceScores.positive, 0); - assert.isFalse(sleekAssessment.isNegated); - assert.equal(sleekAssessment.offset, 9); - assert.equal(sleekAssessment.length, 5); - assert.equal(sleekAssessment.text.length, sleekAssessment.length); - - const premiumAssessment = opinion.assessments[1]; - assert.equal("premium", premiumAssessment.text); - assert.equal("positive", premiumAssessment.sentiment); - assert.isAtLeast(premiumAssessment.confidenceScores.positive, 0); - assert.isAtLeast(premiumAssessment.confidenceScores.positive, 0); - assert.isFalse(premiumAssessment.isNegated); - assert.equal(premiumAssessment.offset, 15); - assert.equal(premiumAssessment.length, 7); - assert.equal(premiumAssessment.text.length, premiumAssessment.length); - }) - ); - }); + assert.equal(result.error.code, "UnsupportedLanguageCode"); + }); - it("client gets negative mined assessments", async function() { - const documents = [ - { - text: "The food and service is not good", - id: "0", - language: "en" + it("service has a bug when referencing assessments in doc #6 or greater", async function() { + 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 result6 = results[5]; + const result7 = results[6]; + if ( + result1.error === undefined && + result6.error === undefined && + result7.error === undefined + ) { + const Assessment1 = result1.sentences[0].opinions[0].assessments[0]; + const Assessment2 = result6.sentences[0].opinions[0].assessments[0]; + assert.notDeepEqual(Assessment1, Assessment2); + + const listAllAssessments = (acc: string[], sentence: SentenceSentiment): string[] => + acc.concat( + sentence.opinions.reduce( + (assessments: string[], opinion: Opinion) => + assessments.concat( + opinion.assessments.map((assessment: AssessmentSentiment) => assessment.text) + ), + [] + ) + ); + const allAssessments1 = result1.sentences.reduce(listAllAssessments, []); + assert.deepEqual(allAssessments1, ["unacceptable"]); + const allAssessments2 = result6.sentences.reduce(listAllAssessments, []); + assert.deepEqual(allAssessments2, ["nice", "old", "dirty"]); + const allAssessments7 = result7.sentences.reduce(listAllAssessments, []); + assert.deepEqual(allAssessments7, ["smelled"]); } - ]; - const results: AnalyzeSentimentResultArray = await client.analyzeSentiment(documents, { - includeOpinionMining: true }); - assert.equal(results.length, 1); - assertAllSuccess(results); - const documentSentiment: AnalyzeSentimentSuccessResult = results[0] as AnalyzeSentimentSuccessResult; - documentSentiment.sentences.map((sentence) => { - const foodTarget = sentence.opinions?.[0].target; - assert.equal("food", foodTarget?.text); - assert.equal("negative", foodTarget?.sentiment); - const foodTargetPositiveScore = foodTarget?.confidenceScores.positive!; - const foodTargetNegativeScore = foodTarget?.confidenceScores.negative!; + it("service returns an error for an empty document", async function() { + const data = [...testDataEn]; + data.splice(1, 0, ""); + const results = await client.analyzeSentiment(data); + const errorResult = results[1]; + if (errorResult.error === undefined) { + assert.fail("Expected an error from the service"); + } + assert.equal( + results.filter((result) => result.error === undefined).length, + testDataEn.length + ); + assert.equal(errorResult.error.code, "InvalidDocument"); + }); - assert.isAtLeast(foodTargetPositiveScore, 0); - assert.isAtLeast(foodTargetNegativeScore, 0); - assert.equal(foodTargetPositiveScore + foodTargetNegativeScore, 1); + it("client accepts TextDocumentInput[]", async function() { + const enInputs = testDataEn.map( + (text): TextDocumentInput => ({ + id: getId(), + language: "en", + text + }) + ); + const esInputs = testDataEs.map( + (text): TextDocumentInput => ({ + id: getId(), + language: "es", + text + }) + ); + const allInputs = enInputs.concat(esInputs); + const results = await client.analyzeSentiment(allInputs); + assert.equal(results.length, testDataEn.length + testDataEs.length); + assertAllSuccess(results); + results.map((result) => + (result as AnalyzeSentimentSuccessResult).sentences.map((sentence) => + assert.isEmpty(sentence.opinions) + ) + ); + }); - const serviceTarget = sentence.opinions?.[1].target; - assert.equal("service", serviceTarget?.text); - assert.equal("negative", serviceTarget?.sentiment); + it("client gets positive mined assessments", async function() { + const documents = [ + { + text: "It has a sleek premium aluminum design that makes it beautiful to look at.", + id: "0", + language: "en" + } + ]; + const results: AnalyzeSentimentResultArray = await client.analyzeSentiment(documents, { + includeOpinionMining: true + }); + assert.equal(results.length, 1); + assertAllSuccess(results); + const documentSentiment: AnalyzeSentimentSuccessResult = results[0] as AnalyzeSentimentSuccessResult; + documentSentiment.sentences.map((sentence) => + sentence.opinions?.map((opinion) => { + const Target = opinion.target; + assert.equal("design", Target.text); + assert.equal("positive", Target.sentiment); + assert.isAtLeast(Target.confidenceScores.positive, 0); + assert.isAtLeast(Target.confidenceScores.negative, 0); + assert.equal(Target.offset, 32); + assert.equal(Target.length, 6); + assert.equal(Target.text.length, Target.length); + + const sleekAssessment = opinion.assessments[0]; + assert.equal("sleek", sleekAssessment.text); + assert.equal("positive", sleekAssessment.sentiment); + assert.isAtLeast(sleekAssessment.confidenceScores.positive, 0); + assert.isAtLeast(sleekAssessment.confidenceScores.positive, 0); + assert.isFalse(sleekAssessment.isNegated); + assert.equal(sleekAssessment.offset, 9); + assert.equal(sleekAssessment.length, 5); + assert.equal(sleekAssessment.text.length, sleekAssessment.length); + + const premiumAssessment = opinion.assessments[1]; + assert.equal("premium", premiumAssessment.text); + assert.equal("positive", premiumAssessment.sentiment); + assert.isAtLeast(premiumAssessment.confidenceScores.positive, 0); + assert.isAtLeast(premiumAssessment.confidenceScores.positive, 0); + assert.isFalse(premiumAssessment.isNegated); + assert.equal(premiumAssessment.offset, 15); + assert.equal(premiumAssessment.length, 7); + assert.equal(premiumAssessment.text.length, premiumAssessment.length); + }) + ); + }); - const serviceTargetPositiveScore = serviceTarget?.confidenceScores.positive!; - const serviceTargetNegativeScore = serviceTarget?.confidenceScores.negative!; + it("client gets negative mined assessments", async function() { + const documents = [ + { + text: "The food and service is not good", + id: "0", + language: "en" + } + ]; + const results: AnalyzeSentimentResultArray = await client.analyzeSentiment(documents, { + includeOpinionMining: true + }); + assert.equal(results.length, 1); + assertAllSuccess(results); + const documentSentiment: AnalyzeSentimentSuccessResult = results[0] as AnalyzeSentimentSuccessResult; + documentSentiment.sentences.map((sentence) => { + const foodTarget = sentence.opinions?.[0].target; + assert.equal("food", foodTarget?.text); + assert.equal("negative", foodTarget?.sentiment); + + const foodTargetPositiveScore = foodTarget?.confidenceScores.positive!; + const foodTargetNegativeScore = foodTarget?.confidenceScores.negative!; + + assert.isAtLeast(foodTargetPositiveScore, 0); + assert.isAtLeast(foodTargetNegativeScore, 0); + assert.equal(foodTargetPositiveScore + foodTargetNegativeScore, 1); + + const serviceTarget = sentence.opinions?.[1].target; + assert.equal("service", serviceTarget?.text); + assert.equal("negative", serviceTarget?.sentiment); + + const serviceTargetPositiveScore = serviceTarget?.confidenceScores.positive!; + const serviceTargetNegativeScore = serviceTarget?.confidenceScores.negative!; + + assert.isAtLeast(serviceTargetPositiveScore, 0); + assert.isAtLeast(serviceTargetNegativeScore, 0); + assert.equal(serviceTargetPositiveScore + serviceTargetNegativeScore, 1); + + const foodAssessment = sentence.opinions?.[0].assessments[0]; + const serviceAssessment = sentence.opinions?.[1].assessments[0]; + + assert.deepEqual(foodAssessment!, serviceAssessment!); + + assert.equal("good", foodAssessment?.text); + assert.equal("negative", foodAssessment?.sentiment); + + const foodAssessmentPositiveScore = foodAssessment?.confidenceScores.positive!; + const foodAssessmentNegativeScore = foodAssessment?.confidenceScores.negative!; + + assert.isAtLeast(foodAssessmentPositiveScore, 0); + assert.isAtLeast(foodAssessmentNegativeScore, 0); + assert.equal(foodAssessmentPositiveScore + foodAssessmentNegativeScore, 1); + assert.isTrue(foodAssessment?.isNegated); + }); + }); - assert.isAtLeast(serviceTargetPositiveScore, 0); - assert.isAtLeast(serviceTargetNegativeScore, 0); - assert.equal(serviceTargetPositiveScore + serviceTargetNegativeScore, 1); + it("client gets no mined assessments", async function() { + const documents = [ + { + text: "today is a hot day", + id: "0", + language: "en" + } + ]; + const results: AnalyzeSentimentResultArray = await client.analyzeSentiment(documents, { + includeOpinionMining: true + }); + assert.equal(results.length, 1); + assertAllSuccess(results); + const documentSentiment: AnalyzeSentimentSuccessResult = results[0] as AnalyzeSentimentSuccessResult; + assert.isEmpty(documentSentiment.sentences[0].opinions); + }); + }); - const foodAssessment = sentence.opinions?.[0].assessments[0]; - const serviceAssessment = sentence.opinions?.[1].assessments[0]; + describe("#detectLanguage", function() { + it("client throws on empty list", async function() { + return assert.isRejected(client.detectLanguage([]), /non-empty array/); + }); - assert.deepEqual(foodAssessment!, serviceAssessment!); + it("client accepts no countryHint", async function() { + const results = await client.detectLanguage(testDataEn); + assert.equal(results.length, testDataEn.length); + assertAllSuccess(results); + }); - assert.equal("good", foodAssessment?.text); - assert.equal("negative", foodAssessment?.sentiment); + it("client accepts a countryHint", async function() { + const results = await client.detectLanguage(["impossible"], "fr"); + assert.equal(results.length, 1); + assertAllSuccess(results); + }); - const foodAssessmentPositiveScore = foodAssessment?.confidenceScores.positive!; - const foodAssessmentNegativeScore = foodAssessment?.confidenceScores.negative!; + it('client accepts "none" country hint with string[] input', async function() { + const results = await client.detectLanguage( + ["I use Azure Functions to develop my service."], + "none" + ); + assert.equal(results.length, 1); + assertAllSuccess(results); + const result = results[0] as DetectLanguageSuccessResult; + assert.equal(result.primaryLanguage.iso6391Name, "en"); + }); - assert.isAtLeast(foodAssessmentPositiveScore, 0); - assert.isAtLeast(foodAssessmentNegativeScore, 0); - assert.equal(foodAssessmentPositiveScore + foodAssessmentNegativeScore, 1); - assert.isTrue(foodAssessment?.isNegated); + it('client accepts "none" country hint with DetectLanguageInput[] input', async function() { + const results = await client.detectLanguage( + testDataEn.concat(testDataEs).map( + (input): DetectLanguageInput => ({ + id: getId(), + countryHint: "none", + text: input + }) + ) + ); + assertAllSuccess(results); }); - }); - it("client gets no mined assessments", async function() { - const documents = [ - { - text: "today is a hot day", - id: "0", - language: "en" + it("service errors on invalid country hint", async function() { + const [result] = await client.detectLanguage(["hello"], "invalidcountry"); + if (result.error === undefined) { + assert.fail("Expected an error from the service"); } - ]; - const results: AnalyzeSentimentResultArray = await client.analyzeSentiment(documents, { - includeOpinionMining: true - }); - assert.equal(results.length, 1); - assertAllSuccess(results); - const documentSentiment: AnalyzeSentimentSuccessResult = results[0] as AnalyzeSentimentSuccessResult; - assert.isEmpty(documentSentiment.sentences[0].opinions); - }); - }); - - describe("#detectLanguage", function() { - it("client throws on empty list", async function() { - return assert.isRejected(client.detectLanguage([]), /non-empty array/); - }); - - it("client accepts no countryHint", async function() { - const results = await client.detectLanguage(testDataEn); - assert.equal(results.length, testDataEn.length); - assertAllSuccess(results); - }); - - it("client accepts a countryHint", async function() { - const results = await client.detectLanguage(["impossible"], "fr"); - assert.equal(results.length, 1); - assertAllSuccess(results); - }); - it('client accepts "none" country hint with string[] input', async function() { - const results = await client.detectLanguage( - ["I use Azure Functions to develop my service."], - "none" - ); - assert.equal(results.length, 1); - assertAllSuccess(results); - const result = results[0] as DetectLanguageSuccessResult; - assert.equal(result.primaryLanguage.iso6391Name, "en"); - }); + assert.equal(result.error.code, "InvalidCountryHint"); + }); - it('client accepts "none" country hint with DetectLanguageInput[] input', async function() { - const results = await client.detectLanguage( - testDataEn.concat(testDataEs).map( - (input): DetectLanguageInput => ({ + it("client accepts mixed-country DetectLanguageInput[]", async function() { + const enInputs = testDataEn.map( + (text): DetectLanguageInput => ({ id: getId(), - countryHint: "none", - text: input + text }) - ) - ); - assertAllSuccess(results); - }); - - it("service errors on invalid country hint", async function() { - const [result] = await client.detectLanguage(["hello"], "invalidcountry"); - if (result.error === undefined) { - assert.fail("Expected an error from the service"); - } + ); + const esInputs = testDataEs.map( + (text): DetectLanguageInput => ({ + id: getId(), + countryHint: "mx", + text + }) + ); + const allInputs = enInputs.concat(esInputs); - assert.equal(result.error.code, "InvalidCountryHint"); + const results = await client.detectLanguage(allInputs); + assert.equal(results.length, testDataEn.length + testDataEs.length); + assertAllSuccess(results); + }); }); - it("client accepts mixed-country DetectLanguageInput[]", async function() { - const enInputs = testDataEn.map( - (text): DetectLanguageInput => ({ - id: getId(), - text - }) - ); - const esInputs = testDataEs.map( - (text): DetectLanguageInput => ({ - id: getId(), - countryHint: "mx", - text - }) - ); - const allInputs = enInputs.concat(esInputs); - - const results = await client.detectLanguage(allInputs); - assert.equal(results.length, testDataEn.length + testDataEs.length); - assertAllSuccess(results); - }); - }); + describe("#recognizeEntities", function() { + it("client throws on empty list", async function() { + return assert.isRejected(client.recognizeEntities([]), /non-empty array/); + }); - describe("#recognizeEntities", function() { - it("client throws on empty list", async function() { - return assert.isRejected(client.recognizeEntities([]), /non-empty array/); - }); + it("client accepts string[] with no language", async function() { + const results = await client.recognizeEntities(testDataEn); + assert.equal(results.length, testDataEn.length); + assertAllSuccess(results); + }); - it("client accepts string[] with no language", async function() { - const results = await client.recognizeEntities(testDataEn); - assert.equal(results.length, testDataEn.length); - assertAllSuccess(results); - }); + it("client accepts string[] with a language specified", async function() { + const results = await client.recognizeEntities(testDataEn, "en"); + assert.equal(results.length, testDataEn.length); + assertAllSuccess(results); + }); - it("client accepts string[] with a language specified", async function() { - const results = await client.recognizeEntities(testDataEn, "en"); - assert.equal(results.length, testDataEn.length); - assertAllSuccess(results); - }); + it("service errors on unsupported language", async function() { + const [result] = await client.recognizeEntities( + ["This is some text, but it doesn't matter."], + "notalanguage" + ); - it("service errors on unsupported language", async function() { - const [result] = await client.recognizeEntities( - ["This is some text, but it doesn't matter."], - "notalanguage" - ); + if (result.error === undefined) { + assert.fail("Expected an error from the service"); + } - if (result.error === undefined) { - assert.fail("Expected an error from the service"); - } + assert.equal(result.error.code, "UnsupportedLanguageCode"); + }); - assert.equal(result.error.code, "UnsupportedLanguageCode"); - }); + it("client accepts mixed-language TextDocumentInput[]", async function() { + const enInputs = testDataEn.slice(0, -1).map( + (text): TextDocumentInput => ({ + id: getId(), + text, + language: "en" + }) + ); + const esInputs = testDataEs.map( + (text): TextDocumentInput => ({ + id: getId(), + text, + language: "es" + }) + ); + const allInputs = enInputs.concat(esInputs); - it("client accepts mixed-language TextDocumentInput[]", async function() { - const enInputs = testDataEn.slice(0, -1).map( - (text): TextDocumentInput => ({ - id: getId(), - text, - language: "en" - }) - ); - const esInputs = testDataEs.map( - (text): TextDocumentInput => ({ - id: getId(), - text, - language: "es" - }) - ); - const allInputs = enInputs.concat(esInputs); - - const results = await client.recognizeEntities(allInputs); - assert.equal(results.length, testDataEn.length - 1 + testDataEs.length); - assertAllSuccess(results); - }); + const results = await client.recognizeEntities(allInputs); + assert.equal(results.length, testDataEn.length - 1 + testDataEs.length); + assertAllSuccess(results); + }); - it("client throws exception for too many inputs", async function() { - const enInputs = testDataEn.map( - (text): TextDocumentInput => ({ - id: getId(), - text, - language: "en" - }) - ); - const esInputs = testDataEs.map( - (text): TextDocumentInput => ({ - id: getId(), - text, - language: "es" - }) - ); - const allInputs = enInputs.concat(esInputs); - - try { - await client.recognizeEntities(allInputs); - assert.fail("Oops, an exception didn't happen."); - } catch (e) { - assert.equal(e.statusCode, 400); - assert.equal(e.code, "InvalidDocumentBatch"); - assert.equal( - e.message, - "Batch request contains too many records. Max 5 records are permitted." + it("client throws exception for too many inputs", async function() { + const enInputs = testDataEn.map( + (text): TextDocumentInput => ({ + id: getId(), + text, + language: "en" + }) + ); + const esInputs = testDataEs.map( + (text): TextDocumentInput => ({ + id: getId(), + text, + language: "es" + }) ); - } + const allInputs = enInputs.concat(esInputs); + + try { + await client.recognizeEntities(allInputs); + assert.fail("Oops, an exception didn't happen."); + } catch (e) { + assert.equal(e.statusCode, 400); + assert.equal(e.code, "InvalidDocumentBatch"); + assert.equal( + e.message, + "Batch request contains too many records. Max 5 records are permitted." + ); + } + }); }); - }); - describe("#extractKeyPhrases", function() { - it("client throws on empty list", async function() { - return assert.isRejected(client.extractKeyPhrases([]), /non-empty array/); - }); + describe("#extractKeyPhrases", function() { + it("client throws on empty list", async function() { + return assert.isRejected(client.extractKeyPhrases([]), /non-empty array/); + }); - it("client accepts string[] with no language", async function() { - const results = await client.extractKeyPhrases(testDataEn); - assert.equal(results.length, testDataEn.length); - assertAllSuccess(results); - }); + it("client accepts string[] with no language", async function() { + const results = await client.extractKeyPhrases(testDataEn); + assert.equal(results.length, testDataEn.length); + assertAllSuccess(results); + }); - it("client accepts string[] with a language specified", async function() { - const results = await client.extractKeyPhrases(testDataEn, "en"); - assert.equal(results.length, testDataEn.length); - assertAllSuccess(results); - }); + it("client accepts string[] with a language specified", async function() { + const results = await client.extractKeyPhrases(testDataEn, "en"); + assert.equal(results.length, testDataEn.length); + assertAllSuccess(results); + }); - it("service errors on unsupported language", async function() { - const [result] = await client.extractKeyPhrases( - ["This is some text, but it doesn't matter."], - "notalanguage" - ); + it("service errors on unsupported language", async function() { + const [result] = await client.extractKeyPhrases( + ["This is some text, but it doesn't matter."], + "notalanguage" + ); - if (result.error === undefined) { - assert.fail("Expected an error from the service"); - } + if (result.error === undefined) { + assert.fail("Expected an error from the service"); + } - assert.equal(result.error.code, "UnsupportedLanguageCode"); - }); + assert.equal(result.error.code, "UnsupportedLanguageCode"); + }); - it("client accepts mixed-language TextDocumentInput[]", async function() { - const enInputs = testDataEn.map( - (text): TextDocumentInput => ({ - id: getId(), - text, - language: "en" - }) - ); - const esInputs = testDataEs.map( - (text): TextDocumentInput => ({ - id: getId(), - text, - language: "es" - }) - ); - const allInputs = enInputs.concat(esInputs); - - const results = await client.extractKeyPhrases(allInputs); - assert.equal(results.length, testDataEn.length + testDataEs.length); - assertAllSuccess(results); - }); - }); + it("client accepts mixed-language TextDocumentInput[]", async function() { + const enInputs = testDataEn.map( + (text): TextDocumentInput => ({ + id: getId(), + text, + language: "en" + }) + ); + const esInputs = testDataEs.map( + (text): TextDocumentInput => ({ + id: getId(), + text, + language: "es" + }) + ); + const allInputs = enInputs.concat(esInputs); - describe("#recognizePiiEntities", function() { - it("client throws on empty list", async function() { - return assert.isRejected(client.recognizePiiEntities([])); + const results = await client.extractKeyPhrases(allInputs); + assert.equal(results.length, testDataEn.length + testDataEs.length); + assertAllSuccess(results); + }); }); - it("client accepts string[] with no language", async function() { - const results = await client.recognizePiiEntities(testDataEn); - assert.equal(results.length, testDataEn.length); - assertAllSuccess(results); - }); + describe("#recognizePiiEntities", function() { + it("client throws on empty list", async function() { + return assert.isRejected(client.recognizePiiEntities([])); + }); - it("client accepts string[] with a language specified", async function() { - const results = await client.recognizePiiEntities(testDataEn, "en"); - assert.equal(results.length, testDataEn.length); - assertAllSuccess(results); - }); + it("client accepts string[] with no language", async function() { + const results = await client.recognizePiiEntities(testDataEn); + assert.equal(results.length, testDataEn.length); + assertAllSuccess(results); + }); - it("client correctly reports recognition of PII-like pattern", async function() { - // 078-05-1120 is an invalid social security number due to its use in advertising - // throughout the late 1930s - const fakeSSNDocument = "Your Social Security Number is 859-98-0987."; - const [result] = await client.recognizePiiEntities([fakeSSNDocument], "en"); - assert.ok(isSuccess(result)); - if (!result.error) { - assert.equal(result.entities.length, 1); - } else { - assert.fail("Service returned an error."); - } - }); + it("client accepts string[] with a language specified", async function() { + const results = await client.recognizePiiEntities(testDataEn, "en"); + assert.equal(results.length, testDataEn.length); + assertAllSuccess(results); + }); - it("service errors on unsupported language", async function() { - const [result] = await client.recognizePiiEntities( - ["This is some text, but it doesn't matter."], - "notalanguage" - ); + it("client correctly reports recognition of PII-like pattern", async function() { + // 078-05-1120 is an invalid social security number due to its use in advertising + // throughout the late 1930s + const fakeSSNDocument = "Your Social Security Number is 859-98-0987."; + const [result] = await client.recognizePiiEntities([fakeSSNDocument], "en"); + assert.ok(isSuccess(result)); + if (!result.error) { + assert.equal(result.entities.length, 1); + } else { + assert.fail("Service returned an error."); + } + }); - if (result.error === undefined) { - assert.fail("Expected an error from the service"); - } + it("service errors on unsupported language", async function() { + const [result] = await client.recognizePiiEntities( + ["This is some text, but it doesn't matter."], + "notalanguage" + ); - assert.equal(result.error.code, "UnsupportedLanguageCode"); - }); + if (result.error === undefined) { + assert.fail("Expected an error from the service"); + } - it("client accepts mixed-language TextDocumentInput[]", async function() { - const sliceSize = 3; - const enInputs = testDataEn.slice(0, sliceSize).map( - (text): TextDocumentInput => ({ - id: getId(), - text, - language: "en" - }) - ); - const esInputs = testDataEs.map( - (text): TextDocumentInput => ({ - id: getId(), - text, - language: "es" - }) - ); - const allInputs = enInputs.concat(esInputs); - - const results = await client.recognizePiiEntities(allInputs); - assert.equal(results.length, sliceSize + testDataEs.length); - // TA NER public preview currently supports only english - assert.ok(results.slice(0, sliceSize).every(isSuccess)); - }); + assert.equal(result.error.code, "UnsupportedLanguageCode"); + }); - it("accepts domain filter", async function() { - const [result] = await client.recognizePiiEntities( - [ - { - id: "0", - text: "I work at Microsoft and my phone number is 333-333-3333", + it("client accepts mixed-language TextDocumentInput[]", async function() { + const sliceSize = 3; + const enInputs = testDataEn.slice(0, sliceSize).map( + (text): TextDocumentInput => ({ + id: getId(), + text, language: "en" - } - ], - { domainFilter: PiiEntityDomain.PROTECTED_HEALTH_INFORMATION } - ); - if (!result.error) { - assert.equal(result.entities.length, 2); - assert.equal(result.entities[0].text, "Microsoft"); - assert.equal(result.entities[0].category, "Organization"); - assert.equal(result.entities[1].text, "333-333-3333"); - assert.equal(result.entities[1].category, "PhoneNumber"); - assert.equal( - result.redactedText, - "I work at ********* and my phone number is ************" + }) ); - } - }); + const esInputs = testDataEs.map( + (text): TextDocumentInput => ({ + id: getId(), + text, + language: "es" + }) + ); + const allInputs = enInputs.concat(esInputs); - it("accepts pii categories", async function() { - const [result] = await client.recognizePiiEntities( - [ - { - id: "0", - text: "Patient name is Joe and SSN is 859-98-0987", - language: "en" - } - ], - { categoriesFilter: ["USSocialSecurityNumber"] } - ); - if (!result.error) { - assert.equal(result.entities.length, 1); - assert.equal(result.entities[0].text, "859-98-0987"); - assert.equal(result.entities[0].category, "USSocialSecurityNumber"); - assert.equal(result.redactedText, "Patient name is Joe and SSN is ***********"); - } - }); + const results = await client.recognizePiiEntities(allInputs); + assert.equal(results.length, sliceSize + testDataEs.length); + // TA NER public preview currently supports only english + assert.ok(results.slice(0, sliceSize).every(isSuccess)); + }); - it("output pii categories are accepted as input", async function() { - const [result1] = await client.recognizePiiEntities([ - { - id: "0", - text: "Patient name is Joe and SSN is 859-98-0987", - language: "en" + it("accepts domain filter", async function() { + const [result] = await client.recognizePiiEntities( + [ + { + id: "0", + text: "I work at Microsoft and my phone number is 333-333-3333", + language: "en" + } + ], + { domainFilter: PiiEntityDomain.PROTECTED_HEALTH_INFORMATION } + ); + if (!result.error) { + assert.equal(result.entities.length, 2); + assert.equal(result.entities[0].text, "Microsoft"); + assert.equal(result.entities[0].category, "Organization"); + assert.equal(result.entities[1].text, "333-333-3333"); + assert.equal(result.entities[1].category, "PhoneNumber"); + assert.equal( + result.redactedText, + "I work at ********* and my phone number is ************" + ); } - ]); - if (!result1.error) { - const entity2 = result1.entities[1]; - const [result2] = await client.recognizePiiEntities( + }); + + it("accepts pii categories", async function() { + const [result] = await client.recognizePiiEntities( [ { id: "0", @@ -629,1134 +606,1834 @@ describe("[AAD] TextAnalyticsClient", function(this: Suite) { language: "en" } ], - { categoriesFilter: [entity2.category] } + { categoriesFilter: ["USSocialSecurityNumber"] } ); - if (!result2.error) { - assert.equal(result2.entities.length, 1); - assert.equal(result2.entities[0].text, entity2.text); - assert.equal(result2.entities[0].category, entity2.category); - assert.equal(result2.redactedText, "Patient name is Joe and SSN is ***********"); + if (!result.error) { + assert.equal(result.entities.length, 1); + assert.equal(result.entities[0].text, "859-98-0987"); + assert.equal(result.entities[0].category, "USSocialSecurityNumber"); + assert.equal(result.redactedText, "Patient name is Joe and SSN is ***********"); } - } - }); - }); - - describe("#recognizeLinkedEntities", function() { - it("client throws on empty list", async function() { - return assert.isRejected(client.recognizeLinkedEntities([]), /non-empty array/); - }); - - it("client accepts string[] with no language", async function() { - const results = await client.recognizeLinkedEntities(testDataEn); - assert.equal(results.length, testDataEn.length); - assertAllSuccess(results); - }); - - it("client accepts string[] with a language specified", async function() { - const results = await client.recognizeLinkedEntities(testDataEn, "en"); - assert.equal(results.length, testDataEn.length); - assertAllSuccess(results); - }); - - it("service errors on unsupported language", async function() { - const [result] = await client.recognizeLinkedEntities( - ["This is some text, but it doesn't matter."], - "notalanguage" - ); - - if (result.error === undefined) { - assert.fail("Expected an error from the service"); - } - - assert.equal(result.error.code, "UnsupportedLanguageCode"); - }); - - it("client accepts mixed-language TextDocumentInput[]", async function() { - const enInputs = testDataEn.slice(0, -1).map( - (text): TextDocumentInput => ({ - id: getId(), - text, - language: "en" - }) - ); - const esInputs = testDataEs.map( - (text): TextDocumentInput => ({ - id: getId(), - text, - language: "es" - }) - ); - const allInputs = enInputs.concat(esInputs); - - const results = await client.recognizeLinkedEntities(allInputs); - assert.equal(results.length, testDataEn.length - 1 + testDataEs.length); - assertAllSuccess(results); - }); + }); - it("client throws exception for too many inputs", async function() { - const enInputs = testDataEn.map( - (text): TextDocumentInput => ({ - id: getId(), - text, - language: "en" - }) - ); - const esInputs = testDataEs.map( - (text): TextDocumentInput => ({ - id: getId(), - text, - language: "es" - }) - ); - const allInputs = enInputs.concat(esInputs); - - try { - await client.recognizeEntities(allInputs); - assert.fail("Oops, an exception didn't happen."); - } catch (e) { - assert.equal(e.statusCode, 400); - assert.equal(e.code, "InvalidDocumentBatch"); - assert.equal( - e.message, - "Batch request contains too many records. Max 5 records are permitted." - ); - } + it("output pii categories are accepted as input", async function() { + const [result1] = await client.recognizePiiEntities([ + { + id: "0", + text: "Patient name is Joe and SSN is 859-98-0987", + language: "en" + } + ]); + if (!result1.error) { + const entity2 = result1.entities[1]; + const [result2] = await client.recognizePiiEntities( + [ + { + id: "0", + text: "Patient name is Joe and SSN is 859-98-0987", + language: "en" + } + ], + { categoriesFilter: [entity2.category] } + ); + if (!result2.error) { + assert.equal(result2.entities.length, 1); + assert.equal(result2.entities[0].text, entity2.text); + assert.equal(result2.entities[0].category, entity2.category); + assert.equal(result2.redactedText, "Patient name is Joe and SSN is ***********"); + } + } + }); }); - }); - describe("#String encoding", function() { - describe("#Default encoding (utf16CodeUnit)", function() { - it("emoji", async function() { - await checkOffsetAndLength( - client, - "👩 SSN: 859-98-0987", - "Utf16CodeUnit", - 8, - 11, - checkEntityTextOffset - ); + describe("#recognizeLinkedEntities", function() { + it("client throws on empty list", async function() { + return assert.isRejected(client.recognizeLinkedEntities([]), /non-empty array/); }); - it("emoji with skin tone modifier", async function() { - await checkOffsetAndLength( - client, - "👩🏻 SSN: 859-98-0987", - "Utf16CodeUnit", - 10, - 11, - checkEntityTextOffset - ); + it("client accepts string[] with no language", async function() { + const results = await client.recognizeLinkedEntities(testDataEn); + assert.equal(results.length, testDataEn.length); + assertAllSuccess(results); }); - it("family emoji", async function() { - await checkOffsetAndLength( - client, - "👩‍👩‍👧‍👧 SSN: 859-98-0987", - "Utf16CodeUnit", - 17, - 11, - checkEntityTextOffset - ); + it("client accepts string[] with a language specified", async function() { + const results = await client.recognizeLinkedEntities(testDataEn, "en"); + assert.equal(results.length, testDataEn.length); + assertAllSuccess(results); }); - it("family emoji wit skin tone modifier", async function() { - await checkOffsetAndLength( - client, - "👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987", - "Utf16CodeUnit", - 25, - 11, - checkEntityTextOffset + it("service errors on unsupported language", async function() { + const [result] = await client.recognizeLinkedEntities( + ["This is some text, but it doesn't matter."], + "notalanguage" ); - }); - it("diacritics nfc", async function() { - await checkOffsetAndLength( - client, - "año SSN: 859-98-0987", - "Utf16CodeUnit", - 9, - 11, - checkEntityTextOffset - ); - }); + if (result.error === undefined) { + assert.fail("Expected an error from the service"); + } - it("diacritics nfd", async function() { - await checkOffsetAndLength( - client, - "año SSN: 859-98-0987", - "Utf16CodeUnit", - 10, - 11, - checkEntityTextOffset - ); + assert.equal(result.error.code, "UnsupportedLanguageCode"); }); - it("korean nfc", async function() { - await checkOffsetAndLength( - client, - "아가 SSN: 859-98-0987", - "Utf16CodeUnit", - 8, - 11, - checkEntityTextOffset + it("client accepts mixed-language TextDocumentInput[]", async function() { + const enInputs = testDataEn.slice(0, -1).map( + (text): TextDocumentInput => ({ + id: getId(), + text, + language: "en" + }) ); - }); - - it("korean nfd", async function() { - await checkOffsetAndLength( - client, - "아가 SSN: 859-98-0987", - "Utf16CodeUnit", - 8, - 11, - checkEntityTextOffset + const esInputs = testDataEs.map( + (text): TextDocumentInput => ({ + id: getId(), + text, + language: "es" + }) ); + const allInputs = enInputs.concat(esInputs); + + const results = await client.recognizeLinkedEntities(allInputs); + assert.equal(results.length, testDataEn.length - 1 + testDataEs.length); + assertAllSuccess(results); }); - it("zalgo", async function() { - await checkOffsetAndLength( - client, - "ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987", - "Utf16CodeUnit", - 121, - 11, - checkEntityTextOffset + it("client throws exception for too many inputs", async function() { + const enInputs = testDataEn.map( + (text): TextDocumentInput => ({ + id: getId(), + text, + language: "en" + }) + ); + const esInputs = testDataEs.map( + (text): TextDocumentInput => ({ + id: getId(), + text, + language: "es" + }) ); + const allInputs = enInputs.concat(esInputs); + + try { + await client.recognizeEntities(allInputs); + assert.fail("Oops, an exception didn't happen."); + } catch (e) { + assert.equal(e.statusCode, 400); + assert.equal(e.code, "InvalidDocumentBatch"); + assert.equal( + e.message, + "Batch request contains too many records. Max 5 records are permitted." + ); + } }); }); - describe("#UnicodeCodePoint", function() { - it("emoji", async function() { - await checkOffsetAndLength(client, "👩 SSN: 859-98-0987", "UnicodeCodePoint", 7, 11); // offset was 8 with UTF16 - }); - - it("emoji with skin tone modifier", async function() { - await checkOffsetAndLength(client, "👩🏻 SSN: 859-98-0987", "UnicodeCodePoint", 8, 11); // offset was 10 with UTF16 - }); - - it("family emoji", async function() { - await checkOffsetAndLength(client, "👩‍👩‍👧‍👧 SSN: 859-98-0987", "UnicodeCodePoint", 13, 11); // offset was 17 with UTF16 - }); - - it("family emoji wit skin tone modifier", async function() { - await checkOffsetAndLength( - client, - "👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987", - "UnicodeCodePoint", - 17, - 11 - ); // offset was 25 with UTF16 - }); - it("diacritics nfc", async function() { - await checkOffsetAndLength(client, "año SSN: 859-98-0987", "UnicodeCodePoint", 9, 11); + describe("#String encoding", function() { + describe("#Default encoding (utf16CodeUnit)", function() { + it("emoji", async function() { + await checkOffsetAndLength( + client, + "👩 SSN: 859-98-0987", + "Utf16CodeUnit", + 8, + 11, + checkEntityTextOffset + ); + }); + + it("emoji with skin tone modifier", async function() { + await checkOffsetAndLength( + client, + "👩🏻 SSN: 859-98-0987", + "Utf16CodeUnit", + 10, + 11, + checkEntityTextOffset + ); + }); + + it("family emoji", async function() { + await checkOffsetAndLength( + client, + "👩‍👩‍👧‍👧 SSN: 859-98-0987", + "Utf16CodeUnit", + 17, + 11, + checkEntityTextOffset + ); + }); + + // it("family emoji wit skin tone modifier", async function(this: Context) { + // await checkOffsetAndLength( + // client, + // "👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987", + // "Utf16CodeUnit", + // 25, + // 11, + // checkEntityTextOffset + // ); + // }); + + it("diacritics nfc", async function() { + await checkOffsetAndLength( + client, + "año SSN: 859-98-0987", + "Utf16CodeUnit", + 9, + 11, + checkEntityTextOffset + ); + }); + + it("diacritics nfd", async function() { + await checkOffsetAndLength( + client, + "año SSN: 859-98-0987", + "Utf16CodeUnit", + 10, + 11, + checkEntityTextOffset + ); + }); + + it("korean nfc", async function() { + await checkOffsetAndLength( + client, + "아가 SSN: 859-98-0987", + "Utf16CodeUnit", + 8, + 11, + checkEntityTextOffset + ); + }); + + it("korean nfd", async function() { + await checkOffsetAndLength( + client, + "아가 SSN: 859-98-0987", + "Utf16CodeUnit", + 8, + 11, + checkEntityTextOffset + ); + }); + + it("zalgo", async function() { + await checkOffsetAndLength( + client, + "ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987", + "Utf16CodeUnit", + 121, + 11, + checkEntityTextOffset + ); + }); }); - - it("diacritics nfd", async function() { - await checkOffsetAndLength(client, "año SSN: 859-98-0987", "UnicodeCodePoint", 10, 11); + describe("#UnicodeCodePoint", function() { + it("emoji", async function() { + await checkOffsetAndLength(client, "👩 SSN: 859-98-0987", "UnicodeCodePoint", 7, 11); // offset was 8 with UTF16 + }); + + it("emoji with skin tone modifier", async function() { + await checkOffsetAndLength(client, "👩🏻 SSN: 859-98-0987", "UnicodeCodePoint", 8, 11); // offset was 10 with UTF16 + }); + + it("family emoji", async function() { + await checkOffsetAndLength(client, "👩‍👩‍👧‍👧 SSN: 859-98-0987", "UnicodeCodePoint", 13, 11); // offset was 17 with UTF16 + }); + + // it("family emoji wit skin tone modifier", async function() { + // await checkOffsetAndLength( + // client, + // "👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987", + // "UnicodeCodePoint", + // 17, + // 11 + // ); // offset was 25 with UTF16 + // }); + + it("diacritics nfc", async function() { + await checkOffsetAndLength(client, "año SSN: 859-98-0987", "UnicodeCodePoint", 9, 11); + }); + + it("diacritics nfd", async function() { + await checkOffsetAndLength(client, "año SSN: 859-98-0987", "UnicodeCodePoint", 10, 11); + }); + + it("korean nfc", async function() { + await checkOffsetAndLength(client, "아가 SSN: 859-98-0987", "UnicodeCodePoint", 8, 11); + }); + + it("korean nfd", async function() { + await checkOffsetAndLength(client, "아가 SSN: 859-98-0987", "UnicodeCodePoint", 8, 11); + }); + + it("zalgo", async function() { + await checkOffsetAndLength(client, "ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987", "UnicodeCodePoint", 121, 11); + }); }); - - it("korean nfc", async function() { - await checkOffsetAndLength(client, "아가 SSN: 859-98-0987", "UnicodeCodePoint", 8, 11); + describe("#TextElement_v8", function() { + it("emoji", async function() { + await checkOffsetAndLength(client, "👩 SSN: 859-98-0987", "TextElement_v8", 7, 11); // offset was 8 with UTF16 + }); + + it("emoji with skin tone modifier", async function() { + await checkOffsetAndLength(client, "👩🏻 SSN: 859-98-0987", "TextElement_v8", 8, 11); // offset was 10 with UTF16 + }); + + it("family emoji", async function() { + await checkOffsetAndLength(client, "👩‍👩‍👧‍👧 SSN: 859-98-0987", "TextElement_v8", 13, 11); // offset was 17 with UTF16 + }); + + // it("family emoji wit skin tone modifier", async function() { + // await checkOffsetAndLength( + // client, + // "👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987", + // "TextElement_v8", + // 17, + // 11 + // ); // offset was 25 with UTF16 + // }); + + it("diacritics nfc", async function() { + await checkOffsetAndLength(client, "año SSN: 859-98-0987", "TextElement_v8", 9, 11); + }); + + it("diacritics nfd", async function() { + await checkOffsetAndLength(client, "año SSN: 859-98-0987", "TextElement_v8", 9, 11); // offset was 10 with UTF16 + }); + + it("korean nfc", async function() { + await checkOffsetAndLength(client, "아가 SSN: 859-98-0987", "TextElement_v8", 8, 11); + }); + + it("korean nfd", async function() { + await checkOffsetAndLength(client, "아가 SSN: 859-98-0987", "TextElement_v8", 8, 11); + }); + + it("zalgo", async function() { + await checkOffsetAndLength(client, "ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987", "TextElement_v8", 9, 11); // offset was 121 with UTF16 + }); }); + }); + }); - it("korean nfd", async function() { - await checkOffsetAndLength(client, "아가 SSN: 859-98-0987", "UnicodeCodePoint", 8, 11); - }); + describe("LROs", function() { + const pollingInterval = isPlaybackMode() ? 0 : 2000; - it("zalgo", async function() { - await checkOffsetAndLength(client, "ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987", "UnicodeCodePoint", 121, 11); - }); + before(function(this: Context) { + this.timeout(isPlaybackMode() ? fastTimeout : CLITimeout); }); - describe("#TextElement_v8", function() { - it("emoji", async function() { - await checkOffsetAndLength(client, "👩 SSN: 859-98-0987", "TextElement_v8", 7, 11); // offset was 8 with UTF16 - }); - it("emoji with skin tone modifier", async function() { - await checkOffsetAndLength(client, "👩🏻 SSN: 859-98-0987", "TextElement_v8", 8, 11); // offset was 10 with UTF16 - }); + describe("#analyze", function() { + it("single entity recognition action", async function() { + const docs = [ + { id: "1", language: "en", text: "Microsoft was founded by Bill Gates and Paul Allen" }, + { id: "2", language: "es", text: "Microsoft fue fundado por Bill Gates y Paul Allen" } + ]; - it("family emoji", async function() { - await checkOffsetAndLength(client, "👩‍👩‍👧‍👧 SSN: 859-98-0987", "TextElement_v8", 13, 11); // offset was 17 with UTF16 + const poller = await client.beginAnalyzeActions( + docs, + { + recognizeEntitiesActions: [{ modelVersion: "latest" }] + }, + { + updateIntervalInMs: pollingInterval + } + ); + const results = await poller.pollUntilDone(); + for await (const page of results) { + const entitiesResult = page.recognizeEntitiesResults; + if (entitiesResult.length === 1) { + const action = entitiesResult[0]; + if (!action.error) { + for (const result of action.results) { + if (!result.error) { + assert.ok(result.id); + assert.ok(result.entities); + } else { + assert.fail("did not expect document errors but got one."); + } + } + } + } else { + assert.fail("expected an array of entities results but did not get one."); + } + } }); - it("family emoji wit skin tone modifier", async function() { - await checkOffsetAndLength( - client, - "👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987", - "TextElement_v8", - 17, - 11 - ); // offset was 25 with UTF16 + it("single key phrases action", async function() { + const docs = [ + { id: "1", language: "en", text: "Microsoft was founded by Bill Gates and Paul Allen" }, + { id: "2", language: "es", text: "Microsoft fue fundado por Bill Gates y Paul Allen" } + ]; + + const poller = await client.beginAnalyzeActions( + docs, + { + extractKeyPhrasesActions: [{ modelVersion: "latest" }] + }, + { + updateIntervalInMs: pollingInterval + } + ); + const results = await poller.pollUntilDone(); + for await (const page of results) { + const keyPhrasesResult = page.extractKeyPhrasesResults; + if (keyPhrasesResult.length === 1) { + const action = keyPhrasesResult[0]; + if (!action.error) { + assert.equal(action.results.length, 2); + for (const result of action.results) { + if (!result.error) { + assert.include(result.keyPhrases, "Paul Allen"); + assert.include(result.keyPhrases, "Bill Gates"); + assert.include(result.keyPhrases, "Microsoft"); + assert.ok(result.id); + } + } + } + } else { + assert.fail("expected an array of key phrases results but did not get one."); + } + } }); - it("diacritics nfc", async function() { - await checkOffsetAndLength(client, "año SSN: 859-98-0987", "TextElement_v8", 9, 11); + it("single entities recognition action", async function() { + const docs = [ + { + id: "1", + text: "Microsoft was founded by Bill Gates and Paul Allen on April 4, 1975.", + language: "en" + }, + { + id: "2", + text: "Microsoft fue fundado por Bill Gates y Paul Allen el 4 de abril de 1975.", + language: "es" + }, + { + id: "3", + text: "Microsoft wurde am 4. April 1975 von Bill Gates und Paul Allen gegründet.", + language: "de" + } + ]; + + const poller = await client.beginAnalyzeActions( + docs, + { + recognizeEntitiesActions: [{ modelVersion: "latest" }] + }, + { + updateIntervalInMs: pollingInterval + } + ); + const result = await poller.pollUntilDone(); + for await (const page of result) { + const entitiesResult = page.recognizeEntitiesResults; + if (entitiesResult.length === 1) { + const action = entitiesResult[0]; + if (!action.error) { + assert.equal(action.results.length, 3); + for (const doc of action.results) { + if (!doc.error) { + assert.equal(doc.entities.length, 4); + for (const entity of doc.entities) { + assert.isDefined(entity.text); + assert.isDefined(entity.category); + assert.isDefined(entity.offset); + assert.isDefined(entity.confidenceScore); + } + } + } + } + } else { + assert.fail("expected an array of entities results but did not get one."); + } + } }); - it("diacritics nfd", async function() { - await checkOffsetAndLength(client, "año SSN: 859-98-0987", "TextElement_v8", 9, 11); // offset was 10 with UTF16 + it("single entities linking action", async function() { + const docs = [ + "Microsoft moved its headquarters to Bellevue, Washington in January 1979.", + "Steve Ballmer stepped down as CEO of Microsoft and was succeeded by Satya Nadella." + ]; + + const poller = await client.beginAnalyzeActions( + docs, + { + recognizeLinkedEntitiesActions: [{}] + }, + "en", + { + updateIntervalInMs: pollingInterval + } + ); + const result = await poller.pollUntilDone(); + for await (const page of result) { + const entitiesResult = page.recognizeLinkedEntitiesResults; + if (entitiesResult.length === 1) { + const action = entitiesResult[0]; + if (!action.error) { + assert.equal(action.results.length, 2); + for (const doc of action.results) { + if (!doc.error) { + assert.notEqual(doc.entities.length, 0); + for (const entity of doc.entities) { + assert.isDefined(entity.name); + assert.isDefined(entity.url); + assert.isDefined(entity.dataSource); + assert.isDefined(entity.dataSourceEntityId); + } + } + } + } + } else { + assert.fail("expected an array of entity linking results but did not get one."); + } + } }); - it("korean nfc", async function() { - await checkOffsetAndLength(client, "아가 SSN: 859-98-0987", "TextElement_v8", 8, 11); + it("single pii entities recognition action", async function() { + const docs = [ + { id: "1", text: "My SSN is 859-98-0987." }, + { + id: "2", + text: + "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check." + }, + { id: "3", text: "Is 998.214.865-68 your Brazilian CPF number?" } + ]; + + const poller = await client.beginAnalyzeActions( + docs, + { + recognizePiiEntitiesActions: [{ modelVersion: "latest" }] + }, + { + updateIntervalInMs: pollingInterval + } + ); + const result = await poller.pollUntilDone(); + for await (const page of result) { + const entitiesResult = page.recognizePiiEntitiesResults; + if (entitiesResult.length === 1) { + const action = entitiesResult[0]; + if (!action.error) { + const actionResults = action.results; + assert.equal(actionResults.length, 3); + const doc1 = actionResults[0]; + const doc2 = actionResults[1]; + // const doc3 = actionResults[2]; + if (!doc1.error) { + assert.equal(doc1.entities[0].text, "859-98-0987"); + assert.equal(doc1.entities[0].category, "USSocialSecurityNumber"); + } + if (!doc2.error) { + assert.equal(doc2.entities[0].text, "111000025"); + assert.equal(doc2.entities[1].category, "ABARoutingNumber"); + } + // the service is not able to detect the brazil cpf number + // if (!doc3.error) { + // assert.equal(doc3.entities[0].text, "998.214.865-68"); + // assert.equal(doc3.entities[0].category, "Brazil CPF Number"); + // } + for (const doc of actionResults) { + if (!doc.error) { + for (const entity of doc.entities) { + assert.isDefined(entity.text); + assert.isDefined(entity.category); + assert.isDefined(entity.offset); + assert.isDefined(entity.confidenceScore); + } + } + } + } + } else { + assert.fail("expected an array of pii entities results but did not get one."); + } + } }); - it("korean nfd", async function() { - await checkOffsetAndLength(client, "아가 SSN: 859-98-0987", "TextElement_v8", 8, 11); + it("single sentiment analysis action", async function() { + const docs = [ + "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 poller = await client.beginAnalyzeActions( + docs, + { + analyzeSentimentActions: [{ includeOpinionMining: true }] + }, + "en", + { + updateIntervalInMs: pollingInterval + } + ); + const result = await poller.pollUntilDone(); + for await (const page of result) { + const entitiesResult = page.analyzeSentimentResults; + if (entitiesResult.length === 1) { + const action = entitiesResult[0]; + if (!action.error) { + const actionResults = action.results; + assert.equal(actionResults.length, 7); + const result1 = actionResults[0]; + const result6 = actionResults[5]; + const result7 = actionResults[6]; + if ( + result1.error === undefined && + result6.error === undefined && + result7.error === undefined + ) { + const Assessment1 = result1.sentences[0].opinions[0].assessments[0]; + const Assessment2 = result6.sentences[0].opinions[0].assessments[0]; + assert.notDeepEqual(Assessment1, Assessment2); + + const listAllAssessments = ( + acc: string[], + sentence: SentenceSentiment + ): string[] => + acc.concat( + sentence.opinions.reduce( + (assessments: string[], opinion: Opinion) => + assessments.concat( + opinion.assessments.map( + (assessment: AssessmentSentiment) => assessment.text + ) + ), + [] + ) + ); + const allAssessments1 = result1.sentences.reduce(listAllAssessments, []); + assert.deepEqual(allAssessments1, ["unacceptable"]); + const allAssessments2 = result6.sentences.reduce(listAllAssessments, []); + assert.deepEqual(allAssessments2, ["nice", "old", "dirty"]); + const allAssessments7 = result7.sentences.reduce(listAllAssessments, []); + assert.deepEqual(allAssessments7, ["smelled"]); + } + } + } + } }); - it("zalgo", async function() { - await checkOffsetAndLength(client, "ơ̵̧̧̢̳̘̘͕͔͕̭̟̙͎͈̞͔̈̇̒̃͋̇̅͛̋͛̎́͑̄̐̂̎͗͝m̵͍͉̗̄̏͌̂̑̽̕͝͠g̵̢̡̢̡̨̡̧̛͉̞̯̠̤̣͕̟̫̫̼̰͓̦͖̣̣͎̋͒̈́̓̒̈̍̌̓̅͑̒̓̅̅͒̿̏́͗̀̇͛̏̀̈́̀̊̾̀̔͜͠͝ͅ SSN: 859-98-0987", "TextElement_v8", 9, 11); // offset was 121 with UTF16 + it("bad request empty string", async function() { + const docs = [""]; + try { + const poller = await client.beginAnalyzeActions( + docs, + { + recognizePiiEntitiesActions: [{ modelVersion: "latest" }] + }, + "en", + { + updateIntervalInMs: pollingInterval + } + ); + await poller.pollUntilDone(); + } catch (e) { + assert.equal(e.statusCode, 400); + } }); - }); - }); - }); - describe("LROs", function() { - const pollingInterval = isPlaybackMode() ? 0 : 2000; + it("some documents with errors and multiple actions", async function() { + const docs = [ + { id: "1", language: "", text: "" }, + { + id: "2", + language: "english", + text: "I did not like the hotel we stayed at. It was too expensive." + }, + { + id: "3", + language: "en", + text: "The restaurant had really good food. I recommend you try it." + } + ]; - before(function(this: Context) { - this.timeout(isPlaybackMode() ? fastTimeout : CLITimeout); - }); + const poller = await client.beginAnalyzeActions( + docs, + { + recognizeEntitiesActions: [{ modelVersion: "latest" }], + recognizePiiEntitiesActions: [{ modelVersion: "latest" }], + extractKeyPhrasesActions: [{ modelVersion: "latest" }] + }, + { + updateIntervalInMs: pollingInterval + } + ); + const result = await poller.pollUntilDone(); + for await (const page of result) { + const entitiesResult = page.recognizeEntitiesResults; + if (entitiesResult.length === 1) { + const entitiesDocs = entitiesResult[0]; + if (!entitiesDocs.error) { + const entitiesDocsResults = entitiesDocs.results; + assert.equal(entitiesDocsResults.length, 3); + assert.isDefined(entitiesDocsResults[0].error); + assert.isDefined(entitiesDocsResults[1].error); + assert.isUndefined(entitiesDocsResults[2].error); + } + } else { + assert.fail("expected an array of entities results but did not get one."); + } - describe("#analyze", function() { - it("single entity recognition action", async function() { - const docs = [ - { id: "1", language: "en", text: "Microsoft was founded by Bill Gates and Paul Allen" }, - { id: "2", language: "es", text: "Microsoft fue fundado por Bill Gates y Paul Allen" } - ]; - - const poller = await client.beginAnalyzeActions( - docs, - { - recognizeEntitiesActions: [{ modelVersion: "latest" }] - }, - { - updateIntervalInMs: pollingInterval + const piiEntitiesResult = page.recognizePiiEntitiesResults; + if (piiEntitiesResult.length === 1) { + const piiEntitiesDocs = piiEntitiesResult[0]; + if (!piiEntitiesDocs.error) { + const piiEntitiesDocsResults = piiEntitiesDocs.results; + assert.equal(piiEntitiesDocsResults.length, 3); + assert.isDefined(piiEntitiesDocsResults[0].error); + assert.isDefined(piiEntitiesDocsResults[1].error); + assert.isUndefined(piiEntitiesDocsResults[2].error); + } + } else { + assert.fail("expected an array of pii entities results but did not get one."); + } + + const keyPhrasesResult = page.extractKeyPhrasesResults; + if (keyPhrasesResult.length === 1) { + const keyPhrasesDocs = keyPhrasesResult[0]; + if (!keyPhrasesDocs.error) { + const keyPhrasesDocsResults = keyPhrasesDocs.results; + assert.equal(keyPhrasesDocsResults.length, 3); + assert.isDefined(keyPhrasesDocsResults[0].error); + assert.isDefined(keyPhrasesDocsResults[1].error); + assert.isUndefined(keyPhrasesDocsResults[2].error); + } + } else { + assert.fail("expected an array of key phrases results but did not get one."); + } } - ); - const results = await poller.pollUntilDone(); - for await (const page of results) { - const entitiesResult = page.recognizeEntitiesResults; - if (entitiesResult.length === 1) { - const action = entitiesResult[0]; - if (!action.error) { - for (const result of action.results) { - if (!result.error) { - assert.ok(result.id); - assert.ok(result.entities); - } else { - assert.fail("did not expect document errors but got one."); + }); + + it("all documents with errors and multiple actions", async function() { + const docs = [ + { id: "1", language: "", text: "" }, + { + id: "2", + language: "english", + text: "I did not like the hotel we stayed at. It was too expensive." + }, + { + id: "3", + language: "en", + text: "" + } + ]; + + const poller = await client.beginAnalyzeActions( + docs, + { + recognizeEntitiesActions: [{ modelVersion: "latest" }], + recognizePiiEntitiesActions: [{ modelVersion: "latest" }], + extractKeyPhrasesActions: [{ modelVersion: "latest" }] + }, + { + updateIntervalInMs: pollingInterval + } + ); + const result = await poller.pollUntilDone(); + for await (const page of result) { + const entitiesResult = page.recognizeEntitiesResults; + if (entitiesResult.length === 1) { + const entitiesDocs = entitiesResult[0]; + if (!entitiesDocs.error) { + const entitiesDocsResults = entitiesDocs.results; + assert.equal(entitiesDocsResults.length, 3); + assert.isDefined(entitiesDocsResults[0].error); + assert.isDefined(entitiesDocsResults[1].error); + assert.isDefined(entitiesDocsResults[2].error); + } + } else { + assert.fail("expected an array of entities results but did not get one."); + } + + const piiEntitiesResult = page.recognizePiiEntitiesResults; + if (piiEntitiesResult.length === 1) { + const piiEntitiesDocs = piiEntitiesResult[0]; + if (!piiEntitiesDocs.error) { + const piiEntitiesDocsResults = piiEntitiesDocs.results; + assert.equal(piiEntitiesDocsResults.length, 3); + assert.isDefined(piiEntitiesDocsResults[0].error); + assert.isDefined(piiEntitiesDocsResults[1].error); + assert.isDefined(piiEntitiesDocsResults[2].error); + } + } else { + assert.fail("expected an array of pii entities results but did not get one."); + } + + const keyPhrasesResult = page.extractKeyPhrasesResults; + if (keyPhrasesResult && keyPhrasesResult.length === 1) { + const keyPhrasesDocs = keyPhrasesResult[0]; + if (!keyPhrasesDocs.error) { + const keyPhrasesDocsResults = keyPhrasesDocs.results; + assert.equal(keyPhrasesDocsResults.length, 3); + assert.isDefined(keyPhrasesDocsResults[0].error); + assert.isDefined(keyPhrasesDocsResults[1].error); + assert.isDefined(keyPhrasesDocsResults[2].error); + } + } else { + assert.fail("expected an array of key phrases results but did not get one."); + } + } + }); + + it("output order is same as the input's one with multiple actions", async function() { + const docs = [ + { id: "1", text: "one" }, + { id: "2", text: "two" }, + { id: "3", text: "three" }, + { id: "4", text: "four" }, + { id: "5", text: "five" } + ]; + + const poller = await client.beginAnalyzeActions( + docs, + { + recognizeEntitiesActions: [{ modelVersion: "latest" }], + recognizePiiEntitiesActions: [{ modelVersion: "latest" }], + extractKeyPhrasesActions: [{ modelVersion: "latest" }] + }, + { + updateIntervalInMs: pollingInterval + } + ); + const result = await poller.pollUntilDone(); + for await (const page of result) { + const entitiesResult = page.recognizeEntitiesResults; + if (entitiesResult.length === 1) { + const entitiesDocs = entitiesResult[0]; + if (!entitiesDocs.error) { + assert.equal(entitiesDocs.results.length, 5); + let i = 1; + for (const doc of entitiesDocs.results) { + assert.equal(parseInt(doc.id), i++); } } + } else { + assert.fail("expected an array of entities results but did not get one."); + } + + const piiEntitiesResult = page.recognizePiiEntitiesResults; + if (piiEntitiesResult.length === 1) { + const piiEntitiesDocs = piiEntitiesResult[0]; + if (!piiEntitiesDocs.error) { + assert.equal(piiEntitiesDocs.results.length, 5); + let i = 1; + for (const doc of piiEntitiesDocs.results) { + assert.equal(parseInt(doc.id), i++); + } + } + } else { + assert.fail("expected an array of pii entities results but did not get one."); + } + + const keyPhrasesResult = page.extractKeyPhrasesResults; + if (keyPhrasesResult.length === 1) { + const keyPhrasesDocs = keyPhrasesResult[0]; + if (!keyPhrasesDocs.error) { + assert.equal(keyPhrasesDocs.results.length, 5); + let i = 1; + for (const doc of keyPhrasesDocs.results) { + assert.equal(parseInt(doc.id), i++); + } + } + } else { + assert.fail("expected an array of key phrases results but did not get one."); } - } else { - assert.fail("expected an array of entities results but did not get one."); } - } - }); + }); - it("single key phrases action", async function() { - const docs = [ - { id: "1", language: "en", text: "Microsoft was founded by Bill Gates and Paul Allen" }, - { id: "2", language: "es", text: "Microsoft fue fundado por Bill Gates y Paul Allen" } - ]; - - const poller = await client.beginAnalyzeActions( - docs, - { - extractKeyPhrasesActions: [{ modelVersion: "latest" }] - }, - { - updateIntervalInMs: pollingInterval + it("out of order input IDs with multiple actions", async function() { + const docs = [ + { id: "56", text: ":)" }, + { id: "0", text: ":(" }, + { id: "22", text: "w" }, + { id: "19", text: ":P" }, + { id: "1", text: ":D" } + ]; + + const poller = await client.beginAnalyzeActions( + docs, + { + recognizeEntitiesActions: [{ modelVersion: "latest" }], + recognizePiiEntitiesActions: [{ modelVersion: "latest" }], + extractKeyPhrasesActions: [{ modelVersion: "latest" }] + }, + { + updateIntervalInMs: pollingInterval + } + ); + const result = await poller.pollUntilDone(); + const in_order = ["56", "0", "22", "19", "1"]; + for await (const page of result) { + const entitiesResult = page.recognizeEntitiesResults; + if (entitiesResult.length === 1) { + const entitiesDocs = entitiesResult[0]; + if (!entitiesDocs.error) { + assert.equal(entitiesDocs.results.length, 5); + let i = 0; + for (const doc of entitiesDocs.results) { + assert.equal(doc.id, in_order[i++]); + } + } + } else { + assert.fail("expected an array of entities results but did not get one."); + } + + const piiEntitiesResult = page.recognizePiiEntitiesResults; + if (piiEntitiesResult.length === 1) { + const piiEntitiesDocs = piiEntitiesResult[0]; + if (!piiEntitiesDocs.error) { + assert.equal(piiEntitiesDocs.results.length, 5); + let i = 0; + for (const doc of piiEntitiesDocs.results) { + assert.equal(doc.id, in_order[i++]); + } + } + } else { + assert.fail("expected an array of pii entities results but did not get one."); + } + + const keyPhrasesResult = page.extractKeyPhrasesResults; + if (keyPhrasesResult.length === 1) { + const keyPhrasesDocs = keyPhrasesResult[0]; + if (!keyPhrasesDocs.error) { + assert.equal(keyPhrasesDocs.results.length, 5); + let i = 0; + for (const doc of keyPhrasesDocs.results) { + assert.equal(doc.id, in_order[i++]); + } + } + } else { + assert.fail("expected an array of key phrases results but did not get one."); + } + } + }); + + // the service's statistics says the number of documents is 6 instead of 5. + it.skip("statistics", async function() { + const docs = [ + { id: "56", text: ":)" }, + { id: "0", text: ":(" }, + { id: "22", text: "" }, + { id: "19", text: ":P" }, + { id: "1", text: ":D" } + ]; + + const poller = await client.beginAnalyzeActions( + docs, + { + recognizeEntitiesActions: [{ modelVersion: "latest" }], + recognizePiiEntitiesActions: [{ modelVersion: "latest" }], + extractKeyPhrasesActions: [{ modelVersion: "latest" }] + }, + { + includeStatistics: true, + updateIntervalInMs: pollingInterval + } + ); + const response = await poller.pollUntilDone(); + const results = (await response.next()).value; + const recognizeEntitiesResults = results.recognizeEntitiesResults[0]; + if (!recognizeEntitiesResults.error) { + assert.equal(recognizeEntitiesResults.results.statistics?.documentCount, 5); + assert.equal(recognizeEntitiesResults.results.statistics?.transactionCount, 4); + assert.equal(recognizeEntitiesResults.results.statistics?.validDocumentCount, 4); + assert.equal(recognizeEntitiesResults.results.statistics?.erroneousDocumentCount, 1); } - ); - const results = await poller.pollUntilDone(); - for await (const page of results) { - const keyPhrasesResult = page.extractKeyPhrasesResults; - if (keyPhrasesResult.length === 1) { - const action = keyPhrasesResult[0]; - if (!action.error) { - assert.equal(action.results.length, 2); - for (const result of action.results) { - if (!result.error) { - assert.include(result.keyPhrases, "Paul Allen"); - assert.include(result.keyPhrases, "Bill Gates"); - assert.include(result.keyPhrases, "Microsoft"); - assert.ok(result.id); + const recognizePiiEntitiesResults = results.recognizePiiEntitiesResults[0]; + if (!recognizePiiEntitiesResults.error) { + assert.equal(recognizePiiEntitiesResults.results.statistics?.documentCount, 5); + assert.equal(recognizePiiEntitiesResults.results.statistics?.transactionCount, 4); + assert.equal(recognizePiiEntitiesResults.results.statistics?.validDocumentCount, 4); + assert.equal(recognizePiiEntitiesResults.results.statistics?.erroneousDocumentCount, 1); + } + const extractKeyPhrasesResults = results.extractKeyPhrasesResults[0]; + if (!extractKeyPhrasesResults.error) { + assert.equal(extractKeyPhrasesResults.results.statistics?.documentCount, 5); + assert.equal(extractKeyPhrasesResults.results.statistics?.transactionCount, 4); + assert.equal(extractKeyPhrasesResults.results.statistics?.validDocumentCount, 4); + assert.equal(extractKeyPhrasesResults.results.statistics?.erroneousDocumentCount, 1); + } + }); + + it("whole batch language hint", async function() { + const docs = [ + "This was the best day of my life.", + "I did not like the hotel we stayed at. It was too expensive.", + "The restaurant was not as good as I hoped." + ]; + + const poller = await client.beginAnalyzeActions( + docs, + { + recognizeEntitiesActions: [{ modelVersion: "latest" }], + recognizePiiEntitiesActions: [{ modelVersion: "latest" }], + extractKeyPhrasesActions: [{ modelVersion: "latest" }] + }, + "en", + { + updateIntervalInMs: pollingInterval + } + ); + const result = await poller.pollUntilDone(); + for await (const page of result) { + const entitiesResult = page.recognizeEntitiesResults; + assert.equal(entitiesResult.length, 1); + for (const entitiesDocs of entitiesResult) { + if (!entitiesDocs.error) { + assert.equal(entitiesDocs.results.length, 3); + for (const doc of entitiesDocs.results) { + assert.isUndefined(doc.error); } } } - } else { - assert.fail("expected an array of key phrases results but did not get one."); } - } - }); + }); - it("single entities recognition action", async function() { - const docs = [ - { - id: "1", - text: "Microsoft was founded by Bill Gates and Paul Allen on April 4, 1975.", - language: "en" - }, - { - id: "2", - text: "Microsoft fue fundado por Bill Gates y Paul Allen el 4 de abril de 1975.", - language: "es" - }, - { - id: "3", - text: "Microsoft wurde am 4. April 1975 von Bill Gates und Paul Allen gegründet.", - language: "de" + it("whole batch with no language hint", async function() { + const docs = [ + "This was the best day of my life.", + "I did not like the hotel we stayed at. It was too expensive.", + "The restaurant was not as good as I hoped." + ]; + + const poller = await client.beginAnalyzeActions( + docs, + { + recognizeEntitiesActions: [{ modelVersion: "latest" }], + recognizePiiEntitiesActions: [{ modelVersion: "latest" }], + extractKeyPhrasesActions: [{ modelVersion: "latest" }] + }, + "", + { + updateIntervalInMs: pollingInterval + } + ); + const result = await poller.pollUntilDone(); + for await (const page of result) { + const entitiesResult = page.recognizeEntitiesResults; + assert.equal(entitiesResult.length, 1); + for (const entitiesDocs of entitiesResult) { + if (!entitiesDocs.error) { + assert.equal(entitiesDocs.results.length, 3); + for (const doc of entitiesDocs.results) { + assert.isUndefined(doc.error); + } + } + } } - ]; - - const poller = await client.beginAnalyzeActions( - docs, - { - recognizeEntitiesActions: [{ modelVersion: "latest" }] - }, - { - updateIntervalInMs: pollingInterval + }); + + it("each doc has a language hint", async function() { + const docs = [ + { id: "1", language: "", text: "I will go to the park." }, + { id: "2", language: "", text: "I did not like the hotel we stayed at." }, + { id: "3", text: "The restaurant had really good food." } + ]; + + const poller = await client.beginAnalyzeActions( + docs, + { + recognizeEntitiesActions: [{ modelVersion: "latest" }], + recognizePiiEntitiesActions: [{ modelVersion: "latest" }], + extractKeyPhrasesActions: [{ modelVersion: "latest" }] + }, + { + updateIntervalInMs: pollingInterval + } + ); + const result = await poller.pollUntilDone(); + for await (const page of result) { + const entitiesResult = page.recognizeEntitiesResults; + assert.equal(entitiesResult.length, 1); + for (const entitiesDocs of entitiesResult) { + if (!entitiesDocs.error) { + assert.equal(entitiesDocs.results.length, 3); + for (const doc of entitiesDocs.results) { + assert.isUndefined(doc.error); + } + } + } } - ); - const result = await poller.pollUntilDone(); - for await (const page of result) { - const entitiesResult = page.recognizeEntitiesResults; - if (entitiesResult.length === 1) { - const action = entitiesResult[0]; - if (!action.error) { - assert.equal(action.results.length, 3); - for (const doc of action.results) { - if (!doc.error) { - assert.equal(doc.entities.length, 4); - for (const entity of doc.entities) { - assert.isDefined(entity.text); - assert.isDefined(entity.category); - assert.isDefined(entity.offset); - assert.isDefined(entity.confidenceScore); - } + }); + + it("whole batch input with a language hint", async function() { + const docs = [ + { id: "1", text: "I will go to the park." }, + { id: "2", text: "Este es un document escrito en Español." }, + { id: "3", text: "猫は幸せ" } + ]; + + const poller = await client.beginAnalyzeActions( + docs, + { + recognizeEntitiesActions: [{ modelVersion: "latest" }], + recognizePiiEntitiesActions: [{ modelVersion: "latest" }], + extractKeyPhrasesActions: [{ modelVersion: "latest" }] + }, + { + updateIntervalInMs: pollingInterval + } + ); + const result = await poller.pollUntilDone(); + for await (const page of result) { + const entitiesResult = page.recognizeEntitiesResults; + assert.equal(entitiesResult.length, 1); + for (const entitiesDocs of entitiesResult) { + if (!entitiesDocs.error) { + assert.equal(entitiesDocs.results.length, 3); + for (const doc of entitiesDocs.results) { + assert.isUndefined(doc.error); } } } - } else { - assert.fail("expected an array of entities results but did not get one."); } - } - }); + }); - it("single entities linking action", async function() { - const docs = [ - "Microsoft moved its headquarters to Bellevue, Washington in January 1979.", - "Steve Ballmer stepped down as CEO of Microsoft and was succeeded by Satya Nadella." - ]; - - const poller = await client.beginAnalyzeActions( - docs, - { - recognizeLinkedEntitiesActions: [{}] - }, - "en", - { - updateIntervalInMs: pollingInterval + it("invalid language hint", async function() { + const docs = ["This should fail because we're passing in an invalid language hint"]; + + const poller = await client.beginAnalyzeActions( + docs, + { + recognizeEntitiesActions: [{ modelVersion: "latest" }], + recognizePiiEntitiesActions: [{ modelVersion: "latest" }], + extractKeyPhrasesActions: [{ modelVersion: "latest" }] + }, + "notalanguage", + { + updateIntervalInMs: pollingInterval + } + ); + const result = await poller.pollUntilDone(); + const firstResult = (await result.next()).value; + const entitiesTaskDocs = firstResult?.recognizeEntitiesResults[0]; + if (!entitiesTaskDocs.error) { + for (const doc of entitiesTaskDocs.results) { + assert.equal(doc.error?.code, "UnsupportedLanguageCode"); + } } - ); - const result = await poller.pollUntilDone(); - for await (const page of result) { - const entitiesResult = page.recognizeLinkedEntitiesResults; - if (entitiesResult.length === 1) { - const action = entitiesResult[0]; - if (!action.error) { - assert.equal(action.results.length, 2); - for (const doc of action.results) { + const piiEntitiesTaskDocs = firstResult?.recognizePiiEntitiesResults[0]; + if (!piiEntitiesTaskDocs.error) { + for (const doc of piiEntitiesTaskDocs.results) { + assert.equal(doc.error?.code, "UnsupportedLanguageCode"); + } + } + const keyPhrasesTaskDocs = firstResult?.extractKeyPhrasesResults[0]; + if (!keyPhrasesTaskDocs.error) { + for (const doc of keyPhrasesTaskDocs.results) { + assert.equal(doc.error?.code, "UnsupportedLanguageCode"); + } + } + }); + + it("paged results with custom page size", async function() { + const totalDocs = 25; + const docs = Array(totalDocs - 1).fill("random text"); + docs.push("Microsoft was founded by Bill Gates and Paul Allen"); + const poller = await client.beginAnalyzeActions( + docs, + { + recognizeEntitiesActions: [{ modelVersion: "latest" }], + extractKeyPhrasesActions: [{ modelVersion: "latest" }] + }, + "en", + { + updateIntervalInMs: pollingInterval + } + ); + const result = await poller.pollUntilDone(); + let docCount = 0; + let pageCount = 0; + const pageSize = 10; + for await (const page of result.byPage({ maxPageSize: pageSize })) { + const entitiesTaskDocs = page.recognizeEntitiesResults[0]; + ++pageCount; + if (!entitiesTaskDocs.error) { + for (const doc of entitiesTaskDocs.results) { + assert.isUndefined(doc.error); + ++docCount; if (!doc.error) { - assert.notEqual(doc.entities.length, 0); - for (const entity of doc.entities) { - assert.isDefined(entity.name); - assert.isDefined(entity.url); - assert.isDefined(entity.dataSource); - assert.isDefined(entity.dataSourceEntityId); + if (docCount === totalDocs) { + assert.equal(doc.entities.length, 3); + } else { + assert.equal(doc.entities.length, 0); } } } } - } else { - assert.fail("expected an array of entity linking results but did not get one."); } - } - }); + assert.equal(docs.length, docCount); + assert.equal(Math.ceil(docs.length / pageSize), pageCount); + }); - it("single pii entities recognition action", async function() { - const docs = [ - { id: "1", text: "My SSN is 859-98-0987." }, - { - id: "2", - text: - "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check." - }, - { id: "3", text: "Is 998.214.865-68 your Brazilian CPF number?" } - ]; - - const poller = await client.beginAnalyzeActions( - docs, - { - recognizePiiEntitiesActions: [{ modelVersion: "latest" }] - }, - { - updateIntervalInMs: pollingInterval - } - ); - const result = await poller.pollUntilDone(); - for await (const page of result) { - const entitiesResult = page.recognizePiiEntitiesResults; - if (entitiesResult.length === 1) { - const action = entitiesResult[0]; - if (!action.error) { - const actionResults = action.results; - assert.equal(actionResults.length, 3); - const doc1 = actionResults[0]; - const doc2 = actionResults[1]; - // const doc3 = actionResults[2]; - if (!doc1.error) { - assert.equal(doc1.entities[0].text, "859-98-0987"); - assert.equal(doc1.entities[0].category, "USSocialSecurityNumber"); - } - if (!doc2.error) { - assert.equal(doc2.entities[0].text, "111000025"); - assert.equal(doc2.entities[1].category, "ABARoutingNumber"); - } - // the service is not able to detect the brazil cpf number - // if (!doc3.error) { - // assert.equal(doc3.entities[0].text, "998.214.865-68"); - // assert.equal(doc3.entities[0].category, "Brazil CPF Number"); - // } - for (const doc of actionResults) { - if (!doc.error) { - for (const entity of doc.entities) { - assert.isDefined(entity.text); - assert.isDefined(entity.category); - assert.isDefined(entity.offset); - assert.isDefined(entity.confidenceScore); + it("pii redacted test is not empty", async function() { + const docs = [ + { id: "1", text: "I will go to the park." }, + { id: "2", text: "Este es un document escrito en Español." }, + { id: "3", text: "猫は幸せ" } + ]; + + const poller = await client.beginAnalyzeActions( + docs, + { + recognizePiiEntitiesActions: [{ modelVersion: "latest" }] + }, + { + updateIntervalInMs: pollingInterval + } + ); + const result = await poller.pollUntilDone(); + for await (const page of result) { + const piiEntitiesResult = page.recognizePiiEntitiesResults; + assert.equal(piiEntitiesResult.length, 1); + for (const piiEntitiesDocs of piiEntitiesResult) { + if (!piiEntitiesDocs.error) { + assert.equal(piiEntitiesDocs.results.length, 3); + for (const doc of piiEntitiesDocs.results) { + assert.isUndefined(doc.error); + if (!doc.error) { + assert.isNotEmpty(doc.redactedText); } } } } - } else { - assert.fail("expected an array of pii entities results but did not get one."); } - } - }); + }); - it("single sentiment analysis action", async function() { - const docs = [ - "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 poller = await client.beginAnalyzeActions( - docs, - { - analyzeSentimentActions: [{ includeOpinionMining: true }] - }, - "en", - { - updateIntervalInMs: pollingInterval - } - ); - const result = await poller.pollUntilDone(); - for await (const page of result) { - const entitiesResult = page.analyzeSentimentResults; - if (entitiesResult.length === 1) { - const action = entitiesResult[0]; - if (!action.error) { - const actionResults = action.results; - assert.equal(actionResults.length, 7); - const result1 = actionResults[0]; - const result6 = actionResults[5]; - const result7 = actionResults[6]; - if ( - result1.error === undefined && - result6.error === undefined && - result7.error === undefined - ) { - const Assessment1 = result1.sentences[0].opinions[0].assessments[0]; - const Assessment2 = result6.sentences[0].opinions[0].assessments[0]; - assert.notDeepEqual(Assessment1, Assessment2); - - const listAllAssessments = (acc: string[], sentence: SentenceSentiment): string[] => - acc.concat( - sentence.opinions.reduce( - (assessments: string[], opinion: Opinion) => - assessments.concat( - opinion.assessments.map( - (assessment: AssessmentSentiment) => assessment.text - ) - ), - [] - ) - ); - const allAssessments1 = result1.sentences.reduce(listAllAssessments, []); - assert.deepEqual(allAssessments1, ["unacceptable"]); - const allAssessments2 = result6.sentences.reduce(listAllAssessments, []); - assert.deepEqual(allAssessments2, ["nice", "old", "dirty"]); - const allAssessments7 = result7.sentences.reduce(listAllAssessments, []); - assert.deepEqual(allAssessments7, ["smelled"]); - } - } - } - } - }); + it("operation metadata", async function() { + const docs = [ + { id: "1", text: "I will go to the park." }, + { id: "2", text: "Este es un document escrito en Español." }, + { id: "3", text: "猫は幸せ" } + ]; - it("bad request empty string", async function() { - const docs = [""]; - try { const poller = await client.beginAnalyzeActions( docs, { recognizePiiEntitiesActions: [{ modelVersion: "latest" }] }, - "en", { - updateIntervalInMs: pollingInterval + updateIntervalInMs: pollingInterval, + displayName: "testJob" } ); - await poller.pollUntilDone(); - } catch (e) { - assert.equal(e.statusCode, 400); - } - }); + poller.onProgress((state) => { + assert.ok(state.createdOn, "createdOn is undefined!"); + assert.ok(state.expiresOn, "expiresOn is undefined!"); + assert.ok(state.lastModifiedOn, "lastModifiedOn is undefined!"); + assert.ok(state.status, "status is undefined!"); + assert.isDefined(state.actionsSucceededCount, "actionsSucceededCount is undefined!"); + assert.equal(state.actionsFailedCount, 0); + assert.isDefined(state.actionsInProgressCount, "actionsInProgressCount is undefined!"); + assert.equal(state.displayName, "testJob"); + }); + const result = await poller.pollUntilDone(); + assert.ok(result); + }); - it("some documents with errors and multiple actions", async function() { - const docs = [ - { id: "1", language: "", text: "" }, - { - id: "2", - language: "english", - text: "I did not like the hotel we stayed at. It was too expensive." - }, - { - id: "3", - language: "en", - text: "The restaurant had really good food. I recommend you try it." - } - ]; - - const poller = await client.beginAnalyzeActions( - docs, - { - recognizeEntitiesActions: [{ modelVersion: "latest" }], - recognizePiiEntitiesActions: [{ modelVersion: "latest" }], - extractKeyPhrasesActions: [{ modelVersion: "latest" }] - }, - { - updateIntervalInMs: pollingInterval - } - ); - const result = await poller.pollUntilDone(); - for await (const page of result) { - const entitiesResult = page.recognizeEntitiesResults; - if (entitiesResult.length === 1) { - const entitiesDocs = entitiesResult[0]; - if (!entitiesDocs.error) { - const entitiesDocsResults = entitiesDocs.results; - assert.equal(entitiesDocsResults.length, 3); - assert.isDefined(entitiesDocsResults[0].error); - assert.isDefined(entitiesDocsResults[1].error); - assert.isUndefined(entitiesDocsResults[2].error); + it("family emoji wit skin tone modifier", async function() { + const poller = await client.beginAnalyzeActions( + [{ id: "0", text: "👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987", language: "en" }], + { + recognizePiiEntitiesActions: [ + { modelVersion: "latest", stringIndexType: "UnicodeCodePoint" } + ] + }, + { + updateIntervalInMs: pollingInterval + } + ); + const pollerResult = await poller.pollUntilDone(); + const firstResult = (await pollerResult.next()).value; + const actionResult = firstResult.recognizePiiEntitiesResults[0]; + if (!actionResult.error) { + const docResult = actionResult.results[0]; + if (!docResult.error) { + assert.equal(docResult.entities[0].offset, 17); // 25 with UTF16 + assert.equal(docResult.entities[0].length, 11); + assert.equal(docResult.entities[0].text.length, docResult.entities[0].length); } - } else { - assert.fail("expected an array of entities results but did not get one."); } + }); - const piiEntitiesResult = page.recognizePiiEntitiesResults; - if (piiEntitiesResult.length === 1) { - const piiEntitiesDocs = piiEntitiesResult[0]; - if (!piiEntitiesDocs.error) { - const piiEntitiesDocsResults = piiEntitiesDocs.results; - assert.equal(piiEntitiesDocsResults.length, 3); - assert.isDefined(piiEntitiesDocsResults[0].error); - assert.isDefined(piiEntitiesDocsResults[1].error); - assert.isUndefined(piiEntitiesDocsResults[2].error); - } - } else { - assert.fail("expected an array of pii entities results but did not get one."); + it("malformed actions", async function() { + const docs = [{ id: "1", text: "I will go to the park." }]; + + try { + await client.beginAnalyzeActions( + docs, + { + // the service currently supports up to one action only per type. + recognizePiiEntitiesActions: [ + // { modelVersion: "bad" }, + // { modelVersion: "latest" }, + { modelVersion: "bad", stringIndexType: "TextElement_v8" } + ] + }, + { + updateIntervalInMs: pollingInterval + } + ); + throw new Error("Expected an error to occur"); + } catch (e) { + assert.equal(e.statusCode, 400); + assert.equal(e.code, "InvalidRequest"); } + }); - const keyPhrasesResult = page.extractKeyPhrasesResults; - if (keyPhrasesResult.length === 1) { - const keyPhrasesDocs = keyPhrasesResult[0]; - if (!keyPhrasesDocs.error) { - const keyPhrasesDocsResults = keyPhrasesDocs.results; - assert.equal(keyPhrasesDocsResults.length, 3); - assert.isDefined(keyPhrasesDocsResults[0].error); - assert.isDefined(keyPhrasesDocsResults[1].error); - assert.isUndefined(keyPhrasesDocsResults[2].error); - } - } else { - assert.fail("expected an array of key phrases results but did not get one."); + it("multiple actions per type are disallowed", async function() { + const docs = [{ id: "1", text: "I will go to the park." }]; + + try { + await client.beginAnalyzeActions( + docs, + { + recognizePiiEntitiesActions: [ + { modelVersion: "latest" }, + { modelVersion: "latest", stringIndexType: "TextElement_v8" } + ] + }, + { + updateIntervalInMs: pollingInterval + } + ); + throw new Error("Expected an error to occur"); + } catch (e) { + assert.equal( + e.message, + "beginAnalyzeActions: Currently, the service can accept up to one action only for recognizePiiEntities actions." + ); } - } + }); }); - it("all documents with errors and multiple actions", async function() { - const docs = [ - { id: "1", language: "", text: "" }, - { - id: "2", - language: "english", - text: "I did not like the hotel we stayed at. It was too expensive." - }, - { - id: "3", - language: "en", - text: "" - } - ]; - - const poller = await client.beginAnalyzeActions( - docs, - { - recognizeEntitiesActions: [{ modelVersion: "latest" }], - recognizePiiEntitiesActions: [{ modelVersion: "latest" }], - extractKeyPhrasesActions: [{ modelVersion: "latest" }] - }, - { - updateIntervalInMs: pollingInterval - } - ); - const result = await poller.pollUntilDone(); - for await (const page of result) { - const entitiesResult = page.recognizeEntitiesResults; - if (entitiesResult.length === 1) { - const entitiesDocs = entitiesResult[0]; - if (!entitiesDocs.error) { - const entitiesDocsResults = entitiesDocs.results; - assert.equal(entitiesDocsResults.length, 3); - assert.isDefined(entitiesDocsResults[0].error); - assert.isDefined(entitiesDocsResults[1].error); - assert.isDefined(entitiesDocsResults[2].error); + describe("#health", function() { + it("input strings", async function() { + const poller = await client.beginAnalyzeHealthcareEntities( + [ + "Patient does not suffer from high blood pressure.", + "Prescribed 100mg ibuprofen, taken twice daily." + ], + "en", + { + updateIntervalInMs: pollingInterval } - } else { - assert.fail("expected an array of entities results but did not get one."); + ); + const result = await poller.pollUntilDone(); + const doc1 = (await result.next()).value; + if (!doc1.error) { + assert.ok(doc1.id); + assert.ok(doc1.entities); + const doc1Entity1 = doc1.entities[0]; + assert.equal(doc1Entity1.text, "high blood pressure"); + assert.equal(doc1Entity1.assertion?.certainty, "negative"); + } + + const doc2 = (await result.next()).value; + if (!doc2.error) { + assert.ok(doc2.id); + assert.ok(doc2.entities); + const doc2Entity1 = doc2.entities[0]; + assert.equal(doc2Entity1.text, "100mg"); + assert.deepEqual(doc2.entityRelations[0], { + relationType: "DosageOfMedication", + roles: [ + { + entity: doc2.entities[0], + name: "Dosage" + }, + { + entity: doc2.entities[1], + name: "Medication" + } + ] + }); + assert.deepEqual(doc2.entityRelations[1], { + relationType: "FrequencyOfMedication", + roles: [ + { + entity: doc2.entities[1], + name: "Medication" + }, + { + entity: doc2.entities[2], + name: "Frequency" + } + ] + }); + + const doc2Entity2 = doc2.entities[1]; + assert.equal(doc2Entity2.text, "ibuprofen"); + + const doc2Entity3 = doc2.entities[2]; + assert.equal(doc2Entity3.text, "twice daily"); } + }); - const piiEntitiesResult = page.recognizePiiEntitiesResults; - if (piiEntitiesResult.length === 1) { - const piiEntitiesDocs = piiEntitiesResult[0]; - if (!piiEntitiesDocs.error) { - const piiEntitiesDocsResults = piiEntitiesDocs.results; - assert.equal(piiEntitiesDocsResults.length, 3); - assert.isDefined(piiEntitiesDocsResults[0].error); - assert.isDefined(piiEntitiesDocsResults[1].error); - assert.isDefined(piiEntitiesDocsResults[2].error); + it("entity assertions", async function() { + const poller = await client.beginAnalyzeHealthcareEntities( + [ + "Baby not likely to have Meningitis. in case of fever in the mother, consider Penicillin for the baby too." + ], + "en", + { + updateIntervalInMs: pollingInterval } - } else { - assert.fail("expected an array of pii entities results but did not get one."); + ); + const result = await poller.pollUntilDone(); + const doc1 = (await result.next()).value; + if (!doc1.error) { + assert.ok(doc1.id); + assert.ok(doc1.entities); + const doc1Entity1 = doc1.entities[0]; + assert.equal(doc1Entity1.text, "Baby"); + assert.equal(doc1Entity1.category, "Age"); + assert.equal(doc1Entity1.normalizedText, "Infant"); + assert.isUndefined(doc1Entity1.assertion?.association); + assert.isUndefined(doc1Entity1.assertion?.conditionality); + + const doc1Entity2 = doc1.entities[1]; + assert.equal(doc1Entity2.text, "Meningitis"); + assert.equal(doc1Entity2.category, "Diagnosis"); + assert.equal(doc1Entity2.assertion?.certainty, "negativePossible"); + assert.equal(doc1Entity2.normalizedText, "Meningitis"); + assert.isUndefined(doc1Entity2.assertion?.association); + assert.isUndefined(doc1Entity2.assertion?.conditionality); + + const doc1Entity3 = doc1.entities[2]; + assert.equal(doc1Entity3.text, "fever"); + assert.equal(doc1Entity3.normalizedText, "Fever"); + assert.equal(doc1Entity3.category, "SymptomOrSign"); + assert.isUndefined(doc1Entity3.assertion?.association); + assert.isUndefined(doc1Entity3.assertion?.conditionality); + + const doc1Entity4 = doc1.entities[3]; + assert.equal(doc1Entity4.text, "mother"); + assert.equal(doc1Entity4.normalizedText, "Mother (person)"); + assert.equal(doc1Entity4.category, "FamilyRelation"); + assert.isUndefined(doc1Entity4.assertion?.association); + assert.isUndefined(doc1Entity4.assertion?.conditionality); + + const doc1Entity5 = doc1.entities[4]; + assert.equal(doc1Entity5.text, "Penicillin"); + assert.equal(doc1Entity5.category, "MedicationName"); + assert.equal(doc1Entity5.normalizedText, "penicillins"); + assert.equal(doc1Entity5.assertion?.certainty, "neutralPossible"); + assert.isUndefined(doc1Entity5.assertion?.association); + assert.isUndefined(doc1Entity5.assertion?.conditionality); + + const doc1Entity6 = doc1.entities[5]; + assert.equal(doc1Entity6.text, "baby"); + assert.equal(doc1Entity6.category, "FamilyRelation"); + assert.equal(doc1Entity6.normalizedText, "Infant"); + assert.isUndefined(doc1Entity6.assertion?.association); + assert.isUndefined(doc1Entity6.assertion?.conditionality); + + assert.isEmpty(doc1.entityRelations); } + }); - const keyPhrasesResult = page.extractKeyPhrasesResults; - if (keyPhrasesResult && keyPhrasesResult.length === 1) { - const keyPhrasesDocs = keyPhrasesResult[0]; - if (!keyPhrasesDocs.error) { - const keyPhrasesDocsResults = keyPhrasesDocs.results; - assert.equal(keyPhrasesDocsResults.length, 3); - assert.isDefined(keyPhrasesDocsResults[0].error); - assert.isDefined(keyPhrasesDocsResults[1].error); - assert.isDefined(keyPhrasesDocsResults[2].error); + it("input documents", async function() { + const poller = await client.beginAnalyzeHealthcareEntities( + [ + { + id: "1", + text: "Patient does not suffer from high blood pressure.", + language: "en" + }, + { id: "2", text: "Prescribed 100mg ibuprofen, taken twice daily.", language: "en" } + ], + { + updateIntervalInMs: pollingInterval + } + ); + const result = await poller.pollUntilDone(); + for await (const doc of result) { + if (!doc.error) { + assert.ok(doc.id); + assert.ok(doc.entities); } - } else { - assert.fail("expected an array of key phrases results but did not get one."); } - } - }); + }); - it("output order is same as the input's one with multiple actions", async function() { - const docs = [ - { id: "1", text: "one" }, - { id: "2", text: "two" }, - { id: "3", text: "three" }, - { id: "4", text: "four" }, - { id: "5", text: "five" } - ]; - - const poller = await client.beginAnalyzeActions( - docs, - { - recognizeEntitiesActions: [{ modelVersion: "latest" }], - recognizePiiEntitiesActions: [{ modelVersion: "latest" }], - extractKeyPhrasesActions: [{ modelVersion: "latest" }] - }, - { + it("some inputs with errors", async function() { + const docs = [ + { id: "1", language: "en", text: "" }, + { + id: "2", + language: "english", + text: "Patient does not suffer from high blood pressure." + }, + { id: "3", language: "en", text: "Prescribed 100mg ibuprofen, taken twice daily." } + ]; + + const poller = await client.beginAnalyzeHealthcareEntities(docs, { updateIntervalInMs: pollingInterval + }); + const result = await poller.pollUntilDone(); + const result1 = (await result.next()).value; + const result2 = (await result.next()).value; + const result3 = (await result.next()).value; + if (!result3.error) { + assert.ok(result3.id); + assert.ok(result3.entities); } - ); - const result = await poller.pollUntilDone(); - for await (const page of result) { - const entitiesResult = page.recognizeEntitiesResults; - if (entitiesResult.length === 1) { - const entitiesDocs = entitiesResult[0]; - if (!entitiesDocs.error) { - assert.equal(entitiesDocs.results.length, 5); - let i = 1; - for (const doc of entitiesDocs.results) { - assert.equal(parseInt(doc.id), i++); - } - } - } else { - assert.fail("expected an array of entities results but did not get one."); - } + assert.ok(result1.error); + assert.ok(result2.error); + }); - const piiEntitiesResult = page.recognizePiiEntitiesResults; - if (piiEntitiesResult.length === 1) { - const piiEntitiesDocs = piiEntitiesResult[0]; - if (!piiEntitiesDocs.error) { - assert.equal(piiEntitiesDocs.results.length, 5); - let i = 1; - for (const doc of piiEntitiesDocs.results) { - assert.equal(parseInt(doc.id), i++); - } - } - } else { - assert.fail("expected an array of pii entities results but did not get one."); + it("all inputs with errors", async function() { + const docs = [ + { id: "1", language: "en", text: "" }, + { + id: "2", + language: "english", + text: "Patient does not suffer from high blood pressure." + }, + { id: "3", language: "en", text: "" } + ]; + + const poller = await client.beginAnalyzeHealthcareEntities(docs, { + updateIntervalInMs: pollingInterval + }); + const result = await poller.pollUntilDone(); + const result1 = (await result.next()).value; + const result2 = (await result.next()).value; + const result3 = (await result.next()).value; + assert.ok(result1.error); + assert.ok(result2.error); + assert.ok(result3.error); + }); + + it("too many documents", async function() { + const docs = Array(11).fill("random text"); + try { + const response = await client.beginAnalyzeHealthcareEntities(docs, "en", { + updateIntervalInMs: pollingInterval + }); + console.log(response); + assert.fail("Oops, an exception didn't happen."); + } catch (e) { + assert.equal(e.statusCode, 400); + assert.equal(e.code, "InvalidDocumentBatch"); + assert.equal( + e.message, + "Batch request contains too many records. Max 10 records are permitted." + ); } + }); - const keyPhrasesResult = page.extractKeyPhrasesResults; - if (keyPhrasesResult.length === 1) { - const keyPhrasesDocs = keyPhrasesResult[0]; - if (!keyPhrasesDocs.error) { - assert.equal(keyPhrasesDocs.results.length, 5); - let i = 1; - for (const doc of keyPhrasesDocs.results) { - assert.equal(parseInt(doc.id), i++); - } - } - } else { - assert.fail("expected an array of key phrases results but did not get one."); + it("payload too large", async function() { + const large_doc = + "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | \ + CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 \ + Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: \ + CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: \ + The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. \ + The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and \ + 50% left main disease , with a strong family history of coronary artery disease with a brother dying at \ + the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. \ + The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities ,\ + but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions \ + in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's \ + increased symptoms and family history and history left main disease with total occasional of his RCA was referred \ + for revascularization with open heart surgery."; + const docs = Array(500).fill(large_doc); + try { + await client.beginAnalyzeHealthcareEntities(docs, "en", { + updateIntervalInMs: pollingInterval + }); + assert.fail("Oops, an exception didn't happen."); + } catch (e) { + assert.equal(e.statusCode, 413); + assert.equal(e.code, "InvalidDocumentBatch"); + assert.equal( + e.message, + "Request Payload sent is too large to be processed. Limit request size to: 524288" + ); } - } - }); + }); - it("out of order input IDs with multiple actions", async function() { - const docs = [ - { id: "56", text: ":)" }, - { id: "0", text: ":(" }, - { id: "22", text: "w" }, - { id: "19", text: ":P" }, - { id: "1", text: ":D" } - ]; - - const poller = await client.beginAnalyzeActions( - docs, - { - recognizeEntitiesActions: [{ modelVersion: "latest" }], - recognizePiiEntitiesActions: [{ modelVersion: "latest" }], - extractKeyPhrasesActions: [{ modelVersion: "latest" }] - }, - { + it("document warnings", async function() { + const docs = [{ id: "1", text: "This won't actually create a warning :'(" }]; + const poller = await client.beginAnalyzeHealthcareEntities(docs, { updateIntervalInMs: pollingInterval - } - ); - const result = await poller.pollUntilDone(); - const in_order = ["56", "0", "22", "19", "1"]; - for await (const page of result) { - const entitiesResult = page.recognizeEntitiesResults; - if (entitiesResult.length === 1) { - const entitiesDocs = entitiesResult[0]; - if (!entitiesDocs.error) { - assert.equal(entitiesDocs.results.length, 5); - let i = 0; - for (const doc of entitiesDocs.results) { - assert.equal(doc.id, in_order[i++]); - } + }); + const result = await poller.pollUntilDone(); + for await (const doc of result) { + if (!doc.error) { + assert.equal(doc.warnings.length, 0); } - } else { - assert.fail("expected an array of entities results but did not get one."); } + }); - const piiEntitiesResult = page.recognizePiiEntitiesResults; - if (piiEntitiesResult.length === 1) { - const piiEntitiesDocs = piiEntitiesResult[0]; - if (!piiEntitiesDocs.error) { - assert.equal(piiEntitiesDocs.results.length, 5); - let i = 0; - for (const doc of piiEntitiesDocs.results) { - assert.equal(doc.id, in_order[i++]); - } - } - } else { - assert.fail("expected an array of pii entities results but did not get one."); + it("output has the same order as input", async function() { + const docs = [ + { id: "1", text: "one" }, + { id: "2", text: "two" }, + { id: "3", text: "three" }, + { id: "4", text: "four" }, + { id: "5", text: "five" } + ]; + const poller = await client.beginAnalyzeHealthcareEntities(docs, { + updateIntervalInMs: pollingInterval + }); + const result = await poller.pollUntilDone(); + let i = 0; + for await (const doc of result) { + assert.equal(parseInt(doc.id), ++i); } + }); - const keyPhrasesResult = page.extractKeyPhrasesResults; - if (keyPhrasesResult.length === 1) { - const keyPhrasesDocs = keyPhrasesResult[0]; - if (!keyPhrasesDocs.error) { - assert.equal(keyPhrasesDocs.results.length, 5); - let i = 0; - for (const doc of keyPhrasesDocs.results) { - assert.equal(doc.id, in_order[i++]); - } - } - } else { - assert.fail("expected an array of key phrases results but did not get one."); + it("output has the same order as input with out of order IDs", async function() { + const docs = [ + { id: "56", text: ":)" }, + { id: "0", text: ":(" }, + { id: "22", text: "" }, + { id: "19", text: ":P" }, + { id: "1", text: ":D" } + ]; + const poller = await client.beginAnalyzeHealthcareEntities(docs, { + updateIntervalInMs: pollingInterval + }); + const result = await poller.pollUntilDone(); + const in_order = [56, 0, 22, 19, 1]; + let i = 0; + for await (const doc of result) { + assert.equal(parseInt(doc.id), in_order[i++]); } - } - }); + }); - // the service's statistics says the number of documents is 6 instead of 5. - it.skip("statistics", async function() { - const docs = [ - { id: "56", text: ":)" }, - { id: "0", text: ":(" }, - { id: "22", text: "" }, - { id: "19", text: ":P" }, - { id: "1", text: ":D" } - ]; - - const poller = await client.beginAnalyzeActions( - docs, - { - recognizeEntitiesActions: [{ modelVersion: "latest" }], - recognizePiiEntitiesActions: [{ modelVersion: "latest" }], - extractKeyPhrasesActions: [{ modelVersion: "latest" }] - }, - { + it("show stats and model version", async function() { + const docs = [ + { id: "56", text: ":)" }, + { id: "0", text: ":(" }, + { id: "22", text: "" }, + { id: "19", text: ":P" }, + { id: "1", text: ":D" } + ]; + const poller = await client.beginAnalyzeHealthcareEntities(docs, { + modelVersion: "latest", includeStatistics: true, updateIntervalInMs: pollingInterval - } - ); - const response = await poller.pollUntilDone(); - const results = (await response.next()).value; - const recognizeEntitiesResults = results.recognizeEntitiesResults[0]; - if (!recognizeEntitiesResults.error) { - assert.equal(recognizeEntitiesResults.results.statistics?.documentCount, 5); - assert.equal(recognizeEntitiesResults.results.statistics?.transactionCount, 4); - assert.equal(recognizeEntitiesResults.results.statistics?.validDocumentCount, 4); - assert.equal(recognizeEntitiesResults.results.statistics?.erroneousDocumentCount, 1); - } - const recognizePiiEntitiesResults = results.recognizePiiEntitiesResults[0]; - if (!recognizePiiEntitiesResults.error) { - assert.equal(recognizePiiEntitiesResults.results.statistics?.documentCount, 5); - assert.equal(recognizePiiEntitiesResults.results.statistics?.transactionCount, 4); - assert.equal(recognizePiiEntitiesResults.results.statistics?.validDocumentCount, 4); - assert.equal(recognizePiiEntitiesResults.results.statistics?.erroneousDocumentCount, 1); - } - const extractKeyPhrasesResults = results.extractKeyPhrasesResults[0]; - if (!extractKeyPhrasesResults.error) { - assert.equal(extractKeyPhrasesResults.results.statistics?.documentCount, 5); - assert.equal(extractKeyPhrasesResults.results.statistics?.transactionCount, 4); - assert.equal(extractKeyPhrasesResults.results.statistics?.validDocumentCount, 4); - assert.equal(extractKeyPhrasesResults.results.statistics?.erroneousDocumentCount, 1); - } - }); + }); + const result = await poller.pollUntilDone(); + assert.ok(result); + assert.ok(result.modelVersion); + assert.equal(result.statistics?.documentCount, 5); + assert.equal(result.statistics?.transactionCount, 4); + assert.equal(result.statistics?.validDocumentCount, 4); + assert.equal(result.statistics?.erroneousDocumentCount, 1); + }); + + it("whole batch language hint", async function() { + const docs = [ + "This was the best day of my life.", + "I did not like the hotel we stayed at. It was too expensive.", + "The restaurant was not as good as I hoped." + ]; - it("whole batch language hint", async function() { - const docs = [ - "This was the best day of my life.", - "I did not like the hotel we stayed at. It was too expensive.", - "The restaurant was not as good as I hoped." - ]; - - const poller = await client.beginAnalyzeActions( - docs, - { - recognizeEntitiesActions: [{ modelVersion: "latest" }], - recognizePiiEntitiesActions: [{ modelVersion: "latest" }], - extractKeyPhrasesActions: [{ modelVersion: "latest" }] - }, - "en", - { + const poller = await client.beginAnalyzeHealthcareEntities(docs, "en", { updateIntervalInMs: pollingInterval + }); + const result = await poller.pollUntilDone(); + for await (const doc of result) { + assert.isUndefined(doc.error); } - ); - const result = await poller.pollUntilDone(); - for await (const page of result) { - const entitiesResult = page.recognizeEntitiesResults; - assert.equal(entitiesResult.length, 1); - for (const entitiesDocs of entitiesResult) { - if (!entitiesDocs.error) { - assert.equal(entitiesDocs.results.length, 3); - for (const doc of entitiesDocs.results) { - assert.isUndefined(doc.error); - } - } - } - } - }); + }); - it("whole batch with no language hint", async function() { - const docs = [ - "This was the best day of my life.", - "I did not like the hotel we stayed at. It was too expensive.", - "The restaurant was not as good as I hoped." - ]; - - const poller = await client.beginAnalyzeActions( - docs, - { - recognizeEntitiesActions: [{ modelVersion: "latest" }], - recognizePiiEntitiesActions: [{ modelVersion: "latest" }], - extractKeyPhrasesActions: [{ modelVersion: "latest" }] - }, - "", - { + it("whole batch empty language hint", async function() { + const docs = [ + "This was the best day of my life.", + "I did not like the hotel we stayed at. It was too expensive.", + "The restaurant was not as good as I hoped." + ]; + + const poller = await client.beginAnalyzeHealthcareEntities(docs, "", { updateIntervalInMs: pollingInterval + }); + const result = await poller.pollUntilDone(); + for await (const doc of result) { + assert.isUndefined(doc.error); } - ); - const result = await poller.pollUntilDone(); - for await (const page of result) { - const entitiesResult = page.recognizeEntitiesResults; - assert.equal(entitiesResult.length, 1); - for (const entitiesDocs of entitiesResult) { - if (!entitiesDocs.error) { - assert.equal(entitiesDocs.results.length, 3); - for (const doc of entitiesDocs.results) { - assert.isUndefined(doc.error); - } - } - } - } - }); + }); + + it("whole batch empty language hint per doc", async function() { + const docs = [ + { id: "1", language: "", text: "I will go to the park." }, + { id: "2", language: "", text: "I did not like the hotel we stayed at." }, + { id: "3", text: "The restaurant had really good food." } + ]; - it("each doc has a language hint", async function() { - const docs = [ - { id: "1", language: "", text: "I will go to the park." }, - { id: "2", language: "", text: "I did not like the hotel we stayed at." }, - { id: "3", text: "The restaurant had really good food." } - ]; - - const poller = await client.beginAnalyzeActions( - docs, - { - recognizeEntitiesActions: [{ modelVersion: "latest" }], - recognizePiiEntitiesActions: [{ modelVersion: "latest" }], - extractKeyPhrasesActions: [{ modelVersion: "latest" }] - }, - { + const poller = await client.beginAnalyzeHealthcareEntities(docs, { updateIntervalInMs: pollingInterval + }); + const result = await poller.pollUntilDone(); + for await (const doc of result) { + assert.isUndefined(doc.error); } - ); - const result = await poller.pollUntilDone(); - for await (const page of result) { - const entitiesResult = page.recognizeEntitiesResults; - assert.equal(entitiesResult.length, 1); - for (const entitiesDocs of entitiesResult) { - if (!entitiesDocs.error) { - assert.equal(entitiesDocs.results.length, 3); - for (const doc of entitiesDocs.results) { - assert.isUndefined(doc.error); - } - } - } - } - }); + }); - it("whole batch input with a language hint", async function() { - const docs = [ - { id: "1", text: "I will go to the park." }, - { id: "2", text: "Este es un document escrito en Español." }, - { id: "3", text: "猫は幸せ" } - ]; - - const poller = await client.beginAnalyzeActions( - docs, - { - recognizeEntitiesActions: [{ modelVersion: "latest" }], - recognizePiiEntitiesActions: [{ modelVersion: "latest" }], - extractKeyPhrasesActions: [{ modelVersion: "latest" }] - }, - { + it("whole batch with multiple languages", async function() { + const docs = [ + { id: "1", text: "I should take my cat to the veterinarian." }, + { id: "2", text: "Este es un document escrito en Español." }, + { id: "3", text: "猫は幸せ" } + ]; + + const poller = await client.beginAnalyzeHealthcareEntities(docs, { updateIntervalInMs: pollingInterval + }); + const result = await poller.pollUntilDone(); + for await (const doc of result) { + assert.isUndefined(doc.error); } - ); - const result = await poller.pollUntilDone(); - for await (const page of result) { - const entitiesResult = page.recognizeEntitiesResults; - assert.equal(entitiesResult.length, 1); - for (const entitiesDocs of entitiesResult) { - if (!entitiesDocs.error) { - assert.equal(entitiesDocs.results.length, 3); - for (const doc of entitiesDocs.results) { - assert.isUndefined(doc.error); - } + }); + + it("invalid language hint", async function() { + const docs = ["This should fail because we're passing in an invalid language hint"]; + + const poller = await client.beginAnalyzeHealthcareEntities(docs, "notalanguage", { + updateIntervalInMs: pollingInterval + }); + const result = await poller.pollUntilDone(); + const firstResult = (await result.next()).value; + assert.equal(firstResult.error?.code, "UnsupportedLanguageCode"); + }); + + it("invalid language hint in doc", async function() { + const docs = [ + { + id: "1", + language: "notalanguage", + text: "This should fail because we're passing in an invalid language hint" } - } - } - }); + ]; - it("invalid language hint", async function() { - const docs = ["This should fail because we're passing in an invalid language hint"]; - - const poller = await client.beginAnalyzeActions( - docs, - { - recognizeEntitiesActions: [{ modelVersion: "latest" }], - recognizePiiEntitiesActions: [{ modelVersion: "latest" }], - extractKeyPhrasesActions: [{ modelVersion: "latest" }] - }, - "notalanguage", - { + const poller = await client.beginAnalyzeHealthcareEntities(docs, { updateIntervalInMs: pollingInterval + }); + const result = await poller.pollUntilDone(); + const firstResult = (await result.next()).value; + assert.equal(firstResult.error?.code, "UnsupportedLanguageCode"); + }); + + /** + * The service accepts bad model names + */ + it.skip("bad model", async function() { + const docs = [ + { + id: "1", + language: "en", + text: "This should fail because we're passing in an invalid language hint" + } + ]; + + try { + await client.beginAnalyzeHealthcareEntities(docs, { + modelVersion: "bad", + updateIntervalInMs: pollingInterval + }); + assert.fail("Oops, an exception didn't happen."); + } catch (e) { + assert.equal(e.code, "ModelVersionIncorrect"); } - ); - const result = await poller.pollUntilDone(); - const firstResult = (await result.next()).value; - const entitiesTaskDocs = firstResult?.recognizeEntitiesResults[0]; - if (!entitiesTaskDocs.error) { - for (const doc of entitiesTaskDocs.results) { - assert.equal(doc.error?.code, "UnsupportedLanguageCode"); - } - } - const piiEntitiesTaskDocs = firstResult?.recognizePiiEntitiesResults[0]; - if (!piiEntitiesTaskDocs.error) { - for (const doc of piiEntitiesTaskDocs.results) { - assert.equal(doc.error?.code, "UnsupportedLanguageCode"); + }); + + it("all documents have errors", async function() { + let text = ""; + for (let i = 0; i < 5121; ++i) { + text = text + "x"; } - } - const keyPhrasesTaskDocs = firstResult?.extractKeyPhrasesResults[0]; - if (!keyPhrasesTaskDocs.error) { - for (const doc of keyPhrasesTaskDocs.results) { - assert.equal(doc.error?.code, "UnsupportedLanguageCode"); + const docs = [ + { id: "1", text: "" }, + { id: "2", language: "english", text: "I did not like the hotel we stayed at." }, + { id: "3", text: text } + ]; + + const poller = await client.beginAnalyzeHealthcareEntities(docs, { + updateIntervalInMs: pollingInterval + }); + const doc_errors = await poller.pollUntilDone(); + assert.equal((await doc_errors.next()).value.error?.code, "InvalidDocument"); + assert.equal((await doc_errors.next()).value.error?.code, "UnsupportedLanguageCode"); + assert.equal((await doc_errors.next()).value.error?.code, "InvalidDocument"); + }); + + it("documents with duplicate IDs", async function() { + const docs = [ + { id: "1", text: "hello world" }, + { id: "1", text: "I did not like the hotel we stayed at." } + ]; + + try { + await client.beginAnalyzeHealthcareEntities(docs, { + updateIntervalInMs: pollingInterval + }); + assert.fail("Oops, an exception didn't happen."); + } catch (e) { + assert.equal(e.code, "InvalidRequest"); } - } - }); + }); - it("paged results with custom page size", async function() { - const totalDocs = 25; - const docs = Array(totalDocs - 1).fill("random text"); - docs.push("Microsoft was founded by Bill Gates and Paul Allen"); - const poller = await client.beginAnalyzeActions( - docs, - { - recognizeEntitiesActions: [{ modelVersion: "latest" }], - extractKeyPhrasesActions: [{ modelVersion: "latest" }] - }, - "en", - { + /** + * the service by default returns pages of 20 documents each and this test + * makes sure we get all the results and not just the first page. + * + * EDIT: the service decided to process only 10 documents max per request so + * pagination became unneeded. Once the service raises the limit on + * the number of input documents, we should re-enable these tests. + */ + it.skip("paged results one loop", async function() { + const docs = Array(40).fill("random text"); + docs.push("Prescribed 100mg ibuprofen, taken twice daily."); + const poller = await client.beginAnalyzeHealthcareEntities(docs, { updateIntervalInMs: pollingInterval + }); + const result = await poller.pollUntilDone(); + let count = 0; + for await (const doc of result) { + assert.isUndefined(doc.error); + ++count; + if (!doc.error) { + if (count === 41) { + assert.equal(doc.entities.length, 3); + } else { + assert.equal(doc.entities.length, 0); + } + } } - ); - const result = await poller.pollUntilDone(); - let docCount = 0; - let pageCount = 0; - const pageSize = 10; - for await (const page of result.byPage({ maxPageSize: pageSize })) { - const entitiesTaskDocs = page.recognizeEntitiesResults[0]; - ++pageCount; - if (!entitiesTaskDocs.error) { - for (const doc of entitiesTaskDocs.results) { + assert.equal(docs.length, count); + }); + + it.skip("paged results nested loop", async function() { + const docs = Array(40).fill("random text"); + docs.push("Prescribed 100mg ibuprofen, taken twice daily."); + const poller = await client.beginAnalyzeHealthcareEntities(docs, { + updateIntervalInMs: pollingInterval + }); + const result = await poller.pollUntilDone(); + let docCount = 0, + pageCount = 0; + for await (const pageDocs of result.byPage()) { + ++pageCount; + for (const doc of pageDocs) { assert.isUndefined(doc.error); ++docCount; if (!doc.error) { - if (docCount === totalDocs) { + if (docCount === 41) { assert.equal(doc.entities.length, 3); } else { assert.equal(doc.entities.length, 0); @@ -1764,123 +2441,118 @@ describe("[AAD] TextAnalyticsClient", function(this: Suite) { } } } - } - assert.equal(docs.length, docCount); - assert.equal(Math.ceil(docs.length / pageSize), pageCount); - }); + assert.equal(docs.length, docCount); + assert.equal(Math.ceil(docs.length / 20), pageCount); + }); - it("pii redacted test is not empty", async function() { - const docs = [ - { id: "1", text: "I will go to the park." }, - { id: "2", text: "Este es un document escrito en Español." }, - { id: "3", text: "猫は幸せ" } - ]; - - const poller = await client.beginAnalyzeActions( - docs, - { - recognizePiiEntitiesActions: [{ modelVersion: "latest" }] - }, - { + it.skip("paged results with custom page size", async function() { + const docs = Array(40).fill("random text"); + docs.push("Prescribed 100mg ibuprofen, taken twice daily."); + const poller = await client.beginAnalyzeHealthcareEntities(docs, { updateIntervalInMs: pollingInterval - } - ); - const result = await poller.pollUntilDone(); - for await (const page of result) { - const piiEntitiesResult = page.recognizePiiEntitiesResults; - assert.equal(piiEntitiesResult.length, 1); - for (const piiEntitiesDocs of piiEntitiesResult) { - if (!piiEntitiesDocs.error) { - assert.equal(piiEntitiesDocs.results.length, 3); - for (const doc of piiEntitiesDocs.results) { - assert.isUndefined(doc.error); - if (!doc.error) { - assert.isNotEmpty(doc.redactedText); + }); + const result = await poller.pollUntilDone(); + let docCount = 0; + let pageCount = 0; + const pageSize = 10; + for await (const pageDocs of result.byPage({ maxPageSize: pageSize })) { + ++pageCount; + for (const doc of pageDocs) { + assert.isUndefined(doc.error); + ++docCount; + if (!doc.error) { + if (docCount === 41) { + assert.equal(doc.entities.length, 3); + } else { + assert.equal(doc.entities.length, 0); } } } } - } - }); - - it("operation metadata", async function() { - const docs = [ - { id: "1", text: "I will go to the park." }, - { id: "2", text: "Este es un document escrito en Español." }, - { id: "3", text: "猫は幸せ" } - ]; - - const poller = await client.beginAnalyzeActions( - docs, - { - recognizePiiEntitiesActions: [{ modelVersion: "latest" }] - }, - { - updateIntervalInMs: pollingInterval, - displayName: "testJob" - } - ); - poller.onProgress((state) => { - assert.ok(state.createdOn, "createdOn is undefined!"); - assert.ok(state.expiresOn, "expiresOn is undefined!"); - assert.ok(state.lastModifiedOn, "lastModifiedOn is undefined!"); - assert.ok(state.status, "status is undefined!"); - assert.isDefined(state.actionsSucceededCount, "actionsSucceededCount is undefined!"); - assert.equal(state.actionsFailedCount, 0); - assert.isDefined(state.actionsInProgressCount, "actionsInProgressCount is undefined!"); - assert.equal(state.displayName, "testJob"); - }); - const result = await poller.pollUntilDone(); - assert.ok(result); - }); + assert.equal(docs.length, docCount); + assert.equal(Math.ceil(docs.length / pageSize), pageCount); + }); - it("family emoji wit skin tone modifier", async function() { - const poller = await client.beginAnalyzeActions( - [{ id: "0", text: "👩🏻‍👩🏽‍👧🏾‍👦🏿 SSN: 859-98-0987", language: "en" }], - { - recognizePiiEntitiesActions: [ - { modelVersion: "latest", stringIndexType: "UnicodeCodePoint" } - ] - }, - { - updateIntervalInMs: pollingInterval - } - ); - const pollerResult = await poller.pollUntilDone(); - const firstResult = (await pollerResult.next()).value; - const actionResult = firstResult.recognizePiiEntitiesResults[0]; - if (!actionResult.error) { - const docResult = actionResult.results[0]; - if (!docResult.error) { - assert.equal(docResult.entities[0].offset, 17); // 25 with UTF16 - assert.equal(docResult.entities[0].length, 11); - assert.equal(docResult.entities[0].text.length, docResult.entities[0].length); + it("cancelled", async function() { + const poller = await client.beginAnalyzeHealthcareEntities( + [ + { + id: "1", + text: "Patient does not suffer from high blood pressure.", + language: "en" + }, + { id: "2", text: "Prescribed 100mg ibuprofen, taken twice daily.", language: "en" } + ], + { + updateIntervalInMs: pollingInterval + } + ); + if (!poller.isDone()) { + await poller.cancelOperation(); } - } - }); - - it("malformed actions", async function() { - const docs = [{ id: "1", text: "I will go to the park." }]; + assert.ok(poller.getOperationState().isCancelled); + }); - try { - await client.beginAnalyzeActions( - docs, + it("operation metadata", async function() { + const poller = await client.beginAnalyzeHealthcareEntities( + [ + { + id: "1", + text: "Patient does not suffer from high blood pressure.", + language: "en" + }, + { id: "2", text: "Prescribed 100mg ibuprofen, taken twice daily.", language: "en" } + ], { - recognizePiiEntitiesActions: [ - { modelVersion: "bad" }, - { modelVersion: "latest" }, - { modelVersion: "bad", stringIndexType: "TextElement_v8" } - ] - }, + updateIntervalInMs: pollingInterval + } + ); + poller.onProgress((state) => { + assert.ok(state.createdOn, "createdOn is undefined!"); + assert.ok(state.expiresOn, "expiresOn is undefined!"); + assert.ok(state.lastModifiedOn, "lastModifiedOn is undefined!"); + assert.ok(state.status, "status is undefined!"); + }); + const result = await poller.pollUntilDone(); + assert.ok(result); + }); + + it("family emoji wit skin tone modifier with Utf16CodeUnit", async function() { + const doc = "👩🏻‍👩🏽‍👧🏾‍👦🏿 ibuprofen"; + const poller = await client.beginAnalyzeHealthcareEntities( + [{ id: "0", text: doc, language: "en" }], { updateIntervalInMs: pollingInterval } ); - throw new Error("Expected an error to occur"); - } catch (e) { - assert.equal(e.statusCode, 400); - assert.equal(e.code, "InvalidRequest"); - } + const pollerResult = await poller.pollUntilDone(); + const result = (await pollerResult.next()).value; + if (!result.error) { + const entity = result.entities[0]; + const offset = 20; + const length = 9; + assert.equal(entity.offset, 20); + assert.equal(entity.length, 9); + checkEntityTextOffset(doc, entity, offset, length); + } + }); + + it("family emoji wit skin tone modifier with UnicodeCodePoint", async function() { + const poller = await client.beginAnalyzeHealthcareEntities( + [{ id: "0", text: "👩🏻‍👩🏽‍👧🏾‍👦🏿 ibuprofen", language: "en" }], + { + updateIntervalInMs: pollingInterval, + stringIndexType: "UnicodeCodePoint" + } + ); + const pollerResult = await poller.pollUntilDone(); + const result = (await pollerResult.next()).value; + if (!result.error) { + assert.equal(result.entities[0].offset, 12); // 20 with UTF16 + assert.equal(result.entities[0].length, 9); + assert.equal(result.entities[0].text.length, result.entities[0].length); + } + }); }); }); }); diff --git a/sdk/textanalytics/ai-text-analytics/test/public/utils/recordedClient.ts b/sdk/textanalytics/ai-text-analytics/test/public/utils/recordedClient.ts index 46646fd40c3a..2cf79c3b1820 100644 --- a/sdk/textanalytics/ai-text-analytics/test/public/utils/recordedClient.ts +++ b/sdk/textanalytics/ai-text-analytics/test/public/utils/recordedClient.ts @@ -38,7 +38,7 @@ export const environmentSetup: RecorderEnvironmentSetup = { queryParametersToSkip: [] }; -export type AuthMethod = "APIKey" | "AAD"; +export type AuthMethod = "APIKey" | "AAD" | "DummyAPIKey"; export function createClient( authMethod: AuthMethod, @@ -58,11 +58,19 @@ export function createClient( ); break; } + case "DummyAPIKey": { + credential = new AzureKeyCredential("whatever"); + break; + } default: { throw Error(`Unsupported authentication method: ${authMethod}`); } } - return new TextAnalyticsClient(env.ENDPOINT, credential, options); + return new TextAnalyticsClient( + env.ENDPOINT || "https://dummy.cognitiveservices.azure.com/", + credential, + options + ); } /** From d8407ad20a58eb654978dec47d5b3aef50cbedd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Rodr=C3=ADguez?= Date: Wed, 30 Jun 2021 19:23:58 -0400 Subject: [PATCH 45/49] [Identity] Support for tenant Id Challenges / tenant discovery in ClientCredentials (#15837) This PR adds `tenantId` to the `getTokenOptions`, and adds options on every Identity credential to allow multi-tenant authentication (which will be disabled by default). Fixes #15797 --- sdk/core/core-auth/CHANGELOG.md | 1 + sdk/core/core-auth/review/core-auth.api.md | 1 + sdk/core/core-auth/src/tokenCredential.ts | 5 ++ sdk/identity/identity/CHANGELOG.md | 2 + sdk/identity/identity/review/identity.api.md | 15 +++- .../identity/src/client/identityClient.ts | 5 ++ .../authorizationCodeCredential.ts | 13 ++- .../src/credentials/azureCliCredential.ts | 45 +++++++++- .../credentials/azureCliCredentialOptions.ts | 14 ++++ .../credentials/azurePowerShellCredential.ts | 41 +++++++-- .../azurePowerShellCredentialOptions.ts | 14 ++++ .../credentials/visualStudioCodeCredential.ts | 12 ++- sdk/identity/identity/src/index.ts | 2 + .../src/msal/browserFlows/browserCommon.ts | 24 ++++-- .../src/msal/browserFlows/msalAuthCode.ts | 4 +- sdk/identity/identity/src/msal/credentials.ts | 4 + .../msal/nodeFlows/msalClientCertificate.ts | 3 +- .../src/msal/nodeFlows/msalClientSecret.ts | 3 +- .../src/msal/nodeFlows/msalDeviceCode.ts | 3 +- .../src/msal/nodeFlows/msalOpenBrowser.ts | 17 +++- .../msal/nodeFlows/msalUsernamePassword.ts | 3 +- .../identity/src/msal/nodeFlows/nodeCommon.ts | 34 +++++--- sdk/identity/identity/src/msal/utils.ts | 6 +- .../identity/src/util/validateMultiTenant.ts | 34 ++++++++ .../identity/test/internal/utils.spec.ts | 84 +++++++++++++++++++ 25 files changed, 345 insertions(+), 44 deletions(-) create mode 100644 sdk/identity/identity/src/credentials/azureCliCredentialOptions.ts create mode 100644 sdk/identity/identity/src/credentials/azurePowerShellCredentialOptions.ts create mode 100644 sdk/identity/identity/src/util/validateMultiTenant.ts create mode 100644 sdk/identity/identity/test/internal/utils.spec.ts diff --git a/sdk/core/core-auth/CHANGELOG.md b/sdk/core/core-auth/CHANGELOG.md index e0817d8a22e6..7cea45f53056 100644 --- a/sdk/core/core-auth/CHANGELOG.md +++ b/sdk/core/core-auth/CHANGELOG.md @@ -2,6 +2,7 @@ ## 1.3.1 (2021-06-30) +- Added `tenantId` optional property to the `GetTokenOptions` interface. If `tenantId` is set, credentials will be able to use multi-tenant authentication, in the cases when it's enabled. ## 1.3.0 (2021-03-30) diff --git a/sdk/core/core-auth/review/core-auth.api.md b/sdk/core/core-auth/review/core-auth.api.md index b9a56357328e..1512a1301a94 100644 --- a/sdk/core/core-auth/review/core-auth.api.md +++ b/sdk/core/core-auth/review/core-auth.api.md @@ -47,6 +47,7 @@ export interface GetTokenOptions { requestOptions?: { timeout?: number; }; + tenantId?: string; tracingOptions?: { spanOptions?: SpanOptions; tracingContext?: Context; diff --git a/sdk/core/core-auth/src/tokenCredential.ts b/sdk/core/core-auth/src/tokenCredential.ts index e0fbf5e66a5b..08ffdfc69be5 100644 --- a/sdk/core/core-auth/src/tokenCredential.ts +++ b/sdk/core/core-auth/src/tokenCredential.ts @@ -52,6 +52,11 @@ export interface GetTokenOptions { */ tracingContext?: Context; }; + + /** + * Allows specifying a tenantId. Useful to handle challenges that provide tenant Id hints. + */ + tenantId?: string; } /** diff --git a/sdk/identity/identity/CHANGELOG.md b/sdk/identity/identity/CHANGELOG.md index 7869b5bdd82a..9d9e1c2d9570 100644 --- a/sdk/identity/identity/CHANGELOG.md +++ b/sdk/identity/identity/CHANGELOG.md @@ -17,6 +17,8 @@ - Added `regionalAuthority` property to `ClientSecretCredentialOptions` and `ClientCertificateCredentialOptions`. - If instead of a region, `AutoDiscoverRegion` is specified as the value for `regionalAuthority`, MSAL will be used to attempt to discover the region. - A region can also be specified through the `AZURE_REGIONAL_AUTHORITY_NAME` environment variable. +- `AzureCliCredential` and `AzurePowerShellCredential` now allow specifying a `tenantId`. +- All credentials except `ManagedIdentityCredential` support enabling multi tenant authentication via the `allowMultiTenantAuthentication` option. ### Breaking Changes diff --git a/sdk/identity/identity/review/identity.api.md b/sdk/identity/identity/review/identity.api.md index 80669f0f6133..a46edf356686 100644 --- a/sdk/identity/identity/review/identity.api.md +++ b/sdk/identity/identity/review/identity.api.md @@ -66,12 +66,24 @@ export enum AzureAuthorityHosts { // @public export class AzureCliCredential implements TokenCredential { + constructor(options?: AzureCliCredentialOptions); getToken(scopes: string | string[], options?: GetTokenOptions): Promise; + } + +// @public +export interface AzureCliCredentialOptions extends TokenCredentialOptions { + tenantId?: string; } // @public export class AzurePowerShellCredential implements TokenCredential { + constructor(options?: AzurePowerShellCredentialOptions); getToken(scopes: string | string[], options?: GetTokenOptions): Promise; + } + +// @public +export interface AzurePowerShellCredentialOptions extends TokenCredentialOptions { + tenantId?: string; } // @public @@ -297,6 +309,7 @@ export { TokenCredential } // @public export interface TokenCredentialOptions extends PipelineOptions { + allowMultiTenantAuthentication?: boolean; authorityHost?: string; } @@ -316,7 +329,7 @@ export interface UsernamePasswordCredentialOptions extends TokenCredentialOption // @public export class VisualStudioCodeCredential implements TokenCredential { constructor(options?: VisualStudioCodeCredentialOptions); - getToken(scopes: string | string[], _options?: GetTokenOptions): Promise; + getToken(scopes: string | string[], options?: GetTokenOptions): Promise; } // @public diff --git a/sdk/identity/identity/src/client/identityClient.ts b/sdk/identity/identity/src/client/identityClient.ts index 7b107439a1d0..a85099691fa5 100644 --- a/sdk/identity/identity/src/client/identityClient.ts +++ b/sdk/identity/identity/src/client/identityClient.ts @@ -313,4 +313,9 @@ export interface TokenCredentialOptions extends PipelineOptions { * The default is "https://login.microsoftonline.com". */ authorityHost?: string; + + /** + * If set to true, allows authentication flows to change the tenantId of the request if a different tenantId is received from a challenge or through a direct getToken call. + */ + allowMultiTenantAuthentication?: boolean; } diff --git a/sdk/identity/identity/src/credentials/authorizationCodeCredential.ts b/sdk/identity/identity/src/credentials/authorizationCodeCredential.ts index 2224aaf61f9c..acb08813efc8 100644 --- a/sdk/identity/identity/src/credentials/authorizationCodeCredential.ts +++ b/sdk/identity/identity/src/credentials/authorizationCodeCredential.ts @@ -12,6 +12,7 @@ import { SpanStatusCode } from "@azure/core-tracing"; import { credentialLogger, formatSuccess, formatError } from "../util/logging"; import { getIdentityTokenEndpointSuffix } from "../util/identityTokenEndpoint"; import { checkTenantId } from "../util/checkTenantId"; +import { processMultiTenantRequest } from "../util/validateMultiTenant"; const logger = credentialLogger("AuthorizationCodeCredential"); @@ -30,6 +31,7 @@ export class AuthorizationCodeCredential implements TokenCredential { private authorizationCode: string; private redirectUri: string; private lastTokenResponse: TokenResponse | null = null; + private allowMultiTenantAuthentication?: boolean; /** * Creates an instance of CodeFlowCredential with the details needed @@ -120,6 +122,7 @@ export class AuthorizationCodeCredential implements TokenCredential { options = redirectUriOrOptions as TokenCredentialOptions; } + this.allowMultiTenantAuthentication = options?.allowMultiTenantAuthentication; this.identityClient = new IdentityClient(options); } @@ -135,6 +138,10 @@ export class AuthorizationCodeCredential implements TokenCredential { scopes: string | string[], options?: GetTokenOptions ): Promise { + const tenantId = + processMultiTenantRequest(this.tenantId, this.allowMultiTenantAuthentication, options) || + this.tenantId; + const { span, updatedOptions } = createSpan("AuthorizationCodeCredential-getToken", options); try { let tokenResponse: TokenResponse | null = null; @@ -146,7 +153,7 @@ export class AuthorizationCodeCredential implements TokenCredential { // Try to use the refresh token first if (this.lastTokenResponse && this.lastTokenResponse.refreshToken) { tokenResponse = await this.identityClient.refreshAccessToken( - this.tenantId, + tenantId, this.clientId, scopeString, this.lastTokenResponse.refreshToken, @@ -157,9 +164,9 @@ export class AuthorizationCodeCredential implements TokenCredential { } if (tokenResponse === null) { - const urlSuffix = getIdentityTokenEndpointSuffix(this.tenantId); + const urlSuffix = getIdentityTokenEndpointSuffix(tenantId); const webResource = this.identityClient.createWebResource({ - url: `${this.identityClient.authorityHost}/${this.tenantId}/${urlSuffix}`, + url: `${this.identityClient.authorityHost}/${tenantId}/${urlSuffix}`, method: "POST", disableJsonStringifyOnBody: true, deserializationMapper: undefined, diff --git a/sdk/identity/identity/src/credentials/azureCliCredential.ts b/sdk/identity/identity/src/credentials/azureCliCredential.ts index e95d7fc91cdf..1b45cc79e462 100644 --- a/sdk/identity/identity/src/credentials/azureCliCredential.ts +++ b/sdk/identity/identity/src/credentials/azureCliCredential.ts @@ -9,6 +9,9 @@ import { SpanStatusCode } from "@azure/core-tracing"; import { credentialLogger, formatSuccess, formatError } from "../util/logging"; import * as child_process from "child_process"; import { ensureValidScope, getScopeResource } from "../util/scopeUtils"; +import { AzureCliCredentialOptions } from "./azureCliCredentialOptions"; +import { processMultiTenantRequest } from "../util/validateMultiTenant"; +import { checkTenantId } from "../util/checkTenantId"; /** * Mockable reference to the CLI credential cliCredentialFunctions @@ -35,13 +38,26 @@ export const cliCredentialInternals = { * @internal */ async getAzureCliAccessToken( - resource: string + resource: string, + tenantId?: string ): Promise<{ stdout: string; stderr: string; error: Error | null }> { + let tenantSection: string[] = []; + if (tenantId) { + tenantSection = ["--tenant", tenantId]; + } return new Promise((resolve, reject) => { try { child_process.execFile( "az", - ["account", "get-access-token", "--output", "json", "--resource", resource], + [ + "account", + "get-access-token", + "--output", + "json", + "--resource", + ...tenantSection, + resource + ], { cwd: cliCredentialInternals.getSafeWorkingDir() }, (error, stdout, stderr) => { resolve({ stdout: stdout, stderr: stderr, error }); @@ -65,6 +81,19 @@ const logger = credentialLogger("AzureCliCredential"); * in via the 'az' tool using the command "az login" from the commandline. */ export class AzureCliCredential implements TokenCredential { + private tenantId?: string; + private allowMultiTenantAuthentication?: boolean; + + /** + * Creates an instance of the {@link AzureCliCredential}. + * + * @param options - Options, to optionally allow multi-tenant requests. + */ + constructor(options?: AzureCliCredentialOptions) { + this.tenantId = options?.tenantId; + this.allowMultiTenantAuthentication = options?.allowMultiTenantAuthentication; + } + /** * Authenticates with Azure Active Directory and returns an access token if successful. * If authentication fails, a {@link CredentialUnavailableError} will be thrown with the details of the failure. @@ -77,9 +106,17 @@ export class AzureCliCredential implements TokenCredential { scopes: string | string[], options?: GetTokenOptions ): Promise { + const tenantId = processMultiTenantRequest( + this.tenantId, + this.allowMultiTenantAuthentication, + options + ); + if (tenantId) { + checkTenantId(logger, tenantId); + } + const scope = typeof scopes === "string" ? scopes : scopes[0]; logger.getToken.info(`Using the scope ${scope}`); - ensureValidScope(scope, logger); const resource = getScopeResource(scope); @@ -88,7 +125,7 @@ export class AzureCliCredential implements TokenCredential { const { span } = createSpan("AzureCliCredential-getToken", options); try { - const obj = await cliCredentialInternals.getAzureCliAccessToken(resource); + const obj = await cliCredentialInternals.getAzureCliAccessToken(resource, tenantId); if (obj.stderr) { const isLoginError = obj.stderr.match("(.*)az login(.*)"); const isNotInstallError = diff --git a/sdk/identity/identity/src/credentials/azureCliCredentialOptions.ts b/sdk/identity/identity/src/credentials/azureCliCredentialOptions.ts new file mode 100644 index 000000000000..b50807eab973 --- /dev/null +++ b/sdk/identity/identity/src/credentials/azureCliCredentialOptions.ts @@ -0,0 +1,14 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. + +import { TokenCredentialOptions } from "../client/identityClient"; + +/** + * Options for the {@link AzureCliCredential} + */ +export interface AzureCliCredentialOptions extends TokenCredentialOptions { + /** + * Allows specifying a tenant ID + */ + tenantId?: string; +} diff --git a/sdk/identity/identity/src/credentials/azurePowerShellCredential.ts b/sdk/identity/identity/src/credentials/azurePowerShellCredential.ts index fecddb084bc0..b888e989460c 100644 --- a/sdk/identity/identity/src/credentials/azurePowerShellCredential.ts +++ b/sdk/identity/identity/src/credentials/azurePowerShellCredential.ts @@ -8,6 +8,9 @@ import { credentialLogger, formatSuccess, formatError } from "../util/logging"; import { trace } from "../util/tracing"; import { ensureValidScope, getScopeResource } from "../util/scopeUtils"; import { processUtils } from "../util/processUtils"; +import { AzurePowerShellCredentialOptions } from "./azurePowerShellCredentialOptions"; +import { processMultiTenantRequest } from "../util/validateMultiTenant"; +import { checkTenantId } from "../util/checkTenantId"; const logger = credentialLogger("AzurePowerShellCredential"); @@ -92,12 +95,26 @@ if (isWindows) { * `Connect-AzAccount` from the command line. */ export class AzurePowerShellCredential implements TokenCredential { + private tenantId?: string; + private allowMultiTenantAuthentication?: boolean; + + /** + * Creates an instance of the {@link AzurePowershellCredential}. + * + * @param options - Options, to optionally allow multi-tenant requests. + */ + constructor(options?: AzurePowerShellCredentialOptions) { + this.tenantId = options?.tenantId; + this.allowMultiTenantAuthentication = options?.allowMultiTenantAuthentication; + } + /** * Gets the access token from Azure PowerShell * @param resource - The resource to use when getting the token */ private async getAzurePowerShellAccessToken( - resource: string + resource: string, + tenantId?: string ): Promise<{ Token: string; ExpiresOn: string }> { // Clone the stack to avoid mutating it while iterating for (const powerShellCommand of [...commandStack]) { @@ -109,6 +126,11 @@ export class AzurePowerShellCredential implements TokenCredential { continue; } + let tenantSection = ""; + if (tenantId) { + tenantSection = `-TenantId "${tenantId}"`; + } + const results = await runCommands([ [ powerShellCommand, @@ -118,7 +140,7 @@ export class AzurePowerShellCredential implements TokenCredential { [ powerShellCommand, "-Command", - `Get-AzAccessToken -ResourceUrl "${resource}" | ConvertTo-Json` + `Get-AzAccessToken ${tenantSection} -ResourceUrl "${resource}" | ConvertTo-Json` ] ]); @@ -145,15 +167,22 @@ export class AzurePowerShellCredential implements TokenCredential { options: GetTokenOptions = {} ): Promise { return trace(`${this.constructor.name}.getToken`, options, async () => { - const scope = typeof scopes === "string" ? scopes : scopes[0]; - - logger.getToken.info(`Using the scope ${scope}`); + const tenantId = processMultiTenantRequest( + this.tenantId, + this.allowMultiTenantAuthentication, + options + ); + if (tenantId) { + checkTenantId(logger, tenantId); + } + const scope = typeof scopes === "string" ? scopes : scopes[0]; ensureValidScope(scope, logger); + logger.getToken.info(`Using the scope ${scope}`); const resource = getScopeResource(scope); try { - const response = await this.getAzurePowerShellAccessToken(resource); + const response = await this.getAzurePowerShellAccessToken(resource, tenantId); logger.getToken.info(formatSuccess(scopes)); return { token: response.Token, diff --git a/sdk/identity/identity/src/credentials/azurePowerShellCredentialOptions.ts b/sdk/identity/identity/src/credentials/azurePowerShellCredentialOptions.ts new file mode 100644 index 000000000000..aa48462dbd10 --- /dev/null +++ b/sdk/identity/identity/src/credentials/azurePowerShellCredentialOptions.ts @@ -0,0 +1,14 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. + +import { TokenCredentialOptions } from "../client/identityClient"; + +/** + * Options for the {@link AzurePowerShellCredential} + */ +export interface AzurePowerShellCredentialOptions extends TokenCredentialOptions { + /** + * Allows specifying a tenant ID + */ + tenantId?: string; +} diff --git a/sdk/identity/identity/src/credentials/visualStudioCodeCredential.ts b/sdk/identity/identity/src/credentials/visualStudioCodeCredential.ts index c12d7dde7c9b..aa479c67876f 100644 --- a/sdk/identity/identity/src/credentials/visualStudioCodeCredential.ts +++ b/sdk/identity/identity/src/credentials/visualStudioCodeCredential.ts @@ -12,6 +12,7 @@ import { IdentityClient, TokenCredentialOptions } from "../client/identityClient import { AzureAuthorityHosts } from "../constants"; import { checkTenantId } from "../util/checkTenantId"; import { credentialLogger, formatError, formatSuccess } from "../util/logging"; +import { processMultiTenantRequest } from "../util/validateMultiTenant"; import { VSCodeCredentialFinder } from "./visualStudioCodeCredentialExtension"; const CommonTenantId = "common"; @@ -102,6 +103,7 @@ export class VisualStudioCodeCredential implements TokenCredential { private identityClient: IdentityClient; private tenantId: string; private cloudName: VSCodeCloudNames; + private allowMultiTenantAuthentication?: boolean; /** * Creates an instance of VisualStudioCodeCredential to use for automatically authenticating via VSCode. @@ -127,6 +129,7 @@ export class VisualStudioCodeCredential implements TokenCredential { } else { this.tenantId = CommonTenantId; } + this.allowMultiTenantAuthentication = options?.allowMultiTenantAuthentication; checkUnsupportedTenant(this.tenantId); } @@ -168,9 +171,14 @@ export class VisualStudioCodeCredential implements TokenCredential { */ public async getToken( scopes: string | string[], - _options?: GetTokenOptions + options?: GetTokenOptions ): Promise { await this.prepareOnce(); + + const tenantId = + processMultiTenantRequest(this.tenantId, this.allowMultiTenantAuthentication, options) || + this.tenantId; + if (findCredentials === undefined) { throw new CredentialUnavailableError( "No implementation of VisualStudioCodeCredential is available (do you need to install and use the `@azure/identity-vscode` extension package?)" @@ -206,7 +214,7 @@ export class VisualStudioCodeCredential implements TokenCredential { if (refreshToken) { const tokenResponse = await this.identityClient.refreshAccessToken( - this.tenantId, + tenantId, AzureAccountClientId, scopeString, refreshToken, diff --git a/sdk/identity/identity/src/index.ts b/sdk/identity/identity/src/index.ts index 564e52a96157..55ff135f90e7 100644 --- a/sdk/identity/identity/src/index.ts +++ b/sdk/identity/identity/src/index.ts @@ -30,6 +30,7 @@ export { ClientCertificateCredential } from "./credentials/clientCertificateCred export { ClientCertificateCredentialOptions } from "./credentials/clientCertificateCredentialOptions"; export { CredentialPersistenceOptions } from "./credentials/credentialPersistenceOptions"; export { AzureCliCredential } from "./credentials/azureCliCredential"; +export { AzureCliCredentialOptions } from "./credentials/azureCliCredentialOptions"; export { InteractiveBrowserCredential } from "./credentials/interactiveBrowserCredential"; export { InteractiveBrowserCredentialOptions, @@ -47,6 +48,7 @@ export { UsernamePasswordCredential } from "./credentials/usernamePasswordCreden export { UsernamePasswordCredentialOptions } from "./credentials/usernamePasswordCredentialOptions"; export { AuthorizationCodeCredential } from "./credentials/authorizationCodeCredential"; export { AzurePowerShellCredential } from "./credentials/azurePowerShellCredential"; +export { AzurePowerShellCredentialOptions } from "./credentials/azurePowerShellCredentialOptions"; export { VisualStudioCodeCredential, diff --git a/sdk/identity/identity/src/msal/browserFlows/browserCommon.ts b/sdk/identity/identity/src/msal/browserFlows/browserCommon.ts index 914b40a002f1..6f8a91127f04 100644 --- a/sdk/identity/identity/src/msal/browserFlows/browserCommon.ts +++ b/sdk/identity/identity/src/msal/browserFlows/browserCommon.ts @@ -8,12 +8,13 @@ import { AccessToken } from "@azure/core-auth"; import { DefaultTenantId } from "../../constants"; import { resolveTenantId } from "../../util/resolveTenantId"; import { BrowserLoginStyle } from "../../credentials/interactiveBrowserCredentialOptions"; -import { getAuthorityHost, getKnownAuthorities, MsalBaseUtilities } from "../utils"; +import { getAuthority, getKnownAuthorities, MsalBaseUtilities } from "../utils"; import { MsalFlow, MsalFlowOptions } from "../flows"; import { AuthenticationRecord } from "../types"; import { CredentialFlowGetTokenOptions } from "../credentials"; import { AuthenticationRequiredError } from "../errors"; import { CredentialUnavailableError } from "../../client/errors"; +import { processMultiTenantRequest } from "../../util/validateMultiTenant"; /** * Union of the constructor parameters that all MSAL flow types take. @@ -22,6 +23,7 @@ import { CredentialUnavailableError } from "../../client/errors"; export interface MsalBrowserFlowOptions extends MsalFlowOptions { redirectUri?: string; loginStyle: BrowserLoginStyle; + allowMultiTenantAuthentication?: boolean; loginHint?: string; } @@ -42,12 +44,12 @@ export function defaultBrowserMsalConfig( options: MsalBrowserFlowOptions ): msalBrowser.Configuration { const tenantId = options.tenantId || DefaultTenantId; - const authorityHost = getAuthorityHost(tenantId, options.authorityHost); + const authority = getAuthority(tenantId, options.authorityHost); return { auth: { clientId: options.clientId!, - authority: authorityHost, - knownAuthorities: getKnownAuthorities(tenantId, authorityHost), + authority, + knownAuthorities: getKnownAuthorities(tenantId, authority), // If the users picked redirect as their login style, // but they didn't provide a redirectUri, // we can try to use the current page we're in as a default value. @@ -69,6 +71,8 @@ export abstract class MsalBrowser extends MsalBaseUtilities implements MsalBrows protected loginStyle: BrowserLoginStyle; protected clientId: string; protected tenantId: string; + protected allowMultiTenantAuthentication?: boolean; + protected authorityHost?: string; protected account: AuthenticationRecord | undefined; protected msalConfig: msalBrowser.Configuration; protected disableAutomaticAuthentication?: boolean; @@ -83,6 +87,8 @@ export abstract class MsalBrowser extends MsalBaseUtilities implements MsalBrows } this.clientId = options.clientId; this.tenantId = resolveTenantId(this.logger, options.tenantId, options.clientId); + this.allowMultiTenantAuthentication = options?.allowMultiTenantAuthentication; + this.authorityHost = options.authorityHost; this.msalConfig = defaultBrowserMsalConfig(options); this.disableAutomaticAuthentication = options.disableAutomaticAuthentication; @@ -138,8 +144,16 @@ export abstract class MsalBrowser extends MsalBaseUtilities implements MsalBrows */ public async getToken( scopes: string[], - options?: CredentialFlowGetTokenOptions + options: CredentialFlowGetTokenOptions = {} ): Promise { + const tenantId = + processMultiTenantRequest(this.tenantId, this.allowMultiTenantAuthentication, options) || + this.tenantId; + + if (!options.authority) { + options.authority = getAuthority(tenantId, this.authorityHost); + } + // We ensure that redirection is handled at this point. await this.handleRedirect(); diff --git a/sdk/identity/identity/src/msal/browserFlows/msalAuthCode.ts b/sdk/identity/identity/src/msal/browserFlows/msalAuthCode.ts index f6294a3b885b..a81004fba11e 100644 --- a/sdk/identity/identity/src/msal/browserFlows/msalAuthCode.ts +++ b/sdk/identity/identity/src/msal/browserFlows/msalAuthCode.ts @@ -162,7 +162,7 @@ To work with multiple accounts for the same Client ID and Tenant ID, please prov } const parameters: msalBrowser.SilentRequest = { - authority: this.msalConfig.auth.authority!, + authority: options?.authority || this.msalConfig.auth.authority!, correlationId: options?.correlationId, account: publicToMsal(account), forceRefresh: false, @@ -191,7 +191,7 @@ To work with multiple accounts for the same Client ID and Tenant ID, please prov } const parameters: msalBrowser.RedirectRequest = { - authority: this.msalConfig.auth.authority!, + authority: options?.authority || this.msalConfig.auth.authority!, correlationId: options?.correlationId, account: publicToMsal(account), loginHint: this.loginHint, diff --git a/sdk/identity/identity/src/msal/credentials.ts b/sdk/identity/identity/src/msal/credentials.ts index 6b80f45b96f1..55a2305db4de 100644 --- a/sdk/identity/identity/src/msal/credentials.ts +++ b/sdk/identity/identity/src/msal/credentials.ts @@ -19,6 +19,10 @@ export interface CredentialFlowGetTokenOptions extends GetTokenOptions { * Makes getToken throw if a manual authentication is necessary. */ disableAutomaticAuthentication?: boolean; + /** + * Authority, to overwrite the default one, if necessary. + */ + authority?: string; } /** diff --git a/sdk/identity/identity/src/msal/nodeFlows/msalClientCertificate.ts b/sdk/identity/identity/src/msal/nodeFlows/msalClientCertificate.ts index 3b5131f5725e..c8fb88139c8f 100644 --- a/sdk/identity/identity/src/msal/nodeFlows/msalClientCertificate.ts +++ b/sdk/identity/identity/src/msal/nodeFlows/msalClientCertificate.ts @@ -109,7 +109,8 @@ export class MsalClientCertificate extends MsalNode { const result = await this.confidentialApp!.acquireTokenByClientCredential({ scopes, correlationId: options.correlationId, - azureRegion: this.azureRegion + azureRegion: this.azureRegion, + authority: options.authority }); // Even though we're providing the same default in memory persistence cache that we use for DeviceCodeCredential, // The Client Credential flow does not return the account information from the authentication service, diff --git a/sdk/identity/identity/src/msal/nodeFlows/msalClientSecret.ts b/sdk/identity/identity/src/msal/nodeFlows/msalClientSecret.ts index eafbc6e70be8..dbea908575b9 100644 --- a/sdk/identity/identity/src/msal/nodeFlows/msalClientSecret.ts +++ b/sdk/identity/identity/src/msal/nodeFlows/msalClientSecret.ts @@ -33,7 +33,8 @@ export class MsalClientSecret extends MsalNode { const result = await this.confidentialApp!.acquireTokenByClientCredential({ scopes, correlationId: options.correlationId, - azureRegion: this.azureRegion + azureRegion: this.azureRegion, + authority: options.authority }); // The Client Credential flow does not return an account, // so each time getToken gets called, we will have to acquire a new token through the service. diff --git a/sdk/identity/identity/src/msal/nodeFlows/msalDeviceCode.ts b/sdk/identity/identity/src/msal/nodeFlows/msalDeviceCode.ts index 391726b786fb..323b3c980354 100644 --- a/sdk/identity/identity/src/msal/nodeFlows/msalDeviceCode.ts +++ b/sdk/identity/identity/src/msal/nodeFlows/msalDeviceCode.ts @@ -38,7 +38,8 @@ export class MsalDeviceCode extends MsalNode { deviceCodeCallback: this.userPromptCallback, scopes, cancel: false, - correlationId: options?.correlationId + correlationId: options?.correlationId, + authority: options?.authority }; const promise = this.publicApp!.acquireTokenByDeviceCode(requestOptions); // TODO: diff --git a/sdk/identity/identity/src/msal/nodeFlows/msalOpenBrowser.ts b/sdk/identity/identity/src/msal/nodeFlows/msalOpenBrowser.ts index c59887477dfc..30f0a1e83526 100644 --- a/sdk/identity/identity/src/msal/nodeFlows/msalOpenBrowser.ts +++ b/sdk/identity/identity/src/msal/nodeFlows/msalOpenBrowser.ts @@ -3,7 +3,7 @@ import * as msalNode from "@azure/msal-node"; -import { AccessToken, GetTokenOptions } from "@azure/core-auth"; +import { AccessToken } from "@azure/core-auth"; import { Socket } from "net"; import http from "http"; @@ -14,6 +14,7 @@ import { credentialLogger, formatError, formatSuccess } from "../../util/logging import { MsalNodeOptions, MsalNode } from "./nodeCommon"; import { msalToPublic } from "../utils"; import { CredentialUnavailableError } from "../../client/errors"; +import { CredentialFlowGetTokenOptions } from "../credentials"; /** * Options that can be passed to configure MSAL to handle authentication through opening a browser window. @@ -63,7 +64,10 @@ export class MsalOpenBrowser extends MsalNode { return this.publicApp!.acquireTokenByCode(request); } - protected doGetToken(scopes: string[], options?: GetTokenOptions): Promise { + protected doGetToken( + scopes: string[], + options?: CredentialFlowGetTokenOptions + ): Promise { return new Promise((resolve, reject) => { const socketToDestroy: Socket[] = []; @@ -91,6 +95,7 @@ export class MsalOpenBrowser extends MsalNode { code: url.searchParams.get("code")!, redirectUri: this.redirectUri, scopes: scopes, + authority: options?.authority, codeVerifier: this.pkceCodes?.verifier }; @@ -171,7 +176,7 @@ export class MsalOpenBrowser extends MsalNode { app.on("connection", (socket) => socketToDestroy.push(socket)); app.on("listening", () => { - const openPromise = this.openAuthCodeUrl(scopes); + const openPromise = this.openAuthCodeUrl(scopes, options); const abortSignal = options?.abortSignal; if (abortSignal) { @@ -194,7 +199,10 @@ export class MsalOpenBrowser extends MsalNode { challenge: string; }; - private async openAuthCodeUrl(scopeArray: string[]): Promise { + private async openAuthCodeUrl( + scopeArray: string[], + options?: CredentialFlowGetTokenOptions + ): Promise { // Initialize CryptoProvider instance const cryptoProvider = new msalNode.CryptoProvider(); // Generate PKCE Codes before starting the authorization flow @@ -203,6 +211,7 @@ export class MsalOpenBrowser extends MsalNode { const authCodeUrlParameters: msalNode.AuthorizationUrlRequest = { scopes: scopeArray, redirectUri: this.redirectUri, + authority: options?.authority, loginHint: this.loginHint, codeChallenge: this.pkceCodes.challenge, codeChallengeMethod: "S256" // Use SHA256 Algorithm diff --git a/sdk/identity/identity/src/msal/nodeFlows/msalUsernamePassword.ts b/sdk/identity/identity/src/msal/nodeFlows/msalUsernamePassword.ts index 93f71eed2a7c..5db432850074 100644 --- a/sdk/identity/identity/src/msal/nodeFlows/msalUsernamePassword.ts +++ b/sdk/identity/identity/src/msal/nodeFlows/msalUsernamePassword.ts @@ -40,7 +40,8 @@ export class MsalUsernamePassword extends MsalNode { scopes, username: this.username, password: this.password, - correlationId: options?.correlationId + correlationId: options?.correlationId, + authority: options?.authority }; const result = await this.publicApp!.acquireTokenByUsernamePassword(requestOptions); return this.handleResult(scopes, this.clientId, result || undefined); diff --git a/sdk/identity/identity/src/msal/nodeFlows/nodeCommon.ts b/sdk/identity/identity/src/msal/nodeFlows/nodeCommon.ts index 63625c5228af..6ed484c075b9 100644 --- a/sdk/identity/identity/src/msal/nodeFlows/nodeCommon.ts +++ b/sdk/identity/identity/src/msal/nodeFlows/nodeCommon.ts @@ -16,7 +16,7 @@ import { AuthenticationRequiredError } from "../errors"; import { AuthenticationRecord } from "../types"; import { defaultLoggerCallback, - getAuthorityHost, + getAuthority, getKnownAuthorities, MsalBaseUtilities, msalToPublic, @@ -24,6 +24,7 @@ import { } from "../utils"; import { TokenCachePersistenceOptions } from "./tokenCachePersistenceOptions"; import { RegionalAuthority } from "../../regionalAuthority"; +import { processMultiTenantRequest } from "../../util/validateMultiTenant"; /** * Union of the constructor parameters that all MSAL flow types for Node. @@ -32,6 +33,7 @@ import { RegionalAuthority } from "../../regionalAuthority"; export interface MsalNodeOptions extends MsalFlowOptions { tokenCachePersistenceOptions?: TokenCachePersistenceOptions; tokenCredentialOptions: TokenCredentialOptions; + allowMultiTenantAuthentication?: boolean; /** * Specifies a regional authority. Please refer to the {@link RegionalAuthority} type for the accepted values. * If {@link RegionalAuthority.AutoDiscoverRegion} is specified, we will try to discover the regional authority endpoint. @@ -72,15 +74,19 @@ export abstract class MsalNode extends MsalBaseUtilities implements MsalFlow { protected confidentialApp: msalNode.ConfidentialClientApplication | undefined; protected msalConfig: msalNode.Configuration; protected clientId: string; + protected tenantId: string; + protected allowMultiTenantAuthentication?: boolean; + protected authorityHost?: string; protected identityClient?: IdentityClient; protected requiresConfidential: boolean = false; protected azureRegion?: string; - protected createCachePlugin: (() => Promise) | undefined; constructor(options: MsalNodeOptions) { super(options); this.msalConfig = this.defaultNodeMsalConfig(options); + this.tenantId = resolveTenantId(options.logger, options.tenantId, options.clientId); + this.allowMultiTenantAuthentication = options?.allowMultiTenantAuthentication; this.clientId = this.msalConfig.auth.clientId; // If persistence has been configured @@ -104,19 +110,19 @@ export abstract class MsalNode extends MsalBaseUtilities implements MsalFlow { protected defaultNodeMsalConfig(options: MsalNodeOptions): msalNode.Configuration { const clientId = options.clientId || DeveloperSignOnClientId; const tenantId = resolveTenantId(options.logger, options.tenantId, options.clientId); - const authorityHost = getAuthorityHost( - tenantId, - options.authorityHost || process.env.AZURE_AUTHORITY_HOST - ); + + this.authorityHost = options.authorityHost || process.env.AZURE_AUTHORITY_HOST; + const authority = getAuthority(tenantId, this.authorityHost); + this.identityClient = new IdentityClient({ ...options.tokenCredentialOptions, - authorityHost + authorityHost: authority }); return { auth: { clientId, - authority: authorityHost, - knownAuthorities: getKnownAuthorities(tenantId, authorityHost) + authority, + knownAuthorities: getKnownAuthorities(tenantId, authority) }, // Cache is defined in this.prepare(); system: { @@ -234,7 +240,8 @@ To work with multiple accounts for the same Client ID and Tenant ID, please prov // To be able to re-use the account, the Token Cache must also have been provided. account: publicToMsal(this.account), correlationId: options?.correlationId, - scopes + scopes, + authority: options?.authority }; try { @@ -261,8 +268,15 @@ To work with multiple accounts for the same Client ID and Tenant ID, please prov scopes: string[], options: CredentialFlowGetTokenOptions = {} ): Promise { + const tenantId = + processMultiTenantRequest(this.tenantId, this.allowMultiTenantAuthentication, options) || + this.tenantId; + + options.authority = getAuthority(tenantId, this.authorityHost); + options.correlationId = options?.correlationId || this.generateUuid(); await this.init(options); + return this.getTokenSilent(scopes, options).catch((err) => { if (err.name !== "AuthenticationRequiredError") { throw err; diff --git a/sdk/identity/identity/src/msal/utils.ts b/sdk/identity/identity/src/msal/utils.ts index ccf0a5170257..007bc315b30a 100644 --- a/sdk/identity/identity/src/msal/utils.ts +++ b/sdk/identity/identity/src/msal/utils.ts @@ -51,10 +51,10 @@ export function ensureValidMsalToken( } /** - * Generates a valid authorityHost by combining a host with a tenantId. + * Generates a valid authority by combining a host with a tenantId. * @internal */ -export function getAuthorityHost(tenantId: string, host: string = DefaultAuthorityHost): string { +export function getAuthority(tenantId: string, host: string = DefaultAuthorityHost): string { if (host.endsWith("/")) { return host + tenantId; } else { @@ -204,7 +204,7 @@ export function publicToMsal(account: AuthenticationRecord): msalCommon.AccountI export function msalToPublic(clientId: string, account: MsalAccountInfo): AuthenticationRecord { const record = { - authority: getAuthorityHost(account.tenantId, account.environment), + authority: getAuthority(account.tenantId, account.environment), homeAccountId: account.homeAccountId, tenantId: account.tenantId || DefaultTenantId, username: account.username, diff --git a/sdk/identity/identity/src/util/validateMultiTenant.ts b/sdk/identity/identity/src/util/validateMultiTenant.ts new file mode 100644 index 000000000000..7976b0011f14 --- /dev/null +++ b/sdk/identity/identity/src/util/validateMultiTenant.ts @@ -0,0 +1,34 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. + +import { GetTokenOptions } from "@azure/core-auth"; + +/** + * @internal + */ +export const multiTenantErrorMessage = + "A getToken request was attempted with a tenant different than the tenant configured at the initialization of the credential, but multi-tenant authentication was not enabled in this credential instance."; + +/** + * Verifies whether locally assigned tenants are equal to tenants received through getToken. + * Returns the appropriate tenant. + * @internal + */ +export function processMultiTenantRequest( + tenantId?: string, + allowMultiTenantAuthentication?: boolean, + getTokenOptions?: GetTokenOptions +): string | undefined { + if ( + !allowMultiTenantAuthentication && + getTokenOptions?.tenantId && + tenantId && + getTokenOptions.tenantId !== tenantId + ) { + throw new Error(multiTenantErrorMessage); + } + if (allowMultiTenantAuthentication && getTokenOptions?.tenantId) { + return getTokenOptions.tenantId; + } + return tenantId; +} diff --git a/sdk/identity/identity/test/internal/utils.spec.ts b/sdk/identity/identity/test/internal/utils.spec.ts new file mode 100644 index 000000000000..c3189bc81e4f --- /dev/null +++ b/sdk/identity/identity/test/internal/utils.spec.ts @@ -0,0 +1,84 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. + +import assert from "assert"; +import { + multiTenantErrorMessage, + processMultiTenantRequest +} from "../../src/util/validateMultiTenant"; + +describe("Identity utilities", function() { + describe("validateMultiTenantRequest", function() { + it("throws if multi-tenant authentication is disallowed, and the tenants don't match", async function() { + let error: Error | undefined; + try { + processMultiTenantRequest("credential-options-tenant-id", false, { + tenantId: "get-token-options-tenant-id" + }); + } catch (e) { + error = e; + } + assert.ok( + error, + "validateMultiTenantRequest should throw if multi-tenant is disallowed and the tenants don't match" + ); + assert.equal(error!.message, multiTenantErrorMessage); + }); + + it("throws if multi-tenant authentication is undefined, and the tenants don't match", async function() { + let error: Error | undefined; + try { + processMultiTenantRequest("credential-options-tenant-id", undefined, { + tenantId: "get-token-options-tenant-id" + }); + } catch (e) { + error = e; + } + assert.ok( + error, + "validateMultiTenantRequest should throw if multi-tenant is disallowed and the tenants don't match" + ); + assert.equal(error!.message, multiTenantErrorMessage); + }); + + it("If allowMultiTenantAuthentication is disallowed, it shouldn't throw if the tenant received is the same as the tenant we already had, that same tenant should be returned", async function() { + assert.equal( + processMultiTenantRequest("same-tenant", false, { + tenantId: "same-tenant" + }), + "same-tenant" + ); + assert.equal( + processMultiTenantRequest("same-tenant", undefined, { + tenantId: "same-tenant" + }), + "same-tenant" + ); + }); + + it("If we had a tenant and the options have another tenant, we pick the tenant from the options", async function() { + assert.equal( + processMultiTenantRequest("credential-options-tenant-id", true, { + tenantId: "get-token-options-tenant-id" + }), + "get-token-options-tenant-id" + ); + }); + + it("If we had a tenant and there is no tenant in the options, we pick the tenant we already had", async function() { + assert.equal( + processMultiTenantRequest("credential-options-tenant-id", true, {}), + "credential-options-tenant-id" + ); + }); + + it("If the tenant received is the same as the tenant we already had, that same tenant should be returned", async function() { + assert.equal( + processMultiTenantRequest("same-tenant", true, { + tenantId: "same-tenant" + }), + "same-tenant" + ); + }); + }); +}); From 020a0755f0850a70ee728164313d26bfb2c76e8f Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Wed, 30 Jun 2021 16:30:45 -0700 Subject: [PATCH 46/49] Increment version for core releases (#16113) * Increment package version after release of azure-core-tracing * Increment package version after release of azure-core-lro * Increment package version after release of azure-core-rest-pipeline * Run rush update Co-authored-by: Maor Leger --- common/config/rush/pnpm-lock.yaml | 176 ++++++++++++------- sdk/core/core-lro/CHANGELOG.md | 11 ++ sdk/core/core-lro/package.json | 2 +- sdk/core/core-rest-pipeline/CHANGELOG.md | 11 ++ sdk/core/core-rest-pipeline/package.json | 2 +- sdk/core/core-rest-pipeline/src/constants.ts | 2 +- sdk/core/core-tracing/CHANGELOG.md | 11 ++ sdk/core/core-tracing/package.json | 2 +- 8 files changed, 151 insertions(+), 66 deletions(-) diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index dc754dd7d6bd..c1958d7937e9 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -311,6 +311,15 @@ packages: node: '>=8.0.0' resolution: integrity: sha512-frF0pJc9HTmKncVokhBxCqipjbql02DThQ1ZJ9wLi7SDMLdPAFyDI5xZNzX5guLz+/DtPkY+SGK2li9FIXqshQ== + /@azure/core-tracing/1.0.0-preview.12: + dependencies: + '@opentelemetry/api': 1.0.0 + tslib: 2.3.0 + dev: false + engines: + node: '>=12.0.0' + resolution: + integrity: sha512-nvo2Wc4EKZGN6eFu9n3U7OXmASmL8VxoPIH7xaD6OlQqi44bouF0YIi9ID5rEsKLiAU59IYx6M297nqWVMWPDg== /@azure/core-tracing/1.0.0-preview.9: dependencies: '@opencensus/web-types': 0.0.7 @@ -6234,12 +6243,14 @@ packages: resolution: integrity: sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw== /querystring/0.2.0: + deprecated: The dev: false engines: node: '>=0.4.x' resolution: integrity: sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= /querystring/0.2.1: + deprecated: The dev: false engines: node: '>=0.4.x' @@ -8113,6 +8124,7 @@ packages: version: 0.0.0 file:projects/ai-anomaly-detector.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@azure/identity': 1.3.0 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 @@ -8157,7 +8169,7 @@ packages: dev: false name: '@rush-temp/ai-anomaly-detector' resolution: - integrity: sha512-xor9UzgRJS2NW7pO+RvYWrtAIDLJ5HTLfPT0srRwO83Ofl851H6dTtrCvYd6L4KUvj1lZLnF60YS9cWFtapK+g== + integrity: sha512-9ufT3fg10JAzlueUXpNT2SFgD88Dt/MfuHYZ1eDnJyIvQgUHcbHq7X+tquB57kFvIlwqndodL0gegWlvq2ZMuw== tarball: file:projects/ai-anomaly-detector.tgz version: 0.0.0 file:projects/ai-document-translator.tgz: @@ -8204,6 +8216,7 @@ packages: version: 0.0.0 file:projects/ai-form-recognizer.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@types/chai': 4.2.19 '@types/mocha': 7.0.2 @@ -8241,11 +8254,12 @@ packages: dev: false name: '@rush-temp/ai-form-recognizer' resolution: - integrity: sha512-ZoJdYizuIklrV7rL0bmKeAGYOmdZr0cLNRxwR9PdN3KowY3Uo+/1RLdv6+e0G/cUC2Avqcgsk/p46glgLeZVZw== + integrity: sha512-+3+z/wPPpET3+fcAiezmXbWHvQLgWJ27FCTK14p5GQMKLh9QPHpV1WnshzRPptJ3/23hFU/bNF0KoTqpCMb2AA== tarball: file:projects/ai-form-recognizer.tgz version: 0.0.0 file:projects/ai-metrics-advisor.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@azure/identity': 1.3.0 '@microsoft/api-extractor': 7.7.11 '@types/chai': 4.2.19 @@ -8285,13 +8299,13 @@ packages: dev: false name: '@rush-temp/ai-metrics-advisor' resolution: - integrity: sha512-JXGv6EY1CYEfStFqTBGSEQcBEy3/Xxm3zhXJOh0m40uLZq4cYi5dwQ5I6lyaYfasbktq34IGBV1+KL7Ujzd/MQ== + integrity: sha512-qu+gXgf/6VRdPxK0z/G3Y/3utVUfn3a6Hcz25yStFz7cpeXOC6IyD+sVG97PWYoCOzg32p8OgN0kHU1P3bReOQ== tarball: file:projects/ai-metrics-advisor.tgz version: 0.0.0 file:projects/ai-text-analytics.tgz: dependencies: '@azure/core-rest-pipeline': 1.0.4 - '@azure/core-tracing': 1.0.0-preview.11 + '@azure/core-tracing': 1.0.0-preview.12 '@azure/identity': 2.0.0-beta.3 '@microsoft/api-extractor': 7.7.11 '@types/chai': 4.2.19 @@ -8333,11 +8347,12 @@ packages: dev: false name: '@rush-temp/ai-text-analytics' resolution: - integrity: sha512-Etd2xmQEO6pchKxIzpiZlFNg52Xu86XdKqlgU+DZ5jE4IX4RTDS83ugGEzVSS0bjME+P59YZ19ubhwanOb6WlQ== + integrity: sha512-xOTFTYbC7zkPZU+4uJ63+sFWxsXvaQQwQRRQpeH0x8TbxUpWfELGqZ7tmkaqiiA/kWNSjwRweMooEPznC2/0XA== tarball: file:projects/ai-text-analytics.tgz version: 0.0.0 file:projects/app-configuration.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@azure/keyvault-secrets': 4.2.0 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 @@ -8386,13 +8401,13 @@ packages: dev: false name: '@rush-temp/app-configuration' resolution: - integrity: sha512-LNi199Cv3vpwwDyHMUnPNc/GJhkiBY4ntL0I6IUsO32nO1SKnEVoCnWnvpsbsUnRTrT/zR079mLOyPay0t+Qug== + integrity: sha512-5dSzEE5J07mG8wEtrtJe9vFXVuzETnPaFTLje83k+m2ZFCVeShG9663Y5vFADKD1KeneKw6OsV/1HfpPk24zjg== tarball: file:projects/app-configuration.tgz version: 0.0.0 file:projects/attestation.tgz: dependencies: '@azure/core-rest-pipeline': 1.0.4 - '@azure/core-tracing': 1.0.0-preview.11 + '@azure/core-tracing': 1.0.0-preview.12 '@azure/identity': 1.3.0 '@microsoft/api-extractor': 7.7.11 '@types/chai': 4.2.19 @@ -8441,14 +8456,14 @@ packages: dev: false name: '@rush-temp/attestation' resolution: - integrity: sha512-EwxFoG/HK6QssgD+v8J0kGJyDrfxOgdY7hegBWPUxkuC76S4dazK3bnx+SRMcM3s/9p/8OfWhIQLfLygeYFx3A== + integrity: sha512-sWKNBhFI+nUcjqVMMKpimIP5+eWVZYvlv4lfTbhFr2EKdWjqFWBigtZMuxPFkbpWZT3lR+MPL068QEVfi4jf9A== tarball: file:projects/attestation.tgz version: 0.0.0 file:projects/communication-chat.tgz: dependencies: '@azure/communication-identity': 1.0.0 '@azure/communication-signaling': 1.0.0-beta.7 - '@azure/core-tracing': 1.0.0-preview.11 + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 '@rollup/plugin-json': 4.1.0_rollup@1.32.1 @@ -8497,11 +8512,12 @@ packages: dev: false name: '@rush-temp/communication-chat' resolution: - integrity: sha512-JsmZwX9BwOo9JBuM15qjJP1u0hQHmdbFiT60wFGbchohHp8mok71/c+eeiH9P1vgAAfXIxXCCjSb1R77j3YqMQ== + integrity: sha512-Zrv5MfblAHH1GYcs+5bTuPmEYRD6tDkcUgB5Rjeg+OhC48BszFG0h9/IkmvzFd3faEz2bcoT2kVs7Vu5sScqtw== tarball: file:projects/communication-chat.tgz version: 0.0.0 file:projects/communication-common.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 '@rollup/plugin-json': 4.1.0_rollup@1.32.1 @@ -8550,11 +8566,12 @@ packages: dev: false name: '@rush-temp/communication-common' resolution: - integrity: sha512-Pje4ZHzhRzuv+h+yP02AECjaenYXExPAjTLYcquj7cr4N8mpxhJ7uluTDI2maz5NEbbbzq/b3fULiiX4u9N2IQ== + integrity: sha512-Aw8jV4Aw7UxX0+lg78MCPL8J79O+oiKCeQiH2Amt3BueTbQaxnYMPH7IKtlG9WBdk04YO61MhRT4Z6jwghpqYA== tarball: file:projects/communication-common.tgz version: 0.0.0 file:projects/communication-identity.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 '@rollup/plugin-json': 4.1.0_rollup@1.32.1 @@ -8602,12 +8619,13 @@ packages: dev: false name: '@rush-temp/communication-identity' resolution: - integrity: sha512-LiLVBreww8n6sBGNoAFvFFagepcdCwL8aUQzGo+0ZW6Tm5DY4LptNs3JBP49VsBB+n1U+Y9f+xNwNlnPi0SXVA== + integrity: sha512-xINCgL/y263SN7BOXKfj3mpP3p2UYFeoxKuZ2ShcO5gk+d4lIDL//sV8xmTyW6LF86qJJbEgyzlkLhwP16HYFw== tarball: file:projects/communication-identity.tgz version: 0.0.0 file:projects/communication-network-traversal.tgz: dependencies: '@azure/communication-identity': 1.0.0 + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 '@rollup/plugin-json': 4.1.0_rollup@1.32.1 @@ -8655,11 +8673,12 @@ packages: dev: false name: '@rush-temp/communication-network-traversal' resolution: - integrity: sha512-SLNItXwKzrnfDd/pZ60nUHc+PqEEpfQEe9GFNYTmAP53krfOb6/XHWjt6OZNVyXwjkDc1mG3o10KZntjPR6hqg== + integrity: sha512-FH3q9n+VPL8B4O05Rqya+bclybcXv04VBH/VkVkgUCUa3TBf/gn+PNSEawmp27KNSrEjZ3RA6tyal+xs+lpNcQ== tarball: file:projects/communication-network-traversal.tgz version: 0.0.0 file:projects/communication-phone-numbers.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 '@rollup/plugin-json': 4.1.0_rollup@1.32.1 @@ -8707,11 +8726,12 @@ packages: dev: false name: '@rush-temp/communication-phone-numbers' resolution: - integrity: sha512-izvzyc+IZYXQXM9q73ni8SPSXSYxdF7Hm5KPIxBdx++bY3T0L0RmqUVsxlfkGhL8Wh6cBouyYBmFZfGsVcC3Zw== + integrity: sha512-zi9RGOsp2ahuJ+PLsIE9SIbhWicaypGwOldIs8zaj1/D2mrKhghu328aOOwSvMRveWUoQU8bRi9buGxkTr66NA== tarball: file:projects/communication-phone-numbers.tgz version: 0.0.0 file:projects/communication-sms.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 '@rollup/plugin-json': 4.1.0_rollup@1.32.1 @@ -8758,7 +8778,7 @@ packages: dev: false name: '@rush-temp/communication-sms' resolution: - integrity: sha512-8+FLM3cvueo2gwgMknJ/n3OyBSKe1mHxDTjEJ/cUAXgKHuU80bvpBYZ0TRQNu5pNN3CFhyl3fNj4U6KAaN08ZA== + integrity: sha512-PeresdLGSvIw3+ulHdXyY1JdFJnpoJ5b6jJRYksiFHp2be101Jx5bZEv5XU8lf9k4HrIXKHCvVuBWo6N66LJBA== tarball: file:projects/communication-sms.tgz version: 0.0.0 file:projects/confidential-ledger.tgz: @@ -8805,7 +8825,7 @@ packages: version: 0.0.0 file:projects/container-registry.tgz: dependencies: - '@azure/core-tracing': 1.0.0-preview.11 + '@azure/core-tracing': 1.0.0-preview.12 '@azure/ms-rest-nodeauth': 3.0.10 '@microsoft/api-extractor': 7.7.11 '@types/chai': 4.2.19 @@ -8844,7 +8864,7 @@ packages: dev: false name: '@rush-temp/container-registry' resolution: - integrity: sha512-sM+tVFsBl6vesjl4vSW1PeKmSeRtwY4eYDCinWGo8PJOxMUj0PpGeK2O7NiXUsF+eLyp30tafqY/xhjWt3foDQ== + integrity: sha512-j5UJVkhWFWHQNo2QKHgG4pOyMPHUWEZ2zAMmKyhJk6VB9xHyImRaUorffISCC23Ka2BEsgyqDxH99zIgWiOX3Q== tarball: file:projects/container-registry.tgz version: 0.0.0 file:projects/core-amqp.tgz: @@ -8953,7 +8973,7 @@ packages: file:projects/core-client-1.tgz: dependencies: '@azure/core-rest-pipeline': 1.0.4 - '@azure/core-tracing': 1.0.0-preview.11 + '@azure/core-tracing': 1.0.0-preview.12 '@azure/core-xml': 1.0.0-beta.1 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 @@ -8997,7 +9017,7 @@ packages: dev: false name: '@rush-temp/core-client-1' resolution: - integrity: sha512-pCbSqwXCtmQzCBh1nChKeyoeqaLJ8mq62pFQaFkxBWj7yPSQvqUWmvjb9BhsWxYTURcNmt5KD5UYK9FMeqlnsg== + integrity: sha512-y2Ck63UttZJzyZPfw01W6GFfdylsr0qeKZ6SHL4Q5F0g0vuUZ5CFfWNymMZsf5tVXpzCJJKe5+vgqmTkc/lRYg== tarball: file:projects/core-client-1.tgz version: 0.0.0 file:projects/core-client-paging.tgz: @@ -9034,7 +9054,7 @@ packages: dev: false name: '@rush-temp/core-client-paging' resolution: - integrity: sha512-56hlO8jgFdKMR/mgzW2WPHAqxx7n+ji+L9ZCeF+9yxkcmBBzsSKfYrQdTtsBN94/1/ZwtmWJluu7WDKieWYY0w== + integrity: sha512-2yfyj7zg3Un1ZqzSMicY6SUmVE+Xnx4HbbAumjTWTAHBPeemreMzkys2OtcP7pYuLkd8mlBuHxzw/9xLf3p8Zg== tarball: file:projects/core-client-paging.tgz version: 0.0.0 file:projects/core-client.tgz: @@ -9122,6 +9142,7 @@ packages: version: 0.0.0 file:projects/core-http.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@azure/logger-js': 1.3.2 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 @@ -9185,11 +9206,12 @@ packages: dev: false name: '@rush-temp/core-http' resolution: - integrity: sha512-yyCNXJSvJthpwBPRtGGImOFbdXtFQZP3zbGl7Ei7olsXAr0Y6BaCw31tZoJ9BIsDFN/Pjw+3rXCAGpXzE0QWcA== + integrity: sha512-1mJYsUQMnKqOb5KJnUnMjmgeTWemHD8UgFrJm+zOfsWpLYLA6bSFj194n5fjJdDtId/mb37yGBYZbOaYANEDow== tarball: file:projects/core-http.tgz version: 0.0.0 file:projects/core-lro.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 '@rollup/plugin-multi-entry': 3.0.1_rollup@1.32.1 @@ -9233,7 +9255,7 @@ packages: dev: false name: '@rush-temp/core-lro' resolution: - integrity: sha512-TRj3hpxpoOvBXH3WJS79ecEycw1a7x1ljh5cK9us0AsFdG4cCqRPOYjyiqTdBbcVJq7/rF73k/O3ptrnLrnVFQ== + integrity: sha512-Y8Lud9OBd9EwLoc0ksgNTz3qSsF0VKAZyI0lP7jH4xKVCqhsH3qLaX9xePBHucMBe+XnjRCC05WaJaXPfQ/t/A== tarball: file:projects/core-lro.tgz version: 0.0.0 file:projects/core-paging.tgz: @@ -9252,7 +9274,7 @@ packages: version: 0.0.0 file:projects/core-rest-pipeline.tgz: dependencies: - '@azure/core-tracing': 1.0.0-preview.11 + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 '@rollup/plugin-json': 4.1.0_rollup@1.32.1 @@ -9301,7 +9323,7 @@ packages: dev: false name: '@rush-temp/core-rest-pipeline' resolution: - integrity: sha512-wY6C2ZRU1FBXyJK1z70NRL+JjQHgGDOqkm/fWvhiodYOgo0LL2ujMWHqxuh1+xTQX09Ljvp+DXreHxU8hSxzlw== + integrity: sha512-u+ck7XNcdA0tBihWqjxTCMqjl0oozXZXjDwMj11thEGJZqrve+2KmDM6ls2B9uA4DxwPJdIQepTTRLXZqFfTPA== tarball: file:projects/core-rest-pipeline.tgz version: 0.0.0 file:projects/core-tracing.tgz: @@ -9501,7 +9523,7 @@ packages: file:projects/data-tables.tgz: dependencies: '@azure/core-rest-pipeline': 1.0.4 - '@azure/core-tracing': 1.0.0-preview.11 + '@azure/core-tracing': 1.0.0-preview.12 '@azure/core-xml': 1.0.0-beta.1 '@azure/identity': 2.0.0-beta.3 '@microsoft/api-extractor': 7.7.11 @@ -9553,7 +9575,7 @@ packages: dev: false name: '@rush-temp/data-tables' resolution: - integrity: sha512-ujM2bV+u3bW/E26L/F6YOOx8xbrLpzNDaqfmN12TQB1CMeHzQf38U3zMb/Pthhk/Xb4sAfO4qvPyVD9vAKQmoA== + integrity: sha512-mHo4qMDnQU3sJ2yh8RlC6Mmvoe5Wp0Lnz19O8RggH/8LZ3X8VRKlDZrQB+iF2wwGYoLPJlocvNoO43LXhpKicg== tarball: file:projects/data-tables.tgz version: 0.0.0 file:projects/dev-tool.tgz: @@ -9596,6 +9618,7 @@ packages: version: 0.0.0 file:projects/digital-twins-core.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@azure/identity': 1.3.0 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 @@ -9645,7 +9668,7 @@ packages: dev: false name: '@rush-temp/digital-twins-core' resolution: - integrity: sha512-ALnbQXSGDPYyvgBpj9LgOFpTlseHfrKvLxuR5S7RRdEZRzOp+3QPTV8ZlCLCFLM8C+mQZkGU0Zs1tYYHWuHI6A== + integrity: sha512-BAH8WsXsnRyFnnZA5JL2uc2HRvD3M7mWMQ38NLS670w7RvQNna/nCpEFmPpFyfdzIBtFC8cjkSDsW7ae6vzURg== tarball: file:projects/digital-twins-core.tgz version: 0.0.0 file:projects/eslint-plugin-azure-sdk.tgz: @@ -9686,6 +9709,7 @@ packages: version: 0.0.0 file:projects/event-hubs.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 '@rollup/plugin-inject': 4.0.2_rollup@1.32.1 @@ -9752,7 +9776,7 @@ packages: dev: false name: '@rush-temp/event-hubs' resolution: - integrity: sha512-E6rqZwFWroU5Fh0CdkKDZeDNYpis0r6OfX+IrBpObaLFP9P36UKrjHuHtSyvBWt9j3tBY+BBGDSBOC7BxDSfKw== + integrity: sha512-WNJyVRH8bzOhs/DZ6caEh2RTqDJ4yO/U/yvcrY1F8Vzdb9RA0wRHZ4J+iROn6z07M1uMw6SbP/O21YoiSdWb8g== tarball: file:projects/event-hubs.tgz version: 0.0.0 file:projects/event-processor-host.tgz: @@ -9808,7 +9832,7 @@ packages: file:projects/eventgrid.tgz: dependencies: '@azure/core-rest-pipeline': 1.0.4 - '@azure/core-tracing': 1.0.0-preview.11 + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 '@rollup/plugin-json': 4.1.0_rollup@1.32.1 @@ -9859,7 +9883,7 @@ packages: dev: false name: '@rush-temp/eventgrid' resolution: - integrity: sha512-6HpywaUpJ1+RDd+oX9G5uqDq3Zxv2qbtTRPG2SA1teUGOf8dG8JsdfmE5Ew92KS+itf0/tYLSx0uG9aCEpuYng== + integrity: sha512-+sBO5835x8av1m/TzFpkdLNiP50QHqji1aUQkjccAoi8vWiKs51MlCASbjWJNBWy6wLOTt5+zYFwmkzlg5Eh6A== tarball: file:projects/eventgrid.tgz version: 0.0.0 file:projects/eventhubs-checkpointstore-blob.tgz: @@ -9990,6 +10014,7 @@ packages: version: 0.0.0 file:projects/identity.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@azure/msal-browser': 2.14.2 '@azure/msal-common': 4.3.0 '@azure/msal-node': 1.1.0 @@ -10034,11 +10059,12 @@ packages: dev: false name: '@rush-temp/identity' resolution: - integrity: sha512-U8HltqYVr9W655SpiGaDVJ0IHe1+agW++vGNmih/QjJCjtagKAubvVKNGYu+OxVoEfpSfYc8pUhy0OEEgT3U0A== + integrity: sha512-cX969FF9/WVxGbziV+3ZAjwEBexmOuT2glwCTYZYZ0UjQkqBeFscq1UrBFLCSM2ZCfgjGegxR2g4H1FOESoznw== tarball: file:projects/identity.tgz version: 0.0.0 file:projects/iot-device-update.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@types/node': 12.20.15 '@types/uuid': 8.3.0 @@ -10060,13 +10086,13 @@ packages: dev: false name: '@rush-temp/iot-device-update' resolution: - integrity: sha512-rBIXGpY0B5SbJOXAFsApfA19XGR0TNIwLJE6Lp7Gsisa5wgn6Ndvheid2i2i4Dnpz6edgKsuN4MYAYkZPRFkSg== + integrity: sha512-76Tm1Jl9iIimSV0wR5qohVAhavimexKuzQk/lCaRS2pzw+wKHietWxSRpmJtKbrXw9khpLOgOph5zV9emxSaeQ== tarball: file:projects/iot-device-update.tgz version: 0.0.0 file:projects/iot-modelsrepository.tgz: dependencies: '@azure/core-rest-pipeline': 1.0.4 - '@azure/core-tracing': 1.0.0-preview.11 + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 '@rollup/plugin-json': 4.1.0_rollup@1.32.1 @@ -10112,12 +10138,12 @@ packages: dev: false name: '@rush-temp/iot-modelsrepository' resolution: - integrity: sha512-WkrPUmgVb86oPEVUeGZr5vpgotLI/t/tSJFubhovVS0VdzwTO9ed+lxGqfc664mHHDG8R/6hmUWPmzt3BdOW6A== + integrity: sha512-3ttGrsvd4qCT/BiB3bWcLvGJfGiswvsPxuYaeV03vKW9nLzYSa+hsv3FdylXzBHwaYTe111Dnq50jp+b65Z4mg== tarball: file:projects/iot-modelsrepository.tgz version: 0.0.0 file:projects/keyvault-admin.tgz: dependencies: - '@azure/core-tracing': 1.0.0-preview.11 + '@azure/core-tracing': 1.0.0-preview.12 '@azure/keyvault-keys': 4.2.1 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 @@ -10157,11 +10183,12 @@ packages: dev: false name: '@rush-temp/keyvault-admin' resolution: - integrity: sha512-K7fSHQu14LH52AEEczcp8Pw/YzBZOp2s8+jvxBVdAIt59upUJPy98OBGKyhoC/zEyunQjVVWGMc/oMCv8tEQ9A== + integrity: sha512-KyTIarzMmFonMbl96AdhoV5lf29APbQS5hkbL+Elkc1Mt3iF6ytOuMyJCb8hpGv3SUZnWYKhz1Bpzn+4514uEg== tarball: file:projects/keyvault-admin.tgz version: 0.0.0 file:projects/keyvault-certificates.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@azure/keyvault-secrets': 4.2.0 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 @@ -10214,11 +10241,12 @@ packages: dev: false name: '@rush-temp/keyvault-certificates' resolution: - integrity: sha512-JTTY3YA7aFQZsarrqBAEk+XhdU+JWThhM6qRxPrKavy2poh2CMsXpO99qfEw12hQ5PWicCukbmZF+KMc3WpkQw== + integrity: sha512-Z9C8j5uik7z6Gkuak1cpfIlReBYXjA4rqZhLJJUSW3GQ9/MX9o0N7gaH2E4ExA+I5zf6sjQeMLt0TuVoZucuzQ== tarball: file:projects/keyvault-certificates.tgz version: 0.0.0 file:projects/keyvault-common.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 eslint: 7.29.0 prettier: 1.19.1 rimraf: 3.0.2 @@ -10227,11 +10255,12 @@ packages: dev: false name: '@rush-temp/keyvault-common' resolution: - integrity: sha512-bPRo3thH2+A9xkidN62waMvwoiZ/lL5ZEo1g1HDcaFudx4D6UY1otc/GHflEXvEMG5SFdOvJWiADMFsKCD3EXA== + integrity: sha512-985Pu4WBm8htD9JwDRFnxk7RieHDbivptrfMNFqlEtdgp5ATNrXWgSo+C99t9LMq5AcfYaEbXDPhmju6kB02BA== tarball: file:projects/keyvault-common.tgz version: 0.0.0 file:projects/keyvault-keys.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 '@rollup/plugin-json': 4.1.0_rollup@1.32.1 @@ -10285,11 +10314,12 @@ packages: dev: false name: '@rush-temp/keyvault-keys' resolution: - integrity: sha512-HyGmZuZ9jbZSuElkasp6ESZ4fJGR2fVnWHBTAo82WAS/Z+ahQ4i++yhxlImEETeHVas3xLyk0KtMxAq30OgOsg== + integrity: sha512-2pTgRqDhzhQ6x5ppOYOAKfHALJ11/O6t1DyLXPg50hP2TBI7LD4hI1rUO8CNZPXbenJgJVEIlzQwcnFmjBU0RQ== tarball: file:projects/keyvault-keys.tgz version: 0.0.0 file:projects/keyvault-secrets.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 '@rollup/plugin-json': 4.1.0_rollup@1.32.1 @@ -10341,7 +10371,7 @@ packages: dev: false name: '@rush-temp/keyvault-secrets' resolution: - integrity: sha512-PQOqnVqshtnKT5gHMPRmlAWXJ1zjgziGYkG26ReGBAItABfHK+HM5dhUJ9LzA5kF312jDQYNWMCQR+m21AXr6Q== + integrity: sha512-v6/jO7G9RMZV9N34GLnq9QPdWDR6Yv5sOQM2gdIYCj8Fr/YIO0etKECOFPycAGRHZuQwgFJQUg++npflmr9xFQ== tarball: file:projects/keyvault-secrets.tgz version: 0.0.0 file:projects/logger.tgz: @@ -10394,6 +10424,7 @@ packages: version: 0.0.0 file:projects/mixedreality-authentication.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@types/chai': 4.2.19 '@types/chai-as-promised': 7.1.4 @@ -10431,7 +10462,7 @@ packages: dev: false name: '@rush-temp/mixedreality-authentication' resolution: - integrity: sha512-LMwKWWNn7RGRh7IZvaIkVxSkCeA0Av7O0UQDBoxPD5XvdZUY2eY/ofG3UmSpD5apQ5pzBRH0uvfgud2Ruk55kg== + integrity: sha512-Dah2yhabK5HI4F06xOEqvf+iUXgLPdtJXFBVgIQy1+KFICPCqM0PMc0olF3nG/4KEo2t3Q2397KQLdRlfeUm2w== tarball: file:projects/mixedreality-authentication.tgz version: 0.0.0 file:projects/mock-hub.tgz: @@ -10482,6 +10513,7 @@ packages: version: 0.0.0 file:projects/monitor-query.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@azure/identity': 1.3.0 '@microsoft/api-extractor': 7.7.11 '@opentelemetry/api': 1.0.0 @@ -10525,7 +10557,7 @@ packages: dev: false name: '@rush-temp/monitor-query' resolution: - integrity: sha512-ZL8duEIH2flsaY9Gtp1XCvf2kzrzk3xw1SQCkTtGVhRb4ZuKpz2JwsqpMg/sg3a/AloyWAt5albV93ofMlfPbQ== + integrity: sha512-FtKS3h1XRaOSQHXljZu7mrTYGhewukVd5N5l4dvRZlQN2y6iuiLVcyXMABg8Um3iHgkSBTopNdEj4uDLyMQVdg== tarball: file:projects/monitor-query.tgz version: 0.0.0 file:projects/perf-ai-form-recognizer.tgz: @@ -10859,6 +10891,7 @@ packages: version: 0.0.0 file:projects/quantum-jobs.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@azure/identity': 1.3.0 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 @@ -10907,11 +10940,12 @@ packages: dev: false name: '@rush-temp/quantum-jobs' resolution: - integrity: sha512-s8e8M//91ePGj1dO90jFRt/t9boXQAb412rQ/eV7Plvf4Z7juW8OQNFfgfDDgbu/+Yh4BmTEEt0Ge5fhQ3MNGQ== + integrity: sha512-3CmIjUqxvM9cfPUIhEDR6hg/1Qlk6DK3o3WM7gkASvaMCgPJB2gLnRyhBtTWDDTV267ZyIsT7ds6OSA77wZ6zA== tarball: file:projects/quantum-jobs.tgz version: 0.0.0 file:projects/schema-registry-avro.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 '@rollup/plugin-inject': 4.0.2_rollup@1.32.1 @@ -10961,11 +10995,12 @@ packages: dev: false name: '@rush-temp/schema-registry-avro' resolution: - integrity: sha512-OZb2LmW2W4ZKIxb0qgvDhGn0GWVQT5mrrSNMHIpTc7j3OxcfQoEimgrzkF4ae5t1l4qxRyPZV7QGErLPdI/lZg== + integrity: sha512-nhESe3sAlTSg61fGeokPNKcGmMD4YF668+WuIK6Z3k+RtEmN9hPSTnNS4gwRnlZ9mTDUFAmH5dos65zoQ2Q/sA== tarball: file:projects/schema-registry-avro.tgz version: 0.0.0 file:projects/schema-registry.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 '@rollup/plugin-json': 4.1.0_rollup@1.32.1 @@ -11011,11 +11046,12 @@ packages: dev: false name: '@rush-temp/schema-registry' resolution: - integrity: sha512-dDGxgw7Oha0+j5wUJXgcFuGlAK6tn3HhnIF+qhu/uUT7bhMjXZCP5VBAtqkGE86TCRMFFNCXTIMHrqJ5ZAtW8A== + integrity: sha512-crBL/qceVHIRFfLTHQ/9+W0jZFCZEJb24sl7059X3C/W0v/qt3AuPtHHZZrf8Hux5GW0RAaZsU0N9uwnJ8mfVg== tarball: file:projects/schema-registry.tgz version: 0.0.0 file:projects/search-documents.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 '@rollup/plugin-json': 4.1.0_rollup@1.32.1 @@ -11064,11 +11100,12 @@ packages: dev: false name: '@rush-temp/search-documents' resolution: - integrity: sha512-uMx6yCLx/luocgYetGgDbAiiwr5mU2Zxj/fwYz6CaKn6bjIP+6oiOxjf4OyTVJxfPiH6W7aMjj2K//v1IeS5YA== + integrity: sha512-dnPkPixkq7qEJ22aCSPo0QLB85gp7yXEm5UBDw+aYXkD/r3nIosXPtZdN5ahHQYXfjRTlc/ZGh3TRi+5WVt0mw== tarball: file:projects/search-documents.tgz version: 0.0.0 file:projects/service-bus.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 '@rollup/plugin-inject': 4.0.2_rollup@1.32.1 @@ -11138,11 +11175,12 @@ packages: dev: false name: '@rush-temp/service-bus' resolution: - integrity: sha512-teYp08lQ/CkmWhDaJMHvTWnOzeIiEbMgx3AAs4BjPFVPVK9/2RI2dT7kwyZbZwRyOmh9+ipjF1mfxpF4fiUXLQ== + integrity: sha512-n1TTvwS5Z9hDPLyLYzZQbZONAM0ZqDz2pT8Q3XopMzeCYQIw9Iuj+fCtCDm1MQsVuo2rbVGGMzA6AqqivD2F8A== tarball: file:projects/service-bus.tgz version: 0.0.0 file:projects/storage-blob-changefeed.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 '@rollup/plugin-multi-entry': 3.0.1_rollup@1.32.1 @@ -11194,12 +11232,13 @@ packages: dev: false name: '@rush-temp/storage-blob-changefeed' resolution: - integrity: sha512-k3cfRzuNXPjAHe0XSdc5CzAZpRR/J3dNtxYTIpSx2qQsyShPbdoV18K3QwC8lBgJ9rDuIwWtw6Chcwup4Kos4A== + integrity: sha512-ygPw/JfMyvA0xwkDPUF6HOBpoHJ3rzVJY7ZEvvoUQhWbsri1YsY670iD8PjiLqqCdafwy0PvprzTCs5vjf1qPQ== tarball: file:projects/storage-blob-changefeed.tgz version: 0.0.0 file:projects/storage-blob.tgz: dependencies: '@azure/core-rest-pipeline': 1.0.4 + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 '@rollup/plugin-json': 4.1.0_rollup@1.32.1 @@ -11252,11 +11291,12 @@ packages: dev: false name: '@rush-temp/storage-blob' resolution: - integrity: sha512-SR7gi1XbF99h18cjafy3mOIYAuYO4pWc0/Li7nYa+F+wuR5p+EBXExbPgXocaunQEr56edWKvhVTAsXJf3fa0w== + integrity: sha512-3hsoRJGA/kNedSA8vBd7XbFJyknWq4ZrBKWaxe9dFgVktFK7XDCq9GRiRjzFKHyWlb0uYLMAhhPyMGsAJY33NQ== tarball: file:projects/storage-blob.tgz version: 0.0.0 file:projects/storage-file-datalake.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 '@rollup/plugin-json': 4.1.0_rollup@1.32.1 @@ -11310,11 +11350,12 @@ packages: dev: false name: '@rush-temp/storage-file-datalake' resolution: - integrity: sha512-WKNmOb2EDGEZqC1D1RkDFh1HJVn2cSNiNx4/g/I6jyb/JTykRW/sQj4eQMOFv2VzoglVCc5Y5rfV/krMxvTwBw== + integrity: sha512-fzpbysAwXHYPAkn/7KH+8RYGZfNJNxh0k/YY8d3jULEleyfRYRZPfFgNjP78l4xWwhQcV1bsoSVxncU/M/U1JQ== tarball: file:projects/storage-file-datalake.tgz version: 0.0.0 file:projects/storage-file-share.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 '@rollup/plugin-multi-entry': 3.0.1_rollup@1.32.1 @@ -11364,7 +11405,7 @@ packages: dev: false name: '@rush-temp/storage-file-share' resolution: - integrity: sha512-eYcZuBTa4QZtWhOSG4rPF8DiZ8SVedKabioQO/xGeZMkYy4M/y5asia2D55EZ0pGqFBkwxztIMQR+t6GENY0LA== + integrity: sha512-AUWBKZZh7C43K90KBV+Ou96j5rg/EFo0B0eaWKe5MSbJcp2/VwOVUJ6Q4pJA0u4etjIxFQgHQJUYFuVrpqqPzQ== tarball: file:projects/storage-file-share.tgz version: 0.0.0 file:projects/storage-internal-avro.tgz: @@ -11420,6 +11461,7 @@ packages: version: 0.0.0 file:projects/storage-queue.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 '@rollup/plugin-multi-entry': 3.0.1_rollup@1.32.1 @@ -11468,11 +11510,12 @@ packages: dev: false name: '@rush-temp/storage-queue' resolution: - integrity: sha512-mIDhXmilj9q6Of9XiCIOpTQr0BdI9TOI1R+EesU3ySwTRSwo9LRHSL9Q7BUCtX1vGDoBMTV9+RKhmyGf4SzS5Q== + integrity: sha512-99be+54aq2y4U0Kc1zBXaFxb6p8YH83qf+0TrBnm4X4/VJdMxHu88HZ6+jVmXZZA8+JX6Avzz8RQ6If+pflkAA== tarball: file:projects/storage-queue.tgz version: 0.0.0 file:projects/synapse-access-control.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 eslint: 7.29.0 @@ -11487,11 +11530,12 @@ packages: dev: false name: '@rush-temp/synapse-access-control' resolution: - integrity: sha512-B6ZNAWWZamD+jFqi0Z5UrXPb407k7n22KotiiBdG17Kvb5+IFZHvB2XSb6UqXKX6acTH2oTPGnhqJX9zNu7bnQ== + integrity: sha512-fhmsa9dtbeFkI/CSMtS3oFAUWgiZ8Vomc/tO/1mdozzuQLh8xLO7Dp9RjxqOG/aqp+bR+tpxODJgBM9rs6zSHQ== tarball: file:projects/synapse-access-control.tgz version: 0.0.0 file:projects/synapse-artifacts.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 '@types/chai': 4.2.19 @@ -11536,11 +11580,12 @@ packages: dev: false name: '@rush-temp/synapse-artifacts' resolution: - integrity: sha512-/CbcDVgYUXiruEvBTaofRA/WI4mE17B/k82Ow4Z6Sit8SWWLr9HMt84l9CQmtO/EEy+XONa79gt5mlhNYdYoPA== + integrity: sha512-5r828CMiRuzRe+1dnT4QXI7ZXWS2e42lZKH/QtSiFLvb4zRc6vLM6C1JtAYJZfe2eU8UEsp5mb7hCDCdwSENfw== tarball: file:projects/synapse-artifacts.tgz version: 0.0.0 file:projects/synapse-managed-private-endpoints.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 eslint: 7.29.0 @@ -11555,11 +11600,12 @@ packages: dev: false name: '@rush-temp/synapse-managed-private-endpoints' resolution: - integrity: sha512-n3HmGyFWLvYD13xpEZDbDR/UTytR45c8RaaFn4S+RvgMl9qbSLKF2HNtdj/9Kizg70MsfHITsevCObkrF1MAaw== + integrity: sha512-qH2uQvpDKOhG5VCcgsBBUnfJPOF8kgdLU5cVw8GQXqe7rd7lnIyZ1rXHgHtHQbmVxE2U9cNOgx+b5ZklXkXanQ== tarball: file:projects/synapse-managed-private-endpoints.tgz version: 0.0.0 file:projects/synapse-monitoring.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 eslint: 7.29.0 @@ -11574,11 +11620,12 @@ packages: dev: false name: '@rush-temp/synapse-monitoring' resolution: - integrity: sha512-ZP/mUHpmJecIKZu5BgZ7KMs1RpcGx+gvvhcqfQPHjsXHItdYRw2SZaNeYWe5EPnmB/bIAxWnh0UgMIKXAmQ0+Q== + integrity: sha512-Kzw6M1WWtgayGiheIJJn5pvoiKA5gaHRHyrS/WVwypJm3xOeFfMzrC/EGT9Vc5u+/tegFC/3ws0+d0sMi5Wxig== tarball: file:projects/synapse-monitoring.tgz version: 0.0.0 file:projects/synapse-spark.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 eslint: 7.29.0 @@ -11593,11 +11640,12 @@ packages: dev: false name: '@rush-temp/synapse-spark' resolution: - integrity: sha512-K+6F+RZEd5QAlbJlquMsiXPVc39i9C9CR9eQik5HhMV0tkWrk9DnKEx+l4nqIBvJ4yFAcew448mS+Fcp3HpQxA== + integrity: sha512-f0iYTqBaqR3OFVzFqcipjgF7nJB2rLfZ/1JGGoWfXRezrp13BQRtE/nlaKdUg0lIJkyw0BuKgLk5nYCYjPWjdg== tarball: file:projects/synapse-spark.tgz version: 0.0.0 file:projects/template.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@types/chai': 4.2.19 '@types/chai-as-promised': 7.1.4 @@ -11637,7 +11685,7 @@ packages: dev: false name: '@rush-temp/template' resolution: - integrity: sha512-tzPyJx5J7e3qU69hf7F2H1Id5Tbig+OLNexf43IUvtdtS5IOoi2VyjURMu7yD65PvYiZdiqnlFN7u7yVNgJIjA== + integrity: sha512-UtMf3qOhtj3oRYQdJe0QK4flpQUgl1XXd9qFwTsRdpaJDa7Zi21Zltjch+1gBDfV6VZfpYUb1o0f0r+FP+2V3w== tarball: file:projects/template.tgz version: 0.0.0 file:projects/test-utils-perfstress.tgz: @@ -11665,6 +11713,7 @@ packages: version: 0.0.0 file:projects/test-utils-recorder.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 '@rollup/plugin-multi-entry': 3.0.1_rollup@1.32.1 '@rollup/plugin-node-resolve': 8.4.0_rollup@1.32.1 @@ -11716,7 +11765,7 @@ packages: dev: false name: '@rush-temp/test-utils-recorder' resolution: - integrity: sha512-W3PUv+wfjsFF0477l2FZQUCJaSZkrl694/B9fGGDd/cnLsO9GJCxVE1r31PLAHNlryEzDBdWJMkrEyAOIT7Xkg== + integrity: sha512-ldsKEzO2UJNjjpG0SJ7OzW4UpywLuMIZu8GfXnX3A1fOexAEJ5SVaj/wOEShzMgs9QRjLEC1NRwEMoT9xbDtXQ== tarball: file:projects/test-utils-recorder.tgz version: 0.0.0 file:projects/test-utils.tgz: @@ -11748,6 +11797,7 @@ packages: version: 0.0.0 file:projects/video-analyzer-edge.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@microsoft/api-extractor': 7.7.11 '@types/chai': 4.2.19 '@types/chai-as-promised': 7.1.4 @@ -11785,7 +11835,7 @@ packages: dev: false name: '@rush-temp/video-analyzer-edge' resolution: - integrity: sha512-WCCV5micC74VY8Y2F/FhpUvin5NMIK375+VDrE5Viq6rsDqMUR2fiNEsSE2Au+f3/SQ8+gdmhz/j8CjxD/lpMw== + integrity: sha512-0p4RAxZ9LItcJ2CjO2/KlKRr/lUKGmqGZdxqYFIAgGkL8LAQVNy3wcfVrTnIkyEsokCt7DUwVoB4Ab4q838MvA== tarball: file:projects/video-analyzer-edge.tgz version: 0.0.0 file:projects/web-pubsub-express.tgz: @@ -11846,11 +11896,12 @@ packages: dev: false name: '@rush-temp/web-pubsub-express' resolution: - integrity: sha512-7fhzzPMfrSmDZbdzhtoALZPAyEC+HYfKldEM0RaYayTsuyHOdVz5IwWyKBXMwwCVoiWbbQEtVYf1NbI4e5g3Kg== + integrity: sha512-0BfXTMbuUjTrsR+Tz0lBb+1y+5qhO0XGgmNcy/JjyEZUTn7PccRFYnyK4/wW+St7teCrsF6zampG5ab/h0RhHA== tarball: file:projects/web-pubsub-express.tgz version: 0.0.0 file:projects/web-pubsub.tgz: dependencies: + '@azure/core-tracing': 1.0.0-preview.12 '@azure/identity': 1.3.0 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 @@ -11858,6 +11909,7 @@ packages: '@rollup/plugin-multi-entry': 3.0.1_rollup@1.32.1 '@rollup/plugin-node-resolve': 8.4.0_rollup@1.32.1 '@rollup/plugin-replace': 2.4.2_rollup@1.32.1 + '@types/chai': 4.2.19 '@types/jsonwebtoken': 8.5.2 '@types/mocha': 7.0.2 '@types/node': 12.20.15 @@ -11903,7 +11955,7 @@ packages: dev: false name: '@rush-temp/web-pubsub' resolution: - integrity: sha512-NEgAqwtqpS48OPZ9oNnVcyOUBN9+cdG8bmcyFPVcH69lHkGVUKUTWlYQKAer1xuBZbdvZrw7l8UjrFtpnVCqaw== + integrity: sha512-KzxOCN28tIw0iRDU4HUJ3S3wEcHv/WdKeA29HKgcFMb2DxK2EFvuX6Ih+jAI/M9LYp5Kpwni26AoZTW3KBlENw== tarball: file:projects/web-pubsub.tgz version: 0.0.0 registry: '' diff --git a/sdk/core/core-lro/CHANGELOG.md b/sdk/core/core-lro/CHANGELOG.md index 125462933aee..0b40289a4156 100644 --- a/sdk/core/core-lro/CHANGELOG.md +++ b/sdk/core/core-lro/CHANGELOG.md @@ -1,5 +1,16 @@ # Release History +## 2.0.1 (Unreleased) + +### Features Added + +### Breaking Changes + +### Key Bugs Fixed + +### Fixed + + ## 2.0.0 (2021-06-30) ### New Features diff --git a/sdk/core/core-lro/package.json b/sdk/core/core-lro/package.json index 09e707e2024e..1aef46f31010 100644 --- a/sdk/core/core-lro/package.json +++ b/sdk/core/core-lro/package.json @@ -2,7 +2,7 @@ "name": "@azure/core-lro", "author": "Microsoft Corporation", "sdk-type": "client", - "version": "2.0.0", + "version": "2.0.1", "description": "LRO Polling strategy for the Azure SDK in TypeScript", "tags": [ "isomorphic", diff --git a/sdk/core/core-rest-pipeline/CHANGELOG.md b/sdk/core/core-rest-pipeline/CHANGELOG.md index 7e390b51db1b..2f399c62c7cd 100644 --- a/sdk/core/core-rest-pipeline/CHANGELOG.md +++ b/sdk/core/core-rest-pipeline/CHANGELOG.md @@ -1,5 +1,16 @@ # Release History +## 1.1.1 (Unreleased) + +### Features Added + +### Breaking Changes + +### Key Bugs Fixed + +### Fixed + + ## 1.1.0 (2021-06-30) ### Fixed diff --git a/sdk/core/core-rest-pipeline/package.json b/sdk/core/core-rest-pipeline/package.json index 965dbc8372ea..6be69ef02ab8 100644 --- a/sdk/core/core-rest-pipeline/package.json +++ b/sdk/core/core-rest-pipeline/package.json @@ -1,6 +1,6 @@ { "name": "@azure/core-rest-pipeline", - "version": "1.1.0", + "version": "1.1.1", "description": "Isomorphic client library for making HTTP requests in node.js and browser.", "sdk-type": "client", "main": "dist/index.js", diff --git a/sdk/core/core-rest-pipeline/src/constants.ts b/sdk/core/core-rest-pipeline/src/constants.ts index 9ffa1892ce39..fc5d91c7ffb5 100644 --- a/sdk/core/core-rest-pipeline/src/constants.ts +++ b/sdk/core/core-rest-pipeline/src/constants.ts @@ -1,4 +1,4 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -export const SDK_VERSION: string = "1.1.0"; +export const SDK_VERSION: string = "1.1.1"; diff --git a/sdk/core/core-tracing/CHANGELOG.md b/sdk/core/core-tracing/CHANGELOG.md index b77e8e9407d0..8f1955769511 100644 --- a/sdk/core/core-tracing/CHANGELOG.md +++ b/sdk/core/core-tracing/CHANGELOG.md @@ -1,5 +1,16 @@ # Release History +## 1.0.0-preview.13 (Unreleased) + +### Features Added + +### Breaking Changes + +### Key Bugs Fixed + +### Fixed + + ## 1.0.0-preview.12 (2021-06-30) - Update `@opentelemetry/api` to version 1.0.0 [PR #15883](https://github.com/Azure/azure-sdk-for-js/pull/15883) diff --git a/sdk/core/core-tracing/package.json b/sdk/core/core-tracing/package.json index dd09c41e9697..39c672afade9 100644 --- a/sdk/core/core-tracing/package.json +++ b/sdk/core/core-tracing/package.json @@ -1,6 +1,6 @@ { "name": "@azure/core-tracing", - "version": "1.0.0-preview.12", + "version": "1.0.0-preview.13", "description": "Provides low-level interfaces and helper methods for tracing in Azure SDK", "sdk-type": "client", "main": "dist/index.js", From cec69b64895172f5d234c1cb703387fa6fedf600 Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Wed, 30 Jun 2021 16:46:01 -0700 Subject: [PATCH 47/49] Increment version for core releases (#16125) * Increment package version after release of azure-core-http * Increment package version after release of azure-core-client --- sdk/core/core-client/CHANGELOG.md | 11 +++++++++++ sdk/core/core-client/package.json | 2 +- sdk/core/core-http/CHANGELOG.md | 11 +++++++++++ sdk/core/core-http/package.json | 2 +- sdk/core/core-http/src/util/constants.ts | 2 +- 5 files changed, 25 insertions(+), 3 deletions(-) diff --git a/sdk/core/core-client/CHANGELOG.md b/sdk/core/core-client/CHANGELOG.md index 951fa6b0ba5a..2e2a6a713a85 100644 --- a/sdk/core/core-client/CHANGELOG.md +++ b/sdk/core/core-client/CHANGELOG.md @@ -1,5 +1,16 @@ # Release History +## 1.2.2 (Unreleased) + +### Features Added + +### Breaking Changes + +### Key Bugs Fixed + +### Fixed + + ## 1.2.1 (2021-06-30) ### Features Added diff --git a/sdk/core/core-client/package.json b/sdk/core/core-client/package.json index 4e8bb2652239..54de5d5ea995 100644 --- a/sdk/core/core-client/package.json +++ b/sdk/core/core-client/package.json @@ -1,6 +1,6 @@ { "name": "@azure/core-client", - "version": "1.2.1", + "version": "1.2.2", "description": "Core library for interfacing with AutoRest generated code", "sdk-type": "client", "main": "dist/index.js", diff --git a/sdk/core/core-http/CHANGELOG.md b/sdk/core/core-http/CHANGELOG.md index 11f46c8f0d36..eea52808ccd9 100644 --- a/sdk/core/core-http/CHANGELOG.md +++ b/sdk/core/core-http/CHANGELOG.md @@ -1,5 +1,16 @@ # Release History +## 2.0.1 (Unreleased) + +### Features Added + +### Breaking Changes + +### Key Bugs Fixed + +### Fixed + + ## 2.0.0 (2021-06-30) ### Features Added diff --git a/sdk/core/core-http/package.json b/sdk/core/core-http/package.json index 08e6375a9157..af60e9a37987 100644 --- a/sdk/core/core-http/package.json +++ b/sdk/core/core-http/package.json @@ -2,7 +2,7 @@ "name": "@azure/core-http", "sdk-type": "client", "author": "Microsoft Corporation", - "version": "2.0.0", + "version": "2.0.1", "description": "Isomorphic client Runtime for Typescript/node.js/browser javascript client libraries generated using AutoRest", "tags": [ "isomorphic", diff --git a/sdk/core/core-http/src/util/constants.ts b/sdk/core/core-http/src/util/constants.ts index 54d629cd1412..07ffc73aeee1 100644 --- a/sdk/core/core-http/src/util/constants.ts +++ b/sdk/core/core-http/src/util/constants.ts @@ -5,7 +5,7 @@ export const Constants = { /** * The core-http version */ - coreHttpVersion: "2.0.0", + coreHttpVersion: "2.0.1", /** * Specifies HTTP. From d75f119fd62577cd5189b1b7c4d01993b2e5bab8 Mon Sep 17 00:00:00 2001 From: Richard Park <51494936+richardpark-msft@users.noreply.github.com> Date: Wed, 30 Jun 2021 18:43:14 -0700 Subject: [PATCH 48/49] [service-bus] Fix message loss issues with peekLock and receiveAndDelete (#15989) Fixing an issue where we could lose messages or provoke an alarming message from rhea (`Received transfer when credit was 0`) The message loss issue is related to how we trigger 'drain' using 'addCredit(1)'. Our 'receiver.drain; receiver.addCredit(1)' pattern actually does add a credit, which shows up in the flow frame that gets sent for our drain. This has led to occasionally receiving more messages than we intended. The second part of this was that we were masking this error because we had code that specifically threw out messages if more arrived than were requested. If the message was being auto-renewed it's possible for the message to appear to be missing, and if we were in receiveAndDelete the message is effectively lost at that point. That code is now removed (we defer to just allowing the extrra message, should a bug arise that causes that) and we log an error indicating it did happen. The rhea error message appeared to be triggered by our accidentally allowing multiple overlapping 'drain's to occur (finalAction did not check to see if we were _already_ draining and would allow it to happen multiple times). Removing the concurrent drains fixed this issue but I didn't fully investigate why. Fixes #15606, #15115 --- common/config/rush/pnpm-lock.yaml | 31 +- sdk/core/core-amqp/CHANGELOG.md | 11 +- sdk/core/core-amqp/package.json | 6 +- sdk/eventhub/event-hubs/package.json | 2 +- sdk/eventhub/mock-hub/package.json | 2 +- sdk/servicebus/service-bus/CHANGELOG.md | 10 +- sdk/servicebus/service-bus/package.json | 2 +- .../service-bus/src/core/batchingReceiver.ts | 49 ++- .../service-bus/src/core/receiverHelper.ts | 5 +- .../test/internal/batchReceiver.spec.ts | 21 +- .../test/internal/smoketest.spec.ts | 5 +- .../internal/unit/batchingReceiver.spec.ts | 355 ++++++++++-------- .../test/internal/unit/messageSession.spec.ts | 26 +- .../test/internal/unit/unittestUtils.ts | 32 +- .../test/stress/scenarioLongRunning.ts | 21 +- .../stress/scenarioShortLivedReceivers.ts | 347 +++++++++++++++++ .../test/stress/serviceBusStressTester.ts | 88 +++-- 17 files changed, 735 insertions(+), 278 deletions(-) create mode 100644 sdk/servicebus/service-bus/test/stress/scenarioShortLivedReceivers.ts diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index c1958d7937e9..72b8c87c5b2f 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -6552,26 +6552,26 @@ packages: dev: false resolution: integrity: sha512-+6uilZXSJGyiqVeHQI3Krv6NTAd8cWRCY2uyCxmzR4/5IFtBqqFem1HV2OiwSj0Gu7OFChIJDfH2JyjN7J0vRA== - /rhea-promise/2.0.0: + /rhea-promise/2.1.0: dependencies: debug: 3.2.7 - rhea: 2.0.2 + rhea: 2.0.3 tslib: 2.3.0 dev: false resolution: - integrity: sha512-hoK6pTrFyIFDp0jrC2FQXzZPFnJXG78OHikpSHeC2gjdKGT+ofoFsbbxA0FcYjBqU2r2hDKRZbacBBvGtGAzhw== + integrity: sha512-CRMwdJ/o4oO/xKcvAwAsd0AHy5fVvSlqso7AadRmaaLGzAzc9LCoW7FOFnucI8THasVmOeCnv5c/fH/n7FcNaA== /rhea/1.0.24: dependencies: debug: 3.2.7 dev: false resolution: integrity: sha512-PEl62U2EhxCO5wMUZ2/bCBcXAVKN9AdMSNQOrp3+R5b77TEaOSiy16MQ0sIOmzj/iqsgIAgPs1mt3FYfu1vIXA== - /rhea/2.0.2: + /rhea/2.0.3: dependencies: debug: 3.2.7 dev: false resolution: - integrity: sha512-G2QqyVzRnZvv+WkpKBmWrVmkeeLRX7xKZB3wutU2fs/qvr4PJvAqKO7ymSYX/0dm2xt1QhNJO/Af17x49f7FBw== + integrity: sha512-goQWv15ci6RdjtSpDezknlJ0PQDDkkJiMVxC3oS8DpECnzLFov01WMJ23cpXW+L3hlSQwyunqX9kc0JW6/lziw== /rimraf/2.7.1: dependencies: glob: 7.1.7 @@ -8347,7 +8347,7 @@ packages: dev: false name: '@rush-temp/ai-text-analytics' resolution: - integrity: sha512-xOTFTYbC7zkPZU+4uJ63+sFWxsXvaQQwQRRQpeH0x8TbxUpWfELGqZ7tmkaqiiA/kWNSjwRweMooEPznC2/0XA== + integrity: sha512-vf8Pnl7FTqnmhkjs7l9bLgV6pbmosqg0oPmo/hOA3kaE5Ekj+4sryjMjcwoi2mexR7wFEO2Ck2K1KBYPnyRTiQ== tarball: file:projects/ai-text-analytics.tgz version: 0.0.0 file:projects/app-configuration.tgz: @@ -8903,8 +8903,8 @@ packages: prettier: 1.19.1 process: 0.11.10 puppeteer: 3.3.0 - rhea: 2.0.2 - rhea-promise: 2.0.0 + rhea: 2.0.3 + rhea-promise: 2.1.0 rimraf: 3.0.2 rollup: 1.32.1 rollup-plugin-shim: 1.0.0 @@ -8921,7 +8921,7 @@ packages: dev: false name: '@rush-temp/core-amqp' resolution: - integrity: sha512-NsjbIvK0AepoWd0jHaFjQIsq2AIm10LaxkUXhc55cqQTJUCfPmPjw/OENA/4TcvI7c9lMe+5ZhGxyEbTiUI0Xw== + integrity: sha512-FHTxFxeancQjNBMEO+8O8eirRfSQp0TUzFfwBEBKy+/psSDQnFUCiVuYo9Q1DoXUDTFNX56lGOEhcuiG2fp7GA== tarball: file:projects/core-amqp.tgz version: 0.0.0 file:projects/core-asynciterator-polyfill.tgz: @@ -9732,6 +9732,7 @@ packages: buffer: 5.7.1 chai: 4.3.4 chai-as-promised: 7.1.1_chai@4.3.4 + chai-exclude: 2.0.3_chai@4.3.4 chai-string: 1.5.0_chai@4.3.4 cross-env: 7.0.3 debug: 4.3.1 @@ -9760,7 +9761,7 @@ packages: prettier: 1.19.1 process: 0.11.10 puppeteer: 3.3.0 - rhea-promise: 2.0.0 + rhea-promise: 2.1.0 rimraf: 3.0.2 rollup: 1.32.1 rollup-plugin-shim: 1.0.0 @@ -9776,7 +9777,7 @@ packages: dev: false name: '@rush-temp/event-hubs' resolution: - integrity: sha512-WNJyVRH8bzOhs/DZ6caEh2RTqDJ4yO/U/yvcrY1F8Vzdb9RA0wRHZ4J+iROn6z07M1uMw6SbP/O21YoiSdWb8g== + integrity: sha512-/EtEDC3Q1pKc+3/XrfBrbs7bBwQDV42aTIg9WMVRo0bjdBC6Wr8iIVvyCQMzgnQ9MbDQeHA/cILgbBZgfkgHLw== tarball: file:projects/event-hubs.tgz version: 0.0.0 file:projects/event-processor-host.tgz: @@ -10471,14 +10472,14 @@ packages: dotenv: 8.6.0 eslint: 7.29.0 prettier: 1.19.1 - rhea: 2.0.2 + rhea: 2.0.3 rimraf: 3.0.2 tslib: 2.3.0 typescript: 4.2.4 dev: false name: '@rush-temp/mock-hub' resolution: - integrity: sha512-w4gQTrqQney0Jkj0NMc1D9KrgNJ1upzYkheaNFdeA84uApywwVloe7o8mOhGMVhzR1uQMsq2zFlNGdDgbByDog== + integrity: sha512-K6rFTLoACIBX5It6x5v3r668Kpt7jjkgCeukzTyZ13cvPrjqJ4M7L9y0oU2ECIigGm59cbHx4sWOX/rHAhELhw== tarball: file:projects/mock-hub.tgz version: 0.0.0 file:projects/monitor-opentelemetry-exporter.tgz: @@ -11160,7 +11161,7 @@ packages: process: 0.11.10 promise: 8.1.0 puppeteer: 3.3.0 - rhea-promise: 2.0.0 + rhea-promise: 2.1.0 rimraf: 3.0.2 rollup: 1.32.1 rollup-plugin-shim: 1.0.0 @@ -11175,7 +11176,7 @@ packages: dev: false name: '@rush-temp/service-bus' resolution: - integrity: sha512-n1TTvwS5Z9hDPLyLYzZQbZONAM0ZqDz2pT8Q3XopMzeCYQIw9Iuj+fCtCDm1MQsVuo2rbVGGMzA6AqqivD2F8A== + integrity: sha512-UBMn4Zxni71LSfmuDpKr50cz6JFTgZxnuM8ESeHPfMa5Ibzx1b8lLbURKcqiqRaatEyxueFRzESf46JDUv78ug== tarball: file:projects/service-bus.tgz version: 0.0.0 file:projects/storage-blob-changefeed.tgz: diff --git a/sdk/core/core-amqp/CHANGELOG.md b/sdk/core/core-amqp/CHANGELOG.md index a26a03e169fd..65754897e780 100644 --- a/sdk/core/core-amqp/CHANGELOG.md +++ b/sdk/core/core-amqp/CHANGELOG.md @@ -1,15 +1,12 @@ # Release History -## 3.0.1 (Unreleased) - -### Features Added - -### Breaking Changes +## 3.1.0 (Unreleased) ### Key Bugs Fixed -### Fixed - +- Updated to use the latest version of the `rhea` package. + Part of a fix for PR#15989, where draining messages could sometimes lead to message loss with `receiver.receiveMessages()`. + [PR#15989](https://github.com/Azure/azure-sdk-for-js/pull/15989) ## 3.0.0 (2021-06-09) diff --git a/sdk/core/core-amqp/package.json b/sdk/core/core-amqp/package.json index 02aa3ab9fba8..3d0424cf39a0 100644 --- a/sdk/core/core-amqp/package.json +++ b/sdk/core/core-amqp/package.json @@ -1,7 +1,7 @@ { "name": "@azure/core-amqp", "sdk-type": "client", - "version": "3.0.1", + "version": "3.1.0", "description": "Common library for amqp based azure sdks like @azure/event-hubs.", "author": "Microsoft Corporation", "license": "MIT", @@ -76,8 +76,8 @@ "events": "^3.0.0", "jssha": "^3.1.0", "process": "^0.11.10", - "rhea": "^2.0.2", - "rhea-promise": "^2.0.0", + "rhea": "^2.0.3", + "rhea-promise": "^2.1.0", "tslib": "^2.2.0", "url": "^0.11.0", "util": "^0.12.1" diff --git a/sdk/eventhub/event-hubs/package.json b/sdk/eventhub/event-hubs/package.json index 953a510a95a0..555d4e7c215b 100644 --- a/sdk/eventhub/event-hubs/package.json +++ b/sdk/eventhub/event-hubs/package.json @@ -115,7 +115,7 @@ "is-buffer": "^2.0.3", "jssha": "^3.1.0", "process": "^0.11.10", - "rhea-promise": "^2.0.0", + "rhea-promise": "^2.1.0", "tslib": "^2.2.0", "uuid": "^8.3.0" }, diff --git a/sdk/eventhub/mock-hub/package.json b/sdk/eventhub/mock-hub/package.json index 8fa980a59215..a4bc00a2a119 100644 --- a/sdk/eventhub/mock-hub/package.json +++ b/sdk/eventhub/mock-hub/package.json @@ -62,7 +62,7 @@ "dependencies": { "@azure/abort-controller": "^1.0.0", "@azure/core-asynciterator-polyfill": "^1.0.0", - "rhea": "^2.0.2", + "rhea": "^2.0.3", "tslib": "^2.2.0" }, "//sampleConfiguration": { diff --git a/sdk/servicebus/service-bus/CHANGELOG.md b/sdk/servicebus/service-bus/CHANGELOG.md index 1d22f6cf2102..99e2a24d3f8f 100644 --- a/sdk/servicebus/service-bus/CHANGELOG.md +++ b/sdk/servicebus/service-bus/CHANGELOG.md @@ -1,14 +1,14 @@ # Release History -## 7.3.0 (Unreleased) - +## 7.3.0 (2021-07-06) ### Features Added -- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. - -### Breaking Changes +- With the dropping of support for Node.js versions that are no longer in LTS, the dependency on `@types/node` has been updated to version 12. Read our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details. ### Key Bugs Fixed +- Fixed a bug that could lead to message loss in certain conditions when using `receiver.receiveMessages()`. + [PR#15989](https://github.com/Azure/azure-sdk-for-js/pull/15989) + ### Fixed - Fixing an issue where the internal link cache would not properly remove closed links. diff --git a/sdk/servicebus/service-bus/package.json b/sdk/servicebus/service-bus/package.json index bd84a044cbef..1f4b33d69e0d 100644 --- a/sdk/servicebus/service-bus/package.json +++ b/sdk/servicebus/service-bus/package.json @@ -126,7 +126,7 @@ "long": "^4.0.0", "process": "^0.11.10", "tslib": "^2.2.0", - "rhea-promise": "^2.0.0" + "rhea-promise": "^2.1.0" }, "devDependencies": { "@azure/dev-tool": "^1.0.0", diff --git a/sdk/servicebus/service-bus/src/core/batchingReceiver.ts b/sdk/servicebus/service-bus/src/core/batchingReceiver.ts index 413203ff3d03..e21d125163c1 100644 --- a/sdk/servicebus/service-bus/src/core/batchingReceiver.ts +++ b/sdk/servicebus/service-bus/src/core/batchingReceiver.ts @@ -8,7 +8,7 @@ import { OnAmqpEvent, ReceiverEvents, SessionEvents, - Receiver, + Receiver as RheaPromiseReceiver, Session } from "rhea-promise"; import { ServiceBusMessageImpl } from "../serviceBusMessage"; @@ -191,7 +191,10 @@ export function getRemainingWaitTimeInMsFn( * * @internal */ -type EventEmitterLike = Pick; +type EventEmitterLike = Pick< + T, + "once" | "removeListener" | "on" +>; /** * The bare minimum needed to receive messages for batched @@ -199,8 +202,11 @@ type EventEmitterLike = Pick & - EventEmitterLike & { +export type MinimalReceiver = Pick< + RheaPromiseReceiver, + "name" | "isOpen" | "credit" | "addCredit" | "drain" | "drainCredit" +> & + EventEmitterLike & { session: EventEmitterLike; } & { connection: { @@ -269,6 +275,7 @@ export class BatchingReceiverLite { private _getRemainingWaitTimeInMsFn: typeof getRemainingWaitTimeInMsFn; private _closeHandler: ((connectionError?: AmqpError | Error) => void) | undefined; + private _finalAction: (() => void) | undefined; isReceivingMessages: boolean; @@ -389,16 +396,17 @@ export class BatchingReceiverLite { // - maxMessageCount is reached or // - maxWaitTime is passed or // - newMessageWaitTimeoutInSeconds is passed since the last message was received - const finalAction = (): void => { + this._finalAction = (): void => { + if (receiver.drain) { + // If a drain is already in process then we should let it complete. Some messages might still be in flight, but they will + // arrive before the drain completes. + return; + } + // Drain any pending credits. if (receiver.isOpen() && receiver.credit > 0) { logger.verbose(`${loggingPrefix} Draining leftover credits(${receiver.credit}).`); - - // setting .drain and combining it with .addCredit results in (eventually) sending - // a drain request to Service Bus. When the drain completes rhea will call `onReceiveDrain` - // at which point we'll wrap everything up and resolve the promise. - receiver.drain = true; - receiver.addCredit(1); + receiver.drainCredit(); } else { logger.verbose( `${loggingPrefix} Resolving receiveMessages() with ${brokeredMessages.length} messages.` @@ -429,15 +437,24 @@ export class BatchingReceiverLite { logger.verbose( `${loggingPrefix} Batching, waited for ${remainingWaitTimeInMs} milliseconds after receiving the first message.` ); - finalAction(); + this._finalAction!(); }, remainingWaitTimeInMs); } } try { const data: ServiceBusMessageImpl = this._createServiceBusMessage(context); - if (brokeredMessages.length < args.maxMessageCount) { - brokeredMessages.push(data); + brokeredMessages.push(data); + + // NOTE: we used to actually "lose" any extra messages. At this point I've fixed the areas that were causing us to receive + // extra messages but if this bug arises in some other way it's better to return the message than it would be to let it be + // silently dropped on the floor. + if (brokeredMessages.length > args.maxMessageCount) { + logger.warning( + `More messages arrived than were expected: ${ + args.maxMessageCount + } vs ${brokeredMessages.length + 1}` + ); } } catch (err) { const errObj = err instanceof Error ? err : new Error(JSON.stringify(err)); @@ -448,7 +465,7 @@ export class BatchingReceiverLite { reject(errObj); } if (brokeredMessages.length === args.maxMessageCount) { - finalAction(); + this._finalAction!(); } }; @@ -515,7 +532,7 @@ export class BatchingReceiverLite { logger.verbose( `${loggingPrefix} Batching, waited for max wait time ${args.maxWaitTimeInMs} milliseconds.` ); - finalAction(); + this._finalAction!(); }, args.maxWaitTimeInMs); receiver.on(ReceiverEvents.message, onReceiveMessage); diff --git a/sdk/servicebus/service-bus/src/core/receiverHelper.ts b/sdk/servicebus/service-bus/src/core/receiverHelper.ts index 68c3ea6fd405..80086cc03d73 100644 --- a/sdk/servicebus/service-bus/src/core/receiverHelper.ts +++ b/sdk/servicebus/service-bus/src/core/receiverHelper.ts @@ -132,10 +132,7 @@ export class ReceiverHelper { resolve(); }); - receiver.drain = true; - // this is not actually adding another credit - it'll just - // cause the drain call to start. - receiver.addCredit(1); + receiver.drainCredit(); }); return drainPromise; diff --git a/sdk/servicebus/service-bus/test/internal/batchReceiver.spec.ts b/sdk/servicebus/service-bus/test/internal/batchReceiver.spec.ts index a5ee9c1fa6bc..f86470518e13 100644 --- a/sdk/servicebus/service-bus/test/internal/batchReceiver.spec.ts +++ b/sdk/servicebus/service-bus/test/internal/batchReceiver.spec.ts @@ -1388,24 +1388,13 @@ function causeDisconnectDuringDrain( throw new Error("No active link for batching receiver"); } - const origAddCredit = link.addCredit; - - // We want to simulate a disconnect once the batching receiver is draining. - // We can detect when the receiver enters a draining state when `addCredit` is - // called while didRequestDrainResolver is called to resolve the promise. - const addCreditThatImmediatelyDetaches = function(credits: number): void { - origAddCredit.call(link, credits); - - if (link.drain && credits === 1) { - // initiate the detach now (prior to any possibilty of the 'drain' call being scheduled) - batchingReceiver - .onDetached(new Error("Test: fake connection failure")) - .then(() => resolveOnDetachedCallPromise()); - } + link["drainCredit"] = () => { + // don't send the drain request, we'll just detach. + batchingReceiver + .onDetached(new Error("Test: fake connection failure")) + .then(() => resolveOnDetachedCallPromise()); }; - link["addCredit"] = addCreditThatImmediatelyDetaches; - return { onDetachedCalledPromise }; diff --git a/sdk/servicebus/service-bus/test/internal/smoketest.spec.ts b/sdk/servicebus/service-bus/test/internal/smoketest.spec.ts index eb2182e64b03..6b5b6f1cf999 100644 --- a/sdk/servicebus/service-bus/test/internal/smoketest.spec.ts +++ b/sdk/servicebus/service-bus/test/internal/smoketest.spec.ts @@ -20,7 +20,10 @@ import { chai.use(chaiAsPromised); const assert = chai.assert; -describe("Sample scenarios for track 2", () => { +/** + * A basic suite that exercises most of the core functionality. + */ +describe("Smoke tests", () => { let serviceBusClient: ServiceBusClientForTests; before(async () => { diff --git a/sdk/servicebus/service-bus/test/internal/unit/batchingReceiver.spec.ts b/sdk/servicebus/service-bus/test/internal/unit/batchingReceiver.spec.ts index 111a7d1c782b..b22b09bf163b 100644 --- a/sdk/servicebus/service-bus/test/internal/unit/batchingReceiver.spec.ts +++ b/sdk/servicebus/service-bus/test/internal/unit/batchingReceiver.spec.ts @@ -19,14 +19,12 @@ import { createAbortSignalForTest } from "../../public/utils/abortSignalTestUtil import { AbortController } from "@azure/abort-controller"; import { ServiceBusMessageImpl } from "../../../src/serviceBusMessage"; import { - Receiver as RheaReceiver, + Receiver as RheaPromiseReceiver, ReceiverEvents, SessionEvents, EventContext, - Message as RheaMessage, - Receiver + Message as RheaMessage } from "rhea-promise"; -import { OnAmqpEventAsPromise } from "../../../src/core/messageReceiver"; import { ConnectionContext } from "../../../src/connectionContext"; import { ServiceBusReceiverImpl } from "../../../src/receivers/receiver"; import { OperationOptionsBase } from "../../../src/modelsToBeSharedWithEventHubs"; @@ -148,7 +146,7 @@ describe("BatchingReceiver unit tests", () => { listeners.add(eventType); } } - } as any) as RheaReceiver; + } as any) as RheaPromiseReceiver; abortController.abort(); }; @@ -190,7 +188,7 @@ describe("BatchingReceiver unit tests", () => { }); it("1. We received 'max messages'", async () => { - const receiver = new BatchingReceiver( + const batchingReceiver = new BatchingReceiver( createConnectionContextForTests(), "dummyEntityPath", { @@ -198,17 +196,15 @@ describe("BatchingReceiver unit tests", () => { lockRenewer: undefined } ); - closeables.push(receiver); + closeables.push(batchingReceiver); - const { receiveIsReady, emitter, remainingRegisteredListeners } = setupBatchingReceiver( - receiver - ); + const { receiveIsReady, rheaReceiver } = setupBatchingReceiver(batchingReceiver); - const receivePromise = receiver.receive(1, bigTimeout, bigTimeout, {}); + const receivePromise = batchingReceiver.receive(1, bigTimeout, bigTimeout, {}); await receiveIsReady; // batch fulfillment is checked when we receive a message... - emitter.emit(ReceiverEvents.message, { + rheaReceiver.emit(ReceiverEvents.message, { message: { body: "the message" } as RheaMessage } as EventContext); @@ -218,7 +214,7 @@ describe("BatchingReceiver unit tests", () => { ["the message"] ); - assert.isEmpty(remainingRegisteredListeners); + assertListenersRemoved(rheaReceiver); }).timeout(5 * 1000); // in the new world the overall timeout firing means we've received _no_ messages @@ -234,19 +230,19 @@ describe("BatchingReceiver unit tests", () => { ); closeables.push(receiver); - const { receiveIsReady, remainingRegisteredListeners } = setupBatchingReceiver(receiver); + const { receiveIsReady, rheaReceiver } = setupBatchingReceiver(receiver); const receivePromise = receiver.receive(1, littleTimeout, bigTimeout, {}); await receiveIsReady; // force the overall timeout to fire - clock.tick(littleTimeout); + clock.tick(littleTimeout + 1); const messages = await receivePromise; assert.isEmpty(messages); - assert.isEmpty(remainingRegisteredListeners); + assertListenersRemoved(rheaReceiver); }).timeout(5 * 1000); // TODO: there's a bug that needs some more investigation where receiveAndDelete loses messages if we're @@ -256,7 +252,7 @@ describe("BatchingReceiver unit tests", () => { (lockMode === "peekLock" ? it : it.skip)( `3a. (with idle timeout) We've received 1 message and _now_ have exceeded 'max wait time past first message'`, async () => { - const receiver = new BatchingReceiver( + const batchingReceiver = new BatchingReceiver( createConnectionContextForTests(), "dummyEntityPath", { @@ -264,18 +260,15 @@ describe("BatchingReceiver unit tests", () => { lockRenewer: undefined } ); - closeables.push(receiver); + closeables.push(batchingReceiver); - const { receiveIsReady, emitter, remainingRegisteredListeners } = setupBatchingReceiver( - receiver, - clock - ); + const { receiveIsReady, rheaReceiver } = setupBatchingReceiver(batchingReceiver, clock); - const receivePromise = receiver.receive(3, bigTimeout, littleTimeout, {}); + const receivePromise = batchingReceiver.receive(3, bigTimeout, littleTimeout, {}); await receiveIsReady; // batch fulfillment is checked when we receive a message... - emitter.emit(ReceiverEvents.message, { + rheaReceiver.emit(ReceiverEvents.message, { message: { body: "the first message" } as RheaMessage } as EventContext); @@ -285,7 +278,7 @@ describe("BatchingReceiver unit tests", () => { // now emit a second message - this second message should _not_ change any existing timers // or start new ones. - emitter.emit(ReceiverEvents.message, { + rheaReceiver.emit(ReceiverEvents.message, { message: { body: "the second message" } as RheaMessage } as EventContext); @@ -298,7 +291,7 @@ describe("BatchingReceiver unit tests", () => { ["the first message", "the second message"] ); - assert.isEmpty(remainingRegisteredListeners); + assertListenersRemoved(rheaReceiver); } ).timeout(5 * 1000); @@ -307,7 +300,7 @@ describe("BatchingReceiver unit tests", () => { // the duration of time given (or max messages) with no idle timer. // When we eliminate that bug we can remove this test in favor of the idle timeout test above. (lockMode === "receiveAndDelete" ? it : it.skip)(`3b. (without idle timeout)`, async () => { - const receiver = new BatchingReceiver( + const batchingReceiver = new BatchingReceiver( createConnectionContextForTests(), "dummyEntityPath", { @@ -315,17 +308,15 @@ describe("BatchingReceiver unit tests", () => { lockRenewer: undefined } ); - closeables.push(receiver); + closeables.push(batchingReceiver); - const { receiveIsReady, emitter, remainingRegisteredListeners } = setupBatchingReceiver( - receiver - ); + const { receiveIsReady, rheaReceiver } = setupBatchingReceiver(batchingReceiver); - const receivePromise = receiver.receive(3, bigTimeout, littleTimeout, {}); + const receivePromise = batchingReceiver.receive(3, bigTimeout, littleTimeout, {}); await receiveIsReady; // batch fulfillment is checked when we receive a message... - emitter.emit(ReceiverEvents.message, { + rheaReceiver.emit(ReceiverEvents.message, { message: { body: "the first message" } as RheaMessage @@ -337,7 +328,7 @@ describe("BatchingReceiver unit tests", () => { // ...and emit another message _after_ the idle timer would have fired. Now when we advance // the time all the way.... - emitter.emit(ReceiverEvents.message, { + rheaReceiver.emit(ReceiverEvents.message, { message: { body: "the second message" } as RheaMessage @@ -353,7 +344,7 @@ describe("BatchingReceiver unit tests", () => { ["the first message", "the second message"] ); - assert.isEmpty(remainingRegisteredListeners); + assertListenersRemoved(rheaReceiver); }).timeout(5 * 1000); // TODO: there's a bug that needs some more investigation where receiveAndDelete loses messages if we're @@ -363,7 +354,7 @@ describe("BatchingReceiver unit tests", () => { (lockMode === "peekLock" ? it : it.skip)( "4. sanity check that we're using getRemainingWaitTimeInMs", async () => { - const receiver = new BatchingReceiver( + const batchingReceiver = new BatchingReceiver( createConnectionContextForTests(), "dummyEntityPath", { @@ -371,10 +362,10 @@ describe("BatchingReceiver unit tests", () => { lockRenewer: undefined } ); - closeables.push(receiver); + closeables.push(batchingReceiver); - const { receiveIsReady, emitter, remainingRegisteredListeners } = setupBatchingReceiver( - receiver, + const { receiveIsReady, rheaReceiver: emitter } = setupBatchingReceiver( + batchingReceiver, clock ); @@ -382,7 +373,7 @@ describe("BatchingReceiver unit tests", () => { const arbitraryAmountOfTimeInMs = 40; - receiver["_batchingReceiverLite"]["_getRemainingWaitTimeInMsFn"] = ( + batchingReceiver["_batchingReceiverLite"]["_getRemainingWaitTimeInMsFn"] = ( maxWaitTimeInMs: number, maxTimeAfterFirstMessageMs: number ) => { @@ -398,7 +389,7 @@ describe("BatchingReceiver unit tests", () => { }; }; - const receivePromise = receiver.receive(3, bigTimeout + 1, bigTimeout + 2, {}); + const receivePromise = batchingReceiver.receive(3, bigTimeout + 1, bigTimeout + 2, {}); await receiveIsReady; emitter.emit(ReceiverEvents.message, { @@ -417,7 +408,7 @@ describe("BatchingReceiver unit tests", () => { assert.isTrue(wasCalled); - assert.isEmpty(remainingRegisteredListeners); + assertListenersRemoved(emitter); } ); @@ -426,17 +417,11 @@ describe("BatchingReceiver unit tests", () => { clock?: ReturnType ): { receiveIsReady: Promise; - emitter: EventEmitter; - remainingRegisteredListeners: Set; + rheaReceiver: RheaPromiseReceiver; } { - const { - fakeRheaReceiver, - emitter, - remainingRegisteredListeners, - receiveIsReady - } = createFakeReceiver(clock); + const rheaReceiver = createFakeReceiver(clock); - batchingReceiver["_link"] = fakeRheaReceiver; + batchingReceiver["_link"] = rheaReceiver; batchingReceiver["_batchingReceiverLite"]["_createServiceBusMessage"] = (eventContext) => { return { @@ -444,86 +429,47 @@ describe("BatchingReceiver unit tests", () => { } as ServiceBusMessageImpl; }; + const receiveIsReady = getReceiveIsReadyPromise(batchingReceiver["_batchingReceiverLite"]); + return { receiveIsReady, - emitter, - remainingRegisteredListeners + rheaReceiver }; } }); }); - function createFakeReceiver( - clock?: ReturnType - ): { - receiveIsReady: Promise; - emitter: EventEmitter; - remainingRegisteredListeners: Set; - fakeRheaReceiver: Receiver; - } { - const emitter = new EventEmitter(); - const { promise: receiveIsReady, resolve: resolvePromiseIsReady } = defer(); - let credits = 0; - - const remainingRegisteredListeners = new Set(); - - const fakeRheaReceiver = { - on(evt: ReceiverEvents, handler: OnAmqpEventAsPromise) { - emitter.on(evt, handler); - - if (evt === ReceiverEvents.message) { - --credits; - } + function createFakeReceiver(clock?: ReturnType): RheaPromiseReceiver { + const fakeRheaReceiver = new EventEmitter() as RheaPromiseReceiver; + fakeRheaReceiver.drain = false; - assert.isFalse(remainingRegisteredListeners.has(evt.toString())); - remainingRegisteredListeners.add(evt.toString()); - }, - removeListener(evt: ReceiverEvents, handler: OnAmqpEventAsPromise) { - remainingRegisteredListeners.delete(evt.toString()); - emitter.removeListener(evt, handler); - }, - session: { - on(evt: SessionEvents, handler: OnAmqpEventAsPromise) { - emitter.on(evt, handler); - - if (evt === SessionEvents.sessionClose) { - // this also happens to be the final thing the Promise does - // as part of it's initialization. - resolvePromiseIsReady(); - } + let credit = 0; - assert.isFalse(remainingRegisteredListeners.has(evt.toString())); - remainingRegisteredListeners.add(evt.toString()); - }, - removeListener(evt: SessionEvents, handler: OnAmqpEventAsPromise) { - remainingRegisteredListeners.delete(evt.toString()); - emitter.removeListener(evt, handler); - } - }, - isOpen: () => true, - addCredit: (_credits: number) => { - if (_credits === 1 && fakeRheaReceiver.drain === true) { - // special case - if we're draining we should initiate a drain - emitter.emit(ReceiverEvents.receiverDrained, undefined); - clock?.runAll(); - } else { - credits += _credits; - } - }, - get credit() { - return credits; - }, - connection: { - id: "connection-id" - } - } as RheaReceiver; + fakeRheaReceiver.on(ReceiverEvents.message, function creditRemoverForTests() { + --credit; + }); + (fakeRheaReceiver as any).session = new EventEmitter(); + + fakeRheaReceiver["isOpen"] = () => true; + fakeRheaReceiver["addCredit"] = (_credit: number) => { + credit += _credit; + }; - return { - receiveIsReady, - emitter, - remainingRegisteredListeners, - fakeRheaReceiver + fakeRheaReceiver["drainCredit"] = () => { + fakeRheaReceiver.drain = true; + fakeRheaReceiver.emit(ReceiverEvents.receiverDrained, undefined); + clock?.runAll(); }; + + Object.defineProperty(fakeRheaReceiver, "credit", { + get: () => credit + }); + + (fakeRheaReceiver as any)["connection"] = { + id: "connection-id" + }; + + return fakeRheaReceiver; } describe("getRemainingWaitTimeInMs", () => { @@ -572,9 +518,9 @@ describe("BatchingReceiver unit tests", () => { }); it("isReceivingMessages is properly set and unset when receiving operations run", async () => { - const { fakeRheaReceiver, receiveIsReady } = createFakeReceiver(); + const fakeRheaReceiver = createFakeReceiver(); - const receiver = new BatchingReceiverLite( + const batchingReceiver = new BatchingReceiverLite( createConnectionContextForTests(), "fakeEntityPath", async () => { @@ -583,27 +529,28 @@ describe("BatchingReceiver unit tests", () => { "peekLock" ); - assert.isFalse(receiver.isReceivingMessages); + assert.isFalse(batchingReceiver.isReceivingMessages); + const receiveIsReady = getReceiveIsReadyPromise(batchingReceiver); - const prm = receiver.receiveMessages({ + const prm = batchingReceiver.receiveMessages({ maxMessageCount: 1, - maxTimeAfterFirstMessageInMs: 1, - maxWaitTimeInMs: 1 + maxTimeAfterFirstMessageInMs: 20, + maxWaitTimeInMs: 10 }); - assert.isTrue(receiver.isReceivingMessages); + assert.isTrue(batchingReceiver.isReceivingMessages); await receiveIsReady; - await clock.tick(1); + await clock.tick(10 + 1); await prm; - assert.isFalse(receiver.isReceivingMessages); + assert.isFalse(batchingReceiver.isReceivingMessages); }); it("batchingReceiverLite.close(actual-error) - throws the error from the current receiverMessages() call", async () => { - const { fakeRheaReceiver, receiveIsReady } = createFakeReceiver(); + const fakeRheaReceiver = createFakeReceiver(); - const receiver = new BatchingReceiverLite( + const batchingReceiver = new BatchingReceiverLite( {} as ConnectionContext, "fakeEntityPath", async () => { @@ -612,18 +559,20 @@ describe("BatchingReceiver unit tests", () => { "peekLock" ); - assert.notExists(receiver["_closeHandler"]); + assert.notExists(batchingReceiver["_closeHandler"]); - const receiveMessagesPromise = receiver.receiveMessages({ + const receiveIsReady = getReceiveIsReadyPromise(batchingReceiver); + + const receiveMessagesPromise = batchingReceiver.receiveMessages({ maxMessageCount: 1, maxTimeAfterFirstMessageInMs: 1, maxWaitTimeInMs: 1 }); await receiveIsReady; - assert.exists(receiver["_closeHandler"]); + assert.exists(batchingReceiver["_closeHandler"]); - await receiver.terminate(new Error("actual error")); + await batchingReceiver.terminate(new Error("actual error")); try { await receiveMessagesPromise; @@ -634,9 +583,9 @@ describe("BatchingReceiver unit tests", () => { }); it("batchingReceiverLite.close() (ie, no error) just shuts down the current operation with no error", async () => { - const { fakeRheaReceiver } = createFakeReceiver(); + const fakeRheaReceiver = createFakeReceiver(); - const receiver = new BatchingReceiverLite( + const batchingReceiver = new BatchingReceiverLite( createConnectionContextForTests(), "fakeEntityPath", async () => { @@ -645,13 +594,13 @@ describe("BatchingReceiver unit tests", () => { "peekLock" ); - assert.notExists(receiver["_closeHandler"]); + assert.notExists(batchingReceiver["_closeHandler"]); let resolveWasCalled = false; let rejectWasCalled = false; - receiver["_receiveMessagesImpl"]( - (await receiver["_getCurrentReceiver"]())!, + batchingReceiver["_receiveMessagesImpl"]( + (await batchingReceiver["_getCurrentReceiver"]())!, { maxMessageCount: 1, maxTimeAfterFirstMessageInMs: 1, @@ -665,11 +614,11 @@ describe("BatchingReceiver unit tests", () => { } ); - assert.exists(receiver["_closeHandler"]); + assert.exists(batchingReceiver["_closeHandler"]); assert.isFalse(resolveWasCalled); assert.isFalse(rejectWasCalled); - receiver.terminate(); + batchingReceiver.terminate(); // these are still false because we used setTimeout() (and we're using sinon) // so the clock is "frozen" @@ -682,12 +631,71 @@ describe("BatchingReceiver unit tests", () => { assert.isTrue(resolveWasCalled); assert.isFalse(rejectWasCalled); }); + + it("finalAction prevents multiple concurrent drain calls", async () => { + // there are unintended side effects if multiple drains are requested (ie - you start to get + // mismatches between responses, resulting in this error message ("Received transfer + // when credit was 0") bring printed by rhea. + const fakeRheaReceiver = createFakeReceiver(); + + const batchingReceiverLite = new BatchingReceiverLite( + createConnectionContextForTests(), + "fakeEntityPath", + async () => { + return fakeRheaReceiver; + }, + "peekLock" + ); + + batchingReceiverLite["_receiveMessagesImpl"]( + fakeRheaReceiver, + { + maxMessageCount: 2, + maxTimeAfterFirstMessageInMs: 1, + maxWaitTimeInMs: 1 + }, + () => {}, + () => {} + ); + + assert.equal( + fakeRheaReceiver.credit, + 2, + "No messages received, nothing drained, should have all the credits from the start." + ); + + const finalAction = batchingReceiverLite["_finalAction"]; + + if (!finalAction) { + throw new Error("No finalAction defined!"); + } + + fakeRheaReceiver.removeAllListeners(ReceiverEvents.receiverDrained); + + // the first call (when there are no received messages) will initiate a drain + assert.isFalse(fakeRheaReceiver.drain); + + const drainCreditSpy = sinon.spy(fakeRheaReceiver, "drainCredit"); + + finalAction(); + + assert.isTrue(drainCreditSpy.calledOnceWith()); + + // also our fix should leave our # of credits untouched (ie, no +1 effect) + assert.equal(fakeRheaReceiver.credit, 2); + + drainCreditSpy.resetHistory(); + + // subsequent calls will not initiate drains. + finalAction(); + assert.isTrue(drainCreditSpy.notCalled); + }); }); it("drain doesn't resolve before message callbacks have completed", async () => { - const { fakeRheaReceiver, emitter, receiveIsReady } = createFakeReceiver(); + const fakeRheaReceiver = createFakeReceiver(); - const receiver = new BatchingReceiverLite( + const batchingReceiverLite = new BatchingReceiverLite( createConnectionContextForTests(), "fakeEntityPath", async () => { @@ -696,7 +704,9 @@ describe("BatchingReceiver unit tests", () => { "peekLock" ); - const receiveMessagesPromise = receiver + const receiveIsReady = getReceiveIsReadyPromise(batchingReceiverLite); + + const receiveMessagesPromise = batchingReceiverLite .receiveMessages({ maxMessageCount: 3, maxTimeAfterFirstMessageInMs: 5000, @@ -740,7 +750,7 @@ describe("BatchingReceiver unit tests", () => { // us to enter into the same task queue as all the message callbacks, and makes it so everything occurs in the // right order. setTimeout(() => { - emitter.emit(ReceiverEvents.message, { + fakeRheaReceiver.emit(ReceiverEvents.message, { message: { body: "the first message", message_annotations: { @@ -750,10 +760,61 @@ describe("BatchingReceiver unit tests", () => { } as EventContext); }); - emitter.emit(ReceiverEvents.receiverDrained, {} as EventContext); + fakeRheaReceiver.emit(ReceiverEvents.receiverDrained, {} as EventContext); const results = await receiveMessagesPromise; assert.equal(1, results.length); }); }); + +function getReceiveIsReadyPromise(batchingReceiverLite: BatchingReceiverLite): Promise { + // receiveMessagesImpl is the 'non-async' method that sets up the receiver and adds credits. So it's a + // perfect method to hook into to test the internals of the BatchingReceiver(Lite) + const orig = batchingReceiverLite["_receiveMessagesImpl"]; + const { resolve, promise } = defer(); + + batchingReceiverLite["_receiveMessagesImpl"] = (...args) => { + orig.call(batchingReceiverLite, ...args); + resolve(); + }; + + return promise; +} + +function assertListenersRemoved(rheaReceiver: RheaPromiseReceiver): void { + const shouldBeEmpty = [ + ReceiverEvents.receiverClose, + ReceiverEvents.receiverDrained, + ReceiverEvents.receiverError, + ReceiverEvents.receiverFlow, + ReceiverEvents.receiverOpen, + ReceiverEvents.settled, + SessionEvents.sessionClose, + SessionEvents.sessionError, + SessionEvents.sessionOpen, + SessionEvents.settled + ]; + + // we add a little credit remover for our tests. Ignore it. + assert.isEmpty( + rheaReceiver + .listeners(ReceiverEvents.message) + .filter((f) => f.name !== "creditRemoverForTests"), + `No listeners (aside from the test credit remover) should be registered for ${ReceiverEvents.message}` + ); + + for (const eventName of shouldBeEmpty) { + assert.isEmpty( + rheaReceiver.listeners(eventName), + `No listeners should be registered for ${eventName} on the receiver` + ); + assert.isEmpty( + rheaReceiver.session.listeners(eventName), + `No listeners should be registered for ${eventName} on the receiver.session` + ); + } + + // check the session as well + rheaReceiver.session; +} diff --git a/sdk/servicebus/service-bus/test/internal/unit/messageSession.spec.ts b/sdk/servicebus/service-bus/test/internal/unit/messageSession.spec.ts index b53c0a15a70d..b915d982377a 100644 --- a/sdk/servicebus/service-bus/test/internal/unit/messageSession.spec.ts +++ b/sdk/servicebus/service-bus/test/internal/unit/messageSession.spec.ts @@ -14,10 +14,10 @@ import sinon, { SinonSpy } from "sinon"; import { EventEmitter } from "events"; import { ReceiverEvents, - Receiver as RheaReceiver, EventContext, Message as RheaMessage, - SessionEvents + SessionEvents, + Receiver as RheaPromiseReceiver } from "rhea-promise"; import { OnAmqpEventAsPromise } from "../../../src/core/messageReceiver"; import { ServiceBusMessageImpl } from "../../../src/serviceBusMessage"; @@ -280,16 +280,16 @@ describe("Message session unit tests", () => { } { const emitter = new EventEmitter(); const { promise: receiveIsReady, resolve: resolvePromiseIsReady } = defer(); - let credits = 0; const remainingRegisteredListeners = new Set(); + let credit = 0; const fakeRheaReceiver = { on(evt: ReceiverEvents, handler: OnAmqpEventAsPromise) { emitter.on(evt, handler); if (evt === ReceiverEvents.message) { - --credits; + --credit; } assert.isFalse(remainingRegisteredListeners.has(evt.toString())); @@ -318,22 +318,20 @@ describe("Message session unit tests", () => { } }, isOpen: () => true, - addCredit: (_credits: number) => { - if (_credits === 1 && fakeRheaReceiver.drain === true) { - // special case - if we're draining we should initiate a drain - emitter.emit(ReceiverEvents.receiverDrained, undefined); - clock?.runAll(); - } else { - credits += _credits; - } + addCredit: (_credit: number) => { + credit += _credit; + }, + drainCredit: () => { + emitter.emit(ReceiverEvents.receiverDrained, undefined); + clock?.runAll(); }, get credit() { - return credits; + return credit; }, connection: { id: "connection-id" } - } as RheaReceiver; + } as RheaPromiseReceiver; batchingReceiver["_link"] = fakeRheaReceiver; diff --git a/sdk/servicebus/service-bus/test/internal/unit/unittestUtils.ts b/sdk/servicebus/service-bus/test/internal/unit/unittestUtils.ts index 5453faf70643..67cf7eab4c97 100644 --- a/sdk/servicebus/service-bus/test/internal/unit/unittestUtils.ts +++ b/sdk/servicebus/service-bus/test/internal/unit/unittestUtils.ts @@ -4,7 +4,7 @@ import { ConnectionContext } from "../../../src/connectionContext"; import { AwaitableSender, - Receiver as RheaReceiver, + Receiver as RheaPromiseReceiver, ReceiverEvents, ReceiverOptions } from "rhea-promise"; @@ -21,7 +21,7 @@ export interface CreateConnectionContextForTestsOptions { host?: string; entityPath?: string; onCreateAwaitableSenderCalled?: () => void; - onCreateReceiverCalled?: (receiver: RheaReceiver) => void; + onCreateReceiverCalled?: (receiver: RheaPromiseReceiver) => void; } /** @@ -79,7 +79,7 @@ export function createConnectionContextForTests( return testAwaitableSender; }, - createReceiver: async (): Promise => { + createReceiver: async (): Promise => { const receiver = createRheaReceiverForTests(); if (options?.onCreateReceiverCalled) { @@ -165,8 +165,8 @@ export function createConnectionContextForTestsWithSessionId( * - It handles draining (via the .drain = true/addCredit(1) combo of operations). * - It respects .close(), so the state of the receiver should be accurate for isOpen(). */ -export function createRheaReceiverForTests(options?: ReceiverOptions): RheaReceiver { - const receiver = new EventEmitter() as RheaReceiver; +export function createRheaReceiverForTests(options?: ReceiverOptions): RheaPromiseReceiver { + const receiver = new EventEmitter() as RheaPromiseReceiver; (receiver as any).name = options?.name == null ? getUniqueName("entity") : options.name; @@ -174,6 +174,23 @@ export function createRheaReceiverForTests(options?: ReceiverOptions): RheaRecei id: "connection-id" }; + const link = { + credit: 0, + drain_credit(): void { + // simulate drain + (receiver as any).credit = 0; + receiver.emit(ReceiverEvents.receiverDrained, undefined); + } + }; + + (receiver as any)["_link"] = link; + + receiver.drain = false; + + (receiver as any)["drainCredit"] = () => { + link.drain_credit(); + }; + (receiver as any).addCredit = (credit: number) => { if (!receiver.isOpen()) { throw new Error("TEST INCONSISTENCY: trying to .addCredit() to a closed receiver"); @@ -184,11 +201,6 @@ export function createRheaReceiverForTests(options?: ReceiverOptions): RheaRecei } (receiver as any).credit += credit; - - if (credit === 1 && receiver.drain) { - (receiver as any).credit = 0; - receiver.emit(ReceiverEvents.receiverDrained, undefined); - } }; mockLinkProperties(receiver); diff --git a/sdk/servicebus/service-bus/test/stress/scenarioLongRunning.ts b/sdk/servicebus/service-bus/test/stress/scenarioLongRunning.ts index d1f1abc22766..e848ea1a463b 100644 --- a/sdk/servicebus/service-bus/test/stress/scenarioLongRunning.ts +++ b/sdk/servicebus/service-bus/test/stress/scenarioLongRunning.ts @@ -1,5 +1,10 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. + import { captureConsoleOutputToAppInsights, + createServiceBusClient, + loopForever as loopInfinitely, ServiceBusStressTester } from "./serviceBusStressTester"; import { AbortController, AbortSignalLike } from "@azure/abort-controller"; @@ -8,14 +13,6 @@ import { v4 as uuidv4 } from "uuid"; captureConsoleOutputToAppInsights(); -async function looper(fn: () => Promise, delay: number, abortSignal: AbortSignalLike) { - const timeout = () => new Promise((resolve) => setTimeout(() => resolve(true), delay)); - - while (!abortSignal.aborted && (await timeout())) { - await fn(); - } -} - async function sendMessagesForever( stressTest: ServiceBusStressTester, clientForSender: ServiceBusClient, @@ -25,7 +22,7 @@ async function sendMessagesForever( let sender: ServiceBusSender | undefined; - return looper( + return loopInfinitely( async () => { if (abortSignal.aborted) { console.log(`Aborting sending because of abortSignal`); @@ -48,7 +45,7 @@ async function sendMessagesForever( await sender.sendMessages(messagesToSend); } catch (err) { console.log(`Sending message failed: `, err); - stressTest.trackError("send", err); + stressTest.trackError("send", err as Error); sender = undefined; } }, @@ -67,7 +64,7 @@ async function main() { }); const operation = async () => { - const clientForReceiver = stressTest.createServiceBusClient(); + const clientForReceiver = createServiceBusClient(); const receiver = clientForReceiver.createReceiver(stressTest.queueName, { receiveMode: "peekLock" @@ -92,7 +89,7 @@ async function main() { } ); - const clientForSender = stressTest.createServiceBusClient(); + const clientForSender = createServiceBusClient(); await sendMessagesForever(stressTest, clientForSender, abortSignal); }; diff --git a/sdk/servicebus/service-bus/test/stress/scenarioShortLivedReceivers.ts b/sdk/servicebus/service-bus/test/stress/scenarioShortLivedReceivers.ts new file mode 100644 index 000000000000..800e1f6f28f0 --- /dev/null +++ b/sdk/servicebus/service-bus/test/stress/scenarioShortLivedReceivers.ts @@ -0,0 +1,347 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. + +import { + captureConsoleOutputToAppInsights, + createRandomQueue, + createServiceBusClient, + getUniqueQueueName, + isReceiveMode +} from "./serviceBusStressTester"; +import { defaultClient as appInsightsClient, Contracts } from "applicationinsights"; +import { + ServiceBusClient, + ServiceBusReceivedMessage, + ServiceBusReceiver +} from "@azure/service-bus"; +import { EventEmitter } from "stream"; +import { EventContext, ReceiverEvents } from "rhea-promise"; +import parsedArgs from "minimist"; +import { generateUuid } from "@azure/core-http"; + +const messageNumberPropertyName = "messageNumber"; + +/** + * This test is checking for a few boundary/edge conditions that we've had in the library when + * receiving messages over longer periods of time with receiveMessages(). The bugs would typically + * result in message loss, as well as rhea printing out 'Received transfer when credit was 0'. + */ +async function main() { + captureConsoleOutputToAppInsights(); + + appInsightsClient.commonProperties = { + // these will be reported with each event + testName: "scenarioShortLivedReceiver", + testRunId: generateUuid() + }; + + const { receiveMode, maxWaitTimeInMs, numMessagesToSend, messagesPerReceive } = { + ...parsedArgs<{ + receiveMode: string; + maxWaitTimeInMs: number; + numMessagesToSend: number; + messagesPerReceive: number; + }>(process.argv, { + default: { + receiveMode: "peekLock", + + // there's nothing particularly special about these numbers but they do a decent job of provoking the bug + // when targeted to a Service Bus in AUS, connecting from a consumer network in Redmond. + maxWaitTimeInMs: 500, + numMessagesToSend: 1000, + messagesPerReceive: 5 + } + }) + }; + + try { + const queueName = getUniqueQueueName(); + + appInsightsClient.trackEvent({ + name: "start", + properties: { + queueName, + receiveMode, + maxWaitTimeInMs, + numMessagesToSend, + messagesPerReceive + } + }); + + if (!isReceiveMode(receiveMode)) { + throw new TypeError(`Invalid receive mode: ${receiveMode}`); + } + + console.log(`Test run ID(${appInsightsClient.commonProperties.testRunId!})`, { + queueName, + receiveMode, + maxWaitTimeInMs, + numMessagesToSend, + messagesPerReceive + }); + + await createRandomQueue(queueName); + + // create our entity + const serviceBusClient = createServiceBusClient(); + + const receiver = serviceBusClient.createReceiver(queueName, { + receiveMode, + // auto lock renewal is just noise for this particular test, disabling. + maxAutoLockRenewalDurationInMs: 0 + }); + + const rheaMessageNumbers = new Set(); + const userMessageNumbers = new Set(); + + await addValidatingListener(receiver, rheaMessageNumbers); + + await sendTestMessages(serviceBusClient, queueName, numMessagesToSend); + + console.log(`Starting receiver...`); + + // this is just a fail-safe so we don't run forever if we somehow don't get all the messages. + let gotZeroMessagesCounter = 0; + + while (userMessageNumbers.size < numMessagesToSend && gotZeroMessagesCounter < 3) { + const messages = await receiver.receiveMessages(messagesPerReceive, { + maxWaitTimeInMs + }); + + if (messages.length === 0) { + ++gotZeroMessagesCounter; + } + + for (const message of messages) { + assertAndAddMessageNumber(message, userMessageNumbers); + + if (receiveMode === "peekLock") { + await receiver.completeMessage(message); + } + } + + console.log(`Total: ${userMessageNumbers.size} messages`); + + appInsightsClient.trackMetric({ + name: "totalReceivedMessages", + value: userMessageNumbers.size + }); + } + + await receiver.close(); + await serviceBusClient.close(); + + // validate nothing is missing + let missingUserVisibleMessages = 0; + let missingInternalMessages = 0; + + for (let i = 0; i < numMessagesToSend; ++i) { + if (!userMessageNumbers.has(i)) { + missingUserVisibleMessages++; + } + + if (!rheaMessageNumbers.has(i)) { + missingInternalMessages++; + } + } + + appInsightsClient.trackMetric({ + name: "totalMissingUserVisibleMessages", + value: missingUserVisibleMessages + }); + + appInsightsClient.trackMetric({ + name: "totalMissingInternalMessages", + value: missingInternalMessages + }); + + if (missingUserVisibleMessages > 0 || missingInternalMessages > 0) { + console.log( + `Messages were missing: user:${missingUserVisibleMessages}, internal:${missingInternalMessages}` + ); + process.exit(1); + } else { + console.log(`Success - all messages accounted for with no duplicates.`); + process.exit(0); + } + } catch (err) { + console.log(`Exception thrown: `, err); + + appInsightsClient.trackException({ + exception: err as any + }); + } finally { + appInsightsClient.trackEvent({ + name: "End" + }); + + appInsightsClient.flush(); + } + + function assertAndAddMessageNumber( + message: ServiceBusReceivedMessage, + receivedMessageIndices: Set + ) { + const messageNumber = message.applicationProperties?.[messageNumberPropertyName]; + + if (messageNumber == null) { + console.log(`Message with id of ${message.messageId} did not have a messageNumber`); + throw new Error(`Message with id of ${message.messageId} did not have a messageNumber`); + } + + if (typeof messageNumber !== "number") { + console.log( + `Message with id of ${ + message.messageId + } had a messageNumber property with an incorrect type (${typeof messageNumber})` + ); + throw new TypeError( + `Message with id of ${ + message.messageId + } had a messageNumber property with an incorrect type (${typeof messageNumber})` + ); + } + + if (receivedMessageIndices.has(messageNumber)) { + console.log( + `Message with id of ${message.messageId} and message number ${messageNumber} has already been received` + ); + throw new Error( + `Message with id of ${message.messageId} and message number ${messageNumber} has already been received` + ); + } + + receivedMessageIndices.add(messageNumber); + } +} + +main().catch((err) => { + console.log(`Fatal error, exiting...`, err); + process.exit(1); +}); + +/** + * Adds in (through undocumented means) an event listener for messages. This is meant to be a simple check + * that we're not somehow losing messages that were actually delivered through rhea but not surfaced to the + * caller of our API. + * + * NOTE: This method does a single receive, so we can add in our batching receiver hook. The queue should be empty or + * else it could result in message loss. + * + * ADDITIONAL NOTE: this method (and it's associated message listener) will terminate the test if it detects these conditions: + * - Message received when the queue should have been empty (ie, initial call) + * - Batching receiver not properly initialized (ie: internal details have changed and broken us) + * - Duplicate messages are arriving (ie: all assumptions are wrong) + * + * @param receiver A receiver. + * @param rawMessageNumbers A set to add the 'messageNumber' property value to. + */ +async function addValidatingListener( + receiver: ServiceBusReceiver, + rawMessageNumbers: Set +): Promise { + // warm up the receiver so the batching receiver will be available (and we can install our 'raw messages' hook + // for some bookkeeping. + const ignoredMessages = await receiver.receiveMessages(1); + + if (ignoredMessages.length > 0) { + // the queue should start off empty! + console.log("Got messages when the queue should have been empty"); + throw new Error("Got messages when the queue should have been empty"); + } + + const linkEntity = (receiver as any)?.["_batchingReceiver"]?.["_link"] as EventEmitter; + + if (linkEntity == null) { + console.log( + "[raw message callback] Couldn't get a receiver._batchingReceiver._link property in the passed in receiver" + ); + process.exit(1); + } + + linkEntity.addListener(ReceiverEvents.message, (eventContext: EventContext) => { + const message = eventContext.message; + + if (message == null) { + console.log( + "[raw message callback] Fatal test error - no message was on EventContext, but we got a message callback." + ); + process.exit(1); + } + + const messageNumber = message?.application_properties?.[messageNumberPropertyName]; + + if (messageNumber == null || typeof messageNumber !== "number") { + console.log( + `[raw message callback] Fatal test error - message arrived, but without the '${messageNumberPropertyName}' property, type: ${typeof messageNumber}` + ); + process.exit(1); + } + + if (rawMessageNumbers.has(messageNumber)) { + console.log( + `[raw message callback] Fatal test error - ${messageNumber} was already received - we're receiving duplicates in our raw message callback` + ); + process.exit(1); + } + + rawMessageNumbers.add(messageNumber); + }); +} + +/** + * Sends `numMessagesToSend` messages that are 1000 bytes apiece. Each message + * will have an `messageNumber` application property, which will be unique + * for each message sent in this batch. + */ +async function sendTestMessages( + serviceBusClient: ServiceBusClient, + queueName: string, + numMessagesToSend: number +): Promise { + console.log(`Starting to send ${numMessagesToSend} messages to ${queueName}`); + + const sender = serviceBusClient.createSender(queueName); + + try { + let batch = await sender.createMessageBatch(); + + const largeMessagePayload = new Array(1000).fill("a", 0); + + for (let i = 0; i < numMessagesToSend; ++i) { + const message = { + body: largeMessagePayload, + applicationProperties: { + messageNumber: i + } + }; + + const added = batch.tryAddMessage(message); + + if (!added) { + await sender.sendMessages(batch); + batch = await sender.createMessageBatch(); + + if (!batch.tryAddMessage(message)) { + console.log("Message was too big to fit in the array and can NEVER fit"); + throw new Error("Message was too big to fit in the array and can NEVER fit"); + } + } + } + + if (batch?.count > 0) { + await sender.sendMessages(batch); + } + + console.log(`Done sending messages to ${queueName}`); + } catch (err) { + console.log(`Exception thrown: `, err); + + appInsightsClient.trackException({ + exception: err as Error, + severity: Contracts.SeverityLevel.Critical + }); + } finally { + await sender.close(); + } +} diff --git a/sdk/servicebus/service-bus/test/stress/serviceBusStressTester.ts b/sdk/servicebus/service-bus/test/stress/serviceBusStressTester.ts index 90cc3ca9f05d..7dc825bae994 100644 --- a/sdk/servicebus/service-bus/test/stress/serviceBusStressTester.ts +++ b/sdk/servicebus/service-bus/test/stress/serviceBusStressTester.ts @@ -4,6 +4,7 @@ import { ProcessErrorArgs, ServiceBusAdministrationClient, ServiceBusClient, + ServiceBusClientOptions, ServiceBusMessage, ServiceBusReceivedMessage, ServiceBusReceiver, @@ -21,17 +22,20 @@ import { SnapshotOptions, TrackedMessageIdsInfo } from "./utils"; -import * as appInsights from "applicationinsights"; +import * as appInsights from "applicationinsights"; import * as dotenv from "dotenv"; +import { AbortSignalLike } from "@azure/abort-controller"; + dotenv.config(); appInsights .setup() + .setAutoCollectConsole(true) .setUseDiskRetryCaching(true) .start(); -export const defaultClient = appInsights.defaultClient; +const defaultClient = appInsights.defaultClient; export interface StressTestInitOptions { /** @@ -109,19 +113,6 @@ export class ServiceBusStressTester { this.snapshotTimer = setInterval(this.snapshot.bind(this), snapshotIntervalMs); } - /** - * Creates a ServiceBusClient using the connection string in the SERVICEBUS_CONNECTION_STRING environment variable. - */ - public createServiceBusClient(): ServiceBusClient { - if (!process.env.SERVICEBUS_CONNECTION_STRING) { - throw new Error( - "Failed to create a ServiceBusClient - no connection string defined in the environment" - ); - } - - return new ServiceBusClient(process.env.SERVICEBUS_CONNECTION_STRING); - } - private async _init(options?: StressTestInitOptions) { console.log(`[BEGIN]: Initializing...`); this.queueName = `queue` + `-${Math.ceil(Math.random() * 100000)}`; @@ -140,11 +131,7 @@ export class ServiceBusStressTester { } }); - await this.serviceBusAdministrationClient.createQueue( - this.queueName, - options?.createQueueOptions - ); - + await createRandomQueue(this.queueName, options?.createQueueOptions); console.log(`[END]: Initializing...`); } @@ -561,13 +548,12 @@ export class ServiceBusStressTester { try { try { // Define connection string and related Service Bus entity names here - const connectionString = process.env.SERVICEBUS_CONNECTION_STRING || ""; - serviceBusClient = new ServiceBusClient(connectionString); + serviceBusClient = createServiceBusClient(); await this._init(initOptions); } catch (err) { console.log(`ERROR: error thrown by init`, err); - this.trackError("init", err); + this.trackError("init", err as Error); defaultClient.flush(); throw err; } @@ -578,7 +564,7 @@ export class ServiceBusStressTester { } catch (err) { console.log(`ERROR: error thrown by test`, err); - this.trackError("test", err); + this.trackError("test", err as Error); defaultClient.flush(); } } finally { @@ -588,7 +574,7 @@ export class ServiceBusStressTester { await serviceBusClient?.close(); } catch (err) { defaultClient.trackException({ - exception: err, + exception: err as Error, properties: { from: "end" } @@ -600,3 +586,55 @@ export class ServiceBusStressTester { } } } + +export function getUniqueQueueName(): string { + return `queue` + `-${Math.ceil(Math.random() * 100000)}`; +} + +export async function createRandomQueue( + queueName: string, + queueOptions?: CreateQueueOptions +): Promise { + const serviceBusAdministrationClient = createAdminClient(); + await serviceBusAdministrationClient.createQueue(queueName, queueOptions); +} + +export function createAdminClient() { + const connectionString = process.env.SERVICEBUS_CONNECTION_STRING; + + if (!connectionString) { + throw new Error("SERVICEBUS_CONNECTION_STRING not defined in the environment!"); + } + + const serviceBusAdministrationClient = new ServiceBusAdministrationClient(connectionString); + return serviceBusAdministrationClient; +} + +export function createServiceBusClient(options?: ServiceBusClientOptions): ServiceBusClient { + const connectionString = process.env.SERVICEBUS_CONNECTION_STRING; + + if (!connectionString) { + throw new Error("SERVICEBUS_CONNECTION_STRING not defined in the environment!"); + } + + return new ServiceBusClient(connectionString, options); +} + +/** + * Loops infinitely with a delay between invocations. + */ +export async function loopForever( + fn: () => Promise, + delay: number, + abortSignal?: AbortSignalLike +) { + const timeout = () => new Promise((resolve) => setTimeout(() => resolve(true), delay)); + + while (abortSignal?.aborted === false && (await timeout())) { + await fn(); + } +} + +export function isReceiveMode(receiveMode: string): receiveMode is "peekLock" | "receiveAndDelete" { + return receiveMode === "peekLock" || receiveMode === "receiveAndDelete"; +} From e073cb48fef38318dc648edc4ba58705cccae921 Mon Sep 17 00:00:00 2001 From: colawwj Date: Thu, 1 Jul 2021 11:01:24 +0800 Subject: [PATCH 49/49] arm-postgresql-flexible-release --- .../arm-postgresql-flexible/README.md | 26 +- .../arm-postgresql-flexible/package.json | 10 +- .../arm-postgresql-flexible/rollup.config.js | 2 +- .../src/models/configurationsMappers.ts | 1 - .../src/models/databasesMappers.ts | 1 - .../src/models/firewallRulesMappers.ts | 1 - .../src/models/index.ts | 561 ++++++++---------- .../src/models/mappers.ts | 513 ++++++++-------- .../src/models/parameters.ts | 9 +- .../src/models/recoverableServersMappers.ts | 34 -- .../src/models/serversMappers.ts | 1 - .../src/operations/checkNameAvailability.ts | 10 +- .../src/operations/configurations.ts | 16 +- .../src/operations/databases.ts | 18 +- .../src/operations/firewallRules.ts | 18 +- .../src/operations/getPrivateDnsZoneSuffix.ts | 10 +- .../src/operations/index.ts | 5 +- .../operations/locationBasedCapabilities.ts | 12 +- .../src/operations/operations.ts | 10 +- .../src/operations/recoverableServers.ts | 86 --- .../src/operations/servers.ts | 30 +- .../operations/virtualNetworkSubnetUsage.ts | 10 +- ...lient.ts => postgreSQLManagementClient.ts} | 26 +- ...s => postgreSQLManagementClientContext.ts} | 8 +- 24 files changed, 588 insertions(+), 830 deletions(-) delete mode 100644 sdk/postgresql/arm-postgresql-flexible/src/models/recoverableServersMappers.ts delete mode 100644 sdk/postgresql/arm-postgresql-flexible/src/operations/recoverableServers.ts rename sdk/postgresql/arm-postgresql-flexible/src/{postgreSQLFlexibleManagementClient.ts => postgreSQLManagementClient.ts} (79%) rename sdk/postgresql/arm-postgresql-flexible/src/{postgreSQLFlexibleManagementClientContext.ts => postgreSQLManagementClientContext.ts} (90%) diff --git a/sdk/postgresql/arm-postgresql-flexible/README.md b/sdk/postgresql/arm-postgresql-flexible/README.md index a7a178bd0a19..e6aa6c9a5d5c 100644 --- a/sdk/postgresql/arm-postgresql-flexible/README.md +++ b/sdk/postgresql/arm-postgresql-flexible/README.md @@ -1,11 +1,11 @@ -## Azure PostgreSQLFlexibleManagementClient SDK for JavaScript +## Azure PostgreSQLManagementClient SDK for JavaScript -This package contains an isomorphic SDK (runs both in node.js and in browsers) for PostgreSQLFlexibleManagementClient. +This package contains an isomorphic SDK (runs both in node.js and in browsers) for PostgreSQLManagementClient. ### Currently supported environments -- Node.js version 8.x.x or higher -- Browser JavaScript +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge and Firefox. ### Prerequisites @@ -36,23 +36,22 @@ If you are on a [Node.js that has LTS status](https://nodejs.org/about/releases/ In the below samples, we pass the credential and the Azure subscription id to instantiate the client. Once the client is created, explore the operations on it either in your favorite editor or in our [API reference documentation](https://docs.microsoft.com/javascript/api) to get started. -#### nodejs - Authentication, client creation, and get databases as an example written in JavaScript. +#### nodejs - Authentication, client creation, and get servers as an example written in JavaScript. ##### Sample code ```javascript const { DefaultAzureCredential } = require("@azure/identity"); -const { PostgreSQLFlexibleManagementClient } = require("@azure/arm-postgresql-flexible"); +const { PostgreSQLManagementClient } = require("@azure/arm-postgresql-flexible"); const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"]; // Use `DefaultAzureCredential` or any other credential of your choice based on https://aka.ms/azsdk/js/identity/examples // Please note that you can also use credentials from the `@azure/ms-rest-nodeauth` package instead. const creds = new DefaultAzureCredential(); -const client = new PostgreSQLFlexibleManagementClient(creds, subscriptionId); +const client = new PostgreSQLManagementClient(creds, subscriptionId); const resourceGroupName = "testresourceGroupName"; const serverName = "testserverName"; -const databaseName = "testdatabaseName"; -client.databases.get(resourceGroupName, serverName, databaseName).then((result) => { +client.servers.get(resourceGroupName, serverName).then((result) => { console.log("The result is:"); console.log(result); }).catch((err) => { @@ -61,7 +60,7 @@ client.databases.get(resourceGroupName, serverName, databaseName).then((result) }); ``` -#### browser - Authentication, client creation, and get databases as an example written in JavaScript. +#### browser - Authentication, client creation, and get servers as an example written in JavaScript. In browser applications, we recommend using the `InteractiveBrowserCredential` that interactively authenticates using the default system browser. - See [Single-page application: App registration guide](https://docs.microsoft.com/azure/active-directory/develop/scenario-spa-app-registration) to configure your app registration for the browser. @@ -88,11 +87,10 @@ In browser applications, we recommend using the `InteractiveBrowserCredential` t clientId: "", tenant: "" }); - const client = new Azure.ArmPostgresql.PostgreSQLFlexibleManagementClient(creds, subscriptionId); + const client = new Azure.ArmPostgresqlFlexible.PostgreSQLManagementClient(creds, subscriptionId); const resourceGroupName = "testresourceGroupName"; const serverName = "testserverName"; - const databaseName = "testdatabaseName"; - client.databases.get(resourceGroupName, serverName, databaseName).then((result) => { + client.servers.get(resourceGroupName, serverName).then((result) => { console.log("The result is:"); console.log(result); }).catch((err) => { @@ -109,4 +107,4 @@ In browser applications, we recommend using the `InteractiveBrowserCredential` t - [Microsoft Azure SDK for Javascript](https://github.com/Azure/azure-sdk-for-js) -![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-js/sdk/README.png) +![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-js/sdk/postgresql/arm-postgresql-flexible//README.png) diff --git a/sdk/postgresql/arm-postgresql-flexible/package.json b/sdk/postgresql/arm-postgresql-flexible/package.json index fb1da03042de..0f5129a384a6 100644 --- a/sdk/postgresql/arm-postgresql-flexible/package.json +++ b/sdk/postgresql/arm-postgresql-flexible/package.json @@ -1,8 +1,8 @@ { "name": "@azure/arm-postgresql-flexible", "author": "Microsoft Corporation", - "description": "PostgreSQLFlexibleManagementClient Library with typescript type definitions for node.js and browser.", - "version": "1.0.0", + "description": "PostgreSQLManagementClient Library with typescript type definitions for node.js and browser.", + "version": "2.0.0", "dependencies": { "@azure/ms-rest-azure-js": "^2.1.0", "@azure/ms-rest-js": "^2.2.0", @@ -18,8 +18,8 @@ ], "license": "MIT", "main": "./dist/arm-postgresql-flexible.js", - "module": "./esm/postgreSQLFlexibleManagementClient.js", - "types": "./esm/postgreSQLFlexibleManagementClient.d.ts", + "module": "./esm/postgreSQLManagementClient.js", + "types": "./esm/postgreSQLManagementClient.d.ts", "devDependencies": { "typescript": "^3.6.0", "rollup": "^1.18.0", @@ -27,7 +27,7 @@ "rollup-plugin-sourcemaps": "^0.4.2", "uglify-js": "^3.6.0" }, - "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/postgresql/arm-postgresql-flexible", + "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/feature/v4/sdk/postgresql/arm-postgresql-flexible/", "repository": { "type": "git", "url": "https://github.com/Azure/azure-sdk-for-js.git" diff --git a/sdk/postgresql/arm-postgresql-flexible/rollup.config.js b/sdk/postgresql/arm-postgresql-flexible/rollup.config.js index d522032c4e23..b71f63ce341d 100644 --- a/sdk/postgresql/arm-postgresql-flexible/rollup.config.js +++ b/sdk/postgresql/arm-postgresql-flexible/rollup.config.js @@ -6,7 +6,7 @@ import sourcemaps from "rollup-plugin-sourcemaps"; * @type {rollup.RollupFileOptions} */ const config = { - input: "./esm/postgreSQLFlexibleManagementClient.js", + input: "./esm/postgreSQLManagementClient.js", external: [ "@azure/ms-rest-js", "@azure/ms-rest-azure-js" diff --git a/sdk/postgresql/arm-postgresql-flexible/src/models/configurationsMappers.ts b/sdk/postgresql/arm-postgresql-flexible/src/models/configurationsMappers.ts index f3b49032720a..acac8c76e960 100644 --- a/sdk/postgresql/arm-postgresql-flexible/src/models/configurationsMappers.ts +++ b/sdk/postgresql/arm-postgresql-flexible/src/models/configurationsMappers.ts @@ -20,7 +20,6 @@ export { MaintenanceWindow, Plan, ProxyResource, - RecoverableServerResource, Resource, ResourceModelWithAllowedPropertySet, ResourceModelWithAllowedPropertySetIdentity, diff --git a/sdk/postgresql/arm-postgresql-flexible/src/models/databasesMappers.ts b/sdk/postgresql/arm-postgresql-flexible/src/models/databasesMappers.ts index 7df3290b5d68..f519c40fac30 100644 --- a/sdk/postgresql/arm-postgresql-flexible/src/models/databasesMappers.ts +++ b/sdk/postgresql/arm-postgresql-flexible/src/models/databasesMappers.ts @@ -20,7 +20,6 @@ export { MaintenanceWindow, Plan, ProxyResource, - RecoverableServerResource, Resource, ResourceModelWithAllowedPropertySet, ResourceModelWithAllowedPropertySetIdentity, diff --git a/sdk/postgresql/arm-postgresql-flexible/src/models/firewallRulesMappers.ts b/sdk/postgresql/arm-postgresql-flexible/src/models/firewallRulesMappers.ts index 280cb8bdd0ea..b60c3edd80c1 100644 --- a/sdk/postgresql/arm-postgresql-flexible/src/models/firewallRulesMappers.ts +++ b/sdk/postgresql/arm-postgresql-flexible/src/models/firewallRulesMappers.ts @@ -20,7 +20,6 @@ export { MaintenanceWindow, Plan, ProxyResource, - RecoverableServerResource, Resource, ResourceModelWithAllowedPropertySet, ResourceModelWithAllowedPropertySetIdentity, diff --git a/sdk/postgresql/arm-postgresql-flexible/src/models/index.ts b/sdk/postgresql/arm-postgresql-flexible/src/models/index.ts index c4f0485be563..f38a69ae811e 100644 --- a/sdk/postgresql/arm-postgresql-flexible/src/models/index.ts +++ b/sdk/postgresql/arm-postgresql-flexible/src/models/index.ts @@ -11,173 +11,6 @@ import * as msRest from "@azure/ms-rest-js"; export { BaseResource, CloudError }; -/** - * Common fields that are returned in the response for all Azure Resource Manager resources - * @summary Resource - */ -export interface Resource extends BaseResource { - /** - * Fully qualified resource ID for the resource. Ex - - * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly id?: string; - /** - * The name of the resource - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly name?: string; - /** - * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or - * "Microsoft.Storage/storageAccounts" - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly type?: string; -} - -/** - * The resource model definition for a Azure Resource Manager proxy resource. It will not have tags - * and a location - * @summary Proxy Resource - */ -export interface ProxyResource extends Resource { -} - -/** - * Represents a Database. - */ -export interface Database extends ProxyResource { - /** - * The charset of the database. - */ - charset?: string; - /** - * The collation of the database. - */ - collation?: string; -} - -/** - * The resource management error additional info. - */ -export interface ErrorAdditionalInfo { - /** - * The additional info type. - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly type?: string; - /** - * The additional info. - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly info?: any; -} - -/** - * Common error response for all Azure Resource Manager APIs to return error details for failed - * operations. (This also follows the OData error response format.) - * @summary Error Response - */ -export interface ErrorResponse { - /** - * The error code. - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly code?: string; - /** - * The error message. - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly message?: string; - /** - * The error target. - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly target?: string; - /** - * The error details. - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly details?: ErrorResponse[]; - /** - * The error additional info. - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly additionalInfo?: ErrorAdditionalInfo[]; -} - -/** - * The resource model definition for an Azure Resource Manager tracked top level resource which has - * 'tags' and a 'location' - * @summary Tracked Resource - */ -export interface TrackedResource extends Resource { - /** - * Resource tags. - */ - tags?: { [propertyName: string]: string }; - /** - * The geo-location where the resource lives - */ - location: string; -} - -/** - * The resource model definition for an Azure Resource Manager resource with an etag. - * @summary Entity Resource - */ -export interface AzureEntityResource extends Resource { - /** - * Resource Etag. - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly etag?: string; -} - -/** - * Sku information related properties of a server. - */ -export interface Sku { - /** - * The name of the sku, typically, tier + family + cores, e.g. Standard_D4s_v3. - */ - name: string; - /** - * The tier of the particular SKU, e.g. Burstable. Possible values include: 'Burstable', - * 'GeneralPurpose', 'MemoryOptimized' - */ - tier: SkuTier; -} - -/** - * Represents a recoverable server resource. - */ -export interface RecoverableServerResource extends ProxyResource { - /** - * The SKU (pricing tier) of the server. - */ - sku?: Sku; - /** - * The location the resource resides in. - */ - location?: string; - /** - * Availability zone of the server - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly availabilityZone?: string; - /** - * Edition of the performance tier. - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly serverEdition?: string; - /** - * The PostgreSQL version - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly version?: string; -} - /** * Virtual network subnet usage parameter */ @@ -337,10 +170,6 @@ export interface StorageProfile { * Max storage allowed for a server. */ storageMB?: number; - /** - * Geo Backup redundancy option. Possible values include: 'Enabled', 'Disabled' - */ - geoRedundantBackup?: GeoRedundantBackupOption; } /** @@ -405,6 +234,61 @@ export interface Identity { type?: ResourceIdentityType; } +/** + * Sku information related properties of a server. + */ +export interface Sku { + /** + * The name of the sku, typically, tier + family + cores, e.g. Standard_D4s_v3. + */ + name: string; + /** + * The tier of the particular SKU, e.g. Burstable. Possible values include: 'Burstable', + * 'GeneralPurpose', 'MemoryOptimized' + */ + tier: SkuTier; +} + +/** + * Common fields that are returned in the response for all Azure Resource Manager resources + * @summary Resource + */ +export interface Resource extends BaseResource { + /** + * Fully qualified resource ID for the resource. Ex - + * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + * **NOTE: This property will not be serialized. It can only be populated by the server.** + */ + readonly id?: string; + /** + * The name of the resource + * **NOTE: This property will not be serialized. It can only be populated by the server.** + */ + readonly name?: string; + /** + * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + * "Microsoft.Storage/storageAccounts" + * **NOTE: This property will not be serialized. It can only be populated by the server.** + */ + readonly type?: string; +} + +/** + * The resource model definition for an Azure Resource Manager tracked top level resource which has + * 'tags' and a 'location' + * @summary Tracked Resource + */ +export interface TrackedResource extends Resource { + /** + * Resource tags. + */ + tags?: { [propertyName: string]: string }; + /** + * The geo-location where the resource lives + */ + location: string; +} + /** * Represents a server. */ @@ -474,11 +358,11 @@ export interface Server extends TrackedResource { */ sourceServerName?: string; /** - * The subscription id of source PostgreSQL server name to restore from. + * The subscription id of source serve PostgreSQL server name to restore from. */ sourceSubscriptionId?: string; /** - * The resource group name of source PostgreSQL server name to restore from. + * The resource group name of source serve PostgreSQL server name to restore from. */ sourceResourceGroupName?: string; /** @@ -503,7 +387,7 @@ export interface Server extends TrackedResource { privateDnsZoneArguments?: ServerPropertiesPrivateDnsZoneArguments; /** * The mode to create a new PostgreSQL server. Possible values include: 'Default', - * 'PointInTimeRestore', 'GeoRestore' + * 'PointInTimeRestore' */ createMode?: CreateMode; /** @@ -547,6 +431,14 @@ export interface ServerForUpdate { tags?: { [propertyName: string]: string }; } +/** + * The resource model definition for a Azure Resource Manager proxy resource. It will not have tags + * and a location + * @summary Proxy Resource + */ +export interface ProxyResource extends Resource { +} + /** * Represents a server firewall rule. */ @@ -699,9 +591,70 @@ export interface NameAvailability { */ name?: string; /** - * type of the server + * type of the server + */ + type?: string; +} + +/** + * The resource management error additional info. + */ +export interface ErrorAdditionalInfo { + /** + * The additional info type. + * **NOTE: This property will not be serialized. It can only be populated by the server.** + */ + readonly type?: string; + /** + * The additional info. + * **NOTE: This property will not be serialized. It can only be populated by the server.** + */ + readonly info?: any; +} + +/** + * Common error response for all Azure Resource Manager APIs to return error details for failed + * operations. (This also follows the OData error response format.) + * @summary Error Response + */ +export interface ErrorResponse { + /** + * The error code. + * **NOTE: This property will not be serialized. It can only be populated by the server.** + */ + readonly code?: string; + /** + * The error message. + * **NOTE: This property will not be serialized. It can only be populated by the server.** + */ + readonly message?: string; + /** + * The error target. + * **NOTE: This property will not be serialized. It can only be populated by the server.** + */ + readonly target?: string; + /** + * The error details. + * **NOTE: This property will not be serialized. It can only be populated by the server.** + */ + readonly details?: ErrorResponse[]; + /** + * The error additional info. + * **NOTE: This property will not be serialized. It can only be populated by the server.** + */ + readonly additionalInfo?: ErrorAdditionalInfo[]; +} + +/** + * The resource model definition for an Azure Resource Manager resource with an etag. + * @summary Entity Resource + */ +export interface AzureEntityResource extends Resource { + /** + * Resource Etag. + * **NOTE: This property will not be serialized. It can only be populated by the server.** */ - type?: string; + readonly etag?: string; } /** @@ -808,22 +761,24 @@ export interface ResourceModelWithAllowedPropertySet extends BaseResource { } /** - * An interface representing PostgreSQLFlexibleManagementClientOptions. + * Represents a Database. */ -export interface PostgreSQLFlexibleManagementClientOptions extends AzureServiceClientOptions { - baseUri?: string; +export interface Database extends ProxyResource { + /** + * The charset of the database. + */ + charset?: string; + /** + * The collation of the database. + */ + collation?: string; } /** - * @interface - * A List of databases. - * @extends Array + * An interface representing PostgreSQLManagementClientOptions. */ -export interface DatabaseListResult extends Array { - /** - * The link used to get the next page of databases. - */ - nextLink?: string; +export interface PostgreSQLManagementClientOptions extends AzureServiceClientOptions { + baseUri?: string; } /** @@ -876,12 +831,16 @@ export interface CapabilitiesListResult extends Array { } /** - * Defines values for SkuTier. - * Possible values include: 'Burstable', 'GeneralPurpose', 'MemoryOptimized' - * @readonly - * @enum {string} + * @interface + * A List of databases. + * @extends Array */ -export type SkuTier = 'Burstable' | 'GeneralPurpose' | 'MemoryOptimized'; +export interface DatabaseListResult extends Array { + /** + * The link used to get the next page of databases. + */ + nextLink?: string; +} /** * Defines values for ServerVersion. @@ -909,14 +868,6 @@ export type ServerState = 'Ready' | 'Dropping' | 'Disabled' | 'Starting' | 'Stop */ export type ServerHAState = 'NotEnabled' | 'CreatingStandby' | 'ReplicatingData' | 'FailingOver' | 'Healthy' | 'RemovingStandby'; -/** - * Defines values for GeoRedundantBackupOption. - * Possible values include: 'Enabled', 'Disabled' - * @readonly - * @enum {string} - */ -export type GeoRedundantBackupOption = 'Enabled' | 'Disabled'; - /** * Defines values for ServerPublicNetworkAccessState. * Possible values include: 'Enabled', 'Disabled' @@ -935,11 +886,11 @@ export type HAEnabledEnum = 'Enabled' | 'Disabled'; /** * Defines values for CreateMode. - * Possible values include: 'Default', 'PointInTimeRestore', 'GeoRestore' + * Possible values include: 'Default', 'PointInTimeRestore' * @readonly * @enum {string} */ -export type CreateMode = 'Default' | 'PointInTimeRestore' | 'GeoRestore'; +export type CreateMode = 'Default' | 'PointInTimeRestore'; /** * Defines values for ResourceIdentityType. @@ -949,6 +900,14 @@ export type CreateMode = 'Default' | 'PointInTimeRestore' | 'GeoRestore'; */ export type ResourceIdentityType = 'SystemAssigned'; +/** + * Defines values for SkuTier. + * Possible values include: 'Burstable', 'GeneralPurpose', 'MemoryOptimized' + * @readonly + * @enum {string} + */ +export type SkuTier = 'Burstable' | 'GeneralPurpose' | 'MemoryOptimized'; + /** * Defines values for ConfigurationDataType. * Possible values include: 'Boolean', 'Numeric', 'Integer', 'Enumeration' @@ -976,27 +935,7 @@ export type Body = 'PostgreSQL' | 'PostgreSQLCitus' | 'MySQL' | 'MariaDb' | 'Ora /** * Contains response data for the create operation. */ -export type DatabasesCreateResponse = Database & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: Database; - }; -}; - -/** - * Contains response data for the get operation. - */ -export type DatabasesGetResponse = Database & { +export type ServersCreateResponse = Server & { /** * The underlying HTTP response. */ @@ -1009,14 +948,14 @@ export type DatabasesGetResponse = Database & { /** * The response body as parsed JSON or XML */ - parsedBody: Database; + parsedBody: Server; }; }; /** - * Contains response data for the listByServer operation. + * Contains response data for the update operation. */ -export type DatabasesListByServerResponse = DatabaseListResult & { +export type ServersUpdateResponse = Server & { /** * The underlying HTTP response. */ @@ -1029,14 +968,14 @@ export type DatabasesListByServerResponse = DatabaseListResult & { /** * The response body as parsed JSON or XML */ - parsedBody: DatabaseListResult; + parsedBody: Server; }; }; /** - * Contains response data for the beginCreate operation. + * Contains response data for the get operation. */ -export type DatabasesBeginCreateResponse = Database & { +export type ServersGetResponse = Server & { /** * The underlying HTTP response. */ @@ -1049,14 +988,14 @@ export type DatabasesBeginCreateResponse = Database & { /** * The response body as parsed JSON or XML */ - parsedBody: Database; + parsedBody: Server; }; }; /** - * Contains response data for the listByServerNext operation. + * Contains response data for the listByResourceGroup operation. */ -export type DatabasesListByServerNextResponse = DatabaseListResult & { +export type ServersListByResourceGroupResponse = ServerListResult & { /** * The underlying HTTP response. */ @@ -1069,19 +1008,14 @@ export type DatabasesListByServerNextResponse = DatabaseListResult & { /** * The response body as parsed JSON or XML */ - parsedBody: DatabaseListResult; + parsedBody: ServerListResult; }; }; /** - * Contains response data for the execute operation. + * Contains response data for the list operation. */ -export type GetPrivateDnsZoneSuffixExecuteResponse = { - /** - * The parsed response body. - */ - body: string; - +export type ServersListResponse = ServerListResult & { /** * The underlying HTTP response. */ @@ -1094,14 +1028,14 @@ export type GetPrivateDnsZoneSuffixExecuteResponse = { /** * The response body as parsed JSON or XML */ - parsedBody: string; + parsedBody: ServerListResult; }; }; /** - * Contains response data for the create operation. + * Contains response data for the beginCreate operation. */ -export type ServersCreateResponse = Server & { +export type ServersBeginCreateResponse = Server & { /** * The underlying HTTP response. */ @@ -1119,9 +1053,9 @@ export type ServersCreateResponse = Server & { }; /** - * Contains response data for the update operation. + * Contains response data for the beginUpdate operation. */ -export type ServersUpdateResponse = Server & { +export type ServersBeginUpdateResponse = Server & { /** * The underlying HTTP response. */ @@ -1139,9 +1073,9 @@ export type ServersUpdateResponse = Server & { }; /** - * Contains response data for the get operation. + * Contains response data for the listByResourceGroupNext operation. */ -export type ServersGetResponse = Server & { +export type ServersListByResourceGroupNextResponse = ServerListResult & { /** * The underlying HTTP response. */ @@ -1154,14 +1088,14 @@ export type ServersGetResponse = Server & { /** * The response body as parsed JSON or XML */ - parsedBody: Server; + parsedBody: ServerListResult; }; }; /** - * Contains response data for the listByResourceGroup operation. + * Contains response data for the listNext operation. */ -export type ServersListByResourceGroupResponse = ServerListResult & { +export type ServersListNextResponse = ServerListResult & { /** * The underlying HTTP response. */ @@ -1179,9 +1113,9 @@ export type ServersListByResourceGroupResponse = ServerListResult & { }; /** - * Contains response data for the list operation. + * Contains response data for the createOrUpdate operation. */ -export type ServersListResponse = ServerListResult & { +export type FirewallRulesCreateOrUpdateResponse = FirewallRule & { /** * The underlying HTTP response. */ @@ -1194,14 +1128,14 @@ export type ServersListResponse = ServerListResult & { /** * The response body as parsed JSON or XML */ - parsedBody: ServerListResult; + parsedBody: FirewallRule; }; }; /** - * Contains response data for the beginCreate operation. + * Contains response data for the get operation. */ -export type ServersBeginCreateResponse = Server & { +export type FirewallRulesGetResponse = FirewallRule & { /** * The underlying HTTP response. */ @@ -1214,14 +1148,14 @@ export type ServersBeginCreateResponse = Server & { /** * The response body as parsed JSON or XML */ - parsedBody: Server; + parsedBody: FirewallRule; }; }; /** - * Contains response data for the beginUpdate operation. + * Contains response data for the listByServer operation. */ -export type ServersBeginUpdateResponse = Server & { +export type FirewallRulesListByServerResponse = FirewallRuleListResult & { /** * The underlying HTTP response. */ @@ -1234,14 +1168,14 @@ export type ServersBeginUpdateResponse = Server & { /** * The response body as parsed JSON or XML */ - parsedBody: Server; + parsedBody: FirewallRuleListResult; }; }; /** - * Contains response data for the listByResourceGroupNext operation. + * Contains response data for the beginCreateOrUpdate operation. */ -export type ServersListByResourceGroupNextResponse = ServerListResult & { +export type FirewallRulesBeginCreateOrUpdateResponse = FirewallRule & { /** * The underlying HTTP response. */ @@ -1254,14 +1188,14 @@ export type ServersListByResourceGroupNextResponse = ServerListResult & { /** * The response body as parsed JSON or XML */ - parsedBody: ServerListResult; + parsedBody: FirewallRule; }; }; /** - * Contains response data for the listNext operation. + * Contains response data for the listByServerNext operation. */ -export type ServersListNextResponse = ServerListResult & { +export type FirewallRulesListByServerNextResponse = FirewallRuleListResult & { /** * The underlying HTTP response. */ @@ -1274,14 +1208,14 @@ export type ServersListNextResponse = ServerListResult & { /** * The response body as parsed JSON or XML */ - parsedBody: ServerListResult; + parsedBody: FirewallRuleListResult; }; }; /** - * Contains response data for the createOrUpdate operation. + * Contains response data for the listByServer operation. */ -export type FirewallRulesCreateOrUpdateResponse = FirewallRule & { +export type ConfigurationsListByServerResponse = ConfigurationListResult & { /** * The underlying HTTP response. */ @@ -1294,14 +1228,14 @@ export type FirewallRulesCreateOrUpdateResponse = FirewallRule & { /** * The response body as parsed JSON or XML */ - parsedBody: FirewallRule; + parsedBody: ConfigurationListResult; }; }; /** * Contains response data for the get operation. */ -export type FirewallRulesGetResponse = FirewallRule & { +export type ConfigurationsGetResponse = Configuration & { /** * The underlying HTTP response. */ @@ -1314,14 +1248,14 @@ export type FirewallRulesGetResponse = FirewallRule & { /** * The response body as parsed JSON or XML */ - parsedBody: FirewallRule; + parsedBody: Configuration; }; }; /** - * Contains response data for the listByServer operation. + * Contains response data for the update operation. */ -export type FirewallRulesListByServerResponse = FirewallRuleListResult & { +export type ConfigurationsUpdateResponse = Configuration & { /** * The underlying HTTP response. */ @@ -1334,14 +1268,14 @@ export type FirewallRulesListByServerResponse = FirewallRuleListResult & { /** * The response body as parsed JSON or XML */ - parsedBody: FirewallRuleListResult; + parsedBody: Configuration; }; }; /** - * Contains response data for the beginCreateOrUpdate operation. + * Contains response data for the beginUpdate operation. */ -export type FirewallRulesBeginCreateOrUpdateResponse = FirewallRule & { +export type ConfigurationsBeginUpdateResponse = Configuration & { /** * The underlying HTTP response. */ @@ -1354,14 +1288,14 @@ export type FirewallRulesBeginCreateOrUpdateResponse = FirewallRule & { /** * The response body as parsed JSON or XML */ - parsedBody: FirewallRule; + parsedBody: Configuration; }; }; /** * Contains response data for the listByServerNext operation. */ -export type FirewallRulesListByServerNextResponse = FirewallRuleListResult & { +export type ConfigurationsListByServerNextResponse = ConfigurationListResult & { /** * The underlying HTTP response. */ @@ -1374,14 +1308,14 @@ export type FirewallRulesListByServerNextResponse = FirewallRuleListResult & { /** * The response body as parsed JSON or XML */ - parsedBody: FirewallRuleListResult; + parsedBody: ConfigurationListResult; }; }; /** - * Contains response data for the listByServer operation. + * Contains response data for the execute operation. */ -export type ConfigurationsListByServerResponse = ConfigurationListResult & { +export type CheckNameAvailabilityExecuteResponse = NameAvailability & { /** * The underlying HTTP response. */ @@ -1394,14 +1328,14 @@ export type ConfigurationsListByServerResponse = ConfigurationListResult & { /** * The response body as parsed JSON or XML */ - parsedBody: ConfigurationListResult; + parsedBody: NameAvailability; }; }; /** - * Contains response data for the get operation. + * Contains response data for the execute operation. */ -export type ConfigurationsGetResponse = Configuration & { +export type LocationBasedCapabilitiesExecuteResponse = CapabilitiesListResult & { /** * The underlying HTTP response. */ @@ -1414,14 +1348,14 @@ export type ConfigurationsGetResponse = Configuration & { /** * The response body as parsed JSON or XML */ - parsedBody: Configuration; + parsedBody: CapabilitiesListResult; }; }; /** - * Contains response data for the update operation. + * Contains response data for the executeNext operation. */ -export type ConfigurationsUpdateResponse = Configuration & { +export type LocationBasedCapabilitiesExecuteNextResponse = CapabilitiesListResult & { /** * The underlying HTTP response. */ @@ -1434,14 +1368,14 @@ export type ConfigurationsUpdateResponse = Configuration & { /** * The response body as parsed JSON or XML */ - parsedBody: Configuration; + parsedBody: CapabilitiesListResult; }; }; /** - * Contains response data for the beginUpdate operation. + * Contains response data for the execute operation. */ -export type ConfigurationsBeginUpdateResponse = Configuration & { +export type VirtualNetworkSubnetUsageExecuteResponse = VirtualNetworkSubnetUsageResult & { /** * The underlying HTTP response. */ @@ -1454,14 +1388,14 @@ export type ConfigurationsBeginUpdateResponse = Configuration & { /** * The response body as parsed JSON or XML */ - parsedBody: Configuration; + parsedBody: VirtualNetworkSubnetUsageResult; }; }; /** - * Contains response data for the listByServerNext operation. + * Contains response data for the list operation. */ -export type ConfigurationsListByServerNextResponse = ConfigurationListResult & { +export type OperationsListResponse = OperationListResult & { /** * The underlying HTTP response. */ @@ -1474,14 +1408,14 @@ export type ConfigurationsListByServerNextResponse = ConfigurationListResult & { /** * The response body as parsed JSON or XML */ - parsedBody: ConfigurationListResult; + parsedBody: OperationListResult; }; }; /** - * Contains response data for the execute operation. + * Contains response data for the create operation. */ -export type CheckNameAvailabilityExecuteResponse = NameAvailability & { +export type DatabasesCreateResponse = Database & { /** * The underlying HTTP response. */ @@ -1494,14 +1428,14 @@ export type CheckNameAvailabilityExecuteResponse = NameAvailability & { /** * The response body as parsed JSON or XML */ - parsedBody: NameAvailability; + parsedBody: Database; }; }; /** - * Contains response data for the execute operation. + * Contains response data for the get operation. */ -export type LocationBasedCapabilitiesExecuteResponse = CapabilitiesListResult & { +export type DatabasesGetResponse = Database & { /** * The underlying HTTP response. */ @@ -1514,14 +1448,14 @@ export type LocationBasedCapabilitiesExecuteResponse = CapabilitiesListResult & /** * The response body as parsed JSON or XML */ - parsedBody: CapabilitiesListResult; + parsedBody: Database; }; }; /** - * Contains response data for the executeNext operation. + * Contains response data for the listByServer operation. */ -export type LocationBasedCapabilitiesExecuteNextResponse = CapabilitiesListResult & { +export type DatabasesListByServerResponse = DatabaseListResult & { /** * The underlying HTTP response. */ @@ -1534,14 +1468,14 @@ export type LocationBasedCapabilitiesExecuteNextResponse = CapabilitiesListResul /** * The response body as parsed JSON or XML */ - parsedBody: CapabilitiesListResult; + parsedBody: DatabaseListResult; }; }; /** - * Contains response data for the execute operation. + * Contains response data for the beginCreate operation. */ -export type VirtualNetworkSubnetUsageExecuteResponse = VirtualNetworkSubnetUsageResult & { +export type DatabasesBeginCreateResponse = Database & { /** * The underlying HTTP response. */ @@ -1554,14 +1488,14 @@ export type VirtualNetworkSubnetUsageExecuteResponse = VirtualNetworkSubnetUsage /** * The response body as parsed JSON or XML */ - parsedBody: VirtualNetworkSubnetUsageResult; + parsedBody: Database; }; }; /** - * Contains response data for the get operation. + * Contains response data for the listByServerNext operation. */ -export type RecoverableServersGetResponse = RecoverableServerResource & { +export type DatabasesListByServerNextResponse = DatabaseListResult & { /** * The underlying HTTP response. */ @@ -1574,14 +1508,19 @@ export type RecoverableServersGetResponse = RecoverableServerResource & { /** * The response body as parsed JSON or XML */ - parsedBody: RecoverableServerResource; + parsedBody: DatabaseListResult; }; }; /** - * Contains response data for the list operation. + * Contains response data for the execute operation. */ -export type OperationsListResponse = OperationListResult & { +export type GetPrivateDnsZoneSuffixExecuteResponse = { + /** + * The parsed response body. + */ + body: string; + /** * The underlying HTTP response. */ @@ -1594,6 +1533,6 @@ export type OperationsListResponse = OperationListResult & { /** * The response body as parsed JSON or XML */ - parsedBody: OperationListResult; + parsedBody: string; }; }; diff --git a/sdk/postgresql/arm-postgresql-flexible/src/models/mappers.ts b/sdk/postgresql/arm-postgresql-flexible/src/models/mappers.ts index b1e27facb697..0f33f76e46ce 100644 --- a/sdk/postgresql/arm-postgresql-flexible/src/models/mappers.ts +++ b/sdk/postgresql/arm-postgresql-flexible/src/models/mappers.ts @@ -12,268 +12,6 @@ import * as msRest from "@azure/ms-rest-js"; export const CloudError = CloudErrorMapper; export const BaseResource = BaseResourceMapper; -export const Resource: msRest.CompositeMapper = { - serializedName: "Resource", - type: { - name: "Composite", - className: "Resource", - modelProperties: { - id: { - readOnly: true, - serializedName: "id", - type: { - name: "String" - } - }, - name: { - readOnly: true, - serializedName: "name", - type: { - name: "String" - } - }, - type: { - readOnly: true, - serializedName: "type", - type: { - name: "String" - } - } - } - } -}; - -export const ProxyResource: msRest.CompositeMapper = { - serializedName: "ProxyResource", - type: { - name: "Composite", - className: "ProxyResource", - modelProperties: { - ...Resource.type.modelProperties - } - } -}; - -export const Database: msRest.CompositeMapper = { - serializedName: "Database", - type: { - name: "Composite", - className: "Database", - modelProperties: { - ...ProxyResource.type.modelProperties, - charset: { - serializedName: "properties.charset", - type: { - name: "String" - } - }, - collation: { - serializedName: "properties.collation", - type: { - name: "String" - } - } - } - } -}; - -export const ErrorAdditionalInfo: msRest.CompositeMapper = { - serializedName: "ErrorAdditionalInfo", - type: { - name: "Composite", - className: "ErrorAdditionalInfo", - modelProperties: { - type: { - readOnly: true, - serializedName: "type", - type: { - name: "String" - } - }, - info: { - readOnly: true, - serializedName: "info", - type: { - name: "Object" - } - } - } - } -}; - -export const ErrorResponse: msRest.CompositeMapper = { - serializedName: "ErrorResponse", - type: { - name: "Composite", - className: "ErrorResponse", - modelProperties: { - code: { - readOnly: true, - serializedName: "code", - type: { - name: "String" - } - }, - message: { - readOnly: true, - serializedName: "message", - type: { - name: "String" - } - }, - target: { - readOnly: true, - serializedName: "target", - type: { - name: "String" - } - }, - details: { - readOnly: true, - serializedName: "details", - type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "ErrorResponse" - } - } - } - }, - additionalInfo: { - readOnly: true, - serializedName: "additionalInfo", - type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "ErrorAdditionalInfo" - } - } - } - } - } - } -}; - -export const TrackedResource: msRest.CompositeMapper = { - serializedName: "TrackedResource", - type: { - name: "Composite", - className: "TrackedResource", - modelProperties: { - ...Resource.type.modelProperties, - tags: { - serializedName: "tags", - type: { - name: "Dictionary", - value: { - type: { - name: "String" - } - } - } - }, - location: { - required: true, - serializedName: "location", - type: { - name: "String" - } - } - } - } -}; - -export const AzureEntityResource: msRest.CompositeMapper = { - serializedName: "AzureEntityResource", - type: { - name: "Composite", - className: "AzureEntityResource", - modelProperties: { - ...Resource.type.modelProperties, - etag: { - readOnly: true, - serializedName: "etag", - type: { - name: "String" - } - } - } - } -}; - -export const Sku: msRest.CompositeMapper = { - serializedName: "Sku", - type: { - name: "Composite", - className: "Sku", - modelProperties: { - name: { - required: true, - serializedName: "name", - type: { - name: "String" - } - }, - tier: { - required: true, - serializedName: "tier", - type: { - name: "String" - } - } - } - } -}; - -export const RecoverableServerResource: msRest.CompositeMapper = { - serializedName: "RecoverableServerResource", - type: { - name: "Composite", - className: "RecoverableServerResource", - modelProperties: { - ...ProxyResource.type.modelProperties, - sku: { - serializedName: "sku", - type: { - name: "Composite", - className: "Sku" - } - }, - location: { - serializedName: "location", - type: { - name: "String" - } - }, - availabilityZone: { - readOnly: true, - serializedName: "properties.availabilityZone", - type: { - name: "String" - } - }, - serverEdition: { - readOnly: true, - serializedName: "properties.serverEdition", - type: { - name: "String" - } - }, - version: { - readOnly: true, - serializedName: "properties.version", - type: { - name: "String" - } - } - } - } -}; - export const VirtualNetworkSubnetUsageParameter: msRest.CompositeMapper = { serializedName: "VirtualNetworkSubnetUsageParameter", type: { @@ -556,12 +294,6 @@ export const StorageProfile: msRest.CompositeMapper = { type: { name: "Number" } - }, - geoRedundantBackup: { - serializedName: "geoRedundantBackup", - type: { - name: "String" - } } } } @@ -666,6 +398,90 @@ export const Identity: msRest.CompositeMapper = { } }; +export const Sku: msRest.CompositeMapper = { + serializedName: "Sku", + type: { + name: "Composite", + className: "Sku", + modelProperties: { + name: { + required: true, + serializedName: "name", + type: { + name: "String" + } + }, + tier: { + required: true, + serializedName: "tier", + type: { + name: "String" + } + } + } + } +}; + +export const Resource: msRest.CompositeMapper = { + serializedName: "Resource", + type: { + name: "Composite", + className: "Resource", + modelProperties: { + id: { + readOnly: true, + serializedName: "id", + type: { + name: "String" + } + }, + name: { + readOnly: true, + serializedName: "name", + type: { + name: "String" + } + }, + type: { + readOnly: true, + serializedName: "type", + type: { + name: "String" + } + } + } + } +}; + +export const TrackedResource: msRest.CompositeMapper = { + serializedName: "TrackedResource", + type: { + name: "Composite", + className: "TrackedResource", + modelProperties: { + ...Resource.type.modelProperties, + tags: { + serializedName: "tags", + type: { + name: "Dictionary", + value: { + type: { + name: "String" + } + } + } + }, + location: { + required: true, + serializedName: "location", + type: { + name: "String" + } + } + } + } +}; + export const Server: msRest.CompositeMapper = { serializedName: "Server", type: { @@ -906,6 +722,17 @@ export const ServerForUpdate: msRest.CompositeMapper = { } }; +export const ProxyResource: msRest.CompositeMapper = { + serializedName: "ProxyResource", + type: { + name: "Composite", + className: "ProxyResource", + modelProperties: { + ...Resource.type.modelProperties + } + } +}; + export const FirewallRule: msRest.CompositeMapper = { serializedName: "FirewallRule", type: { @@ -1161,6 +988,105 @@ export const NameAvailability: msRest.CompositeMapper = { } }; +export const ErrorAdditionalInfo: msRest.CompositeMapper = { + serializedName: "ErrorAdditionalInfo", + type: { + name: "Composite", + className: "ErrorAdditionalInfo", + modelProperties: { + type: { + readOnly: true, + serializedName: "type", + type: { + name: "String" + } + }, + info: { + readOnly: true, + serializedName: "info", + type: { + name: "Object" + } + } + } + } +}; + +export const ErrorResponse: msRest.CompositeMapper = { + serializedName: "ErrorResponse", + type: { + name: "Composite", + className: "ErrorResponse", + modelProperties: { + code: { + readOnly: true, + serializedName: "code", + type: { + name: "String" + } + }, + message: { + readOnly: true, + serializedName: "message", + type: { + name: "String" + } + }, + target: { + readOnly: true, + serializedName: "target", + type: { + name: "String" + } + }, + details: { + readOnly: true, + serializedName: "details", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "ErrorResponse" + } + } + } + }, + additionalInfo: { + readOnly: true, + serializedName: "additionalInfo", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "ErrorAdditionalInfo" + } + } + } + } + } + } +}; + +export const AzureEntityResource: msRest.CompositeMapper = { + serializedName: "AzureEntityResource", + type: { + name: "Composite", + className: "AzureEntityResource", + modelProperties: { + ...Resource.type.modelProperties, + etag: { + readOnly: true, + serializedName: "etag", + type: { + name: "String" + } + } + } + } +}; + export const ResourceModelWithAllowedPropertySetIdentity: msRest.CompositeMapper = { serializedName: "ResourceModelWithAllowedPropertySet_identity", type: { @@ -1328,26 +1254,21 @@ export const ResourceModelWithAllowedPropertySet: msRest.CompositeMapper = { } }; -export const DatabaseListResult: msRest.CompositeMapper = { - serializedName: "DatabaseListResult", +export const Database: msRest.CompositeMapper = { + serializedName: "Database", type: { name: "Composite", - className: "DatabaseListResult", + className: "Database", modelProperties: { - value: { - serializedName: "", + ...ProxyResource.type.modelProperties, + charset: { + serializedName: "properties.charset", type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "Database" - } - } + name: "String" } }, - nextLink: { - serializedName: "nextLink", + collation: { + serializedName: "properties.collation", type: { name: "String" } @@ -1469,3 +1390,31 @@ export const CapabilitiesListResult: msRest.CompositeMapper = { } } }; + +export const DatabaseListResult: msRest.CompositeMapper = { + serializedName: "DatabaseListResult", + type: { + name: "Composite", + className: "DatabaseListResult", + modelProperties: { + value: { + serializedName: "", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "Database" + } + } + } + }, + nextLink: { + serializedName: "nextLink", + type: { + name: "String" + } + } + } + } +}; diff --git a/sdk/postgresql/arm-postgresql-flexible/src/models/parameters.ts b/sdk/postgresql/arm-postgresql-flexible/src/models/parameters.ts index c8fe4a8e2b16..57a1ec746a91 100644 --- a/sdk/postgresql/arm-postgresql-flexible/src/models/parameters.ts +++ b/sdk/postgresql/arm-postgresql-flexible/src/models/parameters.ts @@ -25,7 +25,7 @@ export const apiVersion0: msRest.OperationQueryParameter = { required: true, isConstant: true, serializedName: "api-version", - defaultValue: '2020-11-05-preview', + defaultValue: '2020-02-14-preview', constraints: { MinLength: 1 }, @@ -40,7 +40,7 @@ export const apiVersion1: msRest.OperationQueryParameter = { required: true, isConstant: true, serializedName: "api-version", - defaultValue: '2021-03-31-privatepreview', + defaultValue: '2020-11-05-preview', constraints: { MinLength: 1 }, @@ -55,7 +55,7 @@ export const apiVersion2: msRest.OperationQueryParameter = { required: true, isConstant: true, serializedName: "api-version", - defaultValue: '2021-04-10-privatepreview', + defaultValue: '2021-03-31-privatepreview', constraints: { MinLength: 1 }, @@ -122,8 +122,7 @@ export const resourceGroupName: msRest.OperationURLParameter = { serializedName: "resourceGroupName", constraints: { MaxLength: 90, - MinLength: 1, - Pattern: /^[-\w\._\(\)]+$/ + MinLength: 1 }, type: { name: "String" diff --git a/sdk/postgresql/arm-postgresql-flexible/src/models/recoverableServersMappers.ts b/sdk/postgresql/arm-postgresql-flexible/src/models/recoverableServersMappers.ts deleted file mode 100644 index 217f16cfbb31..000000000000 --- a/sdk/postgresql/arm-postgresql-flexible/src/models/recoverableServersMappers.ts +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -export { - AzureEntityResource, - BaseResource, - CloudError, - Configuration, - Database, - ErrorAdditionalInfo, - ErrorResponse, - FirewallRule, - Identity, - MaintenanceWindow, - Plan, - ProxyResource, - RecoverableServerResource, - Resource, - ResourceModelWithAllowedPropertySet, - ResourceModelWithAllowedPropertySetIdentity, - ResourceModelWithAllowedPropertySetPlan, - ResourceModelWithAllowedPropertySetSku, - Server, - ServerPropertiesDelegatedSubnetArguments, - ServerPropertiesPrivateDnsZoneArguments, - Sku, - StorageProfile, - TrackedResource -} from "../models/mappers"; diff --git a/sdk/postgresql/arm-postgresql-flexible/src/models/serversMappers.ts b/sdk/postgresql/arm-postgresql-flexible/src/models/serversMappers.ts index c9df4ef13453..980b29e943e4 100644 --- a/sdk/postgresql/arm-postgresql-flexible/src/models/serversMappers.ts +++ b/sdk/postgresql/arm-postgresql-flexible/src/models/serversMappers.ts @@ -19,7 +19,6 @@ export { MaintenanceWindow, Plan, ProxyResource, - RecoverableServerResource, Resource, ResourceModelWithAllowedPropertySet, ResourceModelWithAllowedPropertySetIdentity, diff --git a/sdk/postgresql/arm-postgresql-flexible/src/operations/checkNameAvailability.ts b/sdk/postgresql/arm-postgresql-flexible/src/operations/checkNameAvailability.ts index 71b920982dc2..8d21d47efba5 100644 --- a/sdk/postgresql/arm-postgresql-flexible/src/operations/checkNameAvailability.ts +++ b/sdk/postgresql/arm-postgresql-flexible/src/operations/checkNameAvailability.ts @@ -11,17 +11,17 @@ import * as msRest from "@azure/ms-rest-js"; import * as Models from "../models"; import * as Mappers from "../models/checkNameAvailabilityMappers"; import * as Parameters from "../models/parameters"; -import { PostgreSQLFlexibleManagementClientContext } from "../postgreSQLFlexibleManagementClientContext"; +import { PostgreSQLManagementClientContext } from "../postgreSQLManagementClientContext"; /** Class representing a CheckNameAvailability. */ export class CheckNameAvailability { - private readonly client: PostgreSQLFlexibleManagementClientContext; + private readonly client: PostgreSQLManagementClientContext; /** * Create a CheckNameAvailability. - * @param {PostgreSQLFlexibleManagementClientContext} client Reference to the service client. + * @param {PostgreSQLManagementClientContext} client Reference to the service client. */ - constructor(client: PostgreSQLFlexibleManagementClientContext) { + constructor(client: PostgreSQLManagementClientContext) { this.client = client; } @@ -66,7 +66,7 @@ const executeOperationSpec: msRest.OperationSpec = { Parameters.subscriptionId ], queryParameters: [ - Parameters.apiVersion2 + Parameters.apiVersion0 ], headerParameters: [ Parameters.acceptLanguage diff --git a/sdk/postgresql/arm-postgresql-flexible/src/operations/configurations.ts b/sdk/postgresql/arm-postgresql-flexible/src/operations/configurations.ts index 261b32a55323..b8464f046acb 100644 --- a/sdk/postgresql/arm-postgresql-flexible/src/operations/configurations.ts +++ b/sdk/postgresql/arm-postgresql-flexible/src/operations/configurations.ts @@ -12,17 +12,17 @@ import * as msRestAzure from "@azure/ms-rest-azure-js"; import * as Models from "../models"; import * as Mappers from "../models/configurationsMappers"; import * as Parameters from "../models/parameters"; -import { PostgreSQLFlexibleManagementClientContext } from "../postgreSQLFlexibleManagementClientContext"; +import { PostgreSQLManagementClientContext } from "../postgreSQLManagementClientContext"; /** Class representing a Configurations. */ export class Configurations { - private readonly client: PostgreSQLFlexibleManagementClientContext; + private readonly client: PostgreSQLManagementClientContext; /** * Create a Configurations. - * @param {PostgreSQLFlexibleManagementClientContext} client Reference to the service client. + * @param {PostgreSQLManagementClientContext} client Reference to the service client. */ - constructor(client: PostgreSQLFlexibleManagementClientContext) { + constructor(client: PostgreSQLManagementClientContext) { this.client = client; } @@ -170,7 +170,7 @@ const listByServerOperationSpec: msRest.OperationSpec = { Parameters.serverName ], queryParameters: [ - Parameters.apiVersion2 + Parameters.apiVersion0 ], headerParameters: [ Parameters.acceptLanguage @@ -196,7 +196,7 @@ const getOperationSpec: msRest.OperationSpec = { Parameters.configurationName ], queryParameters: [ - Parameters.apiVersion2 + Parameters.apiVersion0 ], headerParameters: [ Parameters.acceptLanguage @@ -222,7 +222,7 @@ const beginUpdateOperationSpec: msRest.OperationSpec = { Parameters.configurationName ], queryParameters: [ - Parameters.apiVersion2 + Parameters.apiVersion0 ], headerParameters: [ Parameters.acceptLanguage @@ -254,7 +254,7 @@ const listByServerNextOperationSpec: msRest.OperationSpec = { Parameters.nextPageLink ], queryParameters: [ - Parameters.apiVersion2 + Parameters.apiVersion0 ], headerParameters: [ Parameters.acceptLanguage diff --git a/sdk/postgresql/arm-postgresql-flexible/src/operations/databases.ts b/sdk/postgresql/arm-postgresql-flexible/src/operations/databases.ts index b9da26173ca5..2ac841ead905 100644 --- a/sdk/postgresql/arm-postgresql-flexible/src/operations/databases.ts +++ b/sdk/postgresql/arm-postgresql-flexible/src/operations/databases.ts @@ -12,17 +12,17 @@ import * as msRestAzure from "@azure/ms-rest-azure-js"; import * as Models from "../models"; import * as Mappers from "../models/databasesMappers"; import * as Parameters from "../models/parameters"; -import { PostgreSQLFlexibleManagementClientContext } from "../postgreSQLFlexibleManagementClientContext"; +import { PostgreSQLManagementClientContext } from "../postgreSQLManagementClientContext"; /** Class representing a Databases. */ export class Databases { - private readonly client: PostgreSQLFlexibleManagementClientContext; + private readonly client: PostgreSQLManagementClientContext; /** * Create a Databases. - * @param {PostgreSQLFlexibleManagementClientContext} client Reference to the service client. + * @param {PostgreSQLManagementClientContext} client Reference to the service client. */ - constructor(client: PostgreSQLFlexibleManagementClientContext) { + constructor(client: PostgreSQLManagementClientContext) { this.client = client; } @@ -204,7 +204,7 @@ const getOperationSpec: msRest.OperationSpec = { Parameters.databaseName ], queryParameters: [ - Parameters.apiVersion0 + Parameters.apiVersion1 ], headerParameters: [ Parameters.acceptLanguage @@ -229,7 +229,7 @@ const listByServerOperationSpec: msRest.OperationSpec = { Parameters.serverName ], queryParameters: [ - Parameters.apiVersion0 + Parameters.apiVersion1 ], headerParameters: [ Parameters.acceptLanguage @@ -255,7 +255,7 @@ const beginCreateOperationSpec: msRest.OperationSpec = { Parameters.databaseName ], queryParameters: [ - Parameters.apiVersion0 + Parameters.apiVersion1 ], headerParameters: [ Parameters.acceptLanguage @@ -292,7 +292,7 @@ const beginDeleteMethodOperationSpec: msRest.OperationSpec = { Parameters.databaseName ], queryParameters: [ - Parameters.apiVersion0 + Parameters.apiVersion1 ], headerParameters: [ Parameters.acceptLanguage @@ -316,7 +316,7 @@ const listByServerNextOperationSpec: msRest.OperationSpec = { Parameters.nextPageLink ], queryParameters: [ - Parameters.apiVersion0 + Parameters.apiVersion1 ], headerParameters: [ Parameters.acceptLanguage diff --git a/sdk/postgresql/arm-postgresql-flexible/src/operations/firewallRules.ts b/sdk/postgresql/arm-postgresql-flexible/src/operations/firewallRules.ts index a6496e4ba501..c643e1f139a2 100644 --- a/sdk/postgresql/arm-postgresql-flexible/src/operations/firewallRules.ts +++ b/sdk/postgresql/arm-postgresql-flexible/src/operations/firewallRules.ts @@ -12,17 +12,17 @@ import * as msRestAzure from "@azure/ms-rest-azure-js"; import * as Models from "../models"; import * as Mappers from "../models/firewallRulesMappers"; import * as Parameters from "../models/parameters"; -import { PostgreSQLFlexibleManagementClientContext } from "../postgreSQLFlexibleManagementClientContext"; +import { PostgreSQLManagementClientContext } from "../postgreSQLManagementClientContext"; /** Class representing a FirewallRules. */ export class FirewallRules { - private readonly client: PostgreSQLFlexibleManagementClientContext; + private readonly client: PostgreSQLManagementClientContext; /** * Create a FirewallRules. - * @param {PostgreSQLFlexibleManagementClientContext} client Reference to the service client. + * @param {PostgreSQLManagementClientContext} client Reference to the service client. */ - constructor(client: PostgreSQLFlexibleManagementClientContext) { + constructor(client: PostgreSQLManagementClientContext) { this.client = client; } @@ -204,7 +204,7 @@ const getOperationSpec: msRest.OperationSpec = { Parameters.firewallRuleName ], queryParameters: [ - Parameters.apiVersion2 + Parameters.apiVersion0 ], headerParameters: [ Parameters.acceptLanguage @@ -229,7 +229,7 @@ const listByServerOperationSpec: msRest.OperationSpec = { Parameters.serverName ], queryParameters: [ - Parameters.apiVersion2 + Parameters.apiVersion0 ], headerParameters: [ Parameters.acceptLanguage @@ -255,7 +255,7 @@ const beginCreateOrUpdateOperationSpec: msRest.OperationSpec = { Parameters.firewallRuleName ], queryParameters: [ - Parameters.apiVersion2 + Parameters.apiVersion0 ], headerParameters: [ Parameters.acceptLanguage @@ -292,7 +292,7 @@ const beginDeleteMethodOperationSpec: msRest.OperationSpec = { Parameters.firewallRuleName ], queryParameters: [ - Parameters.apiVersion2 + Parameters.apiVersion0 ], headerParameters: [ Parameters.acceptLanguage @@ -316,7 +316,7 @@ const listByServerNextOperationSpec: msRest.OperationSpec = { Parameters.nextPageLink ], queryParameters: [ - Parameters.apiVersion2 + Parameters.apiVersion0 ], headerParameters: [ Parameters.acceptLanguage diff --git a/sdk/postgresql/arm-postgresql-flexible/src/operations/getPrivateDnsZoneSuffix.ts b/sdk/postgresql/arm-postgresql-flexible/src/operations/getPrivateDnsZoneSuffix.ts index 9bcd159b7cd9..59a5549084b4 100644 --- a/sdk/postgresql/arm-postgresql-flexible/src/operations/getPrivateDnsZoneSuffix.ts +++ b/sdk/postgresql/arm-postgresql-flexible/src/operations/getPrivateDnsZoneSuffix.ts @@ -11,17 +11,17 @@ import * as msRest from "@azure/ms-rest-js"; import * as Models from "../models"; import * as Mappers from "../models/getPrivateDnsZoneSuffixMappers"; import * as Parameters from "../models/parameters"; -import { PostgreSQLFlexibleManagementClientContext } from "../postgreSQLFlexibleManagementClientContext"; +import { PostgreSQLManagementClientContext } from "../postgreSQLManagementClientContext"; /** Class representing a GetPrivateDnsZoneSuffix. */ export class GetPrivateDnsZoneSuffix { - private readonly client: PostgreSQLFlexibleManagementClientContext; + private readonly client: PostgreSQLManagementClientContext; /** * Create a GetPrivateDnsZoneSuffix. - * @param {PostgreSQLFlexibleManagementClientContext} client Reference to the service client. + * @param {PostgreSQLManagementClientContext} client Reference to the service client. */ - constructor(client: PostgreSQLFlexibleManagementClientContext) { + constructor(client: PostgreSQLManagementClientContext) { this.client = client; } @@ -66,7 +66,7 @@ const executeOperationSpec: msRest.OperationSpec = { Parameters.subscriptionId ], queryParameters: [ - Parameters.apiVersion1 + Parameters.apiVersion2 ], headerParameters: [ Parameters.acceptLanguage diff --git a/sdk/postgresql/arm-postgresql-flexible/src/operations/index.ts b/sdk/postgresql/arm-postgresql-flexible/src/operations/index.ts index 5054eefb8e76..7f293c100d11 100644 --- a/sdk/postgresql/arm-postgresql-flexible/src/operations/index.ts +++ b/sdk/postgresql/arm-postgresql-flexible/src/operations/index.ts @@ -7,13 +7,12 @@ * regenerated. */ -export * from "./databases"; -export * from "./getPrivateDnsZoneSuffix"; export * from "./servers"; export * from "./firewallRules"; export * from "./configurations"; export * from "./checkNameAvailability"; export * from "./locationBasedCapabilities"; export * from "./virtualNetworkSubnetUsage"; -export * from "./recoverableServers"; export * from "./operations"; +export * from "./databases"; +export * from "./getPrivateDnsZoneSuffix"; diff --git a/sdk/postgresql/arm-postgresql-flexible/src/operations/locationBasedCapabilities.ts b/sdk/postgresql/arm-postgresql-flexible/src/operations/locationBasedCapabilities.ts index c49fae36be76..4c5cb150cb80 100644 --- a/sdk/postgresql/arm-postgresql-flexible/src/operations/locationBasedCapabilities.ts +++ b/sdk/postgresql/arm-postgresql-flexible/src/operations/locationBasedCapabilities.ts @@ -11,17 +11,17 @@ import * as msRest from "@azure/ms-rest-js"; import * as Models from "../models"; import * as Mappers from "../models/locationBasedCapabilitiesMappers"; import * as Parameters from "../models/parameters"; -import { PostgreSQLFlexibleManagementClientContext } from "../postgreSQLFlexibleManagementClientContext"; +import { PostgreSQLManagementClientContext } from "../postgreSQLManagementClientContext"; /** Class representing a LocationBasedCapabilities. */ export class LocationBasedCapabilities { - private readonly client: PostgreSQLFlexibleManagementClientContext; + private readonly client: PostgreSQLManagementClientContext; /** * Create a LocationBasedCapabilities. - * @param {PostgreSQLFlexibleManagementClientContext} client Reference to the service client. + * @param {PostgreSQLManagementClientContext} client Reference to the service client. */ - constructor(client: PostgreSQLFlexibleManagementClientContext) { + constructor(client: PostgreSQLManagementClientContext) { this.client = client; } @@ -92,7 +92,7 @@ const executeOperationSpec: msRest.OperationSpec = { Parameters.locationName ], queryParameters: [ - Parameters.apiVersion2 + Parameters.apiVersion0 ], headerParameters: [ Parameters.acceptLanguage @@ -116,7 +116,7 @@ const executeNextOperationSpec: msRest.OperationSpec = { Parameters.nextPageLink ], queryParameters: [ - Parameters.apiVersion2 + Parameters.apiVersion0 ], headerParameters: [ Parameters.acceptLanguage diff --git a/sdk/postgresql/arm-postgresql-flexible/src/operations/operations.ts b/sdk/postgresql/arm-postgresql-flexible/src/operations/operations.ts index 18a4e9afcf7a..079d53b2dd21 100644 --- a/sdk/postgresql/arm-postgresql-flexible/src/operations/operations.ts +++ b/sdk/postgresql/arm-postgresql-flexible/src/operations/operations.ts @@ -11,17 +11,17 @@ import * as msRest from "@azure/ms-rest-js"; import * as Models from "../models"; import * as Mappers from "../models/operationsMappers"; import * as Parameters from "../models/parameters"; -import { PostgreSQLFlexibleManagementClientContext } from "../postgreSQLFlexibleManagementClientContext"; +import { PostgreSQLManagementClientContext } from "../postgreSQLManagementClientContext"; /** Class representing a Operations. */ export class Operations { - private readonly client: PostgreSQLFlexibleManagementClientContext; + private readonly client: PostgreSQLManagementClientContext; /** * Create a Operations. - * @param {PostgreSQLFlexibleManagementClientContext} client Reference to the service client. + * @param {PostgreSQLManagementClientContext} client Reference to the service client. */ - constructor(client: PostgreSQLFlexibleManagementClientContext) { + constructor(client: PostgreSQLManagementClientContext) { this.client = client; } @@ -56,7 +56,7 @@ const listOperationSpec: msRest.OperationSpec = { httpMethod: "GET", path: "providers/Microsoft.DBForPostgreSql/operations", queryParameters: [ - Parameters.apiVersion2 + Parameters.apiVersion0 ], headerParameters: [ Parameters.acceptLanguage diff --git a/sdk/postgresql/arm-postgresql-flexible/src/operations/recoverableServers.ts b/sdk/postgresql/arm-postgresql-flexible/src/operations/recoverableServers.ts deleted file mode 100644 index c16fbcd8f046..000000000000 --- a/sdk/postgresql/arm-postgresql-flexible/src/operations/recoverableServers.ts +++ /dev/null @@ -1,86 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is - * regenerated. - */ - -import * as msRest from "@azure/ms-rest-js"; -import * as Models from "../models"; -import * as Mappers from "../models/recoverableServersMappers"; -import * as Parameters from "../models/parameters"; -import { PostgreSQLFlexibleManagementClientContext } from "../postgreSQLFlexibleManagementClientContext"; - -/** Class representing a RecoverableServers. */ -export class RecoverableServers { - private readonly client: PostgreSQLFlexibleManagementClientContext; - - /** - * Create a RecoverableServers. - * @param {PostgreSQLFlexibleManagementClientContext} client Reference to the service client. - */ - constructor(client: PostgreSQLFlexibleManagementClientContext) { - this.client = client; - } - - /** - * Gets a recoverable PostgreSQL Server. - * @param resourceGroupName The name of the resource group. The name is case insensitive. - * @param serverName The name of the server. - * @param [options] The optional parameters - * @returns Promise - */ - get(resourceGroupName: string, serverName: string, options?: msRest.RequestOptionsBase): Promise; - /** - * @param resourceGroupName The name of the resource group. The name is case insensitive. - * @param serverName The name of the server. - * @param callback The callback - */ - get(resourceGroupName: string, serverName: string, callback: msRest.ServiceCallback): void; - /** - * @param resourceGroupName The name of the resource group. The name is case insensitive. - * @param serverName The name of the server. - * @param options The optional parameters - * @param callback The callback - */ - get(resourceGroupName: string, serverName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - get(resourceGroupName: string, serverName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { - return this.client.sendOperationRequest( - { - resourceGroupName, - serverName, - options - }, - getOperationSpec, - callback) as Promise; - } -} - -// Operation Specifications -const serializer = new msRest.Serializer(Mappers); -const getOperationSpec: msRest.OperationSpec = { - httpMethod: "GET", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBForPostgreSql/servers/{serverName}/recoverableServers", - urlParameters: [ - Parameters.subscriptionId, - Parameters.resourceGroupName, - Parameters.serverName - ], - queryParameters: [ - Parameters.apiVersion2 - ], - headerParameters: [ - Parameters.acceptLanguage - ], - responses: { - 200: { - bodyMapper: Mappers.RecoverableServerResource - }, - default: { - bodyMapper: Mappers.CloudError - } - }, - serializer -}; diff --git a/sdk/postgresql/arm-postgresql-flexible/src/operations/servers.ts b/sdk/postgresql/arm-postgresql-flexible/src/operations/servers.ts index 543bbb2695ba..8f552abd68e6 100644 --- a/sdk/postgresql/arm-postgresql-flexible/src/operations/servers.ts +++ b/sdk/postgresql/arm-postgresql-flexible/src/operations/servers.ts @@ -12,17 +12,17 @@ import * as msRestAzure from "@azure/ms-rest-azure-js"; import * as Models from "../models"; import * as Mappers from "../models/serversMappers"; import * as Parameters from "../models/parameters"; -import { PostgreSQLFlexibleManagementClientContext } from "../postgreSQLFlexibleManagementClientContext"; +import { PostgreSQLManagementClientContext } from "../postgreSQLManagementClientContext"; /** Class representing a Servers. */ export class Servers { - private readonly client: PostgreSQLFlexibleManagementClientContext; + private readonly client: PostgreSQLManagementClientContext; /** * Create a Servers. - * @param {PostgreSQLFlexibleManagementClientContext} client Reference to the service client. + * @param {PostgreSQLManagementClientContext} client Reference to the service client. */ - constructor(client: PostgreSQLFlexibleManagementClientContext) { + constructor(client: PostgreSQLManagementClientContext) { this.client = client; } @@ -366,7 +366,7 @@ const getOperationSpec: msRest.OperationSpec = { Parameters.serverName ], queryParameters: [ - Parameters.apiVersion2 + Parameters.apiVersion0 ], headerParameters: [ Parameters.acceptLanguage @@ -390,7 +390,7 @@ const listByResourceGroupOperationSpec: msRest.OperationSpec = { Parameters.resourceGroupName ], queryParameters: [ - Parameters.apiVersion2 + Parameters.apiVersion0 ], headerParameters: [ Parameters.acceptLanguage @@ -413,7 +413,7 @@ const listOperationSpec: msRest.OperationSpec = { Parameters.subscriptionId ], queryParameters: [ - Parameters.apiVersion2 + Parameters.apiVersion0 ], headerParameters: [ Parameters.acceptLanguage @@ -438,7 +438,7 @@ const beginCreateOperationSpec: msRest.OperationSpec = { Parameters.serverName ], queryParameters: [ - Parameters.apiVersion2 + Parameters.apiVersion0 ], headerParameters: [ Parameters.acceptLanguage @@ -474,7 +474,7 @@ const beginUpdateOperationSpec: msRest.OperationSpec = { Parameters.serverName ], queryParameters: [ - Parameters.apiVersion2 + Parameters.apiVersion0 ], headerParameters: [ Parameters.acceptLanguage @@ -507,7 +507,7 @@ const beginDeleteMethodOperationSpec: msRest.OperationSpec = { Parameters.serverName ], queryParameters: [ - Parameters.apiVersion2 + Parameters.apiVersion0 ], headerParameters: [ Parameters.acceptLanguage @@ -532,7 +532,7 @@ const beginRestartOperationSpec: msRest.OperationSpec = { Parameters.serverName ], queryParameters: [ - Parameters.apiVersion2 + Parameters.apiVersion0 ], headerParameters: [ Parameters.acceptLanguage @@ -556,7 +556,7 @@ const beginStartOperationSpec: msRest.OperationSpec = { Parameters.serverName ], queryParameters: [ - Parameters.apiVersion2 + Parameters.apiVersion0 ], headerParameters: [ Parameters.acceptLanguage @@ -580,7 +580,7 @@ const beginStopOperationSpec: msRest.OperationSpec = { Parameters.serverName ], queryParameters: [ - Parameters.apiVersion2 + Parameters.apiVersion0 ], headerParameters: [ Parameters.acceptLanguage @@ -603,7 +603,7 @@ const listByResourceGroupNextOperationSpec: msRest.OperationSpec = { Parameters.nextPageLink ], queryParameters: [ - Parameters.apiVersion2 + Parameters.apiVersion0 ], headerParameters: [ Parameters.acceptLanguage @@ -627,7 +627,7 @@ const listNextOperationSpec: msRest.OperationSpec = { Parameters.nextPageLink ], queryParameters: [ - Parameters.apiVersion2 + Parameters.apiVersion0 ], headerParameters: [ Parameters.acceptLanguage diff --git a/sdk/postgresql/arm-postgresql-flexible/src/operations/virtualNetworkSubnetUsage.ts b/sdk/postgresql/arm-postgresql-flexible/src/operations/virtualNetworkSubnetUsage.ts index 3e8948a2ef7c..7132c84f1eaf 100644 --- a/sdk/postgresql/arm-postgresql-flexible/src/operations/virtualNetworkSubnetUsage.ts +++ b/sdk/postgresql/arm-postgresql-flexible/src/operations/virtualNetworkSubnetUsage.ts @@ -11,17 +11,17 @@ import * as msRest from "@azure/ms-rest-js"; import * as Models from "../models"; import * as Mappers from "../models/virtualNetworkSubnetUsageMappers"; import * as Parameters from "../models/parameters"; -import { PostgreSQLFlexibleManagementClientContext } from "../postgreSQLFlexibleManagementClientContext"; +import { PostgreSQLManagementClientContext } from "../postgreSQLManagementClientContext"; /** Class representing a VirtualNetworkSubnetUsage. */ export class VirtualNetworkSubnetUsage { - private readonly client: PostgreSQLFlexibleManagementClientContext; + private readonly client: PostgreSQLManagementClientContext; /** * Create a VirtualNetworkSubnetUsage. - * @param {PostgreSQLFlexibleManagementClientContext} client Reference to the service client. + * @param {PostgreSQLManagementClientContext} client Reference to the service client. */ - constructor(client: PostgreSQLFlexibleManagementClientContext) { + constructor(client: PostgreSQLManagementClientContext) { this.client = client; } @@ -68,7 +68,7 @@ const executeOperationSpec: msRest.OperationSpec = { Parameters.locationName ], queryParameters: [ - Parameters.apiVersion2 + Parameters.apiVersion0 ], headerParameters: [ Parameters.acceptLanguage diff --git a/sdk/postgresql/arm-postgresql-flexible/src/postgreSQLFlexibleManagementClient.ts b/sdk/postgresql/arm-postgresql-flexible/src/postgreSQLManagementClient.ts similarity index 79% rename from sdk/postgresql/arm-postgresql-flexible/src/postgreSQLFlexibleManagementClient.ts rename to sdk/postgresql/arm-postgresql-flexible/src/postgreSQLManagementClient.ts index 529b1972dc75..15926bf7b757 100644 --- a/sdk/postgresql/arm-postgresql-flexible/src/postgreSQLFlexibleManagementClient.ts +++ b/sdk/postgresql/arm-postgresql-flexible/src/postgreSQLManagementClient.ts @@ -12,24 +12,23 @@ import { TokenCredential } from "@azure/core-auth"; import * as Models from "./models"; import * as Mappers from "./models/mappers"; import * as operations from "./operations"; -import { PostgreSQLFlexibleManagementClientContext } from "./postgreSQLFlexibleManagementClientContext"; +import { PostgreSQLManagementClientContext } from "./postgreSQLManagementClientContext"; -class PostgreSQLFlexibleManagementClient extends PostgreSQLFlexibleManagementClientContext { +class PostgreSQLManagementClient extends PostgreSQLManagementClientContext { // Operation groups - databases: operations.Databases; - getPrivateDnsZoneSuffix: operations.GetPrivateDnsZoneSuffix; servers: operations.Servers; firewallRules: operations.FirewallRules; configurations: operations.Configurations; checkNameAvailability: operations.CheckNameAvailability; locationBasedCapabilities: operations.LocationBasedCapabilities; virtualNetworkSubnetUsage: operations.VirtualNetworkSubnetUsage; - recoverableServers: operations.RecoverableServers; operations: operations.Operations; + databases: operations.Databases; + getPrivateDnsZoneSuffix: operations.GetPrivateDnsZoneSuffix; /** - * Initializes a new instance of the PostgreSQLFlexibleManagementClient class. + * Initializes a new instance of the PostgreSQLManagementClient class. * @param credentials Credentials needed for the client to connect to Azure. Credentials * implementing the TokenCredential interface from the @azure/identity package are recommended. For * more information about these credentials, see @@ -39,27 +38,26 @@ class PostgreSQLFlexibleManagementClient extends PostgreSQLFlexibleManagementCli * @param subscriptionId The ID of the target subscription. * @param [options] The parameter options */ - constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.PostgreSQLFlexibleManagementClientOptions) { + constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.PostgreSQLManagementClientOptions) { super(credentials, subscriptionId, options); - this.databases = new operations.Databases(this); - this.getPrivateDnsZoneSuffix = new operations.GetPrivateDnsZoneSuffix(this); this.servers = new operations.Servers(this); this.firewallRules = new operations.FirewallRules(this); this.configurations = new operations.Configurations(this); this.checkNameAvailability = new operations.CheckNameAvailability(this); this.locationBasedCapabilities = new operations.LocationBasedCapabilities(this); this.virtualNetworkSubnetUsage = new operations.VirtualNetworkSubnetUsage(this); - this.recoverableServers = new operations.RecoverableServers(this); this.operations = new operations.Operations(this); + this.databases = new operations.Databases(this); + this.getPrivateDnsZoneSuffix = new operations.GetPrivateDnsZoneSuffix(this); } } // Operation Specifications export { - PostgreSQLFlexibleManagementClient, - PostgreSQLFlexibleManagementClientContext, - Models as PostgreSQLFlexibleManagementModels, - Mappers as PostgreSQLFlexibleManagementMappers + PostgreSQLManagementClient, + PostgreSQLManagementClientContext, + Models as PostgreSQLManagementModels, + Mappers as PostgreSQLManagementMappers }; export * from "./operations"; diff --git a/sdk/postgresql/arm-postgresql-flexible/src/postgreSQLFlexibleManagementClientContext.ts b/sdk/postgresql/arm-postgresql-flexible/src/postgreSQLManagementClientContext.ts similarity index 90% rename from sdk/postgresql/arm-postgresql-flexible/src/postgreSQLFlexibleManagementClientContext.ts rename to sdk/postgresql/arm-postgresql-flexible/src/postgreSQLManagementClientContext.ts index b68ccae65c85..1b12aa2e9d10 100644 --- a/sdk/postgresql/arm-postgresql-flexible/src/postgreSQLFlexibleManagementClientContext.ts +++ b/sdk/postgresql/arm-postgresql-flexible/src/postgreSQLManagementClientContext.ts @@ -13,14 +13,14 @@ import * as msRestAzure from "@azure/ms-rest-azure-js"; import { TokenCredential } from "@azure/core-auth"; const packageName = "@azure/arm-postgresql-flexible"; -const packageVersion = "1.0.0"; +const packageVersion = "2.0.0"; -export class PostgreSQLFlexibleManagementClientContext extends msRestAzure.AzureServiceClient { +export class PostgreSQLManagementClientContext extends msRestAzure.AzureServiceClient { credentials: msRest.ServiceClientCredentials | TokenCredential; subscriptionId: string; /** - * Initializes a new instance of the PostgreSQLFlexibleManagementClient class. + * Initializes a new instance of the PostgreSQLManagementClient class. * @param credentials Credentials needed for the client to connect to Azure. Credentials * implementing the TokenCredential interface from the @azure/identity package are recommended. For * more information about these credentials, see @@ -30,7 +30,7 @@ export class PostgreSQLFlexibleManagementClientContext extends msRestAzure.Azure * @param subscriptionId The ID of the target subscription. * @param [options] The parameter options */ - constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.PostgreSQLFlexibleManagementClientOptions) { + constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.PostgreSQLManagementClientOptions) { if (credentials == undefined) { throw new Error('\'credentials\' cannot be null.'); }